DBA Data[Home] [Help]

APPS.PA_AP_INTEGRATION dependencies on PA_RESOURCE_UTILS

Line 427: -- pa_resource_utils.chk_supplier_in_use function checks to see if the given supplier ID is used by any

423:
424: Return 'N';
425:
426: -- FP.M change.
427: -- pa_resource_utils.chk_supplier_in_use function checks to see if the given supplier ID is used by any
428: -- planning resource lists or resource breakdown structures. If it is in use, it returns 'Y'; if not,
429: -- it returns 'N'. If the value returned is Y, Supplier merge is not allowed.
430:
431: Exception

Line 433: select decode(pa_resource_utils.chk_supplier_in_use(p_vendor_id),'Y','N','Y')

429: -- it returns 'N'. If the value returned is Y, Supplier merge is not allowed.
430:
431: Exception
432: When no_data_found then
433: select decode(pa_resource_utils.chk_supplier_in_use(p_vendor_id),'Y','N','Y')
434: into l_allow_merge_flg
435: from dual;
436: Return l_allow_merge_flg;
437: END Allow_Supplier_Merge;