DBA Data[Home] [Help]

APPS.ITG_IP_RCV_TRANS_INTERFACE_ASD dependencies on ITG_DEBUG

Line 48: ITG_Debug.setup(

44:
45: l_orgid po_headers_all.org_id%TYPE;
46: l_clntyp VARCHAR2(30);
47: BEGIN
48: ITG_Debug.setup(
49: p_reset => TRUE,
50: p_pkg_name => 'TRIGGER',
51: p_proc_name => 'itg_ip_rcv_trans_interface_ASD');
52: ITG_Debug.msg('RTI', 'requestId', requestId);

Line 52: ITG_Debug.msg('RTI', 'requestId', requestId);

48: ITG_Debug.setup(
49: p_reset => TRUE,
50: p_pkg_name => 'TRIGGER',
51: p_proc_name => 'itg_ip_rcv_trans_interface_ASD');
52: ITG_Debug.msg('RTI', 'requestId', requestId);
53:
54: IF requestId > 0 THEN
55: -- Is this request id completed?
56: OPEN getRowCount;

Line 59: ITG_Debug.msg('RTI', 'rowCount', rowCount);

55: -- Is this request id completed?
56: OPEN getRowCount;
57: FETCH getRowCount INTO rowCount;
58: CLOSE getRowCount;
59: ITG_Debug.msg('RTI', 'rowCount', rowCount);
60:
61: -- Only submit if there are no more interface rows for this request
62: IF rowCount = 0 THEN
63: -- Submit an XML outbound BSR for each header

Line 92: ITG_Debug.flush_to_logfile;

88: END LOOP;
89: END IF;
90: END IF;
91:
92: ITG_Debug.flush_to_logfile;
93: END;