Answer Posted / ranjith
If a stored procedure(Function or Procedure) need to be
called inside another stored procedure in the same package
then the called procedure should be declared before the
calling procedure. This declartion is called Forward
Reference.
Example:
CREATE OR REPLACE PACKAGE BODY pkg_FR_Test
.
.
Begin
prc_FR_Procedure(p_P1 NUMBER, p_P2 VARCHAR2);--> FR
.
.
prc_Call_Procedure(p_Param1 NUMBER)
BEGIN
.
.
prc_FR_Procedure(20, 'Account');
.
.
END prc_FR_Procedure;
END
| Is This Answer Correct ? | 5 Yes | 0 No |
Post New Answer View All Answers
Explain what are the tables of auto invoice?
what is pay run id ?
What is oracle soa suite?
please any one provide the oracle erp technical interview questions on modules(PO,AP,AR,INV,GL,OM)wise to my mail id..narendra_609@yahoo.co.in
In sequence i want to 11 and 15th values how we will write?
How to create a purchase order without a requisition?
What do you understand by soa and what are the benefits of using this architecture?
Tell me how to find the custom directory in front end?
CAN YOU CUSTOMISE THE COUTOMISE CUS_TOP
List of all the modules under Manufacturing, Finance and Distribution in oracle applications?
WHAT IS CUSTOM VIEW AND CUSTOM COMPONENT?
q)what are the validations in sql*loader
Plz anybody send me Technical specification for AP Interface
A program must be written which accepts date parameter. The date parameter will accept data in the format DD/MM/YYYY. This data has to be validated and post validation, the following details have to be displayed for this date parameter 1. Input date must be defaulted to sysdate, It can be overridden by any other date. 2. Financial year should be displayed for this date parameter. Eg: If the input date is 30/11/2010, the financial year must be displayed as 1. From Date : 01-Aprr-2010 To Date: 31-Mar-2011 3. Calendar year and Calendar month must also be displayed. 4. The next payment cycle (say for EB), must be displayed based on this date parameter. 5. The previous payment must also be displayed based on this date.
what is the difference between request group and request security in oracle apps?