DBA Data[Home] [Help]

APPS.IEX_CO_WF dependencies on FND_LOG

Line 7: PG_DEBUG NUMBER := FND_LOG.G_CURRENT_RUNTIME_LEVEL;

3: ---------------------------------------------------------------------------
4: -- PROCEDURE notify_customer
5: ---------------------------------------------------------------------------
6: -- PG_DEBUG NUMBER(2) := TO_NUMBER(NVL(FND_PROFILE.value('IEX_DEBUG_LEVEL'), '20'));
7: PG_DEBUG NUMBER := FND_LOG.G_CURRENT_RUNTIME_LEVEL;
8:
9: PROCEDURE notify_customer(itemtype in varchar2,
10: itemkey in varchar2,
11: actid in number,

Line 526: IF (FND_LOG.LEVEL_EVENT >= PG_DEBUG) THEN

522: FOR i in 1..fnd_msg_pub.count_msg() LOOP
523: fnd_msg_pub.get(p_data => l_msg_data,
524: p_msg_index_out => l_msg_index_out);
525: -- IF PG_DEBUG < 10 THEN
526: IF (FND_LOG.LEVEL_EVENT >= PG_DEBUG) THEN
527: iex_debug_pub.logmessage('wf_send_signal_cancelled: ' || 'error message is ' || l_msg_data);
528: END IF;
529: --dbms_output.put_line(to_char(i) || ':' || x_msg_data);
530: END LOOP;

Line 612: IF (FND_LOG.LEVEL_EVENT >= PG_DEBUG) THEN

608: FOR i in 1..fnd_msg_pub.count_msg() LOOP
609: fnd_msg_pub.get(p_data => l_msg_data,
610: p_msg_index_out => l_msg_index_out);
611: -- IF PG_DEBUG < 10 THEN
612: IF (FND_LOG.LEVEL_EVENT >= PG_DEBUG) THEN
613: iex_debug_pub.logmessage('wf_send_signal_complete: ' || 'error message is ' || l_msg_data);
614: END IF;
615: --dbms_output.put_line(to_char(i) || ':' || x_msg_data);
616: END LOOP;