DBA Data[Home] [Help]

APPS.PA_AP_INTEGRATION dependencies on PA_RESOURCE_UTILS

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

487:
488: Return 'N';
489:
490: -- FP.M change.
491: -- pa_resource_utils.chk_supplier_in_use function checks to see if the given supplier ID is used by any
492: -- planning resource lists or resource breakdown structures. If it is in use, it returns 'Y'; if not,
493: -- it returns 'N'. If the value returned is Y, Supplier merge is not allowed.
494:
495: Exception

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

493: -- it returns 'N'. If the value returned is Y, Supplier merge is not allowed.
494:
495: Exception
496: When no_data_found then
497: select decode(pa_resource_utils.chk_supplier_in_use(p_vendor_id),'Y','N','Y')
498: into l_allow_merge_flg
499: from dual;
500: Return l_allow_merge_flg;
501: END Allow_Supplier_Merge;