How to Call "View Suppliers" OAF Page from Oracle Standard Forms
Hi All,
I have a requirement to launch the View Suppliers for a specific Supplier (VendorId Available) in the OAF Page from a custom standard form.
The code I have is:
IF FND_FUNCTION.TEST('AP_APXVDMVD_VIEW')
THEN
FND_FUNCTION.EXECUTE (
FUNCTION_NAME=>'AP_APXVDMVD_VIEW',
OPEN_FLAG =>'Y',
SESSION_FLAG =>'Y',
OTHER_PARAMS =>'VendorId='||l_vendor_id||'&CallFromForm='||'Y');
END IF;
END ;
---------
What am I doing wrong here? the form launches, but doesn't take me to the Supplier screen for the specific supplier id ?
Is there anything else, I have to include?
Can anyone please help me...?