Hi, This post shows you how to find the RDF report path in server in Oracle apps R12. The query below retrieves the report path along with application name which takes execution file name is the parameter.
SELECT fa.application_name,
'$'||basepath||'/'||'reports/US' Reports_Path,
FROM apps.fnd_executables_vl fe,
apps.fnd_application_vl fa
WHERE fe.execution_method_code =' P'
AND fe.application_id = fa.application_id
AND fe.execution_file_name = 'XXSAMPLEFILE'; --Your file name without extension
Happy learning!!