Wednesday, July 3, 2024

How To Use SRW.USER_EXIT('FND SRWINIT') and SRW.USER_EXIT(‘FND SRWEXIT’) In Oracle Reports

 

How To Use SRW.USER_EXIT('FND SRWINIT') and SRW.USER_EXIT(‘FND SRWEXIT’) In Oracle Reports


Note:-(Use these steps everytime when you create a new report)

Step-1:-

  1. Go to Before Report Trigger in your .rdf 

  2. Put the following code in the Before Report Trigger:-

SRW.USER_EXIT('FND SRWINIT')

  1. Compile and close the trigger.

Step 2:-

  1. Go to After Report Trigger your .rdf

  2. Put the following code in the After Report Trigger:-

SRW.USER_EXIT('FND SRWEXIT')

  1.  Compile and close the trigger.


Step 3:-


  1. Create a User Parameter P_CONC_REQUEST_ID of TYPE Number





No comments:

Post a Comment

EBS : Package Development Process

====================== Package Specification ================================== CREATE OR REPLACE PACKAGE xx_emp_package IS     PROCEDURE lo...