Hi,
Steps to find the RDF file from program name given.
1) Go to system administrator > Concurrent > Program > Define.
Search for the program name and copy the executable name.
2) Use below query and paste the executable name.
SELECT APPLICATION_NAME,'$'||BASEPATH||'/'||'reports/US' Reports_Path,EXECUTION_FILE_NAME FROM APPS.FND_EXECUTABLES_VL A, APPS.FND_APPLICATION_VL B WHERE EXECUTION_METHOD_CODE='P' AND A.APPLICATION_ID=B.APPLICATION_ID AND EXECUTION_FILE_NAME like '%&RDF_NAME%';
It shows below output.
APPLICATION_NAME
--------------------------------------------------------------------------------
REPORTS_PATH
--------------------------------
EXECUTION_FILE_NAME
-------------------------------------------------------------
Receivables
$AR_TOP/reports/US
RAXCUS
Receivables
$AR_TOP/reports/US
RAXCUSLR
Thanks.
Sreeharsha
Steps to find the RDF file from program name given.
1) Go to system administrator > Concurrent > Program > Define.
Search for the program name and copy the executable name.
2) Use below query and paste the executable name.
SELECT APPLICATION_NAME,'$'||BASEPATH||'/'||'reports/US' Reports_Path,EXECUTION_FILE_NAME FROM APPS.FND_EXECUTABLES_VL A, APPS.FND_APPLICATION_VL B WHERE EXECUTION_METHOD_CODE='P' AND A.APPLICATION_ID=B.APPLICATION_ID AND EXECUTION_FILE_NAME like '%&RDF_NAME%';
It shows below output.
APPLICATION_NAME
--------------------------------------------------------------------------------
REPORTS_PATH
--------------------------------
EXECUTION_FILE_NAME
-------------------------------------------------------------
Receivables
$AR_TOP/reports/US
RAXCUS
Receivables
$AR_TOP/reports/US
RAXCUSLR
Thanks.
Sreeharsha
Thank you so much!!
ReplyDelete