DBA Data[Home] [Help]

APPS.PON_EMD_AR_INTEGRATION_GRP dependencies on AR_LOOKUPS

Line 225: print_log('Retrieving transaction description from ar_lookups');

221: print_log('l_payment_trxn_extension_id: '||l_payment_trxn_extension_id);
222:
223: --Bug 14812557
224: --Passing "Generic Commitment" as description as per the update from Receivables team in the bug
225: print_log('Retrieving transaction description from ar_lookups');
226:
227: select meaning
228: into l_description
229: from ar_lookups

Line 229: from ar_lookups

225: print_log('Retrieving transaction description from ar_lookups');
226:
227: select meaning
228: into l_description
229: from ar_lookups
230: where lookup_type = 'COMMITMENT_DESCRIPTION'
231: and lookup_code = 'GENERIC'
232: and sysdate between start_date_active and nvl(end_date_active, sysdate)
233: and enabled_flag = 'Y';