Wrong number or types of arguments in call

Wrong number or types of arguments in call
--====================================================================


CREATE OR REPLACE PROCEDURE XXSD_APPS_INITIALIZE_PROC  (
ERRBUF    OUT   VARCHAR2, /* this is mandatory */
RETCODE   OUT   NUMBER /* this is mandatory */
P_NAME IN VARCHAR2  /* Don't Forget this for define as a parameter */
) AS

BEGIN

fnd_file.put_line (fnd_file.log,(' User_id :- '|| FND_GLOBAL.USER_ID));
fnd_file.put_line (fnd_file.log,(' Application_id:- '||FND_GLOBAL.RESP_APPL_ID));
fnd_file.put_line (fnd_file.log,(' Responsibility_id :- '|| FND_GLOBAL.RESP_ID));

fnd_file.put_line (fnd_file.log,(' (P) Business_Group_id:- '||fnd_profile.VALUE('PER_BUSINESS_GROUP_ID')));
fnd_file.put_line (fnd_file.log,(' (P) User_id :- '|| fnd_profile.VALUE('USER_ID')));
fnd_file.put_line (fnd_file.log,(' (P) User_Name :- '|| fnd_profile.VALUE('USERNAME')));
fnd_file.put_line (fnd_file.log,(' (P) Responsibility_id :- '|| fnd_profile.VALUE('RESP_ID')));
fnd_file.put_line (fnd_file.log,(' (P) Responsibility_Name :- '|| fnd_profile.VALUE('RESP_NAME')));

END;

Comments

Popular posts from this blog

E-Text Report In Fusion | Types of E-Text reports

Supplier API's

How to pass default Parameter in cursor