DBA Data[Home] [Help]

APPS.IEX_TERR_PUB dependencies on FND_PROFILE

Line 310: l_debug_level := NVL(TO_NUMBER(FND_PROFILE.VALUE('IEX_DEBUG_LEVEL')),20);

306: l_count NUMBER;
307: l_rsc_name VARCHAR2(240);
308: BEGIN
309: x_return_status := 'S';
310: l_debug_level := NVL(TO_NUMBER(FND_PROFILE.VALUE('IEX_DEBUG_LEVEL')),20);
311: -- put custom code
312: -- this is just an example
313: -- writes into the log file
314: logmessage ('Account Check: ' || 'EVENT NAME =>'||p_event.getEventName());

Line 347: IF NVL(FND_PROFILE.VALUE('IEX_ENABLE_CUST_ONLINE_TAP'),'N') <> 'Y' THEN

343: logmessage ('account_check: ' || ' custaccount_id = '|| l_custaccount_id ||
344: ', l_siteuse_id = ' || l_siteuse_id || ', party_id ' || l_party_id);
345:
346:
347: IF NVL(FND_PROFILE.VALUE('IEX_ENABLE_CUST_ONLINE_TAP'),'N') <> 'Y' THEN
348: BEGIN
349: INSERT INTO IEX_CHANGED_ACCOUNTS_ALL
350: (
351: OBJECT_VERSION_NUMBER

Line 745: l_debug_level := NVL(TO_NUMBER(FND_PROFILE.VALUE('IEX_DEBUG_LEVEL')),20);

741:
742:
743: begin
744: x_return_status := 'S';
745: l_debug_level := NVL(TO_NUMBER(FND_PROFILE.VALUE('IEX_DEBUG_LEVEL')),20);
746: -- put custom code
747: -- this is just an example
748: -- writes into the log file
749:

Line 1111: PG_DEBUG := TO_NUMBER(NVL(FND_PROFILE.value('IEX_DEBUG_LEVEL'), '20'));

1107: end;
1108:
1109: BEGIN
1110:
1111: PG_DEBUG := TO_NUMBER(NVL(FND_PROFILE.value('IEX_DEBUG_LEVEL'), '20'));
1112: -- Enter further code below as specified in the Package spec.
1113: END;