
- Forum
- ERP
- Oracle Apps
- Report Customization
Report Customization
This is a discussion on Report Customization within the Oracle Apps forums, part of the ERP category; How to use SRW.USER_EXIT('FND SRWINIT') and FND FLEXSQL and FND FLEXIDVAL in customizing the report....
-
Report Customization
How to use SRW.USER_EXIT('FND SRWINIT') and FND FLEXSQL and FND FLEXIDVAL in customizing the report.

-
02-28-2007, 04:25 AM #2
- Join Date
- Feb 2007
- Answers
- 31
Hi Ram,
SRW.USER_EXIT('FND SRWINIT') in this we can call before report trigger.
FND FLEXSQL -This one also we can call before report trigger.
synatx:
fnd flexsql
CODE="fexfield code"
appl_short_name="application short name"
OUTPUT="
utput lexcal parameter name"
MODE="{select/where/having/orderby}"
DISPLAY="{all/flexfield qualifier/segmant number}"
FLEXIDVAL- we cal call this user exit from formula column to populate the segment vales into formula column
srw.user_exit(
_struct_num);
srw.user_exit(:c_flexdata);
srw.user_exit('fnd flexidval
CODE="GL#"
NUM="
_struct_num"
Appl_short_name="SQLGL"
DATA=":c_flexdata"
VALUE=":cf_DATA"
DISPLAY="ALL");
Thanks,
Siva Sankar
-
02-28-2007, 04:35 AM #3
- Join Date
- Feb 2007
- Answers
- 31
Hi Ram,
SRW.USER_EXIT('FND SRWINIT') in this we can call before report trigger.
FND FLEXSQL -This one also we can call before report trigger.
synatx:
fnd flexsql
CODE="fexfield code"
appl_short_name="application short name"
OUTPUT="
utput lexcal parameter name"
MODE="{select/where/having/orderby}"
DISPLAY="{all/flexfield qualifier/segmant number}"
FLEXIDVAL- we cal call this user exit from formula column to populate the segment vales into formula column
srw.user_exit(
_struct_num);
srw.user_exit(:c_flexdata);
srw.user_exit('fnd flexidval
CODE="GL#"
NUM="
_struct_num"
Appl_short_name="SQLGL"
DATA=" : c_flexdata"
VALUE=" :cf_DATA"
DISPLAY="ALL");
Thanks,
Siva Sankar
-
Sponsored Ads

Reply With Quote





