1. Create a user parameter 'P_CONC_REQUEST_ID' of NUMBER type.
2. Add the below code in 'BEFORE REPORT' trigger:
SRW.USER_EXIT('FND SRWINIT');
3. Add the below code in 'AFTER REPORT' trigger:
SRW.USER_EXIT('FND SRWEXIT');
4. Use the below code to get the concurrent request id:
DECLARE
v_conc_req_id number;
BEGIN
v_conc_req_id := fnd_global.conc_request_id;
return(v_conc_req_id);
END;
Note: We may get the error "REP-1415: 'beforereport': Unknown user exit 'FND'" while running the RDF in Report Builder.
Oracle support says it is not supported feature to run them on the desktop.Sometimes you can comment out those user exits and run the report, then uncomments them before saving and sending to applications.
solution from Oracle is to run the report from Oracle concurrent manager.
Note: We may get the error "REP-1415: 'beforereport': Unknown user exit 'FND'" while running the RDF in Report Builder.
Oracle support says it is not supported feature to run them on the desktop.Sometimes you can comment out those user exits and run the report, then uncomments them before saving and sending to applications.
solution from Oracle is to run the report from Oracle concurrent manager.
No comments:
Post a Comment