DBA Data[Home] [Help]

APPS.PJM_INQUIRY dependencies on PO_VENDOR_CONTACTS

Line 71: from PO_VENDOR_CONTACTS VC

67: BEGIN
68:
69: SELECT DECODE(VC.LAST_NAME, NULL, NULL, VC.LAST_NAME||', '||VC.FIRST_NAME)
70: into L_Contact_Name
71: from PO_VENDOR_CONTACTS VC
72: where VC.VENDOR_CONTACT_ID = X_Contact_id;
73:
74: RETURN ( L_Contact_Name );
75: