DBA Data[Home] [Help]

APPS.CLN_CH_COLLABORATION_PKG dependencies on CLN_DEBUG_PUB

Line 39: ecx_cln_debug_pub.Add('When others in get child element' , 1);

35: RETURN l_child_value;
36: EXCEPTION
37: WHEN OTHERS THEN
38: IF (l_Debug_Level <= 1) THEN
39: ecx_cln_debug_pub.Add('When others in get child element' , 1);
40: END IF;
41: RETURN NULL;
42: END;
43:

Line 88: ecx_cln_debug_pub.Add('-----------ENTERING GET_DOCUMENT_CREATION_DATE-----------', 2);

84: l_timezone_num VARCHAR2(10);
85:
86: BEGIN
87: IF (l_Debug_Level <= 2) THEN
88: ecx_cln_debug_pub.Add('-----------ENTERING GET_DOCUMENT_CREATION_DATE-----------', 2);
89: END IF;
90:
91: IF (l_Debug_Level <= 2) THEN
92: ecx_cln_debug_pub.Add('WITH PARAMETERS', 1);

Line 92: ecx_cln_debug_pub.Add('WITH PARAMETERS', 1);

88: ecx_cln_debug_pub.Add('-----------ENTERING GET_DOCUMENT_CREATION_DATE-----------', 2);
89: END IF;
90:
91: IF (l_Debug_Level <= 2) THEN
92: ecx_cln_debug_pub.Add('WITH PARAMETERS', 1);
93: ecx_cln_debug_pub.Add('p_msgId:' || p_msgId, 1);
94: END IF;
95:
96: x_doc_creation_date := NULL;

Line 93: ecx_cln_debug_pub.Add('p_msgId:' || p_msgId, 1);

89: END IF;
90:
91: IF (l_Debug_Level <= 2) THEN
92: ecx_cln_debug_pub.Add('WITH PARAMETERS', 1);
93: ecx_cln_debug_pub.Add('p_msgId:' || p_msgId, 1);
94: END IF;
95:
96: x_doc_creation_date := NULL;
97:

Line 103: ecx_cln_debug_pub.Add('Init Position:' || l_ini_pos, 1);

99:
100: l_ini_pos := -1;
101: l_ini_pos := dbms_lob.instr(l_xmlDoc, '!DOCTYPE ');
102: IF (l_Debug_Level <= 2) THEN
103: ecx_cln_debug_pub.Add('Init Position:' || l_ini_pos, 1);
104: END IF;
105:
106: IF (l_ini_pos > 0) THEN
107: l_fin_pos := dbms_lob.instr(l_xmlDoc, '>', l_ini_pos);

Line 112: ecx_cln_debug_pub.Add('Final Position:' || l_fin_pos, 1);

108: l_fin_pos := l_fin_pos + 1;
109: l_amount := dbms_lob.getlength(l_xmlDoc);
110:
111: IF (l_Debug_Level <= 2) THEN
112: ecx_cln_debug_pub.Add('Final Position:' || l_fin_pos, 1);
113: ecx_cln_debug_pub.Add('Length:' || l_amount, 1);
114: END IF;
115:
116: DBMS_LOB.CREATETEMPORARY(l_payload, TRUE, DBMS_LOB.SESSION);

Line 113: ecx_cln_debug_pub.Add('Length:' || l_amount, 1);

109: l_amount := dbms_lob.getlength(l_xmlDoc);
110:
111: IF (l_Debug_Level <= 2) THEN
112: ecx_cln_debug_pub.Add('Final Position:' || l_fin_pos, 1);
113: ecx_cln_debug_pub.Add('Length:' || l_amount, 1);
114: END IF;
115:
116: DBMS_LOB.CREATETEMPORARY(l_payload, TRUE, DBMS_LOB.SESSION);
117:

Line 141: ecx_cln_debug_pub.Add('About to get values of child elements of DATETIME', 1);

137: l_nodeList := Xmldom.getElementsByTagName(l_element, 'DATETIME');
138: l_element := xmldom.makeElement(xmldom.item( l_nodeList, 0 ));
139:
140: IF (l_Debug_Level <= 1) THEN
141: ecx_cln_debug_pub.Add('About to get values of child elements of DATETIME', 1);
142: END IF;
143: l_year := GET_CHILD_ELEMENT_VALUE(l_element,'YEAR');
144: IF (l_Debug_Level <= 1) THEN
145: ecx_cln_debug_pub.Add('l_year : ' || l_year , 1);

Line 145: ecx_cln_debug_pub.Add('l_year : ' || l_year , 1);

141: ecx_cln_debug_pub.Add('About to get values of child elements of DATETIME', 1);
142: END IF;
143: l_year := GET_CHILD_ELEMENT_VALUE(l_element,'YEAR');
144: IF (l_Debug_Level <= 1) THEN
145: ecx_cln_debug_pub.Add('l_year : ' || l_year , 1);
146: END IF;
147: l_month := GET_CHILD_ELEMENT_VALUE(l_element,'MONTH');
148: IF (l_Debug_Level <= 1) THEN
149: ecx_cln_debug_pub.Add('l_month : ' || l_month , 1);

Line 149: ecx_cln_debug_pub.Add('l_month : ' || l_month , 1);

145: ecx_cln_debug_pub.Add('l_year : ' || l_year , 1);
146: END IF;
147: l_month := GET_CHILD_ELEMENT_VALUE(l_element,'MONTH');
148: IF (l_Debug_Level <= 1) THEN
149: ecx_cln_debug_pub.Add('l_month : ' || l_month , 1);
150: END IF;
151: l_day := GET_CHILD_ELEMENT_VALUE(l_element,'DAY');
152: IF (l_Debug_Level <= 1) THEN
153: ecx_cln_debug_pub.Add('l_day : ' || l_day , 1);

Line 153: ecx_cln_debug_pub.Add('l_day : ' || l_day , 1);

149: ecx_cln_debug_pub.Add('l_month : ' || l_month , 1);
150: END IF;
151: l_day := GET_CHILD_ELEMENT_VALUE(l_element,'DAY');
152: IF (l_Debug_Level <= 1) THEN
153: ecx_cln_debug_pub.Add('l_day : ' || l_day , 1);
154: END IF;
155: l_hour := GET_CHILD_ELEMENT_VALUE(l_element,'HOUR');
156: IF (l_Debug_Level <= 1) THEN
157: ecx_cln_debug_pub.Add('l_hour : ' || l_hour , 1);

Line 157: ecx_cln_debug_pub.Add('l_hour : ' || l_hour , 1);

153: ecx_cln_debug_pub.Add('l_day : ' || l_day , 1);
154: END IF;
155: l_hour := GET_CHILD_ELEMENT_VALUE(l_element,'HOUR');
156: IF (l_Debug_Level <= 1) THEN
157: ecx_cln_debug_pub.Add('l_hour : ' || l_hour , 1);
158: END IF;
159: l_minute := GET_CHILD_ELEMENT_VALUE(l_element,'MINUTE');
160: IF (l_Debug_Level <= 1) THEN
161: ecx_cln_debug_pub.Add('l_minute : ' || l_minute , 1);

Line 161: ecx_cln_debug_pub.Add('l_minute : ' || l_minute , 1);

157: ecx_cln_debug_pub.Add('l_hour : ' || l_hour , 1);
158: END IF;
159: l_minute := GET_CHILD_ELEMENT_VALUE(l_element,'MINUTE');
160: IF (l_Debug_Level <= 1) THEN
161: ecx_cln_debug_pub.Add('l_minute : ' || l_minute , 1);
162: END IF;
163: l_second := GET_CHILD_ELEMENT_VALUE(l_element,'SECOND');
164: IF (l_Debug_Level <= 1) THEN
165: ecx_cln_debug_pub.Add('l_second : ' || l_second , 1);

Line 165: ecx_cln_debug_pub.Add('l_second : ' || l_second , 1);

161: ecx_cln_debug_pub.Add('l_minute : ' || l_minute , 1);
162: END IF;
163: l_second := GET_CHILD_ELEMENT_VALUE(l_element,'SECOND');
164: IF (l_Debug_Level <= 1) THEN
165: ecx_cln_debug_pub.Add('l_second : ' || l_second , 1);
166: END IF;
167: x_doc_creation_date := to_date(l_year ||'-'||
168: l_month ||'-'||
169: l_day ||'-'||

Line 175: ecx_cln_debug_pub.Add('Date before conversion : ' || to_char(x_doc_creation_date,'yyyy-mm-dd-hh24-mi-ss'), 1);

171: l_minute ||'-'||
172: l_second,
173: 'yyyy-mm-dd-hh24-mi-ss');
174: IF (l_Debug_Level <= 1) THEN
175: ecx_cln_debug_pub.Add('Date before conversion : ' || to_char(x_doc_creation_date,'yyyy-mm-dd-hh24-mi-ss'), 1);
176: END IF;
177: l_timezone_string := GET_CHILD_ELEMENT_VALUE(l_element,'TIMEZONE');
178: IF (l_Debug_Level <= 1) THEN
179: ecx_cln_debug_pub.Add('l_timezone_string : ' || l_timezone_string , 1);

Line 179: ecx_cln_debug_pub.Add('l_timezone_string : ' || l_timezone_string , 1);

175: ecx_cln_debug_pub.Add('Date before conversion : ' || to_char(x_doc_creation_date,'yyyy-mm-dd-hh24-mi-ss'), 1);
176: END IF;
177: l_timezone_string := GET_CHILD_ELEMENT_VALUE(l_element,'TIMEZONE');
178: IF (l_Debug_Level <= 1) THEN
179: ecx_cln_debug_pub.Add('l_timezone_string : ' || l_timezone_string , 1);
180: END IF;
181: l_timezone_num := to_number(l_timezone_string);
182: x_doc_creation_date := x_doc_creation_date - trunc(l_timezone_num/100)/24 - mod(l_timezone_num,100)/1440;
183: IF (l_Debug_Level <= 1) THEN

Line 184: ecx_cln_debug_pub.Add('Date after conversion : ' || to_char(x_doc_creation_date,'yyyy-mm-dd-hh24-mi-ss'), 1);

180: END IF;
181: l_timezone_num := to_number(l_timezone_string);
182: x_doc_creation_date := x_doc_creation_date - trunc(l_timezone_num/100)/24 - mod(l_timezone_num,100)/1440;
183: IF (l_Debug_Level <= 1) THEN
184: ecx_cln_debug_pub.Add('Date after conversion : ' || to_char(x_doc_creation_date,'yyyy-mm-dd-hh24-mi-ss'), 1);
185: ecx_cln_debug_pub.Add('Server Time Zone : ' || FND_TIMEZONES.GET_SERVER_TIMEZONE_CODE, 1);
186: END IF;
187:
188: x_doc_creation_date := fnd_timezones_pvt.adjust_datetime(x_doc_creation_date,'GMT',FND_TIMEZONES.GET_SERVER_TIMEZONE_CODE);

Line 185: ecx_cln_debug_pub.Add('Server Time Zone : ' || FND_TIMEZONES.GET_SERVER_TIMEZONE_CODE, 1);

181: l_timezone_num := to_number(l_timezone_string);
182: x_doc_creation_date := x_doc_creation_date - trunc(l_timezone_num/100)/24 - mod(l_timezone_num,100)/1440;
183: IF (l_Debug_Level <= 1) THEN
184: ecx_cln_debug_pub.Add('Date after conversion : ' || to_char(x_doc_creation_date,'yyyy-mm-dd-hh24-mi-ss'), 1);
185: ecx_cln_debug_pub.Add('Server Time Zone : ' || FND_TIMEZONES.GET_SERVER_TIMEZONE_CODE, 1);
186: END IF;
187:
188: x_doc_creation_date := fnd_timezones_pvt.adjust_datetime(x_doc_creation_date,'GMT',FND_TIMEZONES.GET_SERVER_TIMEZONE_CODE);
189: IF (l_Debug_Level <= 1) THEN

Line 190: ecx_cln_debug_pub.Add('Date after converting to server Time Zone : ' || to_char(x_doc_creation_date,'yyyy-mm-dd-hh24-mi-ss'), 1);

186: END IF;
187:
188: x_doc_creation_date := fnd_timezones_pvt.adjust_datetime(x_doc_creation_date,'GMT',FND_TIMEZONES.GET_SERVER_TIMEZONE_CODE);
189: IF (l_Debug_Level <= 1) THEN
190: ecx_cln_debug_pub.Add('Date after converting to server Time Zone : ' || to_char(x_doc_creation_date,'yyyy-mm-dd-hh24-mi-ss'), 1);
191: END IF;
192: EXCEPTION
193: WHEN OTHERS THEN
194: x_doc_creation_date := NULL;

Line 203: ecx_cln_debug_pub.Add('Document Creation Date:' || x_doc_creation_date,1);

199: END IF;
200: xmlparser.freeparser(l_parser);
201:
202: IF (l_Debug_Level <= 5) THEN
203: ecx_cln_debug_pub.Add('Document Creation Date:' || x_doc_creation_date,1);
204: END IF;
205: IF (l_Debug_Level <= 2) THEN
206: ecx_cln_debug_pub.Add('EXITING GET_DOCUMENT_CREATION_DATE', 2);
207: END IF;

Line 206: ecx_cln_debug_pub.Add('EXITING GET_DOCUMENT_CREATION_DATE', 2);

202: IF (l_Debug_Level <= 5) THEN
203: ecx_cln_debug_pub.Add('Document Creation Date:' || x_doc_creation_date,1);
204: END IF;
205: IF (l_Debug_Level <= 2) THEN
206: ecx_cln_debug_pub.Add('EXITING GET_DOCUMENT_CREATION_DATE', 2);
207: END IF;
208: EXCEPTION
209: WHEN OTHERS THEN
210: l_error_code := SQLCODE;

Line 214: ecx_cln_debug_pub.Add(l_msg_data,6);

210: l_error_code := SQLCODE;
211: l_error_msg := SQLERRM;
212: l_msg_data := l_error_code||' : '||l_error_msg;
213: IF (l_Debug_Level <= 5) THEN
214: ecx_cln_debug_pub.Add(l_msg_data,6);
215: ecx_cln_debug_pub.Add('EXITING GET_APP_REFID', 1);
216: END IF;
217: x_doc_creation_date := NULL;
218: END GET_DOCUMENT_CREATION_DATE;

Line 215: ecx_cln_debug_pub.Add('EXITING GET_APP_REFID', 1);

211: l_error_msg := SQLERRM;
212: l_msg_data := l_error_code||' : '||l_error_msg;
213: IF (l_Debug_Level <= 5) THEN
214: ecx_cln_debug_pub.Add(l_msg_data,6);
215: ecx_cln_debug_pub.Add('EXITING GET_APP_REFID', 1);
216: END IF;
217: x_doc_creation_date := NULL;
218: END GET_DOCUMENT_CREATION_DATE;
219:

Line 259: ecx_cln_debug_pub.Add('-----------ENTERING GET_APP_REFID-----------', 2);

255: l_fin_pos NUMBER(38);
256: l_amount INTEGER;
257: BEGIN
258: IF (l_Debug_Level <= 2) THEN
259: ecx_cln_debug_pub.Add('-----------ENTERING GET_APP_REFID-----------', 2);
260: END IF;
261: IF (l_Debug_Level <= 2) THEN
262: ecx_cln_debug_pub.Add('WITH PARAMETERS', 1);
263: ecx_cln_debug_pub.Add('p_msgId:' || p_msgId, 1);

Line 262: ecx_cln_debug_pub.Add('WITH PARAMETERS', 1);

258: IF (l_Debug_Level <= 2) THEN
259: ecx_cln_debug_pub.Add('-----------ENTERING GET_APP_REFID-----------', 2);
260: END IF;
261: IF (l_Debug_Level <= 2) THEN
262: ecx_cln_debug_pub.Add('WITH PARAMETERS', 1);
263: ecx_cln_debug_pub.Add('p_msgId:' || p_msgId, 1);
264: ecx_cln_debug_pub.Add('p_collaboration_standard:' || p_collaboration_standard, 1);
265: ecx_cln_debug_pub.Add('p_app_id:' || p_app_id, 1);
266: ecx_cln_debug_pub.Add('p_coll_type:' || p_coll_type, 1);

Line 263: ecx_cln_debug_pub.Add('p_msgId:' || p_msgId, 1);

259: ecx_cln_debug_pub.Add('-----------ENTERING GET_APP_REFID-----------', 2);
260: END IF;
261: IF (l_Debug_Level <= 2) THEN
262: ecx_cln_debug_pub.Add('WITH PARAMETERS', 1);
263: ecx_cln_debug_pub.Add('p_msgId:' || p_msgId, 1);
264: ecx_cln_debug_pub.Add('p_collaboration_standard:' || p_collaboration_standard, 1);
265: ecx_cln_debug_pub.Add('p_app_id:' || p_app_id, 1);
266: ecx_cln_debug_pub.Add('p_coll_type:' || p_coll_type, 1);
267: END IF;

Line 264: ecx_cln_debug_pub.Add('p_collaboration_standard:' || p_collaboration_standard, 1);

260: END IF;
261: IF (l_Debug_Level <= 2) THEN
262: ecx_cln_debug_pub.Add('WITH PARAMETERS', 1);
263: ecx_cln_debug_pub.Add('p_msgId:' || p_msgId, 1);
264: ecx_cln_debug_pub.Add('p_collaboration_standard:' || p_collaboration_standard, 1);
265: ecx_cln_debug_pub.Add('p_app_id:' || p_app_id, 1);
266: ecx_cln_debug_pub.Add('p_coll_type:' || p_coll_type, 1);
267: END IF;
268:

Line 265: ecx_cln_debug_pub.Add('p_app_id:' || p_app_id, 1);

261: IF (l_Debug_Level <= 2) THEN
262: ecx_cln_debug_pub.Add('WITH PARAMETERS', 1);
263: ecx_cln_debug_pub.Add('p_msgId:' || p_msgId, 1);
264: ecx_cln_debug_pub.Add('p_collaboration_standard:' || p_collaboration_standard, 1);
265: ecx_cln_debug_pub.Add('p_app_id:' || p_app_id, 1);
266: ecx_cln_debug_pub.Add('p_coll_type:' || p_coll_type, 1);
267: END IF;
268:
269: IF p_collaboration_standard is NULL THEN

Line 266: ecx_cln_debug_pub.Add('p_coll_type:' || p_coll_type, 1);

262: ecx_cln_debug_pub.Add('WITH PARAMETERS', 1);
263: ecx_cln_debug_pub.Add('p_msgId:' || p_msgId, 1);
264: ecx_cln_debug_pub.Add('p_collaboration_standard:' || p_collaboration_standard, 1);
265: ecx_cln_debug_pub.Add('p_app_id:' || p_app_id, 1);
266: ecx_cln_debug_pub.Add('p_coll_type:' || p_coll_type, 1);
267: END IF;
268:
269: IF p_collaboration_standard is NULL THEN
270: IF (l_Debug_Level <= 2) THEN

Line 271: ecx_cln_debug_pub.Add('-----------EXITING GET_APP_REFID as collaboration standard is null-----------', 1);

267: END IF;
268:
269: IF p_collaboration_standard is NULL THEN
270: IF (l_Debug_Level <= 2) THEN
271: ecx_cln_debug_pub.Add('-----------EXITING GET_APP_REFID as collaboration standard is null-----------', 1);
272: END IF;
273: RETURN;
274: END IF;
275: x_app_ref_id := NULL;

Line 282: ecx_cln_debug_pub.Add('Init Position:' || l_ini_pos, 1);

278:
279: l_ini_pos := -1;
280: l_ini_pos := dbms_lob.instr(l_xmlDoc, '!DOCTYPE ');
281: IF (l_Debug_Level <= 2) THEN
282: ecx_cln_debug_pub.Add('Init Position:' || l_ini_pos, 1);
283: END IF;
284:
285: IF (l_ini_pos > 0) THEN
286: l_fin_pos := dbms_lob.instr(l_xmlDoc, '>', l_ini_pos);

Line 291: ecx_cln_debug_pub.Add('Final Position:' || l_fin_pos, 1);

287: l_fin_pos := l_fin_pos + 1;
288: l_amount := dbms_lob.getlength(l_xmlDoc);
289:
290: IF (l_Debug_Level <= 2) THEN
291: ecx_cln_debug_pub.Add('Final Position:' || l_fin_pos, 1);
292: ecx_cln_debug_pub.Add('Length:' || l_amount, 1);
293: END IF;
294:
295: DBMS_LOB.CREATETEMPORARY(l_payload, TRUE, DBMS_LOB.SESSION);

Line 292: ecx_cln_debug_pub.Add('Length:' || l_amount, 1);

288: l_amount := dbms_lob.getlength(l_xmlDoc);
289:
290: IF (l_Debug_Level <= 2) THEN
291: ecx_cln_debug_pub.Add('Final Position:' || l_fin_pos, 1);
292: ecx_cln_debug_pub.Add('Length:' || l_amount, 1);
293: END IF;
294:
295: DBMS_LOB.CREATETEMPORARY(l_payload, TRUE, DBMS_LOB.SESSION);
296:

Line 324: ecx_cln_debug_pub.Add('-----------EXITING GET_APP_REFID as the collaboration standard is not supported-----------', 1);

320: l_element := xmldom.makeElement(xmldom.item( l_nodeList, 0 ));
321: l_nodeList := Xmldom.getElementsByTagName(l_element, 'ProprietaryDocumentIdentifier');
322: ELSE
323: IF (l_Debug_Level <= 2) THEN
324: ecx_cln_debug_pub.Add('-----------EXITING GET_APP_REFID as the collaboration standard is not supported-----------', 1);
325: END IF;
326: RETURN;
327: END IF;
328: l_node := xmldom.item( l_nodeList, 0 );

Line 337: ecx_cln_debug_pub.Add(l_msg_data,6);

333: l_error_code := SQLCODE;
334: l_error_msg := SQLERRM;
335: l_msg_data := l_error_code||' : '||l_error_msg;
336: IF (l_Debug_Level <= 5) THEN
337: ecx_cln_debug_pub.Add(l_msg_data,6);
338: END IF;
339: x_app_ref_id := xmldom.getNodeValue(l_node);
340: IF(p_collaboration_standard = 'ROSETTANET' and p_app_id is not null and p_coll_type is not null and x_app_ref_id is not null) THEN
341: x_app_ref_id := p_app_id || p_coll_type || x_app_ref_id;

Line 356: ecx_cln_debug_pub.Add('Application Reference ID:' || x_app_ref_id,1);

352: END IF;
353: xmlparser.freeparser(l_parser);
354:
355: IF (l_Debug_Level <= 5) THEN
356: ecx_cln_debug_pub.Add('Application Reference ID:' || x_app_ref_id,1);
357: END IF;
358: IF (l_Debug_Level <= 2) THEN
359: ecx_cln_debug_pub.Add('EXITING GET_APP_REFID', 2);
360: END IF;

Line 359: ecx_cln_debug_pub.Add('EXITING GET_APP_REFID', 2);

355: IF (l_Debug_Level <= 5) THEN
356: ecx_cln_debug_pub.Add('Application Reference ID:' || x_app_ref_id,1);
357: END IF;
358: IF (l_Debug_Level <= 2) THEN
359: ecx_cln_debug_pub.Add('EXITING GET_APP_REFID', 2);
360: END IF;
361: EXCEPTION
362: WHEN OTHERS THEN
363: l_error_code := SQLCODE;

Line 367: ecx_cln_debug_pub.Add(l_msg_data,6);

363: l_error_code := SQLCODE;
364: l_error_msg := SQLERRM;
365: l_msg_data := l_error_code||' : '||l_error_msg;
366: IF (l_Debug_Level <= 5) THEN
367: ecx_cln_debug_pub.Add(l_msg_data,6);
368: ecx_cln_debug_pub.Add('EXITING GET_APP_REFID', 1);
369: END IF;
370: x_app_ref_id := NULL;
371: END GET_CONTROL_AREA_REFID;

Line 368: ecx_cln_debug_pub.Add('EXITING GET_APP_REFID', 1);

364: l_error_msg := SQLERRM;
365: l_msg_data := l_error_code||' : '||l_error_msg;
366: IF (l_Debug_Level <= 5) THEN
367: ecx_cln_debug_pub.Add(l_msg_data,6);
368: ecx_cln_debug_pub.Add('EXITING GET_APP_REFID', 1);
369: END IF;
370: x_app_ref_id := NULL;
371: END GET_CONTROL_AREA_REFID;
372:

Line 411: ecx_cln_debug_pub.Add('ENTERING GET_DATA_AREA_REFID', 2);

407: l_fin_pos NUMBER(38);
408: l_amount INTEGER;
409: BEGIN
410: IF (l_Debug_Level <= 2) THEN
411: ecx_cln_debug_pub.Add('ENTERING GET_DATA_AREA_REFID', 2);
412: END IF;
413: IF (l_Debug_Level <= 2) THEN
414: ecx_cln_debug_pub.Add('WITH PARAMETERS', 1);
415: ecx_cln_debug_pub.Add('p_msgId:' || p_msgId, 1);

Line 414: ecx_cln_debug_pub.Add('WITH PARAMETERS', 1);

410: IF (l_Debug_Level <= 2) THEN
411: ecx_cln_debug_pub.Add('ENTERING GET_DATA_AREA_REFID', 2);
412: END IF;
413: IF (l_Debug_Level <= 2) THEN
414: ecx_cln_debug_pub.Add('WITH PARAMETERS', 1);
415: ecx_cln_debug_pub.Add('p_msgId:' || p_msgId, 1);
416: ecx_cln_debug_pub.Add('p_collaboration_standard:' || p_collaboration_standard, 1);
417: ecx_cln_debug_pub.Add('p_app_id:' || p_app_id, 1);
418: ecx_cln_debug_pub.Add('p_coll_type:' || p_coll_type, 1);

Line 415: ecx_cln_debug_pub.Add('p_msgId:' || p_msgId, 1);

411: ecx_cln_debug_pub.Add('ENTERING GET_DATA_AREA_REFID', 2);
412: END IF;
413: IF (l_Debug_Level <= 2) THEN
414: ecx_cln_debug_pub.Add('WITH PARAMETERS', 1);
415: ecx_cln_debug_pub.Add('p_msgId:' || p_msgId, 1);
416: ecx_cln_debug_pub.Add('p_collaboration_standard:' || p_collaboration_standard, 1);
417: ecx_cln_debug_pub.Add('p_app_id:' || p_app_id, 1);
418: ecx_cln_debug_pub.Add('p_coll_type:' || p_coll_type, 1);
419: END IF;

Line 416: ecx_cln_debug_pub.Add('p_collaboration_standard:' || p_collaboration_standard, 1);

412: END IF;
413: IF (l_Debug_Level <= 2) THEN
414: ecx_cln_debug_pub.Add('WITH PARAMETERS', 1);
415: ecx_cln_debug_pub.Add('p_msgId:' || p_msgId, 1);
416: ecx_cln_debug_pub.Add('p_collaboration_standard:' || p_collaboration_standard, 1);
417: ecx_cln_debug_pub.Add('p_app_id:' || p_app_id, 1);
418: ecx_cln_debug_pub.Add('p_coll_type:' || p_coll_type, 1);
419: END IF;
420:

Line 417: ecx_cln_debug_pub.Add('p_app_id:' || p_app_id, 1);

413: IF (l_Debug_Level <= 2) THEN
414: ecx_cln_debug_pub.Add('WITH PARAMETERS', 1);
415: ecx_cln_debug_pub.Add('p_msgId:' || p_msgId, 1);
416: ecx_cln_debug_pub.Add('p_collaboration_standard:' || p_collaboration_standard, 1);
417: ecx_cln_debug_pub.Add('p_app_id:' || p_app_id, 1);
418: ecx_cln_debug_pub.Add('p_coll_type:' || p_coll_type, 1);
419: END IF;
420:
421: IF p_collaboration_standard is NULL THEN

Line 418: ecx_cln_debug_pub.Add('p_coll_type:' || p_coll_type, 1);

414: ecx_cln_debug_pub.Add('WITH PARAMETERS', 1);
415: ecx_cln_debug_pub.Add('p_msgId:' || p_msgId, 1);
416: ecx_cln_debug_pub.Add('p_collaboration_standard:' || p_collaboration_standard, 1);
417: ecx_cln_debug_pub.Add('p_app_id:' || p_app_id, 1);
418: ecx_cln_debug_pub.Add('p_coll_type:' || p_coll_type, 1);
419: END IF;
420:
421: IF p_collaboration_standard is NULL THEN
422: IF (l_Debug_Level <= 2) THEN

Line 423: ecx_cln_debug_pub.Add('-----------EXITING GET_APP_REFID as collaboration standard is null-----------', 1);

419: END IF;
420:
421: IF p_collaboration_standard is NULL THEN
422: IF (l_Debug_Level <= 2) THEN
423: ecx_cln_debug_pub.Add('-----------EXITING GET_APP_REFID as collaboration standard is null-----------', 1);
424: END IF;
425: RETURN;
426: END IF;
427:

Line 432: ecx_cln_debug_pub.Add('payload obtained', 1);

428: x_app_ref_id := NULL;
429:
430: SELECT payload into l_xmlDoc FROM ecx_doclogs WHERE msgid = HEXTORAW(p_msgId);
431: IF (l_Debug_Level <= 1) THEN
432: ecx_cln_debug_pub.Add('payload obtained', 1);
433: END IF;
434:
435: l_ini_pos := -1;
436: l_ini_pos := dbms_lob.instr(l_xmlDoc, '!DOCTYPE ');

Line 438: ecx_cln_debug_pub.Add('Init Position:' || l_ini_pos, 1);

434:
435: l_ini_pos := -1;
436: l_ini_pos := dbms_lob.instr(l_xmlDoc, '!DOCTYPE ');
437: IF (l_Debug_Level <= 1) THEN
438: ecx_cln_debug_pub.Add('Init Position:' || l_ini_pos, 1);
439: END IF;
440:
441: IF (l_ini_pos > 0) THEN
442: l_fin_pos := dbms_lob.instr(l_xmlDoc, '>', l_ini_pos);

Line 447: ecx_cln_debug_pub.Add('Final Position:' || l_fin_pos, 1);

443: l_fin_pos := l_fin_pos + 1;
444: l_amount := dbms_lob.getlength(l_xmlDoc);
445:
446: IF (l_Debug_Level <= 1) THEN
447: ecx_cln_debug_pub.Add('Final Position:' || l_fin_pos, 1);
448: ecx_cln_debug_pub.Add('Length:' || l_amount, 1);
449: END IF;
450:
451: DBMS_LOB.CREATETEMPORARY(l_payload, TRUE, DBMS_LOB.SESSION);

Line 448: ecx_cln_debug_pub.Add('Length:' || l_amount, 1);

444: l_amount := dbms_lob.getlength(l_xmlDoc);
445:
446: IF (l_Debug_Level <= 1) THEN
447: ecx_cln_debug_pub.Add('Final Position:' || l_fin_pos, 1);
448: ecx_cln_debug_pub.Add('Length:' || l_amount, 1);
449: END IF;
450:
451: DBMS_LOB.CREATETEMPORARY(l_payload, TRUE, DBMS_LOB.SESSION);
452:

Line 457: ecx_cln_debug_pub.Add('about to initialize parser', 1);

453: dbms_lob.copy(l_payload, l_xmlDoc, l_amount - l_fin_pos + 1, 1, l_fin_pos);
454:
455: END IF;
456: IF (l_Debug_Level <= 1) THEN
457: ecx_cln_debug_pub.Add('about to initialize parser', 1);
458: END IF;
459:
460: l_parser := xmlparser.newparser;
461: xmlparser.setValidationMode(l_parser,FALSE);

Line 464: ecx_cln_debug_pub.Add('parser initialized', 1);

460: l_parser := xmlparser.newparser;
461: xmlparser.setValidationMode(l_parser,FALSE);
462: xmlparser.showWarnings(l_parser,FALSE);
463: IF (l_Debug_Level <= 1) THEN
464: ecx_cln_debug_pub.Add('parser initialized', 1);
465: END IF;
466:
467: BEGIN
468:

Line 475: ecx_cln_debug_pub.Add('xml doc parsed', 1);

471: ELSE
472: xmlparser.parseClob(l_parser,l_xmlDoc);
473: END IF;
474: IF (l_Debug_Level <= 1) THEN
475: ecx_cln_debug_pub.Add('xml doc parsed', 1);
476: END IF;
477:
478: l_domDoc := xmlparser.getDocument(l_parser);
479: IF (l_Debug_Level <= 1) THEN

Line 480: ecx_cln_debug_pub.Add('dom doc obtained', 1);

476: END IF;
477:
478: l_domDoc := xmlparser.getDocument(l_parser);
479: IF (l_Debug_Level <= 1) THEN
480: ecx_cln_debug_pub.Add('dom doc obtained', 1);
481: END IF;
482: IF(p_collaboration_standard = 'OAG') THEN
483: l_nodeList := Xmldom.getElementsByTagName(l_domDoc, 'DATAAREA');
484: IF (l_Debug_Level <= 1) THEN

Line 485: ecx_cln_debug_pub.Add('IN OAG, data area found', 1);

481: END IF;
482: IF(p_collaboration_standard = 'OAG') THEN
483: l_nodeList := Xmldom.getElementsByTagName(l_domDoc, 'DATAAREA');
484: IF (l_Debug_Level <= 1) THEN
485: ecx_cln_debug_pub.Add('IN OAG, data area found', 1);
486: END IF;
487: l_element := xmldom.makeElement(xmldom.item( l_nodeList, 0 ));
488: IF (l_Debug_Level <= 1) THEN
489: ecx_cln_debug_pub.Add('data area element obtained', 1);

Line 489: ecx_cln_debug_pub.Add('data area element obtained', 1);

485: ecx_cln_debug_pub.Add('IN OAG, data area found', 1);
486: END IF;
487: l_element := xmldom.makeElement(xmldom.item( l_nodeList, 0 ));
488: IF (l_Debug_Level <= 1) THEN
489: ecx_cln_debug_pub.Add('data area element obtained', 1);
490: END IF;
491: l_nodeList := Xmldom.getElementsByTagName(l_element, 'REFERENCEID');
492: IF (l_Debug_Level <= 1) THEN
493: ecx_cln_debug_pub.Add('Reference id element obtained', 1);

Line 493: ecx_cln_debug_pub.Add('Reference id element obtained', 1);

489: ecx_cln_debug_pub.Add('data area element obtained', 1);
490: END IF;
491: l_nodeList := Xmldom.getElementsByTagName(l_element, 'REFERENCEID');
492: IF (l_Debug_Level <= 1) THEN
493: ecx_cln_debug_pub.Add('Reference id element obtained', 1);
494: END IF;
495: ELSIF (p_collaboration_standard = 'ROSETTANET') THEN
496: l_nodeList := Xmldom.getElementsByTagName(l_domDoc, 'requestingDocumentIdentifier');
497: l_element := xmldom.makeElement(xmldom.item( l_nodeList, 0 ));

Line 501: ecx_cln_debug_pub.Add('-----------EXITING GET_APP_REFID as the collaboration standard is not supported-----------', 1);

497: l_element := xmldom.makeElement(xmldom.item( l_nodeList, 0 ));
498: l_nodeList := Xmldom.getElementsByTagName(l_element, 'ProprietaryDocumentIdentifier');
499: ELSE
500: IF (l_Debug_Level <= 2) THEN
501: ecx_cln_debug_pub.Add('-----------EXITING GET_APP_REFID as the collaboration standard is not supported-----------', 1);
502: END IF;
503: RETURN;
504: END IF;
505:

Line 512: ecx_cln_debug_pub.Add('about to obtain the value from the node, as node is not null', 1);

508: l_node := xmldom.getFirstChild(l_node);
509:
510: IF NOT xmldom.IsNull(l_node) THEN
511: IF (l_Debug_Level <= 1) THEN
512: ecx_cln_debug_pub.Add('about to obtain the value from the node, as node is not null', 1);
513: END IF;
514: x_app_ref_id := xmldom.getNodeValue(l_node);
515: IF (l_Debug_Level <= 1) THEN
516: ecx_cln_debug_pub.Add('x_app_ref_id:' || x_app_ref_id, 1);

Line 516: ecx_cln_debug_pub.Add('x_app_ref_id:' || x_app_ref_id, 1);

512: ecx_cln_debug_pub.Add('about to obtain the value from the node, as node is not null', 1);
513: END IF;
514: x_app_ref_id := xmldom.getNodeValue(l_node);
515: IF (l_Debug_Level <= 1) THEN
516: ecx_cln_debug_pub.Add('x_app_ref_id:' || x_app_ref_id, 1);
517: END IF;
518: IF(p_collaboration_standard = 'ROSETTANET' and p_app_id is not null and p_coll_type is not null and x_app_ref_id is not null) THEN
519: x_app_ref_id := p_app_id || p_coll_type || x_app_ref_id;
520: END IF;

Line 522: ecx_cln_debug_pub.Add('x_app_ref_id:' || x_app_ref_id, 1);

518: IF(p_collaboration_standard = 'ROSETTANET' and p_app_id is not null and p_coll_type is not null and x_app_ref_id is not null) THEN
519: x_app_ref_id := p_app_id || p_coll_type || x_app_ref_id;
520: END IF;
521: IF (l_Debug_Level <= 1) THEN
522: ecx_cln_debug_pub.Add('x_app_ref_id:' || x_app_ref_id, 1);
523: END IF;
524: END IF;
525:
526: EXCEPTION

Line 529: ecx_cln_debug_pub.Add('In when others. so setting appref id to null', 1);

525:
526: EXCEPTION
527: WHEN OTHERS THEN
528: IF (l_Debug_Level <= 1) THEN
529: ecx_cln_debug_pub.Add('In when others. so setting appref id to null', 1);
530: END IF;
531: x_app_ref_id := NULL;
532: END;
533:

Line 540: ecx_cln_debug_pub.Add('Application Reference ID:' || x_app_ref_id,1);

536: END IF;
537: xmlparser.freeparser(l_parser);
538:
539: IF (l_Debug_Level <= 1) THEN
540: ecx_cln_debug_pub.Add('Application Reference ID:' || x_app_ref_id,1);
541: END IF;
542: IF (l_Debug_Level <= 2) THEN
543: ecx_cln_debug_pub.Add('EXITING GET_DATA_AREA_REFID', 2);
544: END IF;

Line 543: ecx_cln_debug_pub.Add('EXITING GET_DATA_AREA_REFID', 2);

539: IF (l_Debug_Level <= 1) THEN
540: ecx_cln_debug_pub.Add('Application Reference ID:' || x_app_ref_id,1);
541: END IF;
542: IF (l_Debug_Level <= 2) THEN
543: ecx_cln_debug_pub.Add('EXITING GET_DATA_AREA_REFID', 2);
544: END IF;
545: EXCEPTION
546: WHEN OTHERS THEN
547: l_error_code := SQLCODE;

Line 551: ecx_cln_debug_pub.Add(l_msg_data,6);

547: l_error_code := SQLCODE;
548: l_error_msg := SQLERRM;
549: l_msg_data := l_error_code||' : '||l_error_msg;
550: IF (l_Debug_Level <= 5) THEN
551: ecx_cln_debug_pub.Add(l_msg_data,6);
552: ecx_cln_debug_pub.Add('EXITING GET_DATA_AREA_REFID', 1);
553: END IF;
554: x_app_ref_id := NULL;
555: END GET_DATA_AREA_REFID;

Line 552: ecx_cln_debug_pub.Add('EXITING GET_DATA_AREA_REFID', 1);

548: l_error_msg := SQLERRM;
549: l_msg_data := l_error_code||' : '||l_error_msg;
550: IF (l_Debug_Level <= 5) THEN
551: ecx_cln_debug_pub.Add(l_msg_data,6);
552: ecx_cln_debug_pub.Add('EXITING GET_DATA_AREA_REFID', 1);
553: END IF;
554: x_app_ref_id := NULL;
555: END GET_DATA_AREA_REFID;
556:

Line 592: ecx_cln_debug_pub.Add('-----------Entering VALIDATE_PARAMS API---- ',2);

588:
589: BEGIN
590:
591: IF (l_Debug_Level <= 2) THEN
592: ecx_cln_debug_pub.Add('-----------Entering VALIDATE_PARAMS API---- ',2);
593: END IF;
594:
595:
596: -- Initialize API return status to success

Line 600: ecx_cln_debug_pub.Add('------------Parameters Received-------------',1);

596: -- Initialize API return status to success
597: x_return_status := FND_API.G_RET_STS_SUCCESS;
598:
599: IF (l_Debug_Level <= 1) THEN
600: ecx_cln_debug_pub.Add('------------Parameters Received-------------',1);
601: ecx_cln_debug_pub.Add('APPLCATION ID ----- >>>'||p_app_id,1);
602: ecx_cln_debug_pub.Add('DOC DIRECTION ----- >>>'||p_doc_dir,1);
603: ecx_cln_debug_pub.Add('DOC TYPE ----- >>>'||p_doc_type,1);
604: ecx_cln_debug_pub.Add('COLL STATUS ----- >>>'||p_coll_status,1);

Line 601: ecx_cln_debug_pub.Add('APPLCATION ID ----- >>>'||p_app_id,1);

597: x_return_status := FND_API.G_RET_STS_SUCCESS;
598:
599: IF (l_Debug_Level <= 1) THEN
600: ecx_cln_debug_pub.Add('------------Parameters Received-------------',1);
601: ecx_cln_debug_pub.Add('APPLCATION ID ----- >>>'||p_app_id,1);
602: ecx_cln_debug_pub.Add('DOC DIRECTION ----- >>>'||p_doc_dir,1);
603: ecx_cln_debug_pub.Add('DOC TYPE ----- >>>'||p_doc_type,1);
604: ecx_cln_debug_pub.Add('COLL STATUS ----- >>>'||p_coll_status,1);
605: ecx_cln_debug_pub.Add('COLL POINT ----- >>>'||p_coll_pt,1);

Line 602: ecx_cln_debug_pub.Add('DOC DIRECTION ----- >>>'||p_doc_dir,1);

598:
599: IF (l_Debug_Level <= 1) THEN
600: ecx_cln_debug_pub.Add('------------Parameters Received-------------',1);
601: ecx_cln_debug_pub.Add('APPLCATION ID ----- >>>'||p_app_id,1);
602: ecx_cln_debug_pub.Add('DOC DIRECTION ----- >>>'||p_doc_dir,1);
603: ecx_cln_debug_pub.Add('DOC TYPE ----- >>>'||p_doc_type,1);
604: ecx_cln_debug_pub.Add('COLL STATUS ----- >>>'||p_coll_status,1);
605: ecx_cln_debug_pub.Add('COLL POINT ----- >>>'||p_coll_pt,1);
606: ecx_cln_debug_pub.Add('COLL TYPE ----- >>>'||p_coll_type,1);

Line 603: ecx_cln_debug_pub.Add('DOC TYPE ----- >>>'||p_doc_type,1);

599: IF (l_Debug_Level <= 1) THEN
600: ecx_cln_debug_pub.Add('------------Parameters Received-------------',1);
601: ecx_cln_debug_pub.Add('APPLCATION ID ----- >>>'||p_app_id,1);
602: ecx_cln_debug_pub.Add('DOC DIRECTION ----- >>>'||p_doc_dir,1);
603: ecx_cln_debug_pub.Add('DOC TYPE ----- >>>'||p_doc_type,1);
604: ecx_cln_debug_pub.Add('COLL STATUS ----- >>>'||p_coll_status,1);
605: ecx_cln_debug_pub.Add('COLL POINT ----- >>>'||p_coll_pt,1);
606: ecx_cln_debug_pub.Add('COLL TYPE ----- >>>'||p_coll_type,1);
607: ecx_cln_debug_pub.Add('DOC STATUS ----- >>>'||p_doc_status,1);

Line 604: ecx_cln_debug_pub.Add('COLL STATUS ----- >>>'||p_coll_status,1);

600: ecx_cln_debug_pub.Add('------------Parameters Received-------------',1);
601: ecx_cln_debug_pub.Add('APPLCATION ID ----- >>>'||p_app_id,1);
602: ecx_cln_debug_pub.Add('DOC DIRECTION ----- >>>'||p_doc_dir,1);
603: ecx_cln_debug_pub.Add('DOC TYPE ----- >>>'||p_doc_type,1);
604: ecx_cln_debug_pub.Add('COLL STATUS ----- >>>'||p_coll_status,1);
605: ecx_cln_debug_pub.Add('COLL POINT ----- >>>'||p_coll_pt,1);
606: ecx_cln_debug_pub.Add('COLL TYPE ----- >>>'||p_coll_type,1);
607: ecx_cln_debug_pub.Add('DOC STATUS ----- >>>'||p_doc_status,1);
608: ecx_cln_debug_pub.Add('DISPOSITION ----- >>>'||p_disposition,1);

Line 605: ecx_cln_debug_pub.Add('COLL POINT ----- >>>'||p_coll_pt,1);

601: ecx_cln_debug_pub.Add('APPLCATION ID ----- >>>'||p_app_id,1);
602: ecx_cln_debug_pub.Add('DOC DIRECTION ----- >>>'||p_doc_dir,1);
603: ecx_cln_debug_pub.Add('DOC TYPE ----- >>>'||p_doc_type,1);
604: ecx_cln_debug_pub.Add('COLL STATUS ----- >>>'||p_coll_status,1);
605: ecx_cln_debug_pub.Add('COLL POINT ----- >>>'||p_coll_pt,1);
606: ecx_cln_debug_pub.Add('COLL TYPE ----- >>>'||p_coll_type,1);
607: ecx_cln_debug_pub.Add('DOC STATUS ----- >>>'||p_doc_status,1);
608: ecx_cln_debug_pub.Add('DISPOSITION ----- >>>'||p_disposition,1);
609: ecx_cln_debug_pub.Add('---------------------------------------------',1);

Line 606: ecx_cln_debug_pub.Add('COLL TYPE ----- >>>'||p_coll_type,1);

602: ecx_cln_debug_pub.Add('DOC DIRECTION ----- >>>'||p_doc_dir,1);
603: ecx_cln_debug_pub.Add('DOC TYPE ----- >>>'||p_doc_type,1);
604: ecx_cln_debug_pub.Add('COLL STATUS ----- >>>'||p_coll_status,1);
605: ecx_cln_debug_pub.Add('COLL POINT ----- >>>'||p_coll_pt,1);
606: ecx_cln_debug_pub.Add('COLL TYPE ----- >>>'||p_coll_type,1);
607: ecx_cln_debug_pub.Add('DOC STATUS ----- >>>'||p_doc_status,1);
608: ecx_cln_debug_pub.Add('DISPOSITION ----- >>>'||p_disposition,1);
609: ecx_cln_debug_pub.Add('---------------------------------------------',1);
610:

Line 607: ecx_cln_debug_pub.Add('DOC STATUS ----- >>>'||p_doc_status,1);

603: ecx_cln_debug_pub.Add('DOC TYPE ----- >>>'||p_doc_type,1);
604: ecx_cln_debug_pub.Add('COLL STATUS ----- >>>'||p_coll_status,1);
605: ecx_cln_debug_pub.Add('COLL POINT ----- >>>'||p_coll_pt,1);
606: ecx_cln_debug_pub.Add('COLL TYPE ----- >>>'||p_coll_type,1);
607: ecx_cln_debug_pub.Add('DOC STATUS ----- >>>'||p_doc_status,1);
608: ecx_cln_debug_pub.Add('DISPOSITION ----- >>>'||p_disposition,1);
609: ecx_cln_debug_pub.Add('---------------------------------------------',1);
610:
611:

Line 608: ecx_cln_debug_pub.Add('DISPOSITION ----- >>>'||p_disposition,1);

604: ecx_cln_debug_pub.Add('COLL STATUS ----- >>>'||p_coll_status,1);
605: ecx_cln_debug_pub.Add('COLL POINT ----- >>>'||p_coll_pt,1);
606: ecx_cln_debug_pub.Add('COLL TYPE ----- >>>'||p_coll_type,1);
607: ecx_cln_debug_pub.Add('DOC STATUS ----- >>>'||p_doc_status,1);
608: ecx_cln_debug_pub.Add('DISPOSITION ----- >>>'||p_disposition,1);
609: ecx_cln_debug_pub.Add('---------------------------------------------',1);
610:
611:
612:

Line 609: ecx_cln_debug_pub.Add('---------------------------------------------',1);

605: ecx_cln_debug_pub.Add('COLL POINT ----- >>>'||p_coll_pt,1);
606: ecx_cln_debug_pub.Add('COLL TYPE ----- >>>'||p_coll_type,1);
607: ecx_cln_debug_pub.Add('DOC STATUS ----- >>>'||p_doc_status,1);
608: ecx_cln_debug_pub.Add('DISPOSITION ----- >>>'||p_disposition,1);
609: ecx_cln_debug_pub.Add('---------------------------------------------',1);
610:
611:
612:
613: ecx_cln_debug_pub.Add('-------------Validating Parameters-----------',1);

Line 613: ecx_cln_debug_pub.Add('-------------Validating Parameters-----------',1);

609: ecx_cln_debug_pub.Add('---------------------------------------------',1);
610:
611:
612:
613: ecx_cln_debug_pub.Add('-------------Validating Parameters-----------',1);
614:
615: ecx_cln_debug_pub.Add('>>>Validating Application ID >>>',1);
616: END IF;
617: IF (p_app_id IS NOT NULL) THEN

Line 615: ecx_cln_debug_pub.Add('>>>Validating Application ID >>>',1);

611:
612:
613: ecx_cln_debug_pub.Add('-------------Validating Parameters-----------',1);
614:
615: ecx_cln_debug_pub.Add('>>>Validating Application ID >>>',1);
616: END IF;
617: IF (p_app_id IS NOT NULL) THEN
618: BEGIN
619: l_meaning := p_app_id;

Line 623: ecx_cln_debug_pub.Add('...........Application ID found as - '||l_meaning,1);

619: l_meaning := p_app_id;
620: SELECT meaning INTO l_meaning FROM fnd_lookups
621: WHERE lookup_code = p_app_id AND lookup_type = 'CLN_APPLICATION_ID';
622: IF (l_Debug_Level <= 1) THEN
623: ecx_cln_debug_pub.Add('...........Application ID found as - '||l_meaning,1);
624: END IF;
625: EXCEPTION
626: WHEN NO_DATA_FOUND THEN
627: l_param := 'Application ID';

Line 634: ecx_cln_debug_pub.Add('>>>Validating Document Direction >>>',1);

630: END IF;
631:
632:
633: IF (l_Debug_Level <= 1) THEN
634: ecx_cln_debug_pub.Add('>>>Validating Document Direction >>>',1);
635: END IF;
636: IF (p_doc_dir IS NOT NULL) THEN
637: BEGIN
638: l_meaning := p_doc_dir;

Line 642: ecx_cln_debug_pub.Add('...........Document Direction found as - '||l_meaning,1);

638: l_meaning := p_doc_dir;
639: SELECT meaning INTO l_meaning FROM fnd_lookups
640: WHERE lookup_code = p_doc_dir AND lookup_type = 'CLN_COLLABORATION_DOC_DIRECTN';
641: IF (l_Debug_Level <= 1) THEN
642: ecx_cln_debug_pub.Add('...........Document Direction found as - '||l_meaning,1);
643: END IF;
644: EXCEPTION
645: WHEN NO_DATA_FOUND THEN
646: l_param := 'Document Direction';

Line 653: ecx_cln_debug_pub.Add('>>>Validating Document Type >>>',1);

649: END IF;
650:
651:
652: IF (l_Debug_Level <= 1) THEN
653: ecx_cln_debug_pub.Add('>>>Validating Document Type >>>',1);
654: END IF;
655: IF (p_doc_type IS NOT NULL) THEN
656: BEGIN
657: l_meaning := p_doc_type;

Line 661: ecx_cln_debug_pub.Add('...........Document Type found as - '||l_meaning,1);

657: l_meaning := p_doc_type;
658: SELECT meaning INTO l_meaning FROM fnd_lookups
659: WHERE lookup_code = p_doc_type AND lookup_type = 'CLN_COLLABORATION_DOC_TYPE';
660: IF (l_Debug_Level <= 1) THEN
661: ecx_cln_debug_pub.Add('...........Document Type found as - '||l_meaning,1);
662: END IF;
663: EXCEPTION
664: WHEN NO_DATA_FOUND THEN
665: l_param := 'Document Type';

Line 672: ecx_cln_debug_pub.Add('>>>Validating Collaboration Status >>>',1);

668: END IF;
669:
670:
671: IF (l_Debug_Level <= 1) THEN
672: ecx_cln_debug_pub.Add('>>>Validating Collaboration Status >>>',1);
673: END IF;
674: IF (p_coll_status IS NOT NULL) THEN
675: BEGIN
676: l_meaning := p_coll_status;

Line 680: ecx_cln_debug_pub.Add('...........Collaboration Status found as - '||l_meaning,1);

676: l_meaning := p_coll_status;
677: SELECT meaning INTO l_meaning FROM fnd_lookups
678: WHERE lookup_code = p_coll_status AND lookup_type = 'CLN_COLLABORATION_STATUS';
679: IF (l_Debug_Level <= 1) THEN
680: ecx_cln_debug_pub.Add('...........Collaboration Status found as - '||l_meaning,1);
681: END IF;
682: EXCEPTION
683: WHEN NO_DATA_FOUND THEN
684: l_param := 'Collaboration Status';

Line 691: ecx_cln_debug_pub.Add('>>>Validating Collaboration Point >>>',1);

687: END IF;
688:
689:
690: IF (l_Debug_Level <= 1) THEN
691: ecx_cln_debug_pub.Add('>>>Validating Collaboration Point >>>',1);
692: END IF;
693: IF (p_coll_pt IS NOT NULL) THEN
694: BEGIN
695: l_meaning := p_coll_pt;

Line 699: ecx_cln_debug_pub.Add('...........Collaboration Point found as - '||l_meaning,1);

695: l_meaning := p_coll_pt;
696: SELECT meaning INTO l_meaning FROM fnd_lookups
697: WHERE lookup_code = p_coll_pt AND lookup_type = 'CLN_COLLABORATION_POINT';
698: IF (l_Debug_Level <= 1) THEN
699: ecx_cln_debug_pub.Add('...........Collaboration Point found as - '||l_meaning,1);
700: END IF;
701: EXCEPTION
702: WHEN NO_DATA_FOUND THEN
703: l_param := 'Collaboration Point';

Line 710: ecx_cln_debug_pub.Add('>>>Validating Collaboration Type >>>',1);

706: END IF;
707:
708:
709: IF (l_Debug_Level <= 1) THEN
710: ecx_cln_debug_pub.Add('>>>Validating Collaboration Type >>>',1);
711: END IF;
712: IF (p_coll_type IS NOT NULL) THEN
713: BEGIN
714: l_meaning := p_coll_type;

Line 718: ecx_cln_debug_pub.Add('...........Collaboration Type found as - '||l_meaning,1);

714: l_meaning := p_coll_type;
715: SELECT meaning INTO l_meaning FROM fnd_lookups
716: WHERE lookup_code = p_coll_type AND lookup_type = 'CLN_COLLABORATION_TYPE';
717: IF (l_Debug_Level <= 1) THEN
718: ecx_cln_debug_pub.Add('...........Collaboration Type found as - '||l_meaning,1);
719: END IF;
720: EXCEPTION
721: WHEN NO_DATA_FOUND THEN
722: l_param := 'Collaboration Type';

Line 729: ecx_cln_debug_pub.Add('>>>Validating Document Status >>>',1);

725: END IF;
726:
727:
728: IF (l_Debug_Level <= 1) THEN
729: ecx_cln_debug_pub.Add('>>>Validating Document Status >>>',1);
730: END IF;
731: IF (p_doc_status IS NOT NULL) THEN
732: BEGIN
733: l_meaning := p_doc_status;

Line 737: ecx_cln_debug_pub.Add('...........Collaboration Document Status found as - '||l_meaning,1);

733: l_meaning := p_doc_status;
734: SELECT meaning INTO l_meaning FROM fnd_lookups
735: WHERE lookup_code = p_doc_status AND lookup_type = 'CLN_COLLABORATION_DOC_STATUS';
736: IF (l_Debug_Level <= 1) THEN
737: ecx_cln_debug_pub.Add('...........Collaboration Document Status found as - '||l_meaning,1);
738: END IF;
739: EXCEPTION
740: WHEN NO_DATA_FOUND THEN
741: l_param := 'Collaboration Document Status';

Line 747: ecx_cln_debug_pub.Add('>>>Validating Disposition >>>',1);

743: END;
744: END IF;
745:
746: IF (l_Debug_Level <= 1) THEN
747: ecx_cln_debug_pub.Add('>>>Validating Disposition >>>',1);
748: END IF;
749: IF (p_disposition IS NOT NULL) THEN
750: BEGIN
751: l_meaning := p_disposition;

Line 755: ecx_cln_debug_pub.Add('...........Disposition found as - '||l_meaning,1);

751: l_meaning := p_disposition;
752: SELECT meaning INTO l_meaning FROM fnd_lookups
753: WHERE lookup_code = p_disposition AND lookup_type = 'CLN_DISPOSITION';
754: IF (l_Debug_Level <= 1) THEN
755: ecx_cln_debug_pub.Add('...........Disposition found as - '||l_meaning,1);
756: END IF;
757: EXCEPTION
758: WHEN NO_DATA_FOUND THEN
759: l_param := 'Disposition';

Line 769: ecx_cln_debug_pub.Add('Successfully validated all parameters passed',1);

765: FND_MESSAGE.SET_NAME('CLN','CLN_CH_VALIDATION_SUCCESS');
766: x_msg_data := FND_MESSAGE.GET;
767:
768: IF (l_Debug_Level <= 1) THEN
769: ecx_cln_debug_pub.Add('Successfully validated all parameters passed',1);
770: END IF;
771: IF (l_Debug_Level <= 2) THEN
772: ecx_cln_debug_pub.Add('-------- Exiting VALIDATE_PARAMS API ----- ',2);
773: END IF;

Line 772: ecx_cln_debug_pub.Add('-------- Exiting VALIDATE_PARAMS API ----- ',2);

768: IF (l_Debug_Level <= 1) THEN
769: ecx_cln_debug_pub.Add('Successfully validated all parameters passed',1);
770: END IF;
771: IF (l_Debug_Level <= 2) THEN
772: ecx_cln_debug_pub.Add('-------- Exiting VALIDATE_PARAMS API ----- ',2);
773: END IF;
774:
775: -- Exception Handling
776: EXCEPTION

Line 784: ecx_cln_debug_pub.Add(l_param||' is irrelevant -'||l_meaning,4);

780: FND_MESSAGE.SET_TOKEN('PARAM',l_param);
781: FND_MESSAGE.SET_TOKEN('VALUE',l_meaning);
782: x_msg_data := FND_MESSAGE.GET;
783: IF (l_Debug_Level <= 5) THEN
784: ecx_cln_debug_pub.Add(l_param||' is irrelevant -'||l_meaning,4);
785: ecx_cln_debug_pub.Add('-------- Exiting VALIDATE_PARAMS API ----- ',2);
786: END IF;
787:
788:

Line 785: ecx_cln_debug_pub.Add('-------- Exiting VALIDATE_PARAMS API ----- ',2);

781: FND_MESSAGE.SET_TOKEN('VALUE',l_meaning);
782: x_msg_data := FND_MESSAGE.GET;
783: IF (l_Debug_Level <= 5) THEN
784: ecx_cln_debug_pub.Add(l_param||' is irrelevant -'||l_meaning,4);
785: ecx_cln_debug_pub.Add('-------- Exiting VALIDATE_PARAMS API ----- ',2);
786: END IF;
787:
788:
789: WHEN OTHERS THEN

Line 795: ecx_cln_debug_pub.Add(x_msg_data,6);

791: l_error_msg :=SQLERRM;
792: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
793: x_msg_data :=l_error_code||' : '||l_error_msg;
794: IF (l_Debug_Level <= 5) THEN
795: ecx_cln_debug_pub.Add(x_msg_data,6);
796: ecx_cln_debug_pub.Add('-------- Exiting VALIDATE_PARAMS API ----- ',2);
797: END IF;
798:
799:

Line 796: ecx_cln_debug_pub.Add('-------- Exiting VALIDATE_PARAMS API ----- ',2);

792: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
793: x_msg_data :=l_error_code||' : '||l_error_msg;
794: IF (l_Debug_Level <= 5) THEN
795: ecx_cln_debug_pub.Add(x_msg_data,6);
796: ecx_cln_debug_pub.Add('-------- Exiting VALIDATE_PARAMS API ----- ',2);
797: END IF;
798:
799:
800: END VALIDATE_PARAMS;

Line 846: ecx_cln_debug_pub.Add('------- Entering UPDATE_COLLABORATION_INIT API -------- ',2);

842: BEGIN
843:
844:
845: IF (l_Debug_Level <= 2) THEN
846: ecx_cln_debug_pub.Add('------- Entering UPDATE_COLLABORATION_INIT API -------- ',2);
847: END IF;
848:
849:
850: -- Initialize API return status to success

Line 854: ecx_cln_debug_pub.Add('------------Parameters Received-------------',1);

850: -- Initialize API return status to success
851: x_return_status := FND_API.G_RET_STS_SUCCESS;
852:
853: IF (l_Debug_Level <= 1) THEN
854: ecx_cln_debug_pub.Add('------------Parameters Received-------------',1);
855: ecx_cln_debug_pub.Add('COLLABORATION ID ----- >>>'||p_coll_id,1);
856: ecx_cln_debug_pub.Add('DOC TYPE ----- >>>'||p_doc_type,1);
857: ecx_cln_debug_pub.Add('DOC DIRECTION ----- >>>'||p_doc_dir,1);
858: ecx_cln_debug_pub.Add('COLL POINT ----- >>>'||p_coll_pt,1);

Line 855: ecx_cln_debug_pub.Add('COLLABORATION ID ----- >>>'||p_coll_id,1);

851: x_return_status := FND_API.G_RET_STS_SUCCESS;
852:
853: IF (l_Debug_Level <= 1) THEN
854: ecx_cln_debug_pub.Add('------------Parameters Received-------------',1);
855: ecx_cln_debug_pub.Add('COLLABORATION ID ----- >>>'||p_coll_id,1);
856: ecx_cln_debug_pub.Add('DOC TYPE ----- >>>'||p_doc_type,1);
857: ecx_cln_debug_pub.Add('DOC DIRECTION ----- >>>'||p_doc_dir,1);
858: ecx_cln_debug_pub.Add('COLL POINT ----- >>>'||p_coll_pt,1);
859: ecx_cln_debug_pub.Add('ORIGINATOR REFERNCE ----- >>>'||p_org_ref,1);

Line 856: ecx_cln_debug_pub.Add('DOC TYPE ----- >>>'||p_doc_type,1);

852:
853: IF (l_Debug_Level <= 1) THEN
854: ecx_cln_debug_pub.Add('------------Parameters Received-------------',1);
855: ecx_cln_debug_pub.Add('COLLABORATION ID ----- >>>'||p_coll_id,1);
856: ecx_cln_debug_pub.Add('DOC TYPE ----- >>>'||p_doc_type,1);
857: ecx_cln_debug_pub.Add('DOC DIRECTION ----- >>>'||p_doc_dir,1);
858: ecx_cln_debug_pub.Add('COLL POINT ----- >>>'||p_coll_pt,1);
859: ecx_cln_debug_pub.Add('ORIGINATOR REFERNCE ----- >>>'||p_org_ref,1);
860: ecx_cln_debug_pub.Add('DOC STATUS ----- >>>'||p_doc_status,1);

Line 857: ecx_cln_debug_pub.Add('DOC DIRECTION ----- >>>'||p_doc_dir,1);

853: IF (l_Debug_Level <= 1) THEN
854: ecx_cln_debug_pub.Add('------------Parameters Received-------------',1);
855: ecx_cln_debug_pub.Add('COLLABORATION ID ----- >>>'||p_coll_id,1);
856: ecx_cln_debug_pub.Add('DOC TYPE ----- >>>'||p_doc_type,1);
857: ecx_cln_debug_pub.Add('DOC DIRECTION ----- >>>'||p_doc_dir,1);
858: ecx_cln_debug_pub.Add('COLL POINT ----- >>>'||p_coll_pt,1);
859: ecx_cln_debug_pub.Add('ORIGINATOR REFERNCE ----- >>>'||p_org_ref,1);
860: ecx_cln_debug_pub.Add('DOC STATUS ----- >>>'||p_doc_status,1);
861: ecx_cln_debug_pub.Add('NOTIFICATION ID ----- >>>'||p_notification_id,1);

Line 858: ecx_cln_debug_pub.Add('COLL POINT ----- >>>'||p_coll_pt,1);

854: ecx_cln_debug_pub.Add('------------Parameters Received-------------',1);
855: ecx_cln_debug_pub.Add('COLLABORATION ID ----- >>>'||p_coll_id,1);
856: ecx_cln_debug_pub.Add('DOC TYPE ----- >>>'||p_doc_type,1);
857: ecx_cln_debug_pub.Add('DOC DIRECTION ----- >>>'||p_doc_dir,1);
858: ecx_cln_debug_pub.Add('COLL POINT ----- >>>'||p_coll_pt,1);
859: ecx_cln_debug_pub.Add('ORIGINATOR REFERNCE ----- >>>'||p_org_ref,1);
860: ecx_cln_debug_pub.Add('DOC STATUS ----- >>>'||p_doc_status,1);
861: ecx_cln_debug_pub.Add('NOTIFICATION ID ----- >>>'||p_notification_id,1);
862: ecx_cln_debug_pub.Add('MESSAGE TEXT ----- >>>'||p_msg_text,1);

Line 859: ecx_cln_debug_pub.Add('ORIGINATOR REFERNCE ----- >>>'||p_org_ref,1);

855: ecx_cln_debug_pub.Add('COLLABORATION ID ----- >>>'||p_coll_id,1);
856: ecx_cln_debug_pub.Add('DOC TYPE ----- >>>'||p_doc_type,1);
857: ecx_cln_debug_pub.Add('DOC DIRECTION ----- >>>'||p_doc_dir,1);
858: ecx_cln_debug_pub.Add('COLL POINT ----- >>>'||p_coll_pt,1);
859: ecx_cln_debug_pub.Add('ORIGINATOR REFERNCE ----- >>>'||p_org_ref,1);
860: ecx_cln_debug_pub.Add('DOC STATUS ----- >>>'||p_doc_status,1);
861: ecx_cln_debug_pub.Add('NOTIFICATION ID ----- >>>'||p_notification_id,1);
862: ecx_cln_debug_pub.Add('MESSAGE TEXT ----- >>>'||p_msg_text,1);
863: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);

Line 860: ecx_cln_debug_pub.Add('DOC STATUS ----- >>>'||p_doc_status,1);

856: ecx_cln_debug_pub.Add('DOC TYPE ----- >>>'||p_doc_type,1);
857: ecx_cln_debug_pub.Add('DOC DIRECTION ----- >>>'||p_doc_dir,1);
858: ecx_cln_debug_pub.Add('COLL POINT ----- >>>'||p_coll_pt,1);
859: ecx_cln_debug_pub.Add('ORIGINATOR REFERNCE ----- >>>'||p_org_ref,1);
860: ecx_cln_debug_pub.Add('DOC STATUS ----- >>>'||p_doc_status,1);
861: ecx_cln_debug_pub.Add('NOTIFICATION ID ----- >>>'||p_notification_id,1);
862: ecx_cln_debug_pub.Add('MESSAGE TEXT ----- >>>'||p_msg_text,1);
863: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);
864: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);

Line 861: ecx_cln_debug_pub.Add('NOTIFICATION ID ----- >>>'||p_notification_id,1);

857: ecx_cln_debug_pub.Add('DOC DIRECTION ----- >>>'||p_doc_dir,1);
858: ecx_cln_debug_pub.Add('COLL POINT ----- >>>'||p_coll_pt,1);
859: ecx_cln_debug_pub.Add('ORIGINATOR REFERNCE ----- >>>'||p_org_ref,1);
860: ecx_cln_debug_pub.Add('DOC STATUS ----- >>>'||p_doc_status,1);
861: ecx_cln_debug_pub.Add('NOTIFICATION ID ----- >>>'||p_notification_id,1);
862: ecx_cln_debug_pub.Add('MESSAGE TEXT ----- >>>'||p_msg_text,1);
863: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);
864: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);
865: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION TYPE ----- >>>'||p_xmlg_int_transaction_type,1);

Line 862: ecx_cln_debug_pub.Add('MESSAGE TEXT ----- >>>'||p_msg_text,1);

858: ecx_cln_debug_pub.Add('COLL POINT ----- >>>'||p_coll_pt,1);
859: ecx_cln_debug_pub.Add('ORIGINATOR REFERNCE ----- >>>'||p_org_ref,1);
860: ecx_cln_debug_pub.Add('DOC STATUS ----- >>>'||p_doc_status,1);
861: ecx_cln_debug_pub.Add('NOTIFICATION ID ----- >>>'||p_notification_id,1);
862: ecx_cln_debug_pub.Add('MESSAGE TEXT ----- >>>'||p_msg_text,1);
863: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);
864: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);
865: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION TYPE ----- >>>'||p_xmlg_int_transaction_type,1);
866: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_int_transaction_subtype,1);

Line 863: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);

859: ecx_cln_debug_pub.Add('ORIGINATOR REFERNCE ----- >>>'||p_org_ref,1);
860: ecx_cln_debug_pub.Add('DOC STATUS ----- >>>'||p_doc_status,1);
861: ecx_cln_debug_pub.Add('NOTIFICATION ID ----- >>>'||p_notification_id,1);
862: ecx_cln_debug_pub.Add('MESSAGE TEXT ----- >>>'||p_msg_text,1);
863: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);
864: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);
865: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION TYPE ----- >>>'||p_xmlg_int_transaction_type,1);
866: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_int_transaction_subtype,1);
867: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);

Line 864: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);

860: ecx_cln_debug_pub.Add('DOC STATUS ----- >>>'||p_doc_status,1);
861: ecx_cln_debug_pub.Add('NOTIFICATION ID ----- >>>'||p_notification_id,1);
862: ecx_cln_debug_pub.Add('MESSAGE TEXT ----- >>>'||p_msg_text,1);
863: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);
864: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);
865: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION TYPE ----- >>>'||p_xmlg_int_transaction_type,1);
866: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_int_transaction_subtype,1);
867: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);
868: ecx_cln_debug_pub.Add('XMLG MESSAGE ID ----- >>>'||p_xmlg_msg_id,1);

Line 865: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION TYPE ----- >>>'||p_xmlg_int_transaction_type,1);

861: ecx_cln_debug_pub.Add('NOTIFICATION ID ----- >>>'||p_notification_id,1);
862: ecx_cln_debug_pub.Add('MESSAGE TEXT ----- >>>'||p_msg_text,1);
863: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);
864: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);
865: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION TYPE ----- >>>'||p_xmlg_int_transaction_type,1);
866: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_int_transaction_subtype,1);
867: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);
868: ecx_cln_debug_pub.Add('XMLG MESSAGE ID ----- >>>'||p_xmlg_msg_id,1);
869: ecx_cln_debug_pub.Add('XMLG INTERNAL CONTROL NO ----- >>>'||p_xmlg_internal_control_number,1);

Line 866: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_int_transaction_subtype,1);

862: ecx_cln_debug_pub.Add('MESSAGE TEXT ----- >>>'||p_msg_text,1);
863: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);
864: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);
865: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION TYPE ----- >>>'||p_xmlg_int_transaction_type,1);
866: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_int_transaction_subtype,1);
867: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);
868: ecx_cln_debug_pub.Add('XMLG MESSAGE ID ----- >>>'||p_xmlg_msg_id,1);
869: ecx_cln_debug_pub.Add('XMLG INTERNAL CONTROL NO ----- >>>'||p_xmlg_internal_control_number,1);
870: ecx_cln_debug_pub.Add('RESEND FLAG ----- >>>'||p_resend_flag,1);

Line 867: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);

863: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);
864: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);
865: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION TYPE ----- >>>'||p_xmlg_int_transaction_type,1);
866: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_int_transaction_subtype,1);
867: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);
868: ecx_cln_debug_pub.Add('XMLG MESSAGE ID ----- >>>'||p_xmlg_msg_id,1);
869: ecx_cln_debug_pub.Add('XMLG INTERNAL CONTROL NO ----- >>>'||p_xmlg_internal_control_number,1);
870: ecx_cln_debug_pub.Add('RESEND FLAG ----- >>>'||p_resend_flag,1);
871: ecx_cln_debug_pub.Add('XMLG EVENT KEY ----- >>>'||p_xml_event_key,1);

Line 868: ecx_cln_debug_pub.Add('XMLG MESSAGE ID ----- >>>'||p_xmlg_msg_id,1);

864: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);
865: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION TYPE ----- >>>'||p_xmlg_int_transaction_type,1);
866: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_int_transaction_subtype,1);
867: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);
868: ecx_cln_debug_pub.Add('XMLG MESSAGE ID ----- >>>'||p_xmlg_msg_id,1);
869: ecx_cln_debug_pub.Add('XMLG INTERNAL CONTROL NO ----- >>>'||p_xmlg_internal_control_number,1);
870: ecx_cln_debug_pub.Add('RESEND FLAG ----- >>>'||p_resend_flag,1);
871: ecx_cln_debug_pub.Add('XMLG EVENT KEY ----- >>>'||p_xml_event_key,1);
872: ecx_cln_debug_pub.Add('---------------------------------------------',1);

Line 869: ecx_cln_debug_pub.Add('XMLG INTERNAL CONTROL NO ----- >>>'||p_xmlg_internal_control_number,1);

865: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION TYPE ----- >>>'||p_xmlg_int_transaction_type,1);
866: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_int_transaction_subtype,1);
867: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);
868: ecx_cln_debug_pub.Add('XMLG MESSAGE ID ----- >>>'||p_xmlg_msg_id,1);
869: ecx_cln_debug_pub.Add('XMLG INTERNAL CONTROL NO ----- >>>'||p_xmlg_internal_control_number,1);
870: ecx_cln_debug_pub.Add('RESEND FLAG ----- >>>'||p_resend_flag,1);
871: ecx_cln_debug_pub.Add('XMLG EVENT KEY ----- >>>'||p_xml_event_key,1);
872: ecx_cln_debug_pub.Add('---------------------------------------------',1);
873: END IF;

Line 870: ecx_cln_debug_pub.Add('RESEND FLAG ----- >>>'||p_resend_flag,1);

866: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_int_transaction_subtype,1);
867: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);
868: ecx_cln_debug_pub.Add('XMLG MESSAGE ID ----- >>>'||p_xmlg_msg_id,1);
869: ecx_cln_debug_pub.Add('XMLG INTERNAL CONTROL NO ----- >>>'||p_xmlg_internal_control_number,1);
870: ecx_cln_debug_pub.Add('RESEND FLAG ----- >>>'||p_resend_flag,1);
871: ecx_cln_debug_pub.Add('XMLG EVENT KEY ----- >>>'||p_xml_event_key,1);
872: ecx_cln_debug_pub.Add('---------------------------------------------',1);
873: END IF;
874:

Line 871: ecx_cln_debug_pub.Add('XMLG EVENT KEY ----- >>>'||p_xml_event_key,1);

867: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);
868: ecx_cln_debug_pub.Add('XMLG MESSAGE ID ----- >>>'||p_xmlg_msg_id,1);
869: ecx_cln_debug_pub.Add('XMLG INTERNAL CONTROL NO ----- >>>'||p_xmlg_internal_control_number,1);
870: ecx_cln_debug_pub.Add('RESEND FLAG ----- >>>'||p_resend_flag,1);
871: ecx_cln_debug_pub.Add('XMLG EVENT KEY ----- >>>'||p_xml_event_key,1);
872: ecx_cln_debug_pub.Add('---------------------------------------------',1);
873: END IF;
874:
875:

Line 872: ecx_cln_debug_pub.Add('---------------------------------------------',1);

868: ecx_cln_debug_pub.Add('XMLG MESSAGE ID ----- >>>'||p_xmlg_msg_id,1);
869: ecx_cln_debug_pub.Add('XMLG INTERNAL CONTROL NO ----- >>>'||p_xmlg_internal_control_number,1);
870: ecx_cln_debug_pub.Add('RESEND FLAG ----- >>>'||p_resend_flag,1);
871: ecx_cln_debug_pub.Add('XMLG EVENT KEY ----- >>>'||p_xml_event_key,1);
872: ecx_cln_debug_pub.Add('---------------------------------------------',1);
873: END IF;
874:
875:
876: -- Collaboration Detail ID is generated from a sequence.

Line 879: ecx_cln_debug_pub.Add('Collaboration Detail ID generated : '||l_dtl_coll_id,1);

875:
876: -- Collaboration Detail ID is generated from a sequence.
877: SELECT cln_collaboration_dtl_id_s.nextval INTO l_dtl_coll_id FROM dual ;
878: IF (l_Debug_Level <= 1) THEN
879: ecx_cln_debug_pub.Add('Collaboration Detail ID generated : '||l_dtl_coll_id,1);
880:
881:
882: ecx_cln_debug_pub.Add('----- Before SQL Query : Adding Details in CLN_COLL_HIST_DTL -----',1);
883: END IF;

Line 882: ecx_cln_debug_pub.Add('----- Before SQL Query : Adding Details in CLN_COLL_HIST_DTL -----',1);

878: IF (l_Debug_Level <= 1) THEN
879: ecx_cln_debug_pub.Add('Collaboration Detail ID generated : '||l_dtl_coll_id,1);
880:
881:
882: ecx_cln_debug_pub.Add('----- Before SQL Query : Adding Details in CLN_COLL_HIST_DTL -----',1);
883: END IF;
884:
885: -- Initial Collaboration Details are added into CLN_COLL_HIST_DTL Table
886: --Bug 3655492 : Added nvl(p_doc_type,'UNKNOWN') for 11.5.10 performance enh, to make sure always Doc Type is not null

Line 901: ecx_cln_debug_pub.Add('----- After SQL Query : Adding Details in CLN_COLL_HIST_DTL -----',1);

897: p_xmlg_transaction_subtype,p_xmlg_document_id, p_xmlg_msg_id, p_xmlg_internal_control_number,
898: p_resend_flag, p_xmlg_int_transaction_type, p_xmlg_int_transaction_subtype, p_xml_event_key);
899:
900: IF (l_Debug_Level <= 1) THEN
901: ecx_cln_debug_pub.Add('----- After SQL Query : Adding Details in CLN_COLL_HIST_DTL -----',1);
902: END IF;
903:
904:
905: -- Check whether the above SQL Query resulted in some updations or not.

Line 908: ecx_cln_debug_pub.Add('Collaboration Details successfully entered in CLN_COLL_HIST_DTL TABLE',1);

904:
905: -- Check whether the above SQL Query resulted in some updations or not.
906: IF SQL%FOUND THEN
907: IF (l_Debug_Level <= 1) THEN
908: ecx_cln_debug_pub.Add('Collaboration Details successfully entered in CLN_COLL_HIST_DTL TABLE',1);
909: END IF;
910: ELSE
911: l_msg_data := 'Failed to add Collaboration Details in CLN_COLL_HIST_DTL TABLE';
912: RAISE FND_API.G_EXC_ERROR;

Line 916: ecx_cln_debug_pub.Add('--------- Exiting UPDATE_COLLABORATION_INIT API -------- ',2);

912: RAISE FND_API.G_EXC_ERROR;
913: END IF;
914:
915: IF (l_Debug_Level <= 2) THEN
916: ecx_cln_debug_pub.Add('--------- Exiting UPDATE_COLLABORATION_INIT API -------- ',2);
917: END IF;
918:
919: -- Exception Handling
920: EXCEPTION

Line 925: ecx_cln_debug_pub.Add(l_msg_data,4);

921:
922: WHEN FND_API.G_EXC_ERROR THEN
923: x_return_status := FND_API.G_RET_STS_ERROR ;
924: IF (l_Debug_Level <= 4) THEN
925: ecx_cln_debug_pub.Add(l_msg_data,4);
926: ecx_cln_debug_pub.Add('--------- Exiting UPDATE_COLLABORATION_INIT API -------- ',2);
927: END IF;
928:
929: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN

Line 926: ecx_cln_debug_pub.Add('--------- Exiting UPDATE_COLLABORATION_INIT API -------- ',2);

922: WHEN FND_API.G_EXC_ERROR THEN
923: x_return_status := FND_API.G_RET_STS_ERROR ;
924: IF (l_Debug_Level <= 4) THEN
925: ecx_cln_debug_pub.Add(l_msg_data,4);
926: ecx_cln_debug_pub.Add('--------- Exiting UPDATE_COLLABORATION_INIT API -------- ',2);
927: END IF;
928:
929: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
930: l_error_code :=SQLCODE;

Line 935: ecx_cln_debug_pub.Add(l_msg_data,6);

931: l_error_msg :=SQLERRM;
932: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
933: l_msg_data :=l_error_code||' : '||l_error_msg;
934: IF (l_Debug_Level <= 5) THEN
935: ecx_cln_debug_pub.Add(l_msg_data,6);
936: ecx_cln_debug_pub.Add('--------- Exiting UPDATE_COLLABORATION_INIT API -------- ',2);
937: END IF;
938:
939: WHEN OTHERS THEN

Line 936: ecx_cln_debug_pub.Add('--------- Exiting UPDATE_COLLABORATION_INIT API -------- ',2);

932: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
933: l_msg_data :=l_error_code||' : '||l_error_msg;
934: IF (l_Debug_Level <= 5) THEN
935: ecx_cln_debug_pub.Add(l_msg_data,6);
936: ecx_cln_debug_pub.Add('--------- Exiting UPDATE_COLLABORATION_INIT API -------- ',2);
937: END IF;
938:
939: WHEN OTHERS THEN
940: l_error_code :=SQLCODE;

Line 945: ecx_cln_debug_pub.Add(l_msg_data,6);

941: l_error_msg :=SQLERRM;
942: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
943: l_msg_data :=l_error_code||' : '||l_error_msg;
944: IF (l_Debug_Level <= 5) THEN
945: ecx_cln_debug_pub.Add(l_msg_data,6);
946: ecx_cln_debug_pub.Add('--------- Exiting UPDATE_COLLABORATION_INIT API -------- ',2);
947: END IF;
948:
949:

Line 946: ecx_cln_debug_pub.Add('--------- Exiting UPDATE_COLLABORATION_INIT API -------- ',2);

942: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
943: l_msg_data :=l_error_code||' : '||l_error_msg;
944: IF (l_Debug_Level <= 5) THEN
945: ecx_cln_debug_pub.Add(l_msg_data,6);
946: ecx_cln_debug_pub.Add('--------- Exiting UPDATE_COLLABORATION_INIT API -------- ',2);
947: END IF;
948:
949:
950: END UPDATE_COLLABORATION_INIT;

Line 1070: --l_debug_mode :=ecx_cln_debug_pub.Set_Debug_Mode('FILE');

1066:
1067: BEGIN
1068:
1069: -- Sets the debug mode to be FILE
1070: --l_debug_mode :=ecx_cln_debug_pub.Set_Debug_Mode('FILE');
1071:
1072:
1073: IF (l_Debug_Level <= 2) THEN
1074: ecx_cln_debug_pub.Add('------ Entering CREATE_COLLABORATION API ------- ',2);

Line 1074: ecx_cln_debug_pub.Add('------ Entering CREATE_COLLABORATION API ------- ',2);

1070: --l_debug_mode :=ecx_cln_debug_pub.Set_Debug_Mode('FILE');
1071:
1072:
1073: IF (l_Debug_Level <= 2) THEN
1074: ecx_cln_debug_pub.Add('------ Entering CREATE_COLLABORATION API ------- ',2);
1075: END IF;
1076:
1077:
1078:

Line 1089: ecx_cln_debug_pub.Add('==========Parameters Received=============',1);

1085:
1086:
1087: -- get the paramaters passed
1088: IF (l_Debug_Level <= 1) THEN
1089: ecx_cln_debug_pub.Add('==========Parameters Received=============',1);
1090: ecx_cln_debug_pub.Add('APPLCATION ID ----- >>>'||p_app_id,1);
1091: ecx_cln_debug_pub.Add('REFERENCE ID ----- >>>'||p_ref_id,1);
1092: ecx_cln_debug_pub.Add('ORG ID ----- >>>'||p_org_id,1);
1093: ecx_cln_debug_pub.Add('RELEASE NUMBER ----- >>>'||p_rel_no,1);

Line 1090: ecx_cln_debug_pub.Add('APPLCATION ID ----- >>>'||p_app_id,1);

1086:
1087: -- get the paramaters passed
1088: IF (l_Debug_Level <= 1) THEN
1089: ecx_cln_debug_pub.Add('==========Parameters Received=============',1);
1090: ecx_cln_debug_pub.Add('APPLCATION ID ----- >>>'||p_app_id,1);
1091: ecx_cln_debug_pub.Add('REFERENCE ID ----- >>>'||p_ref_id,1);
1092: ecx_cln_debug_pub.Add('ORG ID ----- >>>'||p_org_id,1);
1093: ecx_cln_debug_pub.Add('RELEASE NUMBER ----- >>>'||p_rel_no,1);
1094: ecx_cln_debug_pub.Add('DOCUMENT NO ----- >>>'||p_doc_no,1);

Line 1091: ecx_cln_debug_pub.Add('REFERENCE ID ----- >>>'||p_ref_id,1);

1087: -- get the paramaters passed
1088: IF (l_Debug_Level <= 1) THEN
1089: ecx_cln_debug_pub.Add('==========Parameters Received=============',1);
1090: ecx_cln_debug_pub.Add('APPLCATION ID ----- >>>'||p_app_id,1);
1091: ecx_cln_debug_pub.Add('REFERENCE ID ----- >>>'||p_ref_id,1);
1092: ecx_cln_debug_pub.Add('ORG ID ----- >>>'||p_org_id,1);
1093: ecx_cln_debug_pub.Add('RELEASE NUMBER ----- >>>'||p_rel_no,1);
1094: ecx_cln_debug_pub.Add('DOCUMENT NO ----- >>>'||p_doc_no,1);
1095: ecx_cln_debug_pub.Add('DOCUMENT REV. NO ----- >>>'||p_doc_rev_no,1);

Line 1092: ecx_cln_debug_pub.Add('ORG ID ----- >>>'||p_org_id,1);

1088: IF (l_Debug_Level <= 1) THEN
1089: ecx_cln_debug_pub.Add('==========Parameters Received=============',1);
1090: ecx_cln_debug_pub.Add('APPLCATION ID ----- >>>'||p_app_id,1);
1091: ecx_cln_debug_pub.Add('REFERENCE ID ----- >>>'||p_ref_id,1);
1092: ecx_cln_debug_pub.Add('ORG ID ----- >>>'||p_org_id,1);
1093: ecx_cln_debug_pub.Add('RELEASE NUMBER ----- >>>'||p_rel_no,1);
1094: ecx_cln_debug_pub.Add('DOCUMENT NO ----- >>>'||p_doc_no,1);
1095: ecx_cln_debug_pub.Add('DOCUMENT REV. NO ----- >>>'||p_doc_rev_no,1);
1096: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);

Line 1093: ecx_cln_debug_pub.Add('RELEASE NUMBER ----- >>>'||p_rel_no,1);

1089: ecx_cln_debug_pub.Add('==========Parameters Received=============',1);
1090: ecx_cln_debug_pub.Add('APPLCATION ID ----- >>>'||p_app_id,1);
1091: ecx_cln_debug_pub.Add('REFERENCE ID ----- >>>'||p_ref_id,1);
1092: ecx_cln_debug_pub.Add('ORG ID ----- >>>'||p_org_id,1);
1093: ecx_cln_debug_pub.Add('RELEASE NUMBER ----- >>>'||p_rel_no,1);
1094: ecx_cln_debug_pub.Add('DOCUMENT NO ----- >>>'||p_doc_no,1);
1095: ecx_cln_debug_pub.Add('DOCUMENT REV. NO ----- >>>'||p_doc_rev_no,1);
1096: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);
1097: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_type,1);

Line 1094: ecx_cln_debug_pub.Add('DOCUMENT NO ----- >>>'||p_doc_no,1);

1090: ecx_cln_debug_pub.Add('APPLCATION ID ----- >>>'||p_app_id,1);
1091: ecx_cln_debug_pub.Add('REFERENCE ID ----- >>>'||p_ref_id,1);
1092: ecx_cln_debug_pub.Add('ORG ID ----- >>>'||p_org_id,1);
1093: ecx_cln_debug_pub.Add('RELEASE NUMBER ----- >>>'||p_rel_no,1);
1094: ecx_cln_debug_pub.Add('DOCUMENT NO ----- >>>'||p_doc_no,1);
1095: ecx_cln_debug_pub.Add('DOCUMENT REV. NO ----- >>>'||p_doc_rev_no,1);
1096: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);
1097: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_type,1);
1098: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION TYPE ----- >>>'||p_xmlg_int_transaction_type,1);

Line 1095: ecx_cln_debug_pub.Add('DOCUMENT REV. NO ----- >>>'||p_doc_rev_no,1);

1091: ecx_cln_debug_pub.Add('REFERENCE ID ----- >>>'||p_ref_id,1);
1092: ecx_cln_debug_pub.Add('ORG ID ----- >>>'||p_org_id,1);
1093: ecx_cln_debug_pub.Add('RELEASE NUMBER ----- >>>'||p_rel_no,1);
1094: ecx_cln_debug_pub.Add('DOCUMENT NO ----- >>>'||p_doc_no,1);
1095: ecx_cln_debug_pub.Add('DOCUMENT REV. NO ----- >>>'||p_doc_rev_no,1);
1096: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);
1097: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_type,1);
1098: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION TYPE ----- >>>'||p_xmlg_int_transaction_type,1);
1099: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_int_transaction_subtype,1);

Line 1096: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);

1092: ecx_cln_debug_pub.Add('ORG ID ----- >>>'||p_org_id,1);
1093: ecx_cln_debug_pub.Add('RELEASE NUMBER ----- >>>'||p_rel_no,1);
1094: ecx_cln_debug_pub.Add('DOCUMENT NO ----- >>>'||p_doc_no,1);
1095: ecx_cln_debug_pub.Add('DOCUMENT REV. NO ----- >>>'||p_doc_rev_no,1);
1096: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);
1097: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_type,1);
1098: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION TYPE ----- >>>'||p_xmlg_int_transaction_type,1);
1099: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_int_transaction_subtype,1);
1100: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);

Line 1097: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_type,1);

1093: ecx_cln_debug_pub.Add('RELEASE NUMBER ----- >>>'||p_rel_no,1);
1094: ecx_cln_debug_pub.Add('DOCUMENT NO ----- >>>'||p_doc_no,1);
1095: ecx_cln_debug_pub.Add('DOCUMENT REV. NO ----- >>>'||p_doc_rev_no,1);
1096: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);
1097: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_type,1);
1098: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION TYPE ----- >>>'||p_xmlg_int_transaction_type,1);
1099: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_int_transaction_subtype,1);
1100: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);
1101: ecx_cln_debug_pub.Add('PARTNER DOCUMENT NO ----- >>>'||p_partner_doc_no,1);

Line 1098: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION TYPE ----- >>>'||p_xmlg_int_transaction_type,1);

1094: ecx_cln_debug_pub.Add('DOCUMENT NO ----- >>>'||p_doc_no,1);
1095: ecx_cln_debug_pub.Add('DOCUMENT REV. NO ----- >>>'||p_doc_rev_no,1);
1096: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);
1097: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_type,1);
1098: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION TYPE ----- >>>'||p_xmlg_int_transaction_type,1);
1099: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_int_transaction_subtype,1);
1100: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);
1101: ecx_cln_debug_pub.Add('PARTNER DOCUMENT NO ----- >>>'||p_partner_doc_no,1);
1102: ecx_cln_debug_pub.Add('COLLABORATION TYPE ----- >>>'||p_coll_type,1);

Line 1099: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_int_transaction_subtype,1);

1095: ecx_cln_debug_pub.Add('DOCUMENT REV. NO ----- >>>'||p_doc_rev_no,1);
1096: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);
1097: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_type,1);
1098: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION TYPE ----- >>>'||p_xmlg_int_transaction_type,1);
1099: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_int_transaction_subtype,1);
1100: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);
1101: ecx_cln_debug_pub.Add('PARTNER DOCUMENT NO ----- >>>'||p_partner_doc_no,1);
1102: ecx_cln_debug_pub.Add('COLLABORATION TYPE ----- >>>'||p_coll_type,1);
1103: ecx_cln_debug_pub.Add('TRADING PARTNER TYPE ----- >>>'||p_tr_partner_type,1);

Line 1100: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);

1096: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);
1097: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_type,1);
1098: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION TYPE ----- >>>'||p_xmlg_int_transaction_type,1);
1099: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_int_transaction_subtype,1);
1100: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);
1101: ecx_cln_debug_pub.Add('PARTNER DOCUMENT NO ----- >>>'||p_partner_doc_no,1);
1102: ecx_cln_debug_pub.Add('COLLABORATION TYPE ----- >>>'||p_coll_type,1);
1103: ecx_cln_debug_pub.Add('TRADING PARTNER TYPE ----- >>>'||p_tr_partner_type,1);
1104: ecx_cln_debug_pub.Add('TRADING PARTNER ID ----- >>>'||p_tr_partner_id,1);

Line 1101: ecx_cln_debug_pub.Add('PARTNER DOCUMENT NO ----- >>>'||p_partner_doc_no,1);

1097: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_type,1);
1098: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION TYPE ----- >>>'||p_xmlg_int_transaction_type,1);
1099: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_int_transaction_subtype,1);
1100: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);
1101: ecx_cln_debug_pub.Add('PARTNER DOCUMENT NO ----- >>>'||p_partner_doc_no,1);
1102: ecx_cln_debug_pub.Add('COLLABORATION TYPE ----- >>>'||p_coll_type,1);
1103: ecx_cln_debug_pub.Add('TRADING PARTNER TYPE ----- >>>'||p_tr_partner_type,1);
1104: ecx_cln_debug_pub.Add('TRADING PARTNER ID ----- >>>'||p_tr_partner_id,1);
1105: ecx_cln_debug_pub.Add('TRADING PARTNER SITE ----- >>>'||p_tr_partner_site,1);

Line 1102: ecx_cln_debug_pub.Add('COLLABORATION TYPE ----- >>>'||p_coll_type,1);

1098: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION TYPE ----- >>>'||p_xmlg_int_transaction_type,1);
1099: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_int_transaction_subtype,1);
1100: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);
1101: ecx_cln_debug_pub.Add('PARTNER DOCUMENT NO ----- >>>'||p_partner_doc_no,1);
1102: ecx_cln_debug_pub.Add('COLLABORATION TYPE ----- >>>'||p_coll_type,1);
1103: ecx_cln_debug_pub.Add('TRADING PARTNER TYPE ----- >>>'||p_tr_partner_type,1);
1104: ecx_cln_debug_pub.Add('TRADING PARTNER ID ----- >>>'||p_tr_partner_id,1);
1105: ecx_cln_debug_pub.Add('TRADING PARTNER SITE ----- >>>'||p_tr_partner_site,1);
1106: ecx_cln_debug_pub.Add('RESENG FLAG ----- >>>'||p_resend_flag,1);

Line 1103: ecx_cln_debug_pub.Add('TRADING PARTNER TYPE ----- >>>'||p_tr_partner_type,1);

1099: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_int_transaction_subtype,1);
1100: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);
1101: ecx_cln_debug_pub.Add('PARTNER DOCUMENT NO ----- >>>'||p_partner_doc_no,1);
1102: ecx_cln_debug_pub.Add('COLLABORATION TYPE ----- >>>'||p_coll_type,1);
1103: ecx_cln_debug_pub.Add('TRADING PARTNER TYPE ----- >>>'||p_tr_partner_type,1);
1104: ecx_cln_debug_pub.Add('TRADING PARTNER ID ----- >>>'||p_tr_partner_id,1);
1105: ecx_cln_debug_pub.Add('TRADING PARTNER SITE ----- >>>'||p_tr_partner_site,1);
1106: ecx_cln_debug_pub.Add('RESENG FLAG ----- >>>'||p_resend_flag,1);
1107: ecx_cln_debug_pub.Add('RESEND COUNT ----- >>>'||p_resend_count,1);

Line 1104: ecx_cln_debug_pub.Add('TRADING PARTNER ID ----- >>>'||p_tr_partner_id,1);

1100: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);
1101: ecx_cln_debug_pub.Add('PARTNER DOCUMENT NO ----- >>>'||p_partner_doc_no,1);
1102: ecx_cln_debug_pub.Add('COLLABORATION TYPE ----- >>>'||p_coll_type,1);
1103: ecx_cln_debug_pub.Add('TRADING PARTNER TYPE ----- >>>'||p_tr_partner_type,1);
1104: ecx_cln_debug_pub.Add('TRADING PARTNER ID ----- >>>'||p_tr_partner_id,1);
1105: ecx_cln_debug_pub.Add('TRADING PARTNER SITE ----- >>>'||p_tr_partner_site,1);
1106: ecx_cln_debug_pub.Add('RESENG FLAG ----- >>>'||p_resend_flag,1);
1107: ecx_cln_debug_pub.Add('RESEND COUNT ----- >>>'||p_resend_count,1);
1108: ecx_cln_debug_pub.Add('DOCUMENT OWNER ----- >>>'||p_doc_owner,1);

Line 1105: ecx_cln_debug_pub.Add('TRADING PARTNER SITE ----- >>>'||p_tr_partner_site,1);

1101: ecx_cln_debug_pub.Add('PARTNER DOCUMENT NO ----- >>>'||p_partner_doc_no,1);
1102: ecx_cln_debug_pub.Add('COLLABORATION TYPE ----- >>>'||p_coll_type,1);
1103: ecx_cln_debug_pub.Add('TRADING PARTNER TYPE ----- >>>'||p_tr_partner_type,1);
1104: ecx_cln_debug_pub.Add('TRADING PARTNER ID ----- >>>'||p_tr_partner_id,1);
1105: ecx_cln_debug_pub.Add('TRADING PARTNER SITE ----- >>>'||p_tr_partner_site,1);
1106: ecx_cln_debug_pub.Add('RESENG FLAG ----- >>>'||p_resend_flag,1);
1107: ecx_cln_debug_pub.Add('RESEND COUNT ----- >>>'||p_resend_count,1);
1108: ecx_cln_debug_pub.Add('DOCUMENT OWNER ----- >>>'||p_doc_owner,1);
1109: ecx_cln_debug_pub.Add('OWNER ROLE ----- >>>'||p_owner_role,1);

Line 1106: ecx_cln_debug_pub.Add('RESENG FLAG ----- >>>'||p_resend_flag,1);

1102: ecx_cln_debug_pub.Add('COLLABORATION TYPE ----- >>>'||p_coll_type,1);
1103: ecx_cln_debug_pub.Add('TRADING PARTNER TYPE ----- >>>'||p_tr_partner_type,1);
1104: ecx_cln_debug_pub.Add('TRADING PARTNER ID ----- >>>'||p_tr_partner_id,1);
1105: ecx_cln_debug_pub.Add('TRADING PARTNER SITE ----- >>>'||p_tr_partner_site,1);
1106: ecx_cln_debug_pub.Add('RESENG FLAG ----- >>>'||p_resend_flag,1);
1107: ecx_cln_debug_pub.Add('RESEND COUNT ----- >>>'||p_resend_count,1);
1108: ecx_cln_debug_pub.Add('DOCUMENT OWNER ----- >>>'||p_doc_owner,1);
1109: ecx_cln_debug_pub.Add('OWNER ROLE ----- >>>'||p_owner_role,1);
1110: ecx_cln_debug_pub.Add('INITIATION DATE ----- >>>'||p_init_date,1);

Line 1107: ecx_cln_debug_pub.Add('RESEND COUNT ----- >>>'||p_resend_count,1);

1103: ecx_cln_debug_pub.Add('TRADING PARTNER TYPE ----- >>>'||p_tr_partner_type,1);
1104: ecx_cln_debug_pub.Add('TRADING PARTNER ID ----- >>>'||p_tr_partner_id,1);
1105: ecx_cln_debug_pub.Add('TRADING PARTNER SITE ----- >>>'||p_tr_partner_site,1);
1106: ecx_cln_debug_pub.Add('RESENG FLAG ----- >>>'||p_resend_flag,1);
1107: ecx_cln_debug_pub.Add('RESEND COUNT ----- >>>'||p_resend_count,1);
1108: ecx_cln_debug_pub.Add('DOCUMENT OWNER ----- >>>'||p_doc_owner,1);
1109: ecx_cln_debug_pub.Add('OWNER ROLE ----- >>>'||p_owner_role,1);
1110: ecx_cln_debug_pub.Add('INITIATION DATE ----- >>>'||p_init_date,1);
1111: ecx_cln_debug_pub.Add('DOCUMENT CREATION DATE ----- >>>'||p_doc_creation_date,1);

Line 1108: ecx_cln_debug_pub.Add('DOCUMENT OWNER ----- >>>'||p_doc_owner,1);

1104: ecx_cln_debug_pub.Add('TRADING PARTNER ID ----- >>>'||p_tr_partner_id,1);
1105: ecx_cln_debug_pub.Add('TRADING PARTNER SITE ----- >>>'||p_tr_partner_site,1);
1106: ecx_cln_debug_pub.Add('RESENG FLAG ----- >>>'||p_resend_flag,1);
1107: ecx_cln_debug_pub.Add('RESEND COUNT ----- >>>'||p_resend_count,1);
1108: ecx_cln_debug_pub.Add('DOCUMENT OWNER ----- >>>'||p_doc_owner,1);
1109: ecx_cln_debug_pub.Add('OWNER ROLE ----- >>>'||p_owner_role,1);
1110: ecx_cln_debug_pub.Add('INITIATION DATE ----- >>>'||p_init_date,1);
1111: ecx_cln_debug_pub.Add('DOCUMENT CREATION DATE ----- >>>'||p_doc_creation_date,1);
1112: ecx_cln_debug_pub.Add('DOCUMENT REVISION DATE ----- >>>'||p_doc_revision_date,1);

Line 1109: ecx_cln_debug_pub.Add('OWNER ROLE ----- >>>'||p_owner_role,1);

1105: ecx_cln_debug_pub.Add('TRADING PARTNER SITE ----- >>>'||p_tr_partner_site,1);
1106: ecx_cln_debug_pub.Add('RESENG FLAG ----- >>>'||p_resend_flag,1);
1107: ecx_cln_debug_pub.Add('RESEND COUNT ----- >>>'||p_resend_count,1);
1108: ecx_cln_debug_pub.Add('DOCUMENT OWNER ----- >>>'||p_doc_owner,1);
1109: ecx_cln_debug_pub.Add('OWNER ROLE ----- >>>'||p_owner_role,1);
1110: ecx_cln_debug_pub.Add('INITIATION DATE ----- >>>'||p_init_date,1);
1111: ecx_cln_debug_pub.Add('DOCUMENT CREATION DATE ----- >>>'||p_doc_creation_date,1);
1112: ecx_cln_debug_pub.Add('DOCUMENT REVISION DATE ----- >>>'||p_doc_revision_date,1);
1113: ecx_cln_debug_pub.Add('DOCUMENT TYPE ----- >>>'||p_doc_type,1);

Line 1110: ecx_cln_debug_pub.Add('INITIATION DATE ----- >>>'||p_init_date,1);

1106: ecx_cln_debug_pub.Add('RESENG FLAG ----- >>>'||p_resend_flag,1);
1107: ecx_cln_debug_pub.Add('RESEND COUNT ----- >>>'||p_resend_count,1);
1108: ecx_cln_debug_pub.Add('DOCUMENT OWNER ----- >>>'||p_doc_owner,1);
1109: ecx_cln_debug_pub.Add('OWNER ROLE ----- >>>'||p_owner_role,1);
1110: ecx_cln_debug_pub.Add('INITIATION DATE ----- >>>'||p_init_date,1);
1111: ecx_cln_debug_pub.Add('DOCUMENT CREATION DATE ----- >>>'||p_doc_creation_date,1);
1112: ecx_cln_debug_pub.Add('DOCUMENT REVISION DATE ----- >>>'||p_doc_revision_date,1);
1113: ecx_cln_debug_pub.Add('DOCUMENT TYPE ----- >>>'||p_doc_type,1);
1114: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_dir,1);

Line 1111: ecx_cln_debug_pub.Add('DOCUMENT CREATION DATE ----- >>>'||p_doc_creation_date,1);

1107: ecx_cln_debug_pub.Add('RESEND COUNT ----- >>>'||p_resend_count,1);
1108: ecx_cln_debug_pub.Add('DOCUMENT OWNER ----- >>>'||p_doc_owner,1);
1109: ecx_cln_debug_pub.Add('OWNER ROLE ----- >>>'||p_owner_role,1);
1110: ecx_cln_debug_pub.Add('INITIATION DATE ----- >>>'||p_init_date,1);
1111: ecx_cln_debug_pub.Add('DOCUMENT CREATION DATE ----- >>>'||p_doc_creation_date,1);
1112: ecx_cln_debug_pub.Add('DOCUMENT REVISION DATE ----- >>>'||p_doc_revision_date,1);
1113: ecx_cln_debug_pub.Add('DOCUMENT TYPE ----- >>>'||p_doc_type,1);
1114: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_dir,1);
1115: ecx_cln_debug_pub.Add('COLLABORATION POINT ----- >>>'||p_coll_pt,1);

Line 1112: ecx_cln_debug_pub.Add('DOCUMENT REVISION DATE ----- >>>'||p_doc_revision_date,1);

1108: ecx_cln_debug_pub.Add('DOCUMENT OWNER ----- >>>'||p_doc_owner,1);
1109: ecx_cln_debug_pub.Add('OWNER ROLE ----- >>>'||p_owner_role,1);
1110: ecx_cln_debug_pub.Add('INITIATION DATE ----- >>>'||p_init_date,1);
1111: ecx_cln_debug_pub.Add('DOCUMENT CREATION DATE ----- >>>'||p_doc_creation_date,1);
1112: ecx_cln_debug_pub.Add('DOCUMENT REVISION DATE ----- >>>'||p_doc_revision_date,1);
1113: ecx_cln_debug_pub.Add('DOCUMENT TYPE ----- >>>'||p_doc_type,1);
1114: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_dir,1);
1115: ecx_cln_debug_pub.Add('COLLABORATION POINT ----- >>>'||p_coll_pt,1);
1116: ecx_cln_debug_pub.Add('XMLG MESSAGE ID ----- >>>'||p_xmlg_msg_id,1);

Line 1113: ecx_cln_debug_pub.Add('DOCUMENT TYPE ----- >>>'||p_doc_type,1);

1109: ecx_cln_debug_pub.Add('OWNER ROLE ----- >>>'||p_owner_role,1);
1110: ecx_cln_debug_pub.Add('INITIATION DATE ----- >>>'||p_init_date,1);
1111: ecx_cln_debug_pub.Add('DOCUMENT CREATION DATE ----- >>>'||p_doc_creation_date,1);
1112: ecx_cln_debug_pub.Add('DOCUMENT REVISION DATE ----- >>>'||p_doc_revision_date,1);
1113: ecx_cln_debug_pub.Add('DOCUMENT TYPE ----- >>>'||p_doc_type,1);
1114: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_dir,1);
1115: ecx_cln_debug_pub.Add('COLLABORATION POINT ----- >>>'||p_coll_pt,1);
1116: ecx_cln_debug_pub.Add('XMLG MESSAGE ID ----- >>>'||p_xmlg_msg_id,1);
1117: ecx_cln_debug_pub.Add('UNIQUE 1 ----- >>>'||p_unique1,1);

Line 1114: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_dir,1);

1110: ecx_cln_debug_pub.Add('INITIATION DATE ----- >>>'||p_init_date,1);
1111: ecx_cln_debug_pub.Add('DOCUMENT CREATION DATE ----- >>>'||p_doc_creation_date,1);
1112: ecx_cln_debug_pub.Add('DOCUMENT REVISION DATE ----- >>>'||p_doc_revision_date,1);
1113: ecx_cln_debug_pub.Add('DOCUMENT TYPE ----- >>>'||p_doc_type,1);
1114: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_dir,1);
1115: ecx_cln_debug_pub.Add('COLLABORATION POINT ----- >>>'||p_coll_pt,1);
1116: ecx_cln_debug_pub.Add('XMLG MESSAGE ID ----- >>>'||p_xmlg_msg_id,1);
1117: ecx_cln_debug_pub.Add('UNIQUE 1 ----- >>>'||p_unique1,1);
1118: ecx_cln_debug_pub.Add('UNIQUE 2 ----- >>>'||p_unique2,1);

Line 1115: ecx_cln_debug_pub.Add('COLLABORATION POINT ----- >>>'||p_coll_pt,1);

1111: ecx_cln_debug_pub.Add('DOCUMENT CREATION DATE ----- >>>'||p_doc_creation_date,1);
1112: ecx_cln_debug_pub.Add('DOCUMENT REVISION DATE ----- >>>'||p_doc_revision_date,1);
1113: ecx_cln_debug_pub.Add('DOCUMENT TYPE ----- >>>'||p_doc_type,1);
1114: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_dir,1);
1115: ecx_cln_debug_pub.Add('COLLABORATION POINT ----- >>>'||p_coll_pt,1);
1116: ecx_cln_debug_pub.Add('XMLG MESSAGE ID ----- >>>'||p_xmlg_msg_id,1);
1117: ecx_cln_debug_pub.Add('UNIQUE 1 ----- >>>'||p_unique1,1);
1118: ecx_cln_debug_pub.Add('UNIQUE 2 ----- >>>'||p_unique2,1);
1119: ecx_cln_debug_pub.Add('UNIQUE 3 ----- >>>'||p_unique3,1);

Line 1116: ecx_cln_debug_pub.Add('XMLG MESSAGE ID ----- >>>'||p_xmlg_msg_id,1);

1112: ecx_cln_debug_pub.Add('DOCUMENT REVISION DATE ----- >>>'||p_doc_revision_date,1);
1113: ecx_cln_debug_pub.Add('DOCUMENT TYPE ----- >>>'||p_doc_type,1);
1114: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_dir,1);
1115: ecx_cln_debug_pub.Add('COLLABORATION POINT ----- >>>'||p_coll_pt,1);
1116: ecx_cln_debug_pub.Add('XMLG MESSAGE ID ----- >>>'||p_xmlg_msg_id,1);
1117: ecx_cln_debug_pub.Add('UNIQUE 1 ----- >>>'||p_unique1,1);
1118: ecx_cln_debug_pub.Add('UNIQUE 2 ----- >>>'||p_unique2,1);
1119: ecx_cln_debug_pub.Add('UNIQUE 3 ----- >>>'||p_unique3,1);
1120: ecx_cln_debug_pub.Add('UNIQUE 4 ----- >>>'||p_unique4,1);

Line 1117: ecx_cln_debug_pub.Add('UNIQUE 1 ----- >>>'||p_unique1,1);

1113: ecx_cln_debug_pub.Add('DOCUMENT TYPE ----- >>>'||p_doc_type,1);
1114: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_dir,1);
1115: ecx_cln_debug_pub.Add('COLLABORATION POINT ----- >>>'||p_coll_pt,1);
1116: ecx_cln_debug_pub.Add('XMLG MESSAGE ID ----- >>>'||p_xmlg_msg_id,1);
1117: ecx_cln_debug_pub.Add('UNIQUE 1 ----- >>>'||p_unique1,1);
1118: ecx_cln_debug_pub.Add('UNIQUE 2 ----- >>>'||p_unique2,1);
1119: ecx_cln_debug_pub.Add('UNIQUE 3 ----- >>>'||p_unique3,1);
1120: ecx_cln_debug_pub.Add('UNIQUE 4 ----- >>>'||p_unique4,1);
1121: ecx_cln_debug_pub.Add('UNIQUE 5 ----- >>>'||p_unique5,1);

Line 1118: ecx_cln_debug_pub.Add('UNIQUE 2 ----- >>>'||p_unique2,1);

1114: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_dir,1);
1115: ecx_cln_debug_pub.Add('COLLABORATION POINT ----- >>>'||p_coll_pt,1);
1116: ecx_cln_debug_pub.Add('XMLG MESSAGE ID ----- >>>'||p_xmlg_msg_id,1);
1117: ecx_cln_debug_pub.Add('UNIQUE 1 ----- >>>'||p_unique1,1);
1118: ecx_cln_debug_pub.Add('UNIQUE 2 ----- >>>'||p_unique2,1);
1119: ecx_cln_debug_pub.Add('UNIQUE 3 ----- >>>'||p_unique3,1);
1120: ecx_cln_debug_pub.Add('UNIQUE 4 ----- >>>'||p_unique4,1);
1121: ecx_cln_debug_pub.Add('UNIQUE 5 ----- >>>'||p_unique5,1);
1122: ecx_cln_debug_pub.Add('SENDER COMPONENT ----- >>>'||p_sender_component,1);

Line 1119: ecx_cln_debug_pub.Add('UNIQUE 3 ----- >>>'||p_unique3,1);

1115: ecx_cln_debug_pub.Add('COLLABORATION POINT ----- >>>'||p_coll_pt,1);
1116: ecx_cln_debug_pub.Add('XMLG MESSAGE ID ----- >>>'||p_xmlg_msg_id,1);
1117: ecx_cln_debug_pub.Add('UNIQUE 1 ----- >>>'||p_unique1,1);
1118: ecx_cln_debug_pub.Add('UNIQUE 2 ----- >>>'||p_unique2,1);
1119: ecx_cln_debug_pub.Add('UNIQUE 3 ----- >>>'||p_unique3,1);
1120: ecx_cln_debug_pub.Add('UNIQUE 4 ----- >>>'||p_unique4,1);
1121: ecx_cln_debug_pub.Add('UNIQUE 5 ----- >>>'||p_unique5,1);
1122: ecx_cln_debug_pub.Add('SENDER COMPONENT ----- >>>'||p_sender_component,1);
1123: ecx_cln_debug_pub.Add('XMLG INTERNAL CONTROL NO ----- >>>'||p_xmlg_internal_control_number,1);

Line 1120: ecx_cln_debug_pub.Add('UNIQUE 4 ----- >>>'||p_unique4,1);

1116: ecx_cln_debug_pub.Add('XMLG MESSAGE ID ----- >>>'||p_xmlg_msg_id,1);
1117: ecx_cln_debug_pub.Add('UNIQUE 1 ----- >>>'||p_unique1,1);
1118: ecx_cln_debug_pub.Add('UNIQUE 2 ----- >>>'||p_unique2,1);
1119: ecx_cln_debug_pub.Add('UNIQUE 3 ----- >>>'||p_unique3,1);
1120: ecx_cln_debug_pub.Add('UNIQUE 4 ----- >>>'||p_unique4,1);
1121: ecx_cln_debug_pub.Add('UNIQUE 5 ----- >>>'||p_unique5,1);
1122: ecx_cln_debug_pub.Add('SENDER COMPONENT ----- >>>'||p_sender_component,1);
1123: ecx_cln_debug_pub.Add('XMLG INTERNAL CONTROL NO ----- >>>'||p_xmlg_internal_control_number,1);
1124: ecx_cln_debug_pub.Add('XMLG EVENT KEY ----- >>>'||p_xml_event_key,1);

Line 1121: ecx_cln_debug_pub.Add('UNIQUE 5 ----- >>>'||p_unique5,1);

1117: ecx_cln_debug_pub.Add('UNIQUE 1 ----- >>>'||p_unique1,1);
1118: ecx_cln_debug_pub.Add('UNIQUE 2 ----- >>>'||p_unique2,1);
1119: ecx_cln_debug_pub.Add('UNIQUE 3 ----- >>>'||p_unique3,1);
1120: ecx_cln_debug_pub.Add('UNIQUE 4 ----- >>>'||p_unique4,1);
1121: ecx_cln_debug_pub.Add('UNIQUE 5 ----- >>>'||p_unique5,1);
1122: ecx_cln_debug_pub.Add('SENDER COMPONENT ----- >>>'||p_sender_component,1);
1123: ecx_cln_debug_pub.Add('XMLG INTERNAL CONTROL NO ----- >>>'||p_xmlg_internal_control_number,1);
1124: ecx_cln_debug_pub.Add('XMLG EVENT KEY ----- >>>'||p_xml_event_key,1);
1125: ecx_cln_debug_pub.Add('MSG TXT ----- >>>'||p_msg_text,1);

Line 1122: ecx_cln_debug_pub.Add('SENDER COMPONENT ----- >>>'||p_sender_component,1);

1118: ecx_cln_debug_pub.Add('UNIQUE 2 ----- >>>'||p_unique2,1);
1119: ecx_cln_debug_pub.Add('UNIQUE 3 ----- >>>'||p_unique3,1);
1120: ecx_cln_debug_pub.Add('UNIQUE 4 ----- >>>'||p_unique4,1);
1121: ecx_cln_debug_pub.Add('UNIQUE 5 ----- >>>'||p_unique5,1);
1122: ecx_cln_debug_pub.Add('SENDER COMPONENT ----- >>>'||p_sender_component,1);
1123: ecx_cln_debug_pub.Add('XMLG INTERNAL CONTROL NO ----- >>>'||p_xmlg_internal_control_number,1);
1124: ecx_cln_debug_pub.Add('XMLG EVENT KEY ----- >>>'||p_xml_event_key,1);
1125: ecx_cln_debug_pub.Add('MSG TXT ----- >>>'||p_msg_text,1);
1126: ecx_cln_debug_pub.Add('Collaboration Standard ----- >>>'||p_collaboration_standard,1);

Line 1123: ecx_cln_debug_pub.Add('XMLG INTERNAL CONTROL NO ----- >>>'||p_xmlg_internal_control_number,1);

1119: ecx_cln_debug_pub.Add('UNIQUE 3 ----- >>>'||p_unique3,1);
1120: ecx_cln_debug_pub.Add('UNIQUE 4 ----- >>>'||p_unique4,1);
1121: ecx_cln_debug_pub.Add('UNIQUE 5 ----- >>>'||p_unique5,1);
1122: ecx_cln_debug_pub.Add('SENDER COMPONENT ----- >>>'||p_sender_component,1);
1123: ecx_cln_debug_pub.Add('XMLG INTERNAL CONTROL NO ----- >>>'||p_xmlg_internal_control_number,1);
1124: ecx_cln_debug_pub.Add('XMLG EVENT KEY ----- >>>'||p_xml_event_key,1);
1125: ecx_cln_debug_pub.Add('MSG TXT ----- >>>'||p_msg_text,1);
1126: ecx_cln_debug_pub.Add('Collaboration Standard ----- >>>'||p_collaboration_standard,1);
1127: ecx_cln_debug_pub.Add('ATTRIBUTE1 ----- >>>'||p_attribute1,1);

Line 1124: ecx_cln_debug_pub.Add('XMLG EVENT KEY ----- >>>'||p_xml_event_key,1);

1120: ecx_cln_debug_pub.Add('UNIQUE 4 ----- >>>'||p_unique4,1);
1121: ecx_cln_debug_pub.Add('UNIQUE 5 ----- >>>'||p_unique5,1);
1122: ecx_cln_debug_pub.Add('SENDER COMPONENT ----- >>>'||p_sender_component,1);
1123: ecx_cln_debug_pub.Add('XMLG INTERNAL CONTROL NO ----- >>>'||p_xmlg_internal_control_number,1);
1124: ecx_cln_debug_pub.Add('XMLG EVENT KEY ----- >>>'||p_xml_event_key,1);
1125: ecx_cln_debug_pub.Add('MSG TXT ----- >>>'||p_msg_text,1);
1126: ecx_cln_debug_pub.Add('Collaboration Standard ----- >>>'||p_collaboration_standard,1);
1127: ecx_cln_debug_pub.Add('ATTRIBUTE1 ----- >>>'||p_attribute1,1);
1128: ecx_cln_debug_pub.Add('ATTRIBUTE2 ----- >>>'||p_attribute2,1);

Line 1125: ecx_cln_debug_pub.Add('MSG TXT ----- >>>'||p_msg_text,1);

1121: ecx_cln_debug_pub.Add('UNIQUE 5 ----- >>>'||p_unique5,1);
1122: ecx_cln_debug_pub.Add('SENDER COMPONENT ----- >>>'||p_sender_component,1);
1123: ecx_cln_debug_pub.Add('XMLG INTERNAL CONTROL NO ----- >>>'||p_xmlg_internal_control_number,1);
1124: ecx_cln_debug_pub.Add('XMLG EVENT KEY ----- >>>'||p_xml_event_key,1);
1125: ecx_cln_debug_pub.Add('MSG TXT ----- >>>'||p_msg_text,1);
1126: ecx_cln_debug_pub.Add('Collaboration Standard ----- >>>'||p_collaboration_standard,1);
1127: ecx_cln_debug_pub.Add('ATTRIBUTE1 ----- >>>'||p_attribute1,1);
1128: ecx_cln_debug_pub.Add('ATTRIBUTE2 ----- >>>'||p_attribute2,1);
1129: ecx_cln_debug_pub.Add('ATTRIBUTE3 ----- >>>'||p_attribute3,1);

Line 1126: ecx_cln_debug_pub.Add('Collaboration Standard ----- >>>'||p_collaboration_standard,1);

1122: ecx_cln_debug_pub.Add('SENDER COMPONENT ----- >>>'||p_sender_component,1);
1123: ecx_cln_debug_pub.Add('XMLG INTERNAL CONTROL NO ----- >>>'||p_xmlg_internal_control_number,1);
1124: ecx_cln_debug_pub.Add('XMLG EVENT KEY ----- >>>'||p_xml_event_key,1);
1125: ecx_cln_debug_pub.Add('MSG TXT ----- >>>'||p_msg_text,1);
1126: ecx_cln_debug_pub.Add('Collaboration Standard ----- >>>'||p_collaboration_standard,1);
1127: ecx_cln_debug_pub.Add('ATTRIBUTE1 ----- >>>'||p_attribute1,1);
1128: ecx_cln_debug_pub.Add('ATTRIBUTE2 ----- >>>'||p_attribute2,1);
1129: ecx_cln_debug_pub.Add('ATTRIBUTE3 ----- >>>'||p_attribute3,1);
1130: ecx_cln_debug_pub.Add('ATTRIBUTE4 ----- >>>'||p_attribute4,1);

Line 1127: ecx_cln_debug_pub.Add('ATTRIBUTE1 ----- >>>'||p_attribute1,1);

1123: ecx_cln_debug_pub.Add('XMLG INTERNAL CONTROL NO ----- >>>'||p_xmlg_internal_control_number,1);
1124: ecx_cln_debug_pub.Add('XMLG EVENT KEY ----- >>>'||p_xml_event_key,1);
1125: ecx_cln_debug_pub.Add('MSG TXT ----- >>>'||p_msg_text,1);
1126: ecx_cln_debug_pub.Add('Collaboration Standard ----- >>>'||p_collaboration_standard,1);
1127: ecx_cln_debug_pub.Add('ATTRIBUTE1 ----- >>>'||p_attribute1,1);
1128: ecx_cln_debug_pub.Add('ATTRIBUTE2 ----- >>>'||p_attribute2,1);
1129: ecx_cln_debug_pub.Add('ATTRIBUTE3 ----- >>>'||p_attribute3,1);
1130: ecx_cln_debug_pub.Add('ATTRIBUTE4 ----- >>>'||p_attribute4,1);
1131: ecx_cln_debug_pub.Add('ATTRIBUTE5 ----- >>>'||p_attribute5,1);

Line 1128: ecx_cln_debug_pub.Add('ATTRIBUTE2 ----- >>>'||p_attribute2,1);

1124: ecx_cln_debug_pub.Add('XMLG EVENT KEY ----- >>>'||p_xml_event_key,1);
1125: ecx_cln_debug_pub.Add('MSG TXT ----- >>>'||p_msg_text,1);
1126: ecx_cln_debug_pub.Add('Collaboration Standard ----- >>>'||p_collaboration_standard,1);
1127: ecx_cln_debug_pub.Add('ATTRIBUTE1 ----- >>>'||p_attribute1,1);
1128: ecx_cln_debug_pub.Add('ATTRIBUTE2 ----- >>>'||p_attribute2,1);
1129: ecx_cln_debug_pub.Add('ATTRIBUTE3 ----- >>>'||p_attribute3,1);
1130: ecx_cln_debug_pub.Add('ATTRIBUTE4 ----- >>>'||p_attribute4,1);
1131: ecx_cln_debug_pub.Add('ATTRIBUTE5 ----- >>>'||p_attribute5,1);
1132: ecx_cln_debug_pub.Add('ATTRIBUTE6 ----- >>>'||p_attribute6,1);

Line 1129: ecx_cln_debug_pub.Add('ATTRIBUTE3 ----- >>>'||p_attribute3,1);

1125: ecx_cln_debug_pub.Add('MSG TXT ----- >>>'||p_msg_text,1);
1126: ecx_cln_debug_pub.Add('Collaboration Standard ----- >>>'||p_collaboration_standard,1);
1127: ecx_cln_debug_pub.Add('ATTRIBUTE1 ----- >>>'||p_attribute1,1);
1128: ecx_cln_debug_pub.Add('ATTRIBUTE2 ----- >>>'||p_attribute2,1);
1129: ecx_cln_debug_pub.Add('ATTRIBUTE3 ----- >>>'||p_attribute3,1);
1130: ecx_cln_debug_pub.Add('ATTRIBUTE4 ----- >>>'||p_attribute4,1);
1131: ecx_cln_debug_pub.Add('ATTRIBUTE5 ----- >>>'||p_attribute5,1);
1132: ecx_cln_debug_pub.Add('ATTRIBUTE6 ----- >>>'||p_attribute6,1);
1133: ecx_cln_debug_pub.Add('ATTRIBUTE7 ----- >>>'||p_attribute7,1);

Line 1130: ecx_cln_debug_pub.Add('ATTRIBUTE4 ----- >>>'||p_attribute4,1);

1126: ecx_cln_debug_pub.Add('Collaboration Standard ----- >>>'||p_collaboration_standard,1);
1127: ecx_cln_debug_pub.Add('ATTRIBUTE1 ----- >>>'||p_attribute1,1);
1128: ecx_cln_debug_pub.Add('ATTRIBUTE2 ----- >>>'||p_attribute2,1);
1129: ecx_cln_debug_pub.Add('ATTRIBUTE3 ----- >>>'||p_attribute3,1);
1130: ecx_cln_debug_pub.Add('ATTRIBUTE4 ----- >>>'||p_attribute4,1);
1131: ecx_cln_debug_pub.Add('ATTRIBUTE5 ----- >>>'||p_attribute5,1);
1132: ecx_cln_debug_pub.Add('ATTRIBUTE6 ----- >>>'||p_attribute6,1);
1133: ecx_cln_debug_pub.Add('ATTRIBUTE7 ----- >>>'||p_attribute7,1);
1134: ecx_cln_debug_pub.Add('ATTRIBUTE8 ----- >>>'||p_attribute8,1);

Line 1131: ecx_cln_debug_pub.Add('ATTRIBUTE5 ----- >>>'||p_attribute5,1);

1127: ecx_cln_debug_pub.Add('ATTRIBUTE1 ----- >>>'||p_attribute1,1);
1128: ecx_cln_debug_pub.Add('ATTRIBUTE2 ----- >>>'||p_attribute2,1);
1129: ecx_cln_debug_pub.Add('ATTRIBUTE3 ----- >>>'||p_attribute3,1);
1130: ecx_cln_debug_pub.Add('ATTRIBUTE4 ----- >>>'||p_attribute4,1);
1131: ecx_cln_debug_pub.Add('ATTRIBUTE5 ----- >>>'||p_attribute5,1);
1132: ecx_cln_debug_pub.Add('ATTRIBUTE6 ----- >>>'||p_attribute6,1);
1133: ecx_cln_debug_pub.Add('ATTRIBUTE7 ----- >>>'||p_attribute7,1);
1134: ecx_cln_debug_pub.Add('ATTRIBUTE8 ----- >>>'||p_attribute8,1);
1135: ecx_cln_debug_pub.Add('ATTRIBUTE9 ----- >>>'||p_attribute9,1);

Line 1132: ecx_cln_debug_pub.Add('ATTRIBUTE6 ----- >>>'||p_attribute6,1);

1128: ecx_cln_debug_pub.Add('ATTRIBUTE2 ----- >>>'||p_attribute2,1);
1129: ecx_cln_debug_pub.Add('ATTRIBUTE3 ----- >>>'||p_attribute3,1);
1130: ecx_cln_debug_pub.Add('ATTRIBUTE4 ----- >>>'||p_attribute4,1);
1131: ecx_cln_debug_pub.Add('ATTRIBUTE5 ----- >>>'||p_attribute5,1);
1132: ecx_cln_debug_pub.Add('ATTRIBUTE6 ----- >>>'||p_attribute6,1);
1133: ecx_cln_debug_pub.Add('ATTRIBUTE7 ----- >>>'||p_attribute7,1);
1134: ecx_cln_debug_pub.Add('ATTRIBUTE8 ----- >>>'||p_attribute8,1);
1135: ecx_cln_debug_pub.Add('ATTRIBUTE9 ----- >>>'||p_attribute9,1);
1136: ecx_cln_debug_pub.Add('ATTRIBUTE10 ----- >>>'||p_attribute10,1);

Line 1133: ecx_cln_debug_pub.Add('ATTRIBUTE7 ----- >>>'||p_attribute7,1);

1129: ecx_cln_debug_pub.Add('ATTRIBUTE3 ----- >>>'||p_attribute3,1);
1130: ecx_cln_debug_pub.Add('ATTRIBUTE4 ----- >>>'||p_attribute4,1);
1131: ecx_cln_debug_pub.Add('ATTRIBUTE5 ----- >>>'||p_attribute5,1);
1132: ecx_cln_debug_pub.Add('ATTRIBUTE6 ----- >>>'||p_attribute6,1);
1133: ecx_cln_debug_pub.Add('ATTRIBUTE7 ----- >>>'||p_attribute7,1);
1134: ecx_cln_debug_pub.Add('ATTRIBUTE8 ----- >>>'||p_attribute8,1);
1135: ecx_cln_debug_pub.Add('ATTRIBUTE9 ----- >>>'||p_attribute9,1);
1136: ecx_cln_debug_pub.Add('ATTRIBUTE10 ----- >>>'||p_attribute10,1);
1137: ecx_cln_debug_pub.Add('ATTRIBUTE11 ----- >>>'||p_attribute11,1);

Line 1134: ecx_cln_debug_pub.Add('ATTRIBUTE8 ----- >>>'||p_attribute8,1);

1130: ecx_cln_debug_pub.Add('ATTRIBUTE4 ----- >>>'||p_attribute4,1);
1131: ecx_cln_debug_pub.Add('ATTRIBUTE5 ----- >>>'||p_attribute5,1);
1132: ecx_cln_debug_pub.Add('ATTRIBUTE6 ----- >>>'||p_attribute6,1);
1133: ecx_cln_debug_pub.Add('ATTRIBUTE7 ----- >>>'||p_attribute7,1);
1134: ecx_cln_debug_pub.Add('ATTRIBUTE8 ----- >>>'||p_attribute8,1);
1135: ecx_cln_debug_pub.Add('ATTRIBUTE9 ----- >>>'||p_attribute9,1);
1136: ecx_cln_debug_pub.Add('ATTRIBUTE10 ----- >>>'||p_attribute10,1);
1137: ecx_cln_debug_pub.Add('ATTRIBUTE11 ----- >>>'||p_attribute11,1);
1138: ecx_cln_debug_pub.Add('ATTRIBUTE12 ----- >>>'||p_attribute12,1);

Line 1135: ecx_cln_debug_pub.Add('ATTRIBUTE9 ----- >>>'||p_attribute9,1);

1131: ecx_cln_debug_pub.Add('ATTRIBUTE5 ----- >>>'||p_attribute5,1);
1132: ecx_cln_debug_pub.Add('ATTRIBUTE6 ----- >>>'||p_attribute6,1);
1133: ecx_cln_debug_pub.Add('ATTRIBUTE7 ----- >>>'||p_attribute7,1);
1134: ecx_cln_debug_pub.Add('ATTRIBUTE8 ----- >>>'||p_attribute8,1);
1135: ecx_cln_debug_pub.Add('ATTRIBUTE9 ----- >>>'||p_attribute9,1);
1136: ecx_cln_debug_pub.Add('ATTRIBUTE10 ----- >>>'||p_attribute10,1);
1137: ecx_cln_debug_pub.Add('ATTRIBUTE11 ----- >>>'||p_attribute11,1);
1138: ecx_cln_debug_pub.Add('ATTRIBUTE12 ----- >>>'||p_attribute12,1);
1139: ecx_cln_debug_pub.Add('ATTRIBUTE13 ----- >>>'||p_attribute13,1);

Line 1136: ecx_cln_debug_pub.Add('ATTRIBUTE10 ----- >>>'||p_attribute10,1);

1132: ecx_cln_debug_pub.Add('ATTRIBUTE6 ----- >>>'||p_attribute6,1);
1133: ecx_cln_debug_pub.Add('ATTRIBUTE7 ----- >>>'||p_attribute7,1);
1134: ecx_cln_debug_pub.Add('ATTRIBUTE8 ----- >>>'||p_attribute8,1);
1135: ecx_cln_debug_pub.Add('ATTRIBUTE9 ----- >>>'||p_attribute9,1);
1136: ecx_cln_debug_pub.Add('ATTRIBUTE10 ----- >>>'||p_attribute10,1);
1137: ecx_cln_debug_pub.Add('ATTRIBUTE11 ----- >>>'||p_attribute11,1);
1138: ecx_cln_debug_pub.Add('ATTRIBUTE12 ----- >>>'||p_attribute12,1);
1139: ecx_cln_debug_pub.Add('ATTRIBUTE13 ----- >>>'||p_attribute13,1);
1140: ecx_cln_debug_pub.Add('ATTRIBUTE14 ----- >>>'||p_attribute14,1);

Line 1137: ecx_cln_debug_pub.Add('ATTRIBUTE11 ----- >>>'||p_attribute11,1);

1133: ecx_cln_debug_pub.Add('ATTRIBUTE7 ----- >>>'||p_attribute7,1);
1134: ecx_cln_debug_pub.Add('ATTRIBUTE8 ----- >>>'||p_attribute8,1);
1135: ecx_cln_debug_pub.Add('ATTRIBUTE9 ----- >>>'||p_attribute9,1);
1136: ecx_cln_debug_pub.Add('ATTRIBUTE10 ----- >>>'||p_attribute10,1);
1137: ecx_cln_debug_pub.Add('ATTRIBUTE11 ----- >>>'||p_attribute11,1);
1138: ecx_cln_debug_pub.Add('ATTRIBUTE12 ----- >>>'||p_attribute12,1);
1139: ecx_cln_debug_pub.Add('ATTRIBUTE13 ----- >>>'||p_attribute13,1);
1140: ecx_cln_debug_pub.Add('ATTRIBUTE14 ----- >>>'||p_attribute14,1);
1141: ecx_cln_debug_pub.Add('ATTRIBUTE15 ----- >>>'||p_attribute15,1);

Line 1138: ecx_cln_debug_pub.Add('ATTRIBUTE12 ----- >>>'||p_attribute12,1);

1134: ecx_cln_debug_pub.Add('ATTRIBUTE8 ----- >>>'||p_attribute8,1);
1135: ecx_cln_debug_pub.Add('ATTRIBUTE9 ----- >>>'||p_attribute9,1);
1136: ecx_cln_debug_pub.Add('ATTRIBUTE10 ----- >>>'||p_attribute10,1);
1137: ecx_cln_debug_pub.Add('ATTRIBUTE11 ----- >>>'||p_attribute11,1);
1138: ecx_cln_debug_pub.Add('ATTRIBUTE12 ----- >>>'||p_attribute12,1);
1139: ecx_cln_debug_pub.Add('ATTRIBUTE13 ----- >>>'||p_attribute13,1);
1140: ecx_cln_debug_pub.Add('ATTRIBUTE14 ----- >>>'||p_attribute14,1);
1141: ecx_cln_debug_pub.Add('ATTRIBUTE15 ----- >>>'||p_attribute15,1);
1142: ecx_cln_debug_pub.Add('DATTRIBUTE1 ----- >>>'||p_dattribute1,1);

Line 1139: ecx_cln_debug_pub.Add('ATTRIBUTE13 ----- >>>'||p_attribute13,1);

1135: ecx_cln_debug_pub.Add('ATTRIBUTE9 ----- >>>'||p_attribute9,1);
1136: ecx_cln_debug_pub.Add('ATTRIBUTE10 ----- >>>'||p_attribute10,1);
1137: ecx_cln_debug_pub.Add('ATTRIBUTE11 ----- >>>'||p_attribute11,1);
1138: ecx_cln_debug_pub.Add('ATTRIBUTE12 ----- >>>'||p_attribute12,1);
1139: ecx_cln_debug_pub.Add('ATTRIBUTE13 ----- >>>'||p_attribute13,1);
1140: ecx_cln_debug_pub.Add('ATTRIBUTE14 ----- >>>'||p_attribute14,1);
1141: ecx_cln_debug_pub.Add('ATTRIBUTE15 ----- >>>'||p_attribute15,1);
1142: ecx_cln_debug_pub.Add('DATTRIBUTE1 ----- >>>'||p_dattribute1,1);
1143: ecx_cln_debug_pub.Add('DATTRIBUTE2 ----- >>>'||p_dattribute2,1);

Line 1140: ecx_cln_debug_pub.Add('ATTRIBUTE14 ----- >>>'||p_attribute14,1);

1136: ecx_cln_debug_pub.Add('ATTRIBUTE10 ----- >>>'||p_attribute10,1);
1137: ecx_cln_debug_pub.Add('ATTRIBUTE11 ----- >>>'||p_attribute11,1);
1138: ecx_cln_debug_pub.Add('ATTRIBUTE12 ----- >>>'||p_attribute12,1);
1139: ecx_cln_debug_pub.Add('ATTRIBUTE13 ----- >>>'||p_attribute13,1);
1140: ecx_cln_debug_pub.Add('ATTRIBUTE14 ----- >>>'||p_attribute14,1);
1141: ecx_cln_debug_pub.Add('ATTRIBUTE15 ----- >>>'||p_attribute15,1);
1142: ecx_cln_debug_pub.Add('DATTRIBUTE1 ----- >>>'||p_dattribute1,1);
1143: ecx_cln_debug_pub.Add('DATTRIBUTE2 ----- >>>'||p_dattribute2,1);
1144: ecx_cln_debug_pub.Add('DATTRIBUTE3 ----- >>>'||p_dattribute3,1);

Line 1141: ecx_cln_debug_pub.Add('ATTRIBUTE15 ----- >>>'||p_attribute15,1);

1137: ecx_cln_debug_pub.Add('ATTRIBUTE11 ----- >>>'||p_attribute11,1);
1138: ecx_cln_debug_pub.Add('ATTRIBUTE12 ----- >>>'||p_attribute12,1);
1139: ecx_cln_debug_pub.Add('ATTRIBUTE13 ----- >>>'||p_attribute13,1);
1140: ecx_cln_debug_pub.Add('ATTRIBUTE14 ----- >>>'||p_attribute14,1);
1141: ecx_cln_debug_pub.Add('ATTRIBUTE15 ----- >>>'||p_attribute15,1);
1142: ecx_cln_debug_pub.Add('DATTRIBUTE1 ----- >>>'||p_dattribute1,1);
1143: ecx_cln_debug_pub.Add('DATTRIBUTE2 ----- >>>'||p_dattribute2,1);
1144: ecx_cln_debug_pub.Add('DATTRIBUTE3 ----- >>>'||p_dattribute3,1);
1145: ecx_cln_debug_pub.Add('DATTRIBUTE4 ----- >>>'||p_dattribute4,1);

Line 1142: ecx_cln_debug_pub.Add('DATTRIBUTE1 ----- >>>'||p_dattribute1,1);

1138: ecx_cln_debug_pub.Add('ATTRIBUTE12 ----- >>>'||p_attribute12,1);
1139: ecx_cln_debug_pub.Add('ATTRIBUTE13 ----- >>>'||p_attribute13,1);
1140: ecx_cln_debug_pub.Add('ATTRIBUTE14 ----- >>>'||p_attribute14,1);
1141: ecx_cln_debug_pub.Add('ATTRIBUTE15 ----- >>>'||p_attribute15,1);
1142: ecx_cln_debug_pub.Add('DATTRIBUTE1 ----- >>>'||p_dattribute1,1);
1143: ecx_cln_debug_pub.Add('DATTRIBUTE2 ----- >>>'||p_dattribute2,1);
1144: ecx_cln_debug_pub.Add('DATTRIBUTE3 ----- >>>'||p_dattribute3,1);
1145: ecx_cln_debug_pub.Add('DATTRIBUTE4 ----- >>>'||p_dattribute4,1);
1146: ecx_cln_debug_pub.Add('DATTRIBUTE5 ----- >>>'||p_dattribute5,1);

Line 1143: ecx_cln_debug_pub.Add('DATTRIBUTE2 ----- >>>'||p_dattribute2,1);

1139: ecx_cln_debug_pub.Add('ATTRIBUTE13 ----- >>>'||p_attribute13,1);
1140: ecx_cln_debug_pub.Add('ATTRIBUTE14 ----- >>>'||p_attribute14,1);
1141: ecx_cln_debug_pub.Add('ATTRIBUTE15 ----- >>>'||p_attribute15,1);
1142: ecx_cln_debug_pub.Add('DATTRIBUTE1 ----- >>>'||p_dattribute1,1);
1143: ecx_cln_debug_pub.Add('DATTRIBUTE2 ----- >>>'||p_dattribute2,1);
1144: ecx_cln_debug_pub.Add('DATTRIBUTE3 ----- >>>'||p_dattribute3,1);
1145: ecx_cln_debug_pub.Add('DATTRIBUTE4 ----- >>>'||p_dattribute4,1);
1146: ecx_cln_debug_pub.Add('DATTRIBUTE5 ----- >>>'||p_dattribute5,1);
1147: ecx_cln_debug_pub.Add('===========================================',1);

Line 1144: ecx_cln_debug_pub.Add('DATTRIBUTE3 ----- >>>'||p_dattribute3,1);

1140: ecx_cln_debug_pub.Add('ATTRIBUTE14 ----- >>>'||p_attribute14,1);
1141: ecx_cln_debug_pub.Add('ATTRIBUTE15 ----- >>>'||p_attribute15,1);
1142: ecx_cln_debug_pub.Add('DATTRIBUTE1 ----- >>>'||p_dattribute1,1);
1143: ecx_cln_debug_pub.Add('DATTRIBUTE2 ----- >>>'||p_dattribute2,1);
1144: ecx_cln_debug_pub.Add('DATTRIBUTE3 ----- >>>'||p_dattribute3,1);
1145: ecx_cln_debug_pub.Add('DATTRIBUTE4 ----- >>>'||p_dattribute4,1);
1146: ecx_cln_debug_pub.Add('DATTRIBUTE5 ----- >>>'||p_dattribute5,1);
1147: ecx_cln_debug_pub.Add('===========================================',1);
1148: END IF;

Line 1145: ecx_cln_debug_pub.Add('DATTRIBUTE4 ----- >>>'||p_dattribute4,1);

1141: ecx_cln_debug_pub.Add('ATTRIBUTE15 ----- >>>'||p_attribute15,1);
1142: ecx_cln_debug_pub.Add('DATTRIBUTE1 ----- >>>'||p_dattribute1,1);
1143: ecx_cln_debug_pub.Add('DATTRIBUTE2 ----- >>>'||p_dattribute2,1);
1144: ecx_cln_debug_pub.Add('DATTRIBUTE3 ----- >>>'||p_dattribute3,1);
1145: ecx_cln_debug_pub.Add('DATTRIBUTE4 ----- >>>'||p_dattribute4,1);
1146: ecx_cln_debug_pub.Add('DATTRIBUTE5 ----- >>>'||p_dattribute5,1);
1147: ecx_cln_debug_pub.Add('===========================================',1);
1148: END IF;
1149:

Line 1146: ecx_cln_debug_pub.Add('DATTRIBUTE5 ----- >>>'||p_dattribute5,1);

1142: ecx_cln_debug_pub.Add('DATTRIBUTE1 ----- >>>'||p_dattribute1,1);
1143: ecx_cln_debug_pub.Add('DATTRIBUTE2 ----- >>>'||p_dattribute2,1);
1144: ecx_cln_debug_pub.Add('DATTRIBUTE3 ----- >>>'||p_dattribute3,1);
1145: ecx_cln_debug_pub.Add('DATTRIBUTE4 ----- >>>'||p_dattribute4,1);
1146: ecx_cln_debug_pub.Add('DATTRIBUTE5 ----- >>>'||p_dattribute5,1);
1147: ecx_cln_debug_pub.Add('===========================================',1);
1148: END IF;
1149:
1150: -- Assigning parameter to local variables

Line 1147: ecx_cln_debug_pub.Add('===========================================',1);

1143: ecx_cln_debug_pub.Add('DATTRIBUTE2 ----- >>>'||p_dattribute2,1);
1144: ecx_cln_debug_pub.Add('DATTRIBUTE3 ----- >>>'||p_dattribute3,1);
1145: ecx_cln_debug_pub.Add('DATTRIBUTE4 ----- >>>'||p_dattribute4,1);
1146: ecx_cln_debug_pub.Add('DATTRIBUTE5 ----- >>>'||p_dattribute5,1);
1147: ecx_cln_debug_pub.Add('===========================================',1);
1148: END IF;
1149:
1150: -- Assigning parameter to local variables
1151: l_xmlg_internal_control_number := p_xmlg_internal_control_number;

Line 1184: ecx_cln_debug_pub.Add('Document Number passed as NULL',1);

1180: -- Removed as per bug #2641981.
1181: -- Check if document number is passed and set it to default if passed as null
1182: IF (p_doc_no IS NULL) THEN
1183: IF (l_Debug_Level <= 1) THEN
1184: ecx_cln_debug_pub.Add('Document Number passed as NULL',1);
1185: END IF;
1186: FND_MESSAGE.SET_NAME('CLN','CLN_CH_DOC_NUMBER_NOT_GEN');
1187: l_doc_no := FND_MESSAGE.GET;
1188: IF (l_Debug_Level <= 1) THEN

Line 1189: ecx_cln_debug_pub.Add('Setting Document Number :'||l_doc_no,1);

1185: END IF;
1186: FND_MESSAGE.SET_NAME('CLN','CLN_CH_DOC_NUMBER_NOT_GEN');
1187: l_doc_no := FND_MESSAGE.GET;
1188: IF (l_Debug_Level <= 1) THEN
1189: ecx_cln_debug_pub.Add('Setting Document Number :'||l_doc_no,1);
1190: END IF;
1191:
1192:
1193: END IF;

Line 1199: ecx_cln_debug_pub.Add('Resend Flag is set to Y ',1);

1195:
1196: -- Check for the resend flag value and default it.
1197: IF (p_resend_count > 0) THEN
1198: IF (l_Debug_Level <= 1) THEN
1199: ecx_cln_debug_pub.Add('Resend Flag is set to Y ',1);
1200: END IF;
1201: l_resend_flag := 'Y';
1202: END IF;
1203:

Line 1208: ecx_cln_debug_pub.Add('Document Owner passed as NULL',1);

1204:
1205: -- If Document Owner passed is null
1206: IF ((l_doc_owner IS NULL) OR (l_doc_owner = '')) THEN
1207: IF (l_Debug_Level <= 1) THEN
1208: ecx_cln_debug_pub.Add('Document Owner passed as NULL',1);
1209: END IF;
1210: l_doc_owner := FND_GLOBAL.USER_ID;
1211: IF (l_Debug_Level <= 1) THEN
1212: ecx_cln_debug_pub.Add('Document Owner set as >> '||l_doc_owner,1);

Line 1212: ecx_cln_debug_pub.Add('Document Owner set as >> '||l_doc_owner,1);

1208: ecx_cln_debug_pub.Add('Document Owner passed as NULL',1);
1209: END IF;
1210: l_doc_owner := FND_GLOBAL.USER_ID;
1211: IF (l_Debug_Level <= 1) THEN
1212: ecx_cln_debug_pub.Add('Document Owner set as >> '||l_doc_owner,1);
1213: END IF;
1214: END IF;
1215:
1216: -- If Collaboration Point passed is null

Line 1219: ecx_cln_debug_pub.Add('Collaboration Point passed as NULL',1);

1215:
1216: -- If Collaboration Point passed is null
1217: IF ((l_coll_pt IS NULL) OR (l_coll_pt = '')) THEN
1218: IF (l_Debug_Level <= 1) THEN
1219: ecx_cln_debug_pub.Add('Collaboration Point passed as NULL',1);
1220: END IF;
1221: l_coll_pt := 'APPS';
1222: IF (l_Debug_Level <= 1) THEN
1223: ecx_cln_debug_pub.Add('Collaboration Point set as >> '||l_coll_pt,1);

Line 1223: ecx_cln_debug_pub.Add('Collaboration Point set as >> '||l_coll_pt,1);

1219: ecx_cln_debug_pub.Add('Collaboration Point passed as NULL',1);
1220: END IF;
1221: l_coll_pt := 'APPS';
1222: IF (l_Debug_Level <= 1) THEN
1223: ecx_cln_debug_pub.Add('Collaboration Point set as >> '||l_coll_pt,1);
1224: END IF;
1225: END IF;
1226:
1227: -- If RosettaNet Check Reqd value is null

Line 1230: ecx_cln_debug_pub.Add('Rosettanet Check Reqd value passed as NULL',1);

1226:
1227: -- If RosettaNet Check Reqd value is null
1228: IF (l_rosettanet_check_required IS NULL) THEN
1229: IF (l_Debug_Level <= 1) THEN
1230: ecx_cln_debug_pub.Add('Rosettanet Check Reqd value passed as NULL',1);
1231: END IF;
1232: l_rosettanet_check_required := TRUE;
1233: IF (l_Debug_Level <= 1) THEN
1234: ecx_cln_debug_pub.Add('Rosettanet Check Reqd value set to true',1);

Line 1234: ecx_cln_debug_pub.Add('Rosettanet Check Reqd value set to true',1);

1230: ecx_cln_debug_pub.Add('Rosettanet Check Reqd value passed as NULL',1);
1231: END IF;
1232: l_rosettanet_check_required := TRUE;
1233: IF (l_Debug_Level <= 1) THEN
1234: ecx_cln_debug_pub.Add('Rosettanet Check Reqd value set to true',1);
1235: END IF;
1236: END IF;
1237:
1238:

Line 1241: ecx_cln_debug_pub.Add('==========Call to GET_TRADING_PARTNER_DETAILS API=============',1);

1237:
1238:
1239: -- Call the API to get the trading partner set up details
1240: IF (l_Debug_Level <= 1) THEN
1241: ecx_cln_debug_pub.Add('==========Call to GET_TRADING_PARTNER_DETAILS API=============',1);
1242: END IF;
1243: GET_TRADING_PARTNER_DETAILS(
1244: x_return_status => x_return_status,
1245: x_msg_data => x_msg_data,

Line 1267: ecx_cln_debug_pub.Add('===========================================',1);

1263: -- x_msg_data is set to appropriate value by GET_TRADING_PARTNER_DETAILS
1264: RAISE FND_API.G_EXC_ERROR;
1265: END IF;
1266: IF (l_Debug_Level <= 1) THEN
1267: ecx_cln_debug_pub.Add('===========================================',1);
1268:
1269:
1270: -- call the API to get the default parameters through XMLG settings
1271: ecx_cln_debug_pub.Add('==========Call to DEFAULT_XMLGTXN_MAPPING API=============',1);

Line 1271: ecx_cln_debug_pub.Add('==========Call to DEFAULT_XMLGTXN_MAPPING API=============',1);

1267: ecx_cln_debug_pub.Add('===========================================',1);
1268:
1269:
1270: -- call the API to get the default parameters through XMLG settings
1271: ecx_cln_debug_pub.Add('==========Call to DEFAULT_XMLGTXN_MAPPING API=============',1);
1272: END IF;
1273: DEFAULT_XMLGTXN_MAPPING(
1274: x_return_status => x_return_status,
1275: x_msg_data => x_msg_data,

Line 1289: ecx_cln_debug_pub.Add('===========================================',1);

1285: -- x_msg_data is set to appropriate value by DEFAULT_XMLGTXN_MAPPING
1286: RAISE FND_API.G_EXC_ERROR;
1287: END IF;
1288: IF (l_Debug_Level <= 1) THEN
1289: ecx_cln_debug_pub.Add('===========================================',1);
1290:
1291: END IF;
1292:
1293: -- Check for required parameters

Line 1305: ecx_cln_debug_pub.Add('==========Call to DEFAULT_COLLABORATION_STATUS API=============',1);

1301:
1302: -- GET THE COLLABORATION STATUS HERE IF NOT PASSED
1303: IF (l_Debug_Level <= 1) THEN
1304: IF (l_Debug_Level <= 1) THEN
1305: ecx_cln_debug_pub.Add('==========Call to DEFAULT_COLLABORATION_STATUS API=============',1);
1306: END IF;
1307:
1308: END IF;
1309:

Line 1312: ecx_cln_debug_pub.Add('Collaboration Status is NULL',1);

1308: END IF;
1309:
1310: IF (l_coll_status IS NULL) THEN
1311: IF (l_Debug_Level <= 1) THEN
1312: ecx_cln_debug_pub.Add('Collaboration Status is NULL',1);
1313: END IF;
1314:
1315: DEFAULT_COLLABORATION_STATUS(
1316: x_return_status => x_return_status,

Line 1335: ecx_cln_debug_pub.Add('===========================================',1);

1331: RAISE FND_API.G_EXC_ERROR;
1332: END IF;
1333: END IF;
1334:
1335: ecx_cln_debug_pub.Add('===========================================',1);
1336:
1337: -- Validation for few parameters by passing parameters to VALIDATE_PARAMS API
1338: VALIDATE_PARAMS(
1339: x_return_status,x_msg_data,l_app_id,l_doc_dir,

Line 1353: ecx_cln_debug_pub.Add('RosettaNet Check is Required');

1349:
1350: -- RosettaNet Check Required or not.
1351: IF (l_rosettanet_check_required) THEN
1352: IF (l_Debug_Level <= 1) THEN
1353: ecx_cln_debug_pub.Add('RosettaNet Check is Required');
1354: END IF;
1355:
1356: -- Check whether collaboration can be created/upadted based on Profile, Protocol value
1357: IS_UPDATE_REQUIRED(

Line 1363: ecx_cln_debug_pub.Add('Status Code Returned By IS_UPDATE_REQUIRED :'||x_return_status,1);

1359: l_xmlg_transaction_subtype, l_tr_partner_type, l_tr_partner_id,
1360: l_tr_partner_site, l_sender_component, l_update_reqd );
1361:
1362: IF (l_Debug_Level <= 1) THEN
1363: ecx_cln_debug_pub.Add('Status Code Returned By IS_UPDATE_REQUIRED :'||x_return_status,1);
1364: END IF;
1365:
1366:
1367: IF (x_return_status <> 'S') THEN

Line 1375: ecx_cln_debug_pub.Add('Update Reqd as Returned By IS_UPDATE_REQUIRED -FALSE',1);

1371: RAISE FND_API.G_EXC_ERROR;
1372: END IF;
1373: IF (l_update_reqd <> TRUE) THEN
1374: IF (l_Debug_Level <= 1) THEN
1375: ecx_cln_debug_pub.Add('Update Reqd as Returned By IS_UPDATE_REQUIRED -FALSE',1);
1376: END IF;
1377:
1378: -- x_msg_data is set to appropriate value by IS_UPDATE_REQUIRED
1379: RETURN;

Line 1398: ecx_cln_debug_pub.Add('Application Reference ID is Null',1);

1394: IF(l_ref_id IS NULL AND l_doc_dir = 'OUT'
1395: AND l_doc_type <> 'CONFIRM_BOD'
1396: AND l_xmlg_msg_id IS NOT NULL) THEN
1397: IF (l_Debug_Level <= 1) THEN
1398: ecx_cln_debug_pub.Add('Application Reference ID is Null',1);
1399: END IF;
1400:
1401: GET_CONTROL_AREA_REFID(p_msgId => l_xmlg_msg_id,
1402: p_collaboration_standard => l_collaboration_standard,

Line 1412: ecx_cln_debug_pub.Add('Collaboration Id generated : '||x_coll_id,1);

1408:
1409: -- Collaboration ID is generated from a sequence.
1410: SELECT cln_collaboration_hdr_id_s.NEXTVAL INTO x_coll_id FROM dual;
1411: IF (l_Debug_Level <= 1) THEN
1412: ecx_cln_debug_pub.Add('Collaboration Id generated : '||x_coll_id,1);
1413:
1414:
1415: ecx_cln_debug_pub.Add('----- Before SQL Query : Adding Details in CLN_COLL_HIST_HDR -----',1);
1416: END IF;

Line 1415: ecx_cln_debug_pub.Add('----- Before SQL Query : Adding Details in CLN_COLL_HIST_HDR -----',1);

1411: IF (l_Debug_Level <= 1) THEN
1412: ecx_cln_debug_pub.Add('Collaboration Id generated : '||x_coll_id,1);
1413:
1414:
1415: ecx_cln_debug_pub.Add('----- Before SQL Query : Adding Details in CLN_COLL_HIST_HDR -----',1);
1416: END IF;
1417:
1418: IF (l_doc_creation_date is null and l_xmlg_msg_id is not null) THEN -- If collaboration history already doesnt have doc creation date and user hasnt passed it then we have to get it by parsing the payload
1419: Get_document_Creation_date(l_xmlg_msg_id,l_doc_creation_date);

Line 1447: ecx_cln_debug_pub.Add('------ After SQL Query : Adding Details in CLN_COLL_HIST_HDR --------',1);

1443: p_attribute6,p_attribute7,p_attribute8,p_attribute9,p_attribute10,p_attribute11,p_attribute12,p_attribute13,
1444: p_attribute14,p_attribute15, p_dattribute1,p_dattribute2,p_dattribute3,p_dattribute4,p_dattribute5 );
1445:
1446: IF (l_Debug_Level <= 1) THEN
1447: ecx_cln_debug_pub.Add('------ After SQL Query : Adding Details in CLN_COLL_HIST_HDR --------',1);
1448: END IF;
1449:
1450:
1451:

Line 1454: ecx_cln_debug_pub.Add('Collaboration Details successfully entered in CLN_COLL_HIST_HDR TABLE',1);

1450:
1451:
1452: IF SQL%FOUND THEN
1453: IF (l_Debug_Level <= 1) THEN
1454: ecx_cln_debug_pub.Add('Collaboration Details successfully entered in CLN_COLL_HIST_HDR TABLE',1);
1455: END IF;
1456:
1457: ELSE
1458: FND_MESSAGE.SET_NAME('CLN','CLN_CH_ADD_DTLS_FAILED');

Line 1480: ecx_cln_debug_pub.Add('Status Code Returned By UPDATE_COLLABORATION_INIT :'||x_return_status,1);

1476: l_xmlg_msg_id, l_xmlg_internal_control_number, l_resend_flag, l_xmlg_int_transaction_type,
1477: l_xmlg_int_transaction_subtype, l_xml_event_key );
1478:
1479: IF (l_Debug_Level <= 1) THEN
1480: ecx_cln_debug_pub.Add('Status Code Returned By UPDATE_COLLABORATION_INIT :'||x_return_status,1);
1481: END IF;
1482:
1483:
1484: IF x_return_status <> 'S' THEN

Line 1495: ecx_cln_debug_pub.Add(l_msg_data,1);

1491:
1492: FND_MESSAGE.SET_NAME('CLN','CLN_CH_COLLABORATION_CREATED');
1493: x_msg_data := FND_MESSAGE.GET;
1494: IF (l_Debug_Level <= 1) THEN
1495: ecx_cln_debug_pub.Add(l_msg_data,1);
1496: END IF;
1497:
1498: IF (l_Debug_Level <= 2) THEN
1499: ecx_cln_debug_pub.Add('------- Exiting CREATE_COLLABORATION API ---------- ',2);

Line 1499: ecx_cln_debug_pub.Add('------- Exiting CREATE_COLLABORATION API ---------- ',2);

1495: ecx_cln_debug_pub.Add(l_msg_data,1);
1496: END IF;
1497:
1498: IF (l_Debug_Level <= 2) THEN
1499: ecx_cln_debug_pub.Add('------- Exiting CREATE_COLLABORATION API ---------- ',2);
1500: END IF;
1501:
1502:
1503: EXCEPTION

Line 1509: ecx_cln_debug_pub.Add(l_msg_data,4);

1505: WHEN FND_API.G_EXC_ERROR THEN
1506: ROLLBACK TO CREATE_COLLABORATION_PUB;
1507: x_return_status :=FND_API.G_RET_STS_ERROR ;
1508: IF (l_Debug_Level <= 4) THEN
1509: ecx_cln_debug_pub.Add(l_msg_data,4);
1510: ecx_cln_debug_pub.Add('------- Exiting CREATE_COLLABORATION API ---------- ',2);
1511: END IF;
1512:
1513:

Line 1510: ecx_cln_debug_pub.Add('------- Exiting CREATE_COLLABORATION API ---------- ',2);

1506: ROLLBACK TO CREATE_COLLABORATION_PUB;
1507: x_return_status :=FND_API.G_RET_STS_ERROR ;
1508: IF (l_Debug_Level <= 4) THEN
1509: ecx_cln_debug_pub.Add(l_msg_data,4);
1510: ecx_cln_debug_pub.Add('------- Exiting CREATE_COLLABORATION API ---------- ',2);
1511: END IF;
1512:
1513:
1514:

Line 1526: ecx_cln_debug_pub.Add(l_msg_data,6);

1522: FND_MESSAGE.SET_TOKEN('ERRORMSG',l_error_msg);
1523: x_msg_data :=FND_MESSAGE.GET;
1524: l_msg_data :='Unexpected Error -'||l_error_code||' : '||l_error_msg;
1525: IF (l_Debug_Level <= 5) THEN
1526: ecx_cln_debug_pub.Add(l_msg_data,6);
1527: ecx_cln_debug_pub.Add('------- Exiting CREATE_COLLABORATION API ---------- ',2);
1528: END IF;
1529:
1530:

Line 1527: ecx_cln_debug_pub.Add('------- Exiting CREATE_COLLABORATION API ---------- ',2);

1523: x_msg_data :=FND_MESSAGE.GET;
1524: l_msg_data :='Unexpected Error -'||l_error_code||' : '||l_error_msg;
1525: IF (l_Debug_Level <= 5) THEN
1526: ecx_cln_debug_pub.Add(l_msg_data,6);
1527: ecx_cln_debug_pub.Add('------- Exiting CREATE_COLLABORATION API ---------- ',2);
1528: END IF;
1529:
1530:
1531:

Line 1543: ecx_cln_debug_pub.Add(l_msg_data,4);

1539: FND_MESSAGE.SET_TOKEN('ERRORMSG',l_error_msg);
1540: x_msg_data :=FND_MESSAGE.GET;
1541: l_msg_data :='Unexpected Error -'||l_error_code||' : '||l_error_msg;
1542: IF (l_Debug_Level <= 5) THEN
1543: ecx_cln_debug_pub.Add(l_msg_data,4);
1544: ecx_cln_debug_pub.Add('------- Exiting CREATE_COLLABORATION API ---------- ',2);
1545: END IF;
1546:
1547: END CREATE_COLLABORATION;

Line 1544: ecx_cln_debug_pub.Add('------- Exiting CREATE_COLLABORATION API ---------- ',2);

1540: x_msg_data :=FND_MESSAGE.GET;
1541: l_msg_data :='Unexpected Error -'||l_error_code||' : '||l_error_msg;
1542: IF (l_Debug_Level <= 5) THEN
1543: ecx_cln_debug_pub.Add(l_msg_data,4);
1544: ecx_cln_debug_pub.Add('------- Exiting CREATE_COLLABORATION API ---------- ',2);
1545: END IF;
1546:
1547: END CREATE_COLLABORATION;
1548:

Line 1699: --l_debug_mode :=ecx_cln_debug_pub.Set_Debug_Mode('FILE');

1695:
1696: BEGIN
1697:
1698: -- Sets the debug mode to be FILE
1699: --l_debug_mode :=ecx_cln_debug_pub.Set_Debug_Mode('FILE');
1700:
1701:
1702: IF (l_Debug_Level <= 2) THEN
1703: ecx_cln_debug_pub.Add('--------- Entering UPDATE_COLLABORATION API ------------ ',2);

Line 1703: ecx_cln_debug_pub.Add('--------- Entering UPDATE_COLLABORATION API ------------ ',2);

1699: --l_debug_mode :=ecx_cln_debug_pub.Set_Debug_Mode('FILE');
1700:
1701:
1702: IF (l_Debug_Level <= 2) THEN
1703: ecx_cln_debug_pub.Add('--------- Entering UPDATE_COLLABORATION API ------------ ',2);
1704: END IF;
1705:
1706:
1707: -- Standard Start of API savepoint

Line 1718: ecx_cln_debug_pub.Add('==========Parameters Received=============',1);

1714:
1715:
1716: -- get the paramaters passed
1717: IF (l_Debug_Level <= 1) THEN
1718: ecx_cln_debug_pub.Add('==========Parameters Received=============',1);
1719: ecx_cln_debug_pub.Add('COLLABORATION ID ----- >>>'||p_coll_id,1);
1720: ecx_cln_debug_pub.Add('APPLCATION ID ----- >>>'||p_app_id,1);
1721: ecx_cln_debug_pub.Add('REFERENCE ID ----- >>>'||p_ref_id,1);
1722: ecx_cln_debug_pub.Add('RELEASE NUMBER ----- >>>'||p_rel_no,1);

Line 1719: ecx_cln_debug_pub.Add('COLLABORATION ID ----- >>>'||p_coll_id,1);

1715:
1716: -- get the paramaters passed
1717: IF (l_Debug_Level <= 1) THEN
1718: ecx_cln_debug_pub.Add('==========Parameters Received=============',1);
1719: ecx_cln_debug_pub.Add('COLLABORATION ID ----- >>>'||p_coll_id,1);
1720: ecx_cln_debug_pub.Add('APPLCATION ID ----- >>>'||p_app_id,1);
1721: ecx_cln_debug_pub.Add('REFERENCE ID ----- >>>'||p_ref_id,1);
1722: ecx_cln_debug_pub.Add('RELEASE NUMBER ----- >>>'||p_rel_no,1);
1723: ecx_cln_debug_pub.Add('DOCUMENT NO ----- >>>'||p_doc_no,1);

Line 1720: ecx_cln_debug_pub.Add('APPLCATION ID ----- >>>'||p_app_id,1);

1716: -- get the paramaters passed
1717: IF (l_Debug_Level <= 1) THEN
1718: ecx_cln_debug_pub.Add('==========Parameters Received=============',1);
1719: ecx_cln_debug_pub.Add('COLLABORATION ID ----- >>>'||p_coll_id,1);
1720: ecx_cln_debug_pub.Add('APPLCATION ID ----- >>>'||p_app_id,1);
1721: ecx_cln_debug_pub.Add('REFERENCE ID ----- >>>'||p_ref_id,1);
1722: ecx_cln_debug_pub.Add('RELEASE NUMBER ----- >>>'||p_rel_no,1);
1723: ecx_cln_debug_pub.Add('DOCUMENT NO ----- >>>'||p_doc_no,1);
1724: ecx_cln_debug_pub.Add('DOCUMENT REV. NO ----- >>>'||p_doc_rev_no,1);

Line 1721: ecx_cln_debug_pub.Add('REFERENCE ID ----- >>>'||p_ref_id,1);

1717: IF (l_Debug_Level <= 1) THEN
1718: ecx_cln_debug_pub.Add('==========Parameters Received=============',1);
1719: ecx_cln_debug_pub.Add('COLLABORATION ID ----- >>>'||p_coll_id,1);
1720: ecx_cln_debug_pub.Add('APPLCATION ID ----- >>>'||p_app_id,1);
1721: ecx_cln_debug_pub.Add('REFERENCE ID ----- >>>'||p_ref_id,1);
1722: ecx_cln_debug_pub.Add('RELEASE NUMBER ----- >>>'||p_rel_no,1);
1723: ecx_cln_debug_pub.Add('DOCUMENT NO ----- >>>'||p_doc_no,1);
1724: ecx_cln_debug_pub.Add('DOCUMENT REV. NO ----- >>>'||p_doc_rev_no,1);
1725: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);

Line 1722: ecx_cln_debug_pub.Add('RELEASE NUMBER ----- >>>'||p_rel_no,1);

1718: ecx_cln_debug_pub.Add('==========Parameters Received=============',1);
1719: ecx_cln_debug_pub.Add('COLLABORATION ID ----- >>>'||p_coll_id,1);
1720: ecx_cln_debug_pub.Add('APPLCATION ID ----- >>>'||p_app_id,1);
1721: ecx_cln_debug_pub.Add('REFERENCE ID ----- >>>'||p_ref_id,1);
1722: ecx_cln_debug_pub.Add('RELEASE NUMBER ----- >>>'||p_rel_no,1);
1723: ecx_cln_debug_pub.Add('DOCUMENT NO ----- >>>'||p_doc_no,1);
1724: ecx_cln_debug_pub.Add('DOCUMENT REV. NO ----- >>>'||p_doc_rev_no,1);
1725: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);
1726: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);

Line 1723: ecx_cln_debug_pub.Add('DOCUMENT NO ----- >>>'||p_doc_no,1);

1719: ecx_cln_debug_pub.Add('COLLABORATION ID ----- >>>'||p_coll_id,1);
1720: ecx_cln_debug_pub.Add('APPLCATION ID ----- >>>'||p_app_id,1);
1721: ecx_cln_debug_pub.Add('REFERENCE ID ----- >>>'||p_ref_id,1);
1722: ecx_cln_debug_pub.Add('RELEASE NUMBER ----- >>>'||p_rel_no,1);
1723: ecx_cln_debug_pub.Add('DOCUMENT NO ----- >>>'||p_doc_no,1);
1724: ecx_cln_debug_pub.Add('DOCUMENT REV. NO ----- >>>'||p_doc_rev_no,1);
1725: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);
1726: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);
1727: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION TYPE ----- >>>'||p_xmlg_int_transaction_type,1);

Line 1724: ecx_cln_debug_pub.Add('DOCUMENT REV. NO ----- >>>'||p_doc_rev_no,1);

1720: ecx_cln_debug_pub.Add('APPLCATION ID ----- >>>'||p_app_id,1);
1721: ecx_cln_debug_pub.Add('REFERENCE ID ----- >>>'||p_ref_id,1);
1722: ecx_cln_debug_pub.Add('RELEASE NUMBER ----- >>>'||p_rel_no,1);
1723: ecx_cln_debug_pub.Add('DOCUMENT NO ----- >>>'||p_doc_no,1);
1724: ecx_cln_debug_pub.Add('DOCUMENT REV. NO ----- >>>'||p_doc_rev_no,1);
1725: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);
1726: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);
1727: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION TYPE ----- >>>'||p_xmlg_int_transaction_type,1);
1728: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_int_transaction_subtype,1);

Line 1725: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);

1721: ecx_cln_debug_pub.Add('REFERENCE ID ----- >>>'||p_ref_id,1);
1722: ecx_cln_debug_pub.Add('RELEASE NUMBER ----- >>>'||p_rel_no,1);
1723: ecx_cln_debug_pub.Add('DOCUMENT NO ----- >>>'||p_doc_no,1);
1724: ecx_cln_debug_pub.Add('DOCUMENT REV. NO ----- >>>'||p_doc_rev_no,1);
1725: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);
1726: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);
1727: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION TYPE ----- >>>'||p_xmlg_int_transaction_type,1);
1728: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_int_transaction_subtype,1);
1729: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);

Line 1726: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);

1722: ecx_cln_debug_pub.Add('RELEASE NUMBER ----- >>>'||p_rel_no,1);
1723: ecx_cln_debug_pub.Add('DOCUMENT NO ----- >>>'||p_doc_no,1);
1724: ecx_cln_debug_pub.Add('DOCUMENT REV. NO ----- >>>'||p_doc_rev_no,1);
1725: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);
1726: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);
1727: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION TYPE ----- >>>'||p_xmlg_int_transaction_type,1);
1728: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_int_transaction_subtype,1);
1729: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);
1730: ecx_cln_debug_pub.Add('RESENG FLAG ----- >>>'||p_resend_flag,1);

Line 1727: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION TYPE ----- >>>'||p_xmlg_int_transaction_type,1);

1723: ecx_cln_debug_pub.Add('DOCUMENT NO ----- >>>'||p_doc_no,1);
1724: ecx_cln_debug_pub.Add('DOCUMENT REV. NO ----- >>>'||p_doc_rev_no,1);
1725: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);
1726: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);
1727: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION TYPE ----- >>>'||p_xmlg_int_transaction_type,1);
1728: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_int_transaction_subtype,1);
1729: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);
1730: ecx_cln_debug_pub.Add('RESENG FLAG ----- >>>'||p_resend_flag,1);
1731: ecx_cln_debug_pub.Add('RESEND COUNT ----- >>>'||p_resend_count,1);

Line 1728: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_int_transaction_subtype,1);

1724: ecx_cln_debug_pub.Add('DOCUMENT REV. NO ----- >>>'||p_doc_rev_no,1);
1725: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);
1726: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);
1727: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION TYPE ----- >>>'||p_xmlg_int_transaction_type,1);
1728: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_int_transaction_subtype,1);
1729: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);
1730: ecx_cln_debug_pub.Add('RESENG FLAG ----- >>>'||p_resend_flag,1);
1731: ecx_cln_debug_pub.Add('RESEND COUNT ----- >>>'||p_resend_count,1);
1732: ecx_cln_debug_pub.Add('DISPOSITION ----- >>>'||p_disposition,1);

Line 1729: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);

1725: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);
1726: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);
1727: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION TYPE ----- >>>'||p_xmlg_int_transaction_type,1);
1728: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_int_transaction_subtype,1);
1729: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);
1730: ecx_cln_debug_pub.Add('RESENG FLAG ----- >>>'||p_resend_flag,1);
1731: ecx_cln_debug_pub.Add('RESEND COUNT ----- >>>'||p_resend_count,1);
1732: ecx_cln_debug_pub.Add('DISPOSITION ----- >>>'||p_disposition,1);
1733: ecx_cln_debug_pub.Add('COLLABORATION STATUS ----- >>>'||p_coll_status,1);

Line 1730: ecx_cln_debug_pub.Add('RESENG FLAG ----- >>>'||p_resend_flag,1);

1726: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);
1727: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION TYPE ----- >>>'||p_xmlg_int_transaction_type,1);
1728: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_int_transaction_subtype,1);
1729: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);
1730: ecx_cln_debug_pub.Add('RESENG FLAG ----- >>>'||p_resend_flag,1);
1731: ecx_cln_debug_pub.Add('RESEND COUNT ----- >>>'||p_resend_count,1);
1732: ecx_cln_debug_pub.Add('DISPOSITION ----- >>>'||p_disposition,1);
1733: ecx_cln_debug_pub.Add('COLLABORATION STATUS ----- >>>'||p_coll_status,1);
1734: ecx_cln_debug_pub.Add('DOCUMENT TYPE ----- >>>'||p_doc_type,1);

Line 1731: ecx_cln_debug_pub.Add('RESEND COUNT ----- >>>'||p_resend_count,1);

1727: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION TYPE ----- >>>'||p_xmlg_int_transaction_type,1);
1728: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_int_transaction_subtype,1);
1729: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);
1730: ecx_cln_debug_pub.Add('RESENG FLAG ----- >>>'||p_resend_flag,1);
1731: ecx_cln_debug_pub.Add('RESEND COUNT ----- >>>'||p_resend_count,1);
1732: ecx_cln_debug_pub.Add('DISPOSITION ----- >>>'||p_disposition,1);
1733: ecx_cln_debug_pub.Add('COLLABORATION STATUS ----- >>>'||p_coll_status,1);
1734: ecx_cln_debug_pub.Add('DOCUMENT TYPE ----- >>>'||p_doc_type,1);
1735: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_dir,1);

Line 1732: ecx_cln_debug_pub.Add('DISPOSITION ----- >>>'||p_disposition,1);

1728: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_int_transaction_subtype,1);
1729: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);
1730: ecx_cln_debug_pub.Add('RESENG FLAG ----- >>>'||p_resend_flag,1);
1731: ecx_cln_debug_pub.Add('RESEND COUNT ----- >>>'||p_resend_count,1);
1732: ecx_cln_debug_pub.Add('DISPOSITION ----- >>>'||p_disposition,1);
1733: ecx_cln_debug_pub.Add('COLLABORATION STATUS ----- >>>'||p_coll_status,1);
1734: ecx_cln_debug_pub.Add('DOCUMENT TYPE ----- >>>'||p_doc_type,1);
1735: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_dir,1);
1736: ecx_cln_debug_pub.Add('COLLABORATION POINT ----- >>>'||p_coll_pt,1);

Line 1733: ecx_cln_debug_pub.Add('COLLABORATION STATUS ----- >>>'||p_coll_status,1);

1729: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);
1730: ecx_cln_debug_pub.Add('RESENG FLAG ----- >>>'||p_resend_flag,1);
1731: ecx_cln_debug_pub.Add('RESEND COUNT ----- >>>'||p_resend_count,1);
1732: ecx_cln_debug_pub.Add('DISPOSITION ----- >>>'||p_disposition,1);
1733: ecx_cln_debug_pub.Add('COLLABORATION STATUS ----- >>>'||p_coll_status,1);
1734: ecx_cln_debug_pub.Add('DOCUMENT TYPE ----- >>>'||p_doc_type,1);
1735: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_dir,1);
1736: ecx_cln_debug_pub.Add('COLLABORATION POINT ----- >>>'||p_coll_pt,1);
1737: ecx_cln_debug_pub.Add('ORIGINATOR REFERENCE ----- >>>'||p_org_ref,1);

Line 1734: ecx_cln_debug_pub.Add('DOCUMENT TYPE ----- >>>'||p_doc_type,1);

1730: ecx_cln_debug_pub.Add('RESENG FLAG ----- >>>'||p_resend_flag,1);
1731: ecx_cln_debug_pub.Add('RESEND COUNT ----- >>>'||p_resend_count,1);
1732: ecx_cln_debug_pub.Add('DISPOSITION ----- >>>'||p_disposition,1);
1733: ecx_cln_debug_pub.Add('COLLABORATION STATUS ----- >>>'||p_coll_status,1);
1734: ecx_cln_debug_pub.Add('DOCUMENT TYPE ----- >>>'||p_doc_type,1);
1735: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_dir,1);
1736: ecx_cln_debug_pub.Add('COLLABORATION POINT ----- >>>'||p_coll_pt,1);
1737: ecx_cln_debug_pub.Add('ORIGINATOR REFERENCE ----- >>>'||p_org_ref,1);
1738: ecx_cln_debug_pub.Add('DOCUMENT STATUS ----- >>>'||p_doc_status,1);

Line 1735: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_dir,1);

1731: ecx_cln_debug_pub.Add('RESEND COUNT ----- >>>'||p_resend_count,1);
1732: ecx_cln_debug_pub.Add('DISPOSITION ----- >>>'||p_disposition,1);
1733: ecx_cln_debug_pub.Add('COLLABORATION STATUS ----- >>>'||p_coll_status,1);
1734: ecx_cln_debug_pub.Add('DOCUMENT TYPE ----- >>>'||p_doc_type,1);
1735: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_dir,1);
1736: ecx_cln_debug_pub.Add('COLLABORATION POINT ----- >>>'||p_coll_pt,1);
1737: ecx_cln_debug_pub.Add('ORIGINATOR REFERENCE ----- >>>'||p_org_ref,1);
1738: ecx_cln_debug_pub.Add('DOCUMENT STATUS ----- >>>'||p_doc_status,1);
1739: ecx_cln_debug_pub.Add('NOTIFICATION ID ----- >>>'||p_notification_id,1);

Line 1736: ecx_cln_debug_pub.Add('COLLABORATION POINT ----- >>>'||p_coll_pt,1);

1732: ecx_cln_debug_pub.Add('DISPOSITION ----- >>>'||p_disposition,1);
1733: ecx_cln_debug_pub.Add('COLLABORATION STATUS ----- >>>'||p_coll_status,1);
1734: ecx_cln_debug_pub.Add('DOCUMENT TYPE ----- >>>'||p_doc_type,1);
1735: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_dir,1);
1736: ecx_cln_debug_pub.Add('COLLABORATION POINT ----- >>>'||p_coll_pt,1);
1737: ecx_cln_debug_pub.Add('ORIGINATOR REFERENCE ----- >>>'||p_org_ref,1);
1738: ecx_cln_debug_pub.Add('DOCUMENT STATUS ----- >>>'||p_doc_status,1);
1739: ecx_cln_debug_pub.Add('NOTIFICATION ID ----- >>>'||p_notification_id,1);
1740: ecx_cln_debug_pub.Add('MESSAGE TEST ----- >>>'||p_msg_text,1);

Line 1737: ecx_cln_debug_pub.Add('ORIGINATOR REFERENCE ----- >>>'||p_org_ref,1);

1733: ecx_cln_debug_pub.Add('COLLABORATION STATUS ----- >>>'||p_coll_status,1);
1734: ecx_cln_debug_pub.Add('DOCUMENT TYPE ----- >>>'||p_doc_type,1);
1735: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_dir,1);
1736: ecx_cln_debug_pub.Add('COLLABORATION POINT ----- >>>'||p_coll_pt,1);
1737: ecx_cln_debug_pub.Add('ORIGINATOR REFERENCE ----- >>>'||p_org_ref,1);
1738: ecx_cln_debug_pub.Add('DOCUMENT STATUS ----- >>>'||p_doc_status,1);
1739: ecx_cln_debug_pub.Add('NOTIFICATION ID ----- >>>'||p_notification_id,1);
1740: ecx_cln_debug_pub.Add('MESSAGE TEST ----- >>>'||p_msg_text,1);
1741: ecx_cln_debug_pub.Add('XMLG MESSAGE ID ----- >>>'||p_xmlg_msg_id,1);

Line 1738: ecx_cln_debug_pub.Add('DOCUMENT STATUS ----- >>>'||p_doc_status,1);

1734: ecx_cln_debug_pub.Add('DOCUMENT TYPE ----- >>>'||p_doc_type,1);
1735: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_dir,1);
1736: ecx_cln_debug_pub.Add('COLLABORATION POINT ----- >>>'||p_coll_pt,1);
1737: ecx_cln_debug_pub.Add('ORIGINATOR REFERENCE ----- >>>'||p_org_ref,1);
1738: ecx_cln_debug_pub.Add('DOCUMENT STATUS ----- >>>'||p_doc_status,1);
1739: ecx_cln_debug_pub.Add('NOTIFICATION ID ----- >>>'||p_notification_id,1);
1740: ecx_cln_debug_pub.Add('MESSAGE TEST ----- >>>'||p_msg_text,1);
1741: ecx_cln_debug_pub.Add('XMLG MESSAGE ID ----- >>>'||p_xmlg_msg_id,1);
1742: ecx_cln_debug_pub.Add('UNIQUE 1 ----- >>>'||p_unique1,1);

Line 1739: ecx_cln_debug_pub.Add('NOTIFICATION ID ----- >>>'||p_notification_id,1);

1735: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_dir,1);
1736: ecx_cln_debug_pub.Add('COLLABORATION POINT ----- >>>'||p_coll_pt,1);
1737: ecx_cln_debug_pub.Add('ORIGINATOR REFERENCE ----- >>>'||p_org_ref,1);
1738: ecx_cln_debug_pub.Add('DOCUMENT STATUS ----- >>>'||p_doc_status,1);
1739: ecx_cln_debug_pub.Add('NOTIFICATION ID ----- >>>'||p_notification_id,1);
1740: ecx_cln_debug_pub.Add('MESSAGE TEST ----- >>>'||p_msg_text,1);
1741: ecx_cln_debug_pub.Add('XMLG MESSAGE ID ----- >>>'||p_xmlg_msg_id,1);
1742: ecx_cln_debug_pub.Add('UNIQUE 1 ----- >>>'||p_unique1,1);
1743: ecx_cln_debug_pub.Add('UNIQUE 2 ----- >>>'||p_unique2,1);

Line 1740: ecx_cln_debug_pub.Add('MESSAGE TEST ----- >>>'||p_msg_text,1);

1736: ecx_cln_debug_pub.Add('COLLABORATION POINT ----- >>>'||p_coll_pt,1);
1737: ecx_cln_debug_pub.Add('ORIGINATOR REFERENCE ----- >>>'||p_org_ref,1);
1738: ecx_cln_debug_pub.Add('DOCUMENT STATUS ----- >>>'||p_doc_status,1);
1739: ecx_cln_debug_pub.Add('NOTIFICATION ID ----- >>>'||p_notification_id,1);
1740: ecx_cln_debug_pub.Add('MESSAGE TEST ----- >>>'||p_msg_text,1);
1741: ecx_cln_debug_pub.Add('XMLG MESSAGE ID ----- >>>'||p_xmlg_msg_id,1);
1742: ecx_cln_debug_pub.Add('UNIQUE 1 ----- >>>'||p_unique1,1);
1743: ecx_cln_debug_pub.Add('UNIQUE 2 ----- >>>'||p_unique2,1);
1744: ecx_cln_debug_pub.Add('UNIQUE 3 ----- >>>'||p_unique3,1);

Line 1741: ecx_cln_debug_pub.Add('XMLG MESSAGE ID ----- >>>'||p_xmlg_msg_id,1);

1737: ecx_cln_debug_pub.Add('ORIGINATOR REFERENCE ----- >>>'||p_org_ref,1);
1738: ecx_cln_debug_pub.Add('DOCUMENT STATUS ----- >>>'||p_doc_status,1);
1739: ecx_cln_debug_pub.Add('NOTIFICATION ID ----- >>>'||p_notification_id,1);
1740: ecx_cln_debug_pub.Add('MESSAGE TEST ----- >>>'||p_msg_text,1);
1741: ecx_cln_debug_pub.Add('XMLG MESSAGE ID ----- >>>'||p_xmlg_msg_id,1);
1742: ecx_cln_debug_pub.Add('UNIQUE 1 ----- >>>'||p_unique1,1);
1743: ecx_cln_debug_pub.Add('UNIQUE 2 ----- >>>'||p_unique2,1);
1744: ecx_cln_debug_pub.Add('UNIQUE 3 ----- >>>'||p_unique3,1);
1745: ecx_cln_debug_pub.Add('UNIQUE 4 ----- >>>'||p_unique4,1);

Line 1742: ecx_cln_debug_pub.Add('UNIQUE 1 ----- >>>'||p_unique1,1);

1738: ecx_cln_debug_pub.Add('DOCUMENT STATUS ----- >>>'||p_doc_status,1);
1739: ecx_cln_debug_pub.Add('NOTIFICATION ID ----- >>>'||p_notification_id,1);
1740: ecx_cln_debug_pub.Add('MESSAGE TEST ----- >>>'||p_msg_text,1);
1741: ecx_cln_debug_pub.Add('XMLG MESSAGE ID ----- >>>'||p_xmlg_msg_id,1);
1742: ecx_cln_debug_pub.Add('UNIQUE 1 ----- >>>'||p_unique1,1);
1743: ecx_cln_debug_pub.Add('UNIQUE 2 ----- >>>'||p_unique2,1);
1744: ecx_cln_debug_pub.Add('UNIQUE 3 ----- >>>'||p_unique3,1);
1745: ecx_cln_debug_pub.Add('UNIQUE 4 ----- >>>'||p_unique4,1);
1746: ecx_cln_debug_pub.Add('UNIQUE 5 ----- >>>'||p_unique5,1);

Line 1743: ecx_cln_debug_pub.Add('UNIQUE 2 ----- >>>'||p_unique2,1);

1739: ecx_cln_debug_pub.Add('NOTIFICATION ID ----- >>>'||p_notification_id,1);
1740: ecx_cln_debug_pub.Add('MESSAGE TEST ----- >>>'||p_msg_text,1);
1741: ecx_cln_debug_pub.Add('XMLG MESSAGE ID ----- >>>'||p_xmlg_msg_id,1);
1742: ecx_cln_debug_pub.Add('UNIQUE 1 ----- >>>'||p_unique1,1);
1743: ecx_cln_debug_pub.Add('UNIQUE 2 ----- >>>'||p_unique2,1);
1744: ecx_cln_debug_pub.Add('UNIQUE 3 ----- >>>'||p_unique3,1);
1745: ecx_cln_debug_pub.Add('UNIQUE 4 ----- >>>'||p_unique4,1);
1746: ecx_cln_debug_pub.Add('UNIQUE 5 ----- >>>'||p_unique5,1);
1747: ecx_cln_debug_pub.Add('TRADING PARTNER TYPE ----- >>>'||p_tr_partner_type,1);

Line 1744: ecx_cln_debug_pub.Add('UNIQUE 3 ----- >>>'||p_unique3,1);

1740: ecx_cln_debug_pub.Add('MESSAGE TEST ----- >>>'||p_msg_text,1);
1741: ecx_cln_debug_pub.Add('XMLG MESSAGE ID ----- >>>'||p_xmlg_msg_id,1);
1742: ecx_cln_debug_pub.Add('UNIQUE 1 ----- >>>'||p_unique1,1);
1743: ecx_cln_debug_pub.Add('UNIQUE 2 ----- >>>'||p_unique2,1);
1744: ecx_cln_debug_pub.Add('UNIQUE 3 ----- >>>'||p_unique3,1);
1745: ecx_cln_debug_pub.Add('UNIQUE 4 ----- >>>'||p_unique4,1);
1746: ecx_cln_debug_pub.Add('UNIQUE 5 ----- >>>'||p_unique5,1);
1747: ecx_cln_debug_pub.Add('TRADING PARTNER TYPE ----- >>>'||p_tr_partner_type,1);
1748: ecx_cln_debug_pub.Add('TRADING PARTNER ID ----- >>>'||p_tr_partner_id,1);

Line 1745: ecx_cln_debug_pub.Add('UNIQUE 4 ----- >>>'||p_unique4,1);

1741: ecx_cln_debug_pub.Add('XMLG MESSAGE ID ----- >>>'||p_xmlg_msg_id,1);
1742: ecx_cln_debug_pub.Add('UNIQUE 1 ----- >>>'||p_unique1,1);
1743: ecx_cln_debug_pub.Add('UNIQUE 2 ----- >>>'||p_unique2,1);
1744: ecx_cln_debug_pub.Add('UNIQUE 3 ----- >>>'||p_unique3,1);
1745: ecx_cln_debug_pub.Add('UNIQUE 4 ----- >>>'||p_unique4,1);
1746: ecx_cln_debug_pub.Add('UNIQUE 5 ----- >>>'||p_unique5,1);
1747: ecx_cln_debug_pub.Add('TRADING PARTNER TYPE ----- >>>'||p_tr_partner_type,1);
1748: ecx_cln_debug_pub.Add('TRADING PARTNER ID ----- >>>'||p_tr_partner_id,1);
1749: ecx_cln_debug_pub.Add('TRADING PARTNER SITE ----- >>>'||p_tr_partner_site,1);

Line 1746: ecx_cln_debug_pub.Add('UNIQUE 5 ----- >>>'||p_unique5,1);

1742: ecx_cln_debug_pub.Add('UNIQUE 1 ----- >>>'||p_unique1,1);
1743: ecx_cln_debug_pub.Add('UNIQUE 2 ----- >>>'||p_unique2,1);
1744: ecx_cln_debug_pub.Add('UNIQUE 3 ----- >>>'||p_unique3,1);
1745: ecx_cln_debug_pub.Add('UNIQUE 4 ----- >>>'||p_unique4,1);
1746: ecx_cln_debug_pub.Add('UNIQUE 5 ----- >>>'||p_unique5,1);
1747: ecx_cln_debug_pub.Add('TRADING PARTNER TYPE ----- >>>'||p_tr_partner_type,1);
1748: ecx_cln_debug_pub.Add('TRADING PARTNER ID ----- >>>'||p_tr_partner_id,1);
1749: ecx_cln_debug_pub.Add('TRADING PARTNER SITE ----- >>>'||p_tr_partner_site,1);
1750: ecx_cln_debug_pub.Add('SENDER COMPONENT ----- >>>'||p_sender_component,1);

Line 1747: ecx_cln_debug_pub.Add('TRADING PARTNER TYPE ----- >>>'||p_tr_partner_type,1);

1743: ecx_cln_debug_pub.Add('UNIQUE 2 ----- >>>'||p_unique2,1);
1744: ecx_cln_debug_pub.Add('UNIQUE 3 ----- >>>'||p_unique3,1);
1745: ecx_cln_debug_pub.Add('UNIQUE 4 ----- >>>'||p_unique4,1);
1746: ecx_cln_debug_pub.Add('UNIQUE 5 ----- >>>'||p_unique5,1);
1747: ecx_cln_debug_pub.Add('TRADING PARTNER TYPE ----- >>>'||p_tr_partner_type,1);
1748: ecx_cln_debug_pub.Add('TRADING PARTNER ID ----- >>>'||p_tr_partner_id,1);
1749: ecx_cln_debug_pub.Add('TRADING PARTNER SITE ----- >>>'||p_tr_partner_site,1);
1750: ecx_cln_debug_pub.Add('SENDER COMPONENT ----- >>>'||p_sender_component,1);
1751: ecx_cln_debug_pub.Add('XMLG INTERNAL CONTROL NO ----- >>>'||p_xmlg_internal_control_number,1);

Line 1748: ecx_cln_debug_pub.Add('TRADING PARTNER ID ----- >>>'||p_tr_partner_id,1);

1744: ecx_cln_debug_pub.Add('UNIQUE 3 ----- >>>'||p_unique3,1);
1745: ecx_cln_debug_pub.Add('UNIQUE 4 ----- >>>'||p_unique4,1);
1746: ecx_cln_debug_pub.Add('UNIQUE 5 ----- >>>'||p_unique5,1);
1747: ecx_cln_debug_pub.Add('TRADING PARTNER TYPE ----- >>>'||p_tr_partner_type,1);
1748: ecx_cln_debug_pub.Add('TRADING PARTNER ID ----- >>>'||p_tr_partner_id,1);
1749: ecx_cln_debug_pub.Add('TRADING PARTNER SITE ----- >>>'||p_tr_partner_site,1);
1750: ecx_cln_debug_pub.Add('SENDER COMPONENT ----- >>>'||p_sender_component,1);
1751: ecx_cln_debug_pub.Add('XMLG INTERNAL CONTROL NO ----- >>>'||p_xmlg_internal_control_number,1);
1752: ecx_cln_debug_pub.Add('PARTNER DOCUMENT NO ----- >>>'||p_partner_doc_no,1);

Line 1749: ecx_cln_debug_pub.Add('TRADING PARTNER SITE ----- >>>'||p_tr_partner_site,1);

1745: ecx_cln_debug_pub.Add('UNIQUE 4 ----- >>>'||p_unique4,1);
1746: ecx_cln_debug_pub.Add('UNIQUE 5 ----- >>>'||p_unique5,1);
1747: ecx_cln_debug_pub.Add('TRADING PARTNER TYPE ----- >>>'||p_tr_partner_type,1);
1748: ecx_cln_debug_pub.Add('TRADING PARTNER ID ----- >>>'||p_tr_partner_id,1);
1749: ecx_cln_debug_pub.Add('TRADING PARTNER SITE ----- >>>'||p_tr_partner_site,1);
1750: ecx_cln_debug_pub.Add('SENDER COMPONENT ----- >>>'||p_sender_component,1);
1751: ecx_cln_debug_pub.Add('XMLG INTERNAL CONTROL NO ----- >>>'||p_xmlg_internal_control_number,1);
1752: ecx_cln_debug_pub.Add('PARTNER DOCUMENT NO ----- >>>'||p_partner_doc_no,1);
1753: ecx_cln_debug_pub.Add('ORG ID ----- >>>'||p_org_id,1);

Line 1750: ecx_cln_debug_pub.Add('SENDER COMPONENT ----- >>>'||p_sender_component,1);

1746: ecx_cln_debug_pub.Add('UNIQUE 5 ----- >>>'||p_unique5,1);
1747: ecx_cln_debug_pub.Add('TRADING PARTNER TYPE ----- >>>'||p_tr_partner_type,1);
1748: ecx_cln_debug_pub.Add('TRADING PARTNER ID ----- >>>'||p_tr_partner_id,1);
1749: ecx_cln_debug_pub.Add('TRADING PARTNER SITE ----- >>>'||p_tr_partner_site,1);
1750: ecx_cln_debug_pub.Add('SENDER COMPONENT ----- >>>'||p_sender_component,1);
1751: ecx_cln_debug_pub.Add('XMLG INTERNAL CONTROL NO ----- >>>'||p_xmlg_internal_control_number,1);
1752: ecx_cln_debug_pub.Add('PARTNER DOCUMENT NO ----- >>>'||p_partner_doc_no,1);
1753: ecx_cln_debug_pub.Add('ORG ID ----- >>>'||p_org_id,1);
1754: ecx_cln_debug_pub.Add('DOCUMENT CREATION DATE ----- >>>'||p_doc_creation_date,1);

Line 1751: ecx_cln_debug_pub.Add('XMLG INTERNAL CONTROL NO ----- >>>'||p_xmlg_internal_control_number,1);

1747: ecx_cln_debug_pub.Add('TRADING PARTNER TYPE ----- >>>'||p_tr_partner_type,1);
1748: ecx_cln_debug_pub.Add('TRADING PARTNER ID ----- >>>'||p_tr_partner_id,1);
1749: ecx_cln_debug_pub.Add('TRADING PARTNER SITE ----- >>>'||p_tr_partner_site,1);
1750: ecx_cln_debug_pub.Add('SENDER COMPONENT ----- >>>'||p_sender_component,1);
1751: ecx_cln_debug_pub.Add('XMLG INTERNAL CONTROL NO ----- >>>'||p_xmlg_internal_control_number,1);
1752: ecx_cln_debug_pub.Add('PARTNER DOCUMENT NO ----- >>>'||p_partner_doc_no,1);
1753: ecx_cln_debug_pub.Add('ORG ID ----- >>>'||p_org_id,1);
1754: ecx_cln_debug_pub.Add('DOCUMENT CREATION DATE ----- >>>'||p_doc_creation_date,1);
1755: ecx_cln_debug_pub.Add('DOCUMENT REVISION DATE ----- >>>'||p_doc_revision_date,1);

Line 1752: ecx_cln_debug_pub.Add('PARTNER DOCUMENT NO ----- >>>'||p_partner_doc_no,1);

1748: ecx_cln_debug_pub.Add('TRADING PARTNER ID ----- >>>'||p_tr_partner_id,1);
1749: ecx_cln_debug_pub.Add('TRADING PARTNER SITE ----- >>>'||p_tr_partner_site,1);
1750: ecx_cln_debug_pub.Add('SENDER COMPONENT ----- >>>'||p_sender_component,1);
1751: ecx_cln_debug_pub.Add('XMLG INTERNAL CONTROL NO ----- >>>'||p_xmlg_internal_control_number,1);
1752: ecx_cln_debug_pub.Add('PARTNER DOCUMENT NO ----- >>>'||p_partner_doc_no,1);
1753: ecx_cln_debug_pub.Add('ORG ID ----- >>>'||p_org_id,1);
1754: ecx_cln_debug_pub.Add('DOCUMENT CREATION DATE ----- >>>'||p_doc_creation_date,1);
1755: ecx_cln_debug_pub.Add('DOCUMENT REVISION DATE ----- >>>'||p_doc_revision_date,1);
1756: ecx_cln_debug_pub.Add('DOCUMENT OWNER ----- >>>'||p_doc_owner,1);

Line 1753: ecx_cln_debug_pub.Add('ORG ID ----- >>>'||p_org_id,1);

1749: ecx_cln_debug_pub.Add('TRADING PARTNER SITE ----- >>>'||p_tr_partner_site,1);
1750: ecx_cln_debug_pub.Add('SENDER COMPONENT ----- >>>'||p_sender_component,1);
1751: ecx_cln_debug_pub.Add('XMLG INTERNAL CONTROL NO ----- >>>'||p_xmlg_internal_control_number,1);
1752: ecx_cln_debug_pub.Add('PARTNER DOCUMENT NO ----- >>>'||p_partner_doc_no,1);
1753: ecx_cln_debug_pub.Add('ORG ID ----- >>>'||p_org_id,1);
1754: ecx_cln_debug_pub.Add('DOCUMENT CREATION DATE ----- >>>'||p_doc_creation_date,1);
1755: ecx_cln_debug_pub.Add('DOCUMENT REVISION DATE ----- >>>'||p_doc_revision_date,1);
1756: ecx_cln_debug_pub.Add('DOCUMENT OWNER ----- >>>'||p_doc_owner,1);
1757: ecx_cln_debug_pub.Add('OWNER ROLE ----- >>>'||p_owner_role,1);

Line 1754: ecx_cln_debug_pub.Add('DOCUMENT CREATION DATE ----- >>>'||p_doc_creation_date,1);

1750: ecx_cln_debug_pub.Add('SENDER COMPONENT ----- >>>'||p_sender_component,1);
1751: ecx_cln_debug_pub.Add('XMLG INTERNAL CONTROL NO ----- >>>'||p_xmlg_internal_control_number,1);
1752: ecx_cln_debug_pub.Add('PARTNER DOCUMENT NO ----- >>>'||p_partner_doc_no,1);
1753: ecx_cln_debug_pub.Add('ORG ID ----- >>>'||p_org_id,1);
1754: ecx_cln_debug_pub.Add('DOCUMENT CREATION DATE ----- >>>'||p_doc_creation_date,1);
1755: ecx_cln_debug_pub.Add('DOCUMENT REVISION DATE ----- >>>'||p_doc_revision_date,1);
1756: ecx_cln_debug_pub.Add('DOCUMENT OWNER ----- >>>'||p_doc_owner,1);
1757: ecx_cln_debug_pub.Add('OWNER ROLE ----- >>>'||p_owner_role,1);
1758: ecx_cln_debug_pub.Add('XMLG EVENT KEY ----- >>>'||p_xml_event_key,1);

Line 1755: ecx_cln_debug_pub.Add('DOCUMENT REVISION DATE ----- >>>'||p_doc_revision_date,1);

1751: ecx_cln_debug_pub.Add('XMLG INTERNAL CONTROL NO ----- >>>'||p_xmlg_internal_control_number,1);
1752: ecx_cln_debug_pub.Add('PARTNER DOCUMENT NO ----- >>>'||p_partner_doc_no,1);
1753: ecx_cln_debug_pub.Add('ORG ID ----- >>>'||p_org_id,1);
1754: ecx_cln_debug_pub.Add('DOCUMENT CREATION DATE ----- >>>'||p_doc_creation_date,1);
1755: ecx_cln_debug_pub.Add('DOCUMENT REVISION DATE ----- >>>'||p_doc_revision_date,1);
1756: ecx_cln_debug_pub.Add('DOCUMENT OWNER ----- >>>'||p_doc_owner,1);
1757: ecx_cln_debug_pub.Add('OWNER ROLE ----- >>>'||p_owner_role,1);
1758: ecx_cln_debug_pub.Add('XMLG EVENT KEY ----- >>>'||p_xml_event_key,1);
1759: ecx_cln_debug_pub.Add('Collaboration Standard ----- >>>'||p_collaboration_standard,1);

Line 1756: ecx_cln_debug_pub.Add('DOCUMENT OWNER ----- >>>'||p_doc_owner,1);

1752: ecx_cln_debug_pub.Add('PARTNER DOCUMENT NO ----- >>>'||p_partner_doc_no,1);
1753: ecx_cln_debug_pub.Add('ORG ID ----- >>>'||p_org_id,1);
1754: ecx_cln_debug_pub.Add('DOCUMENT CREATION DATE ----- >>>'||p_doc_creation_date,1);
1755: ecx_cln_debug_pub.Add('DOCUMENT REVISION DATE ----- >>>'||p_doc_revision_date,1);
1756: ecx_cln_debug_pub.Add('DOCUMENT OWNER ----- >>>'||p_doc_owner,1);
1757: ecx_cln_debug_pub.Add('OWNER ROLE ----- >>>'||p_owner_role,1);
1758: ecx_cln_debug_pub.Add('XMLG EVENT KEY ----- >>>'||p_xml_event_key,1);
1759: ecx_cln_debug_pub.Add('Collaboration Standard ----- >>>'||p_collaboration_standard,1);
1760: ecx_cln_debug_pub.Add('ATTRIBUTE1 ----- >>>'||p_attribute1,1);

Line 1757: ecx_cln_debug_pub.Add('OWNER ROLE ----- >>>'||p_owner_role,1);

1753: ecx_cln_debug_pub.Add('ORG ID ----- >>>'||p_org_id,1);
1754: ecx_cln_debug_pub.Add('DOCUMENT CREATION DATE ----- >>>'||p_doc_creation_date,1);
1755: ecx_cln_debug_pub.Add('DOCUMENT REVISION DATE ----- >>>'||p_doc_revision_date,1);
1756: ecx_cln_debug_pub.Add('DOCUMENT OWNER ----- >>>'||p_doc_owner,1);
1757: ecx_cln_debug_pub.Add('OWNER ROLE ----- >>>'||p_owner_role,1);
1758: ecx_cln_debug_pub.Add('XMLG EVENT KEY ----- >>>'||p_xml_event_key,1);
1759: ecx_cln_debug_pub.Add('Collaboration Standard ----- >>>'||p_collaboration_standard,1);
1760: ecx_cln_debug_pub.Add('ATTRIBUTE1 ----- >>>'||p_attribute1,1);
1761: ecx_cln_debug_pub.Add('ATTRIBUTE2 ----- >>>'||p_attribute2,1);

Line 1758: ecx_cln_debug_pub.Add('XMLG EVENT KEY ----- >>>'||p_xml_event_key,1);

1754: ecx_cln_debug_pub.Add('DOCUMENT CREATION DATE ----- >>>'||p_doc_creation_date,1);
1755: ecx_cln_debug_pub.Add('DOCUMENT REVISION DATE ----- >>>'||p_doc_revision_date,1);
1756: ecx_cln_debug_pub.Add('DOCUMENT OWNER ----- >>>'||p_doc_owner,1);
1757: ecx_cln_debug_pub.Add('OWNER ROLE ----- >>>'||p_owner_role,1);
1758: ecx_cln_debug_pub.Add('XMLG EVENT KEY ----- >>>'||p_xml_event_key,1);
1759: ecx_cln_debug_pub.Add('Collaboration Standard ----- >>>'||p_collaboration_standard,1);
1760: ecx_cln_debug_pub.Add('ATTRIBUTE1 ----- >>>'||p_attribute1,1);
1761: ecx_cln_debug_pub.Add('ATTRIBUTE2 ----- >>>'||p_attribute2,1);
1762: ecx_cln_debug_pub.Add('ATTRIBUTE3 ----- >>>'||p_attribute3,1);

Line 1759: ecx_cln_debug_pub.Add('Collaboration Standard ----- >>>'||p_collaboration_standard,1);

1755: ecx_cln_debug_pub.Add('DOCUMENT REVISION DATE ----- >>>'||p_doc_revision_date,1);
1756: ecx_cln_debug_pub.Add('DOCUMENT OWNER ----- >>>'||p_doc_owner,1);
1757: ecx_cln_debug_pub.Add('OWNER ROLE ----- >>>'||p_owner_role,1);
1758: ecx_cln_debug_pub.Add('XMLG EVENT KEY ----- >>>'||p_xml_event_key,1);
1759: ecx_cln_debug_pub.Add('Collaboration Standard ----- >>>'||p_collaboration_standard,1);
1760: ecx_cln_debug_pub.Add('ATTRIBUTE1 ----- >>>'||p_attribute1,1);
1761: ecx_cln_debug_pub.Add('ATTRIBUTE2 ----- >>>'||p_attribute2,1);
1762: ecx_cln_debug_pub.Add('ATTRIBUTE3 ----- >>>'||p_attribute3,1);
1763: ecx_cln_debug_pub.Add('ATTRIBUTE4 ----- >>>'||p_attribute4,1);

Line 1760: ecx_cln_debug_pub.Add('ATTRIBUTE1 ----- >>>'||p_attribute1,1);

1756: ecx_cln_debug_pub.Add('DOCUMENT OWNER ----- >>>'||p_doc_owner,1);
1757: ecx_cln_debug_pub.Add('OWNER ROLE ----- >>>'||p_owner_role,1);
1758: ecx_cln_debug_pub.Add('XMLG EVENT KEY ----- >>>'||p_xml_event_key,1);
1759: ecx_cln_debug_pub.Add('Collaboration Standard ----- >>>'||p_collaboration_standard,1);
1760: ecx_cln_debug_pub.Add('ATTRIBUTE1 ----- >>>'||p_attribute1,1);
1761: ecx_cln_debug_pub.Add('ATTRIBUTE2 ----- >>>'||p_attribute2,1);
1762: ecx_cln_debug_pub.Add('ATTRIBUTE3 ----- >>>'||p_attribute3,1);
1763: ecx_cln_debug_pub.Add('ATTRIBUTE4 ----- >>>'||p_attribute4,1);
1764: ecx_cln_debug_pub.Add('ATTRIBUTE5 ----- >>>'||p_attribute5,1);

Line 1761: ecx_cln_debug_pub.Add('ATTRIBUTE2 ----- >>>'||p_attribute2,1);

1757: ecx_cln_debug_pub.Add('OWNER ROLE ----- >>>'||p_owner_role,1);
1758: ecx_cln_debug_pub.Add('XMLG EVENT KEY ----- >>>'||p_xml_event_key,1);
1759: ecx_cln_debug_pub.Add('Collaboration Standard ----- >>>'||p_collaboration_standard,1);
1760: ecx_cln_debug_pub.Add('ATTRIBUTE1 ----- >>>'||p_attribute1,1);
1761: ecx_cln_debug_pub.Add('ATTRIBUTE2 ----- >>>'||p_attribute2,1);
1762: ecx_cln_debug_pub.Add('ATTRIBUTE3 ----- >>>'||p_attribute3,1);
1763: ecx_cln_debug_pub.Add('ATTRIBUTE4 ----- >>>'||p_attribute4,1);
1764: ecx_cln_debug_pub.Add('ATTRIBUTE5 ----- >>>'||p_attribute5,1);
1765: ecx_cln_debug_pub.Add('ATTRIBUTE6 ----- >>>'||p_attribute6,1);

Line 1762: ecx_cln_debug_pub.Add('ATTRIBUTE3 ----- >>>'||p_attribute3,1);

1758: ecx_cln_debug_pub.Add('XMLG EVENT KEY ----- >>>'||p_xml_event_key,1);
1759: ecx_cln_debug_pub.Add('Collaboration Standard ----- >>>'||p_collaboration_standard,1);
1760: ecx_cln_debug_pub.Add('ATTRIBUTE1 ----- >>>'||p_attribute1,1);
1761: ecx_cln_debug_pub.Add('ATTRIBUTE2 ----- >>>'||p_attribute2,1);
1762: ecx_cln_debug_pub.Add('ATTRIBUTE3 ----- >>>'||p_attribute3,1);
1763: ecx_cln_debug_pub.Add('ATTRIBUTE4 ----- >>>'||p_attribute4,1);
1764: ecx_cln_debug_pub.Add('ATTRIBUTE5 ----- >>>'||p_attribute5,1);
1765: ecx_cln_debug_pub.Add('ATTRIBUTE6 ----- >>>'||p_attribute6,1);
1766: ecx_cln_debug_pub.Add('ATTRIBUTE7 ----- >>>'||p_attribute7,1);

Line 1763: ecx_cln_debug_pub.Add('ATTRIBUTE4 ----- >>>'||p_attribute4,1);

1759: ecx_cln_debug_pub.Add('Collaboration Standard ----- >>>'||p_collaboration_standard,1);
1760: ecx_cln_debug_pub.Add('ATTRIBUTE1 ----- >>>'||p_attribute1,1);
1761: ecx_cln_debug_pub.Add('ATTRIBUTE2 ----- >>>'||p_attribute2,1);
1762: ecx_cln_debug_pub.Add('ATTRIBUTE3 ----- >>>'||p_attribute3,1);
1763: ecx_cln_debug_pub.Add('ATTRIBUTE4 ----- >>>'||p_attribute4,1);
1764: ecx_cln_debug_pub.Add('ATTRIBUTE5 ----- >>>'||p_attribute5,1);
1765: ecx_cln_debug_pub.Add('ATTRIBUTE6 ----- >>>'||p_attribute6,1);
1766: ecx_cln_debug_pub.Add('ATTRIBUTE7 ----- >>>'||p_attribute7,1);
1767: ecx_cln_debug_pub.Add('ATTRIBUTE8 ----- >>>'||p_attribute8,1);

Line 1764: ecx_cln_debug_pub.Add('ATTRIBUTE5 ----- >>>'||p_attribute5,1);

1760: ecx_cln_debug_pub.Add('ATTRIBUTE1 ----- >>>'||p_attribute1,1);
1761: ecx_cln_debug_pub.Add('ATTRIBUTE2 ----- >>>'||p_attribute2,1);
1762: ecx_cln_debug_pub.Add('ATTRIBUTE3 ----- >>>'||p_attribute3,1);
1763: ecx_cln_debug_pub.Add('ATTRIBUTE4 ----- >>>'||p_attribute4,1);
1764: ecx_cln_debug_pub.Add('ATTRIBUTE5 ----- >>>'||p_attribute5,1);
1765: ecx_cln_debug_pub.Add('ATTRIBUTE6 ----- >>>'||p_attribute6,1);
1766: ecx_cln_debug_pub.Add('ATTRIBUTE7 ----- >>>'||p_attribute7,1);
1767: ecx_cln_debug_pub.Add('ATTRIBUTE8 ----- >>>'||p_attribute8,1);
1768: ecx_cln_debug_pub.Add('ATTRIBUTE9 ----- >>>'||p_attribute9,1);

Line 1765: ecx_cln_debug_pub.Add('ATTRIBUTE6 ----- >>>'||p_attribute6,1);

1761: ecx_cln_debug_pub.Add('ATTRIBUTE2 ----- >>>'||p_attribute2,1);
1762: ecx_cln_debug_pub.Add('ATTRIBUTE3 ----- >>>'||p_attribute3,1);
1763: ecx_cln_debug_pub.Add('ATTRIBUTE4 ----- >>>'||p_attribute4,1);
1764: ecx_cln_debug_pub.Add('ATTRIBUTE5 ----- >>>'||p_attribute5,1);
1765: ecx_cln_debug_pub.Add('ATTRIBUTE6 ----- >>>'||p_attribute6,1);
1766: ecx_cln_debug_pub.Add('ATTRIBUTE7 ----- >>>'||p_attribute7,1);
1767: ecx_cln_debug_pub.Add('ATTRIBUTE8 ----- >>>'||p_attribute8,1);
1768: ecx_cln_debug_pub.Add('ATTRIBUTE9 ----- >>>'||p_attribute9,1);
1769: ecx_cln_debug_pub.Add('ATTRIBUTE10 ----- >>>'||p_attribute10,1);

Line 1766: ecx_cln_debug_pub.Add('ATTRIBUTE7 ----- >>>'||p_attribute7,1);

1762: ecx_cln_debug_pub.Add('ATTRIBUTE3 ----- >>>'||p_attribute3,1);
1763: ecx_cln_debug_pub.Add('ATTRIBUTE4 ----- >>>'||p_attribute4,1);
1764: ecx_cln_debug_pub.Add('ATTRIBUTE5 ----- >>>'||p_attribute5,1);
1765: ecx_cln_debug_pub.Add('ATTRIBUTE6 ----- >>>'||p_attribute6,1);
1766: ecx_cln_debug_pub.Add('ATTRIBUTE7 ----- >>>'||p_attribute7,1);
1767: ecx_cln_debug_pub.Add('ATTRIBUTE8 ----- >>>'||p_attribute8,1);
1768: ecx_cln_debug_pub.Add('ATTRIBUTE9 ----- >>>'||p_attribute9,1);
1769: ecx_cln_debug_pub.Add('ATTRIBUTE10 ----- >>>'||p_attribute10,1);
1770: ecx_cln_debug_pub.Add('ATTRIBUTE11 ----- >>>'||p_attribute11,1);

Line 1767: ecx_cln_debug_pub.Add('ATTRIBUTE8 ----- >>>'||p_attribute8,1);

1763: ecx_cln_debug_pub.Add('ATTRIBUTE4 ----- >>>'||p_attribute4,1);
1764: ecx_cln_debug_pub.Add('ATTRIBUTE5 ----- >>>'||p_attribute5,1);
1765: ecx_cln_debug_pub.Add('ATTRIBUTE6 ----- >>>'||p_attribute6,1);
1766: ecx_cln_debug_pub.Add('ATTRIBUTE7 ----- >>>'||p_attribute7,1);
1767: ecx_cln_debug_pub.Add('ATTRIBUTE8 ----- >>>'||p_attribute8,1);
1768: ecx_cln_debug_pub.Add('ATTRIBUTE9 ----- >>>'||p_attribute9,1);
1769: ecx_cln_debug_pub.Add('ATTRIBUTE10 ----- >>>'||p_attribute10,1);
1770: ecx_cln_debug_pub.Add('ATTRIBUTE11 ----- >>>'||p_attribute11,1);
1771: ecx_cln_debug_pub.Add('ATTRIBUTE12 ----- >>>'||p_attribute12,1);

Line 1768: ecx_cln_debug_pub.Add('ATTRIBUTE9 ----- >>>'||p_attribute9,1);

1764: ecx_cln_debug_pub.Add('ATTRIBUTE5 ----- >>>'||p_attribute5,1);
1765: ecx_cln_debug_pub.Add('ATTRIBUTE6 ----- >>>'||p_attribute6,1);
1766: ecx_cln_debug_pub.Add('ATTRIBUTE7 ----- >>>'||p_attribute7,1);
1767: ecx_cln_debug_pub.Add('ATTRIBUTE8 ----- >>>'||p_attribute8,1);
1768: ecx_cln_debug_pub.Add('ATTRIBUTE9 ----- >>>'||p_attribute9,1);
1769: ecx_cln_debug_pub.Add('ATTRIBUTE10 ----- >>>'||p_attribute10,1);
1770: ecx_cln_debug_pub.Add('ATTRIBUTE11 ----- >>>'||p_attribute11,1);
1771: ecx_cln_debug_pub.Add('ATTRIBUTE12 ----- >>>'||p_attribute12,1);
1772: ecx_cln_debug_pub.Add('ATTRIBUTE13 ----- >>>'||p_attribute13,1);

Line 1769: ecx_cln_debug_pub.Add('ATTRIBUTE10 ----- >>>'||p_attribute10,1);

1765: ecx_cln_debug_pub.Add('ATTRIBUTE6 ----- >>>'||p_attribute6,1);
1766: ecx_cln_debug_pub.Add('ATTRIBUTE7 ----- >>>'||p_attribute7,1);
1767: ecx_cln_debug_pub.Add('ATTRIBUTE8 ----- >>>'||p_attribute8,1);
1768: ecx_cln_debug_pub.Add('ATTRIBUTE9 ----- >>>'||p_attribute9,1);
1769: ecx_cln_debug_pub.Add('ATTRIBUTE10 ----- >>>'||p_attribute10,1);
1770: ecx_cln_debug_pub.Add('ATTRIBUTE11 ----- >>>'||p_attribute11,1);
1771: ecx_cln_debug_pub.Add('ATTRIBUTE12 ----- >>>'||p_attribute12,1);
1772: ecx_cln_debug_pub.Add('ATTRIBUTE13 ----- >>>'||p_attribute13,1);
1773: ecx_cln_debug_pub.Add('ATTRIBUTE14 ----- >>>'||p_attribute14,1);

Line 1770: ecx_cln_debug_pub.Add('ATTRIBUTE11 ----- >>>'||p_attribute11,1);

1766: ecx_cln_debug_pub.Add('ATTRIBUTE7 ----- >>>'||p_attribute7,1);
1767: ecx_cln_debug_pub.Add('ATTRIBUTE8 ----- >>>'||p_attribute8,1);
1768: ecx_cln_debug_pub.Add('ATTRIBUTE9 ----- >>>'||p_attribute9,1);
1769: ecx_cln_debug_pub.Add('ATTRIBUTE10 ----- >>>'||p_attribute10,1);
1770: ecx_cln_debug_pub.Add('ATTRIBUTE11 ----- >>>'||p_attribute11,1);
1771: ecx_cln_debug_pub.Add('ATTRIBUTE12 ----- >>>'||p_attribute12,1);
1772: ecx_cln_debug_pub.Add('ATTRIBUTE13 ----- >>>'||p_attribute13,1);
1773: ecx_cln_debug_pub.Add('ATTRIBUTE14 ----- >>>'||p_attribute14,1);
1774: ecx_cln_debug_pub.Add('ATTRIBUTE15 ----- >>>'||p_attribute15,1);

Line 1771: ecx_cln_debug_pub.Add('ATTRIBUTE12 ----- >>>'||p_attribute12,1);

1767: ecx_cln_debug_pub.Add('ATTRIBUTE8 ----- >>>'||p_attribute8,1);
1768: ecx_cln_debug_pub.Add('ATTRIBUTE9 ----- >>>'||p_attribute9,1);
1769: ecx_cln_debug_pub.Add('ATTRIBUTE10 ----- >>>'||p_attribute10,1);
1770: ecx_cln_debug_pub.Add('ATTRIBUTE11 ----- >>>'||p_attribute11,1);
1771: ecx_cln_debug_pub.Add('ATTRIBUTE12 ----- >>>'||p_attribute12,1);
1772: ecx_cln_debug_pub.Add('ATTRIBUTE13 ----- >>>'||p_attribute13,1);
1773: ecx_cln_debug_pub.Add('ATTRIBUTE14 ----- >>>'||p_attribute14,1);
1774: ecx_cln_debug_pub.Add('ATTRIBUTE15 ----- >>>'||p_attribute15,1);
1775: ecx_cln_debug_pub.Add('DATTRIBUTE1 ----- >>>'||p_dattribute1,1);

Line 1772: ecx_cln_debug_pub.Add('ATTRIBUTE13 ----- >>>'||p_attribute13,1);

1768: ecx_cln_debug_pub.Add('ATTRIBUTE9 ----- >>>'||p_attribute9,1);
1769: ecx_cln_debug_pub.Add('ATTRIBUTE10 ----- >>>'||p_attribute10,1);
1770: ecx_cln_debug_pub.Add('ATTRIBUTE11 ----- >>>'||p_attribute11,1);
1771: ecx_cln_debug_pub.Add('ATTRIBUTE12 ----- >>>'||p_attribute12,1);
1772: ecx_cln_debug_pub.Add('ATTRIBUTE13 ----- >>>'||p_attribute13,1);
1773: ecx_cln_debug_pub.Add('ATTRIBUTE14 ----- >>>'||p_attribute14,1);
1774: ecx_cln_debug_pub.Add('ATTRIBUTE15 ----- >>>'||p_attribute15,1);
1775: ecx_cln_debug_pub.Add('DATTRIBUTE1 ----- >>>'||p_dattribute1,1);
1776: ecx_cln_debug_pub.Add('DATTRIBUTE2 ----- >>>'||p_dattribute2,1);

Line 1773: ecx_cln_debug_pub.Add('ATTRIBUTE14 ----- >>>'||p_attribute14,1);

1769: ecx_cln_debug_pub.Add('ATTRIBUTE10 ----- >>>'||p_attribute10,1);
1770: ecx_cln_debug_pub.Add('ATTRIBUTE11 ----- >>>'||p_attribute11,1);
1771: ecx_cln_debug_pub.Add('ATTRIBUTE12 ----- >>>'||p_attribute12,1);
1772: ecx_cln_debug_pub.Add('ATTRIBUTE13 ----- >>>'||p_attribute13,1);
1773: ecx_cln_debug_pub.Add('ATTRIBUTE14 ----- >>>'||p_attribute14,1);
1774: ecx_cln_debug_pub.Add('ATTRIBUTE15 ----- >>>'||p_attribute15,1);
1775: ecx_cln_debug_pub.Add('DATTRIBUTE1 ----- >>>'||p_dattribute1,1);
1776: ecx_cln_debug_pub.Add('DATTRIBUTE2 ----- >>>'||p_dattribute2,1);
1777: ecx_cln_debug_pub.Add('DATTRIBUTE3 ----- >>>'||p_dattribute3,1);

Line 1774: ecx_cln_debug_pub.Add('ATTRIBUTE15 ----- >>>'||p_attribute15,1);

1770: ecx_cln_debug_pub.Add('ATTRIBUTE11 ----- >>>'||p_attribute11,1);
1771: ecx_cln_debug_pub.Add('ATTRIBUTE12 ----- >>>'||p_attribute12,1);
1772: ecx_cln_debug_pub.Add('ATTRIBUTE13 ----- >>>'||p_attribute13,1);
1773: ecx_cln_debug_pub.Add('ATTRIBUTE14 ----- >>>'||p_attribute14,1);
1774: ecx_cln_debug_pub.Add('ATTRIBUTE15 ----- >>>'||p_attribute15,1);
1775: ecx_cln_debug_pub.Add('DATTRIBUTE1 ----- >>>'||p_dattribute1,1);
1776: ecx_cln_debug_pub.Add('DATTRIBUTE2 ----- >>>'||p_dattribute2,1);
1777: ecx_cln_debug_pub.Add('DATTRIBUTE3 ----- >>>'||p_dattribute3,1);
1778: ecx_cln_debug_pub.Add('DATTRIBUTE4 ----- >>>'||p_dattribute4,1);

Line 1775: ecx_cln_debug_pub.Add('DATTRIBUTE1 ----- >>>'||p_dattribute1,1);

1771: ecx_cln_debug_pub.Add('ATTRIBUTE12 ----- >>>'||p_attribute12,1);
1772: ecx_cln_debug_pub.Add('ATTRIBUTE13 ----- >>>'||p_attribute13,1);
1773: ecx_cln_debug_pub.Add('ATTRIBUTE14 ----- >>>'||p_attribute14,1);
1774: ecx_cln_debug_pub.Add('ATTRIBUTE15 ----- >>>'||p_attribute15,1);
1775: ecx_cln_debug_pub.Add('DATTRIBUTE1 ----- >>>'||p_dattribute1,1);
1776: ecx_cln_debug_pub.Add('DATTRIBUTE2 ----- >>>'||p_dattribute2,1);
1777: ecx_cln_debug_pub.Add('DATTRIBUTE3 ----- >>>'||p_dattribute3,1);
1778: ecx_cln_debug_pub.Add('DATTRIBUTE4 ----- >>>'||p_dattribute4,1);
1779: ecx_cln_debug_pub.Add('DATTRIBUTE5 ----- >>>'||p_dattribute5,1);

Line 1776: ecx_cln_debug_pub.Add('DATTRIBUTE2 ----- >>>'||p_dattribute2,1);

1772: ecx_cln_debug_pub.Add('ATTRIBUTE13 ----- >>>'||p_attribute13,1);
1773: ecx_cln_debug_pub.Add('ATTRIBUTE14 ----- >>>'||p_attribute14,1);
1774: ecx_cln_debug_pub.Add('ATTRIBUTE15 ----- >>>'||p_attribute15,1);
1775: ecx_cln_debug_pub.Add('DATTRIBUTE1 ----- >>>'||p_dattribute1,1);
1776: ecx_cln_debug_pub.Add('DATTRIBUTE2 ----- >>>'||p_dattribute2,1);
1777: ecx_cln_debug_pub.Add('DATTRIBUTE3 ----- >>>'||p_dattribute3,1);
1778: ecx_cln_debug_pub.Add('DATTRIBUTE4 ----- >>>'||p_dattribute4,1);
1779: ecx_cln_debug_pub.Add('DATTRIBUTE5 ----- >>>'||p_dattribute5,1);
1780: ecx_cln_debug_pub.Add('=========================================================',1);

Line 1777: ecx_cln_debug_pub.Add('DATTRIBUTE3 ----- >>>'||p_dattribute3,1);

1773: ecx_cln_debug_pub.Add('ATTRIBUTE14 ----- >>>'||p_attribute14,1);
1774: ecx_cln_debug_pub.Add('ATTRIBUTE15 ----- >>>'||p_attribute15,1);
1775: ecx_cln_debug_pub.Add('DATTRIBUTE1 ----- >>>'||p_dattribute1,1);
1776: ecx_cln_debug_pub.Add('DATTRIBUTE2 ----- >>>'||p_dattribute2,1);
1777: ecx_cln_debug_pub.Add('DATTRIBUTE3 ----- >>>'||p_dattribute3,1);
1778: ecx_cln_debug_pub.Add('DATTRIBUTE4 ----- >>>'||p_dattribute4,1);
1779: ecx_cln_debug_pub.Add('DATTRIBUTE5 ----- >>>'||p_dattribute5,1);
1780: ecx_cln_debug_pub.Add('=========================================================',1);
1781: END IF;

Line 1778: ecx_cln_debug_pub.Add('DATTRIBUTE4 ----- >>>'||p_dattribute4,1);

1774: ecx_cln_debug_pub.Add('ATTRIBUTE15 ----- >>>'||p_attribute15,1);
1775: ecx_cln_debug_pub.Add('DATTRIBUTE1 ----- >>>'||p_dattribute1,1);
1776: ecx_cln_debug_pub.Add('DATTRIBUTE2 ----- >>>'||p_dattribute2,1);
1777: ecx_cln_debug_pub.Add('DATTRIBUTE3 ----- >>>'||p_dattribute3,1);
1778: ecx_cln_debug_pub.Add('DATTRIBUTE4 ----- >>>'||p_dattribute4,1);
1779: ecx_cln_debug_pub.Add('DATTRIBUTE5 ----- >>>'||p_dattribute5,1);
1780: ecx_cln_debug_pub.Add('=========================================================',1);
1781: END IF;
1782:

Line 1779: ecx_cln_debug_pub.Add('DATTRIBUTE5 ----- >>>'||p_dattribute5,1);

1775: ecx_cln_debug_pub.Add('DATTRIBUTE1 ----- >>>'||p_dattribute1,1);
1776: ecx_cln_debug_pub.Add('DATTRIBUTE2 ----- >>>'||p_dattribute2,1);
1777: ecx_cln_debug_pub.Add('DATTRIBUTE3 ----- >>>'||p_dattribute3,1);
1778: ecx_cln_debug_pub.Add('DATTRIBUTE4 ----- >>>'||p_dattribute4,1);
1779: ecx_cln_debug_pub.Add('DATTRIBUTE5 ----- >>>'||p_dattribute5,1);
1780: ecx_cln_debug_pub.Add('=========================================================',1);
1781: END IF;
1782:
1783:

Line 1780: ecx_cln_debug_pub.Add('=========================================================',1);

1776: ecx_cln_debug_pub.Add('DATTRIBUTE2 ----- >>>'||p_dattribute2,1);
1777: ecx_cln_debug_pub.Add('DATTRIBUTE3 ----- >>>'||p_dattribute3,1);
1778: ecx_cln_debug_pub.Add('DATTRIBUTE4 ----- >>>'||p_dattribute4,1);
1779: ecx_cln_debug_pub.Add('DATTRIBUTE5 ----- >>>'||p_dattribute5,1);
1780: ecx_cln_debug_pub.Add('=========================================================',1);
1781: END IF;
1782:
1783:
1784:

Line 1820: ecx_cln_debug_pub.Add('Resend Flag is set to Y ',1);

1816: -- Check for the Resend Flag value and default it.
1817: IF (p_resend_count > 0) THEN
1818: l_resend_flag := 'Y';
1819: IF (l_Debug_Level <= 1) THEN
1820: ecx_cln_debug_pub.Add('Resend Flag is set to Y ',1);
1821: END IF;
1822:
1823: END IF;
1824:

Line 1828: ecx_cln_debug_pub.Add('Document Owner passed as NULL',1);

1824:
1825: -- If Document Owner passed is null
1826: IF ((l_doc_owner IS NULL) OR (l_doc_owner = '')) THEN
1827: IF (l_Debug_Level <= 1) THEN
1828: ecx_cln_debug_pub.Add('Document Owner passed as NULL',1);
1829: END IF;
1830:
1831: l_doc_owner := FND_GLOBAL.USER_ID;
1832: IF (l_Debug_Level <= 1) THEN

Line 1833: ecx_cln_debug_pub.Add('Document Owner set as '||l_doc_owner,1);

1829: END IF;
1830:
1831: l_doc_owner := FND_GLOBAL.USER_ID;
1832: IF (l_Debug_Level <= 1) THEN
1833: ecx_cln_debug_pub.Add('Document Owner set as '||l_doc_owner,1);
1834: END IF;
1835:
1836: END IF;
1837:

Line 1841: ecx_cln_debug_pub.Add('Collaboration Point NULL',1);

1837:
1838: -- If Collaboration Point passed is null
1839: IF ((l_coll_pt IS NULL) OR (l_coll_pt = '')) THEN
1840: IF (l_Debug_Level <= 1) THEN
1841: ecx_cln_debug_pub.Add('Collaboration Point NULL',1);
1842: END IF;
1843:
1844: l_coll_pt := 'APPS';
1845: IF (l_Debug_Level <= 1) THEN

Line 1846: ecx_cln_debug_pub.Add('Collaboration Point is -- '||l_coll_pt,1);

1842: END IF;
1843:
1844: l_coll_pt := 'APPS';
1845: IF (l_Debug_Level <= 1) THEN
1846: ecx_cln_debug_pub.Add('Collaboration Point is -- '||l_coll_pt,1);
1847: END IF;
1848:
1849: END IF;
1850:

Line 1854: ecx_cln_debug_pub.Add('Document Status passed as NULL',1);

1850:
1851: -- If Document Status passed is null
1852: IF ((l_doc_status IS NULL) OR (l_doc_status = '')) THEN
1853: IF (l_Debug_Level <= 1) THEN
1854: ecx_cln_debug_pub.Add('Document Status passed as NULL',1);
1855: END IF;
1856:
1857: l_doc_status := 'SUCCESS';
1858: IF (l_Debug_Level <= 1) THEN

Line 1859: ecx_cln_debug_pub.Add('Document Status set as '||l_doc_status,1);

1855: END IF;
1856:
1857: l_doc_status := 'SUCCESS';
1858: IF (l_Debug_Level <= 1) THEN
1859: ecx_cln_debug_pub.Add('Document Status set as '||l_doc_status,1);
1860: END IF;
1861:
1862: END IF;
1863:

Line 1867: ecx_cln_debug_pub.Add('Rosettanet Check Reqd value passed as NULL',1);

1863:
1864: -- If RosettaNet Check Reqd value is null
1865: IF (l_rosettanet_check_required IS NULL) THEN
1866: IF (l_Debug_Level <= 1) THEN
1867: ecx_cln_debug_pub.Add('Rosettanet Check Reqd value passed as NULL',1);
1868: END IF;
1869:
1870: l_rosettanet_check_required := TRUE;
1871: IF (l_Debug_Level <= 1) THEN

Line 1872: ecx_cln_debug_pub.Add('Rosettanet Check Reqd value set to true',1);

1868: END IF;
1869:
1870: l_rosettanet_check_required := TRUE;
1871: IF (l_Debug_Level <= 1) THEN
1872: ecx_cln_debug_pub.Add('Rosettanet Check Reqd value set to true',1);
1873: END IF;
1874:
1875: END IF;
1876:

Line 1879: ecx_cln_debug_pub.Add('==========Call to GET_TRADING_PARTNER_DETAILS API=============',1);

1875: END IF;
1876:
1877: -- call the API to get the trading partner set up details
1878: IF (l_Debug_Level <= 1) THEN
1879: ecx_cln_debug_pub.Add('==========Call to GET_TRADING_PARTNER_DETAILS API=============',1);
1880: END IF;
1881:
1882:
1883: GET_TRADING_PARTNER_DETAILS(

Line 1907: ecx_cln_debug_pub.Add('===========================================',1);

1903: -- x_msg_data is set to appropriate value by GET_TRADING_PARTNER_DETAILS
1904: RAISE FND_API.G_EXC_ERROR;
1905: END IF;
1906: IF (l_Debug_Level <= 1) THEN
1907: ecx_cln_debug_pub.Add('===========================================',1);
1908: END IF;
1909:
1910:
1911:

Line 1915: ecx_cln_debug_pub.Add('==========Call to DEFAULT_XMLGTXN_MAPPING API=============',1);

1911:
1912:
1913: -- call the API to get the default parameters through XMLG settings
1914: IF (l_Debug_Level <= 1) THEN
1915: ecx_cln_debug_pub.Add('==========Call to DEFAULT_XMLGTXN_MAPPING API=============',1);
1916: END IF;
1917:
1918: DEFAULT_XMLGTXN_MAPPING(
1919: x_return_status => x_return_status,

Line 1934: ecx_cln_debug_pub.Add('===========================================',1);

1930: -- x_msg_data is set to appropriate value by DEFAULT_XMLGTXN_MAPPING
1931: RAISE FND_API.G_EXC_ERROR;
1932: END IF;
1933: IF (l_Debug_Level <= 1) THEN
1934: ecx_cln_debug_pub.Add('===========================================',1);
1935: END IF;
1936:
1937:
1938:

Line 1942: ecx_cln_debug_pub.Add('RosettaNet Check is Required');

1938:
1939: -- RosettaNet Check Required or not.
1940: IF (l_rosettanet_check_required ) THEN
1941: IF (l_Debug_Level <= 1) THEN
1942: ecx_cln_debug_pub.Add('RosettaNet Check is Required');
1943: END IF;
1944:
1945:
1946: -- Check whether collaboration can be created/upadted based on Profile, Protocol value

Line 1953: ecx_cln_debug_pub.Add('Status Code Returned By IS_UPDATE_REQUIRED :'||x_return_status,1);

1949: l_xmlg_transaction_subtype, l_tr_partner_type, l_tr_partner_id,
1950: l_tr_partner_site, l_sender_component, l_update_reqd );
1951:
1952: IF (l_Debug_Level <= 1) THEN
1953: ecx_cln_debug_pub.Add('Status Code Returned By IS_UPDATE_REQUIRED :'||x_return_status,1);
1954: END IF;
1955:
1956:
1957: IF (x_return_status <> 'S') THEN

Line 1966: ecx_cln_debug_pub.Add('Update Reqd as Returned By IS_UPDATE_REQUIRED -FALSE',1);

1962: END IF;
1963:
1964: IF (l_update_reqd <> TRUE) THEN
1965: IF (l_Debug_Level <= 1) THEN
1966: ecx_cln_debug_pub.Add('Update Reqd as Returned By IS_UPDATE_REQUIRED -FALSE',1);
1967: END IF;
1968:
1969: -- x_msg_data is set to appropriate value by IS_UPDATE_REQUIRED
1970: RETURN;

Line 1980: ecx_cln_debug_pub.Add('Message Text Value is NULL, Defaulting to : '||l_msg_text,1);

1976: IF (l_msg_text IS NULL OR ltrim(rtrim(l_msg_text)) = '') THEN
1977: FND_MESSAGE.SET_NAME('CLN','CLN_CH_DEFAULT_MSG_TXT');
1978: l_msg_text := FND_MESSAGE.GET;
1979: IF (l_Debug_Level <= 1) THEN
1980: ecx_cln_debug_pub.Add('Message Text Value is NULL, Defaulting to : '||l_msg_text,1);
1981: END IF;
1982:
1983: END IF;
1984:

Line 1994: ecx_cln_debug_pub.Add('l_ref_id -- '||l_ref_id,1);

1990: END IF;
1991:
1992:
1993: IF (l_Debug_Level <= 1) THEN
1994: ecx_cln_debug_pub.Add('l_ref_id -- '||l_ref_id,1);
1995: ecx_cln_debug_pub.Add('l_doc_dir -- '||l_doc_dir,1);
1996: ecx_cln_debug_pub.Add('l_xmlg_msg_id -- '||l_xmlg_msg_id,1);
1997: ecx_cln_debug_pub.Add('l_doc_type -- '||l_doc_type,1);
1998: END IF;

Line 1995: ecx_cln_debug_pub.Add('l_doc_dir -- '||l_doc_dir,1);

1991:
1992:
1993: IF (l_Debug_Level <= 1) THEN
1994: ecx_cln_debug_pub.Add('l_ref_id -- '||l_ref_id,1);
1995: ecx_cln_debug_pub.Add('l_doc_dir -- '||l_doc_dir,1);
1996: ecx_cln_debug_pub.Add('l_xmlg_msg_id -- '||l_xmlg_msg_id,1);
1997: ecx_cln_debug_pub.Add('l_doc_type -- '||l_doc_type,1);
1998: END IF;
1999:

Line 1996: ecx_cln_debug_pub.Add('l_xmlg_msg_id -- '||l_xmlg_msg_id,1);

1992:
1993: IF (l_Debug_Level <= 1) THEN
1994: ecx_cln_debug_pub.Add('l_ref_id -- '||l_ref_id,1);
1995: ecx_cln_debug_pub.Add('l_doc_dir -- '||l_doc_dir,1);
1996: ecx_cln_debug_pub.Add('l_xmlg_msg_id -- '||l_xmlg_msg_id,1);
1997: ecx_cln_debug_pub.Add('l_doc_type -- '||l_doc_type,1);
1998: END IF;
1999:
2000:

Line 1997: ecx_cln_debug_pub.Add('l_doc_type -- '||l_doc_type,1);

1993: IF (l_Debug_Level <= 1) THEN
1994: ecx_cln_debug_pub.Add('l_ref_id -- '||l_ref_id,1);
1995: ecx_cln_debug_pub.Add('l_doc_dir -- '||l_doc_dir,1);
1996: ecx_cln_debug_pub.Add('l_xmlg_msg_id -- '||l_xmlg_msg_id,1);
1997: ecx_cln_debug_pub.Add('l_doc_type -- '||l_doc_type,1);
1998: END IF;
1999:
2000:
2001: -- Defaulting Application Reference ID

Line 2013: ecx_cln_debug_pub.Add('---- Before the call to GET_REFERENCE_ID Modified-----',1);

2009:
2010:
2011:
2012: IF (l_Debug_Level <= 1) THEN
2013: ecx_cln_debug_pub.Add('---- Before the call to GET_REFERENCE_ID Modified-----',1);
2014: END IF;
2015:
2016: IF(l_ref_id IS NULL AND l_doc_dir = 'OUT'
2017: AND l_doc_type <> 'CONFIRM_BOD'

Line 2026: ecx_cln_debug_pub.Add('Application reference id -- ' || l_ref_id, 1);

2022: p_app_id => l_app_id,
2023: p_coll_type => l_coll_type);
2024: END IF;
2025: IF (l_Debug_Level <= 1) THEN
2026: ecx_cln_debug_pub.Add('Application reference id -- ' || l_ref_id, 1);
2027: END IF;
2028:
2029:
2030:

Line 2037: ecx_cln_debug_pub.Add('Collaboration ID passed as null',1);

2033:
2034: -- Retrieving Collaboration ID incase the value supplied by user is null
2035: IF l_coll_id IS NULL THEN
2036: IF (l_Debug_Level <= 1) THEN
2037: ecx_cln_debug_pub.Add('Collaboration ID passed as null',1);
2038: ecx_cln_debug_pub.Add('==========Call to FIND_COLLABORATION_ID API=============',1);
2039: END IF;
2040:
2041: FIND_COLLABORATION_ID(

Line 2038: ecx_cln_debug_pub.Add('==========Call to FIND_COLLABORATION_ID API=============',1);

2034: -- Retrieving Collaboration ID incase the value supplied by user is null
2035: IF l_coll_id IS NULL THEN
2036: IF (l_Debug_Level <= 1) THEN
2037: ecx_cln_debug_pub.Add('Collaboration ID passed as null',1);
2038: ecx_cln_debug_pub.Add('==========Call to FIND_COLLABORATION_ID API=============',1);
2039: END IF;
2040:
2041: FIND_COLLABORATION_ID(
2042: x_return_status => x_return_status,

Line 2086: ecx_cln_debug_pub.Add('--- Before the query to find the Application ID/Collaboration Type----',1);

2082: -- history for these are reqd to get the default status.
2083:
2084:
2085: IF (l_Debug_Level <= 1) THEN
2086: ecx_cln_debug_pub.Add('--- Before the query to find the Application ID/Collaboration Type----',1);
2087: END IF;
2088:
2089: SELECT APPLICATION_ID, COLLABORATION_TYPE, DOCUMENT_CREATION_DATE
2090: INTO l_app_id, l_coll_type, l_doc_creation_date

Line 2095: ecx_cln_debug_pub.Add('--- After the query to find the Application ID/Collaboration Type----',1);

2091: FROM CLN_COLL_HIST_HDR
2092: WHERE COLLABORATION_ID = l_coll_id;
2093:
2094: IF (l_Debug_Level <= 1) THEN
2095: ecx_cln_debug_pub.Add('--- After the query to find the Application ID/Collaboration Type----',1);
2096: ecx_cln_debug_pub.Add('Application ID obtained as - '||l_app_id,1);
2097: ecx_cln_debug_pub.Add('Collaboration Type obtained as - '||l_coll_type,1);
2098: END IF;
2099:

Line 2096: ecx_cln_debug_pub.Add('Application ID obtained as - '||l_app_id,1);

2092: WHERE COLLABORATION_ID = l_coll_id;
2093:
2094: IF (l_Debug_Level <= 1) THEN
2095: ecx_cln_debug_pub.Add('--- After the query to find the Application ID/Collaboration Type----',1);
2096: ecx_cln_debug_pub.Add('Application ID obtained as - '||l_app_id,1);
2097: ecx_cln_debug_pub.Add('Collaboration Type obtained as - '||l_coll_type,1);
2098: END IF;
2099:
2100: IF( p_doc_creation_date is not null) THEN

Line 2097: ecx_cln_debug_pub.Add('Collaboration Type obtained as - '||l_coll_type,1);

2093:
2094: IF (l_Debug_Level <= 1) THEN
2095: ecx_cln_debug_pub.Add('--- After the query to find the Application ID/Collaboration Type----',1);
2096: ecx_cln_debug_pub.Add('Application ID obtained as - '||l_app_id,1);
2097: ecx_cln_debug_pub.Add('Collaboration Type obtained as - '||l_coll_type,1);
2098: END IF;
2099:
2100: IF( p_doc_creation_date is not null) THEN
2101: l_doc_creation_date := p_doc_creation_date;

Line 2110: ecx_cln_debug_pub.Add('==========Call to DEFAULT_COLLABORATION_STATUS API=============',1);

2106:
2107:
2108: -- GET THE COLLABORATION STATUS HERE IF NOT PASSED
2109: IF (l_Debug_Level <= 1) THEN
2110: ecx_cln_debug_pub.Add('==========Call to DEFAULT_COLLABORATION_STATUS API=============',1);
2111: END IF;
2112:
2113:
2114: IF (l_coll_status IS NULL) THEN

Line 2116: ecx_cln_debug_pub.Add('Collaboration Status is NULL',1);

2112:
2113:
2114: IF (l_coll_status IS NULL) THEN
2115: IF (l_Debug_Level <= 1) THEN
2116: ecx_cln_debug_pub.Add('Collaboration Status is NULL',1);
2117: END IF;
2118:
2119: DEFAULT_COLLABORATION_STATUS(
2120: x_return_status => x_return_status,

Line 2140: ecx_cln_debug_pub.Add('===========================================',1);

2136: END IF;
2137: END IF;
2138:
2139: IF (l_Debug_Level <= 1) THEN
2140: ecx_cln_debug_pub.Add('===========================================',1);
2141: END IF;
2142:
2143:
2144: -- Check for required parameters

Line 2161: ecx_cln_debug_pub.Add('Validation of parameters failed',1);

2157: null,null,p_disposition);
2158:
2159: IF ( x_return_status <> 'S') THEN
2160: IF (l_Debug_Level <= 1) THEN
2161: ecx_cln_debug_pub.Add('Validation of parameters failed',1);
2162: END IF;
2163:
2164: -- x_msg_data is set to appropriate value by VALIDATE_PARAMS
2165: RAISE FND_API.G_EXC_ERROR;

Line 2170: ecx_cln_debug_pub.Add('--- Before SQL Query : Updating CLN_COLL_HIST_HDR ---',1);

2166: END IF;
2167:
2168:
2169: IF (l_Debug_Level <= 1) THEN
2170: ecx_cln_debug_pub.Add('--- Before SQL Query : Updating CLN_COLL_HIST_HDR ---',1);
2171: END IF;
2172:
2173:
2174: UPDATE CLN_COLL_HIST_HDR

Line 2237: ecx_cln_debug_pub.Add('--- After SQL Query : Updating CLN_COLL_HIST_HDR ---',1);

2233: then the value obtained by us from xml gateway tables needs to be filled in
2234: ===========================================================================*/
2235:
2236: IF (l_Debug_Level <= 1) THEN
2237: ecx_cln_debug_pub.Add('--- After SQL Query : Updating CLN_COLL_HIST_HDR ---',1);
2238: END IF;
2239:
2240:
2241:

Line 2244: ecx_cln_debug_pub.Add('Collaboration Details successfully updated in CLN_COLL_HIST_HDR TABLE',1);

2240:
2241:
2242: IF SQL%FOUND THEN
2243: IF (l_Debug_Level <= 1) THEN
2244: ecx_cln_debug_pub.Add('Collaboration Details successfully updated in CLN_COLL_HIST_HDR TABLE',1);
2245: END IF;
2246:
2247: ELSE
2248: FND_MESSAGE.SET_NAME('CLN','CLN_CH_COLLABORATION_NOT_FOUND');

Line 2258: ecx_cln_debug_pub.Add('Collaboration Detail ID generated : '||l_dtl_coll_id,1);

2254:
2255: -- Collaboration Detail ID is generated from a sequence.
2256: SELECT cln_collaboration_dtl_id_s.nextval INTO l_dtl_coll_id FROM dual ;
2257: IF (l_Debug_Level <= 1) THEN
2258: ecx_cln_debug_pub.Add('Collaboration Detail ID generated : '||l_dtl_coll_id,1);
2259: END IF;
2260:
2261: x_dtl_coll_id := l_dtl_coll_id;
2262:

Line 2264: ecx_cln_debug_pub.Add('---- Before SQL Query : Adding Details in CLN_COLL_HIST_DTL ----',1);

2260:
2261: x_dtl_coll_id := l_dtl_coll_id;
2262:
2263: IF (l_Debug_Level <= 1) THEN
2264: ecx_cln_debug_pub.Add('---- Before SQL Query : Adding Details in CLN_COLL_HIST_DTL ----',1);
2265: END IF;
2266:
2267: --Bug 3655492 : Added nvl(l_doc_type,'UNKNOWN') for 11.5.10 performance enh, to make sure always Doc Type is not null
2268: INSERT INTO CLN_COLL_HIST_DTL(

Line 2293: ecx_cln_debug_pub.Add('----- After SQL Query : Adding Details in CLN_COLL_HIST_DTL -----',1);

2289: l_xmlg_transaction_subtype, l_xmlg_document_id, l_xmlg_msg_id, l_xmlg_internal_control_number,
2290: l_resend_flag, l_xmlg_int_transaction_type, l_xmlg_int_transaction_subtype, l_xml_event_key);
2291:
2292: IF (l_Debug_Level <= 1) THEN
2293: ecx_cln_debug_pub.Add('----- After SQL Query : Adding Details in CLN_COLL_HIST_DTL -----',1);
2294: END IF;
2295:
2296:
2297: IF SQL%FOUND THEN

Line 2299: ecx_cln_debug_pub.Add('Collaboration Details successfully entered in CLN_COLL_HIST_DTL TABLE',1);

2295:
2296:
2297: IF SQL%FOUND THEN
2298: IF (l_Debug_Level <= 1) THEN
2299: ecx_cln_debug_pub.Add('Collaboration Details successfully entered in CLN_COLL_HIST_DTL TABLE',1);
2300: END IF;
2301:
2302: ELSE
2303: FND_MESSAGE.SET_NAME('CLN','CLN_CH_ADD_DTLS_FAILED');

Line 2314: ecx_cln_debug_pub.Add(l_msg_data,1);

2310:
2311: FND_MESSAGE.SET_NAME('CLN','CLN_CH_COLLABORATION_UPDATED');
2312: x_msg_data := FND_MESSAGE.GET;
2313: IF (l_Debug_Level <= 1) THEN
2314: ecx_cln_debug_pub.Add(l_msg_data,1);
2315: END IF;
2316:
2317: IF (l_Debug_Level <= 2) THEN
2318: ecx_cln_debug_pub.Add('------ Exiting UPDATE_COLLABORATION API ------- ',2);

Line 2318: ecx_cln_debug_pub.Add('------ Exiting UPDATE_COLLABORATION API ------- ',2);

2314: ecx_cln_debug_pub.Add(l_msg_data,1);
2315: END IF;
2316:
2317: IF (l_Debug_Level <= 2) THEN
2318: ecx_cln_debug_pub.Add('------ Exiting UPDATE_COLLABORATION API ------- ',2);
2319: END IF;
2320:
2321:
2322: EXCEPTION

Line 2329: ecx_cln_debug_pub.Add(l_msg_data,4);

2325: --ROLLBACK TO UPDATE_COLLABORATION_PUB;
2326: x_return_status := FND_API.G_RET_STS_ERROR ;
2327: IF (l_Debug_Level <= 4) THEN
2328: IF (l_Debug_Level <= 4) THEN
2329: ecx_cln_debug_pub.Add(l_msg_data,4);
2330: ecx_cln_debug_pub.Add('------ Exiting UPDATE_COLLABORATION API ------- ',2);
2331: END IF;
2332:
2333: END IF;

Line 2330: ecx_cln_debug_pub.Add('------ Exiting UPDATE_COLLABORATION API ------- ',2);

2326: x_return_status := FND_API.G_RET_STS_ERROR ;
2327: IF (l_Debug_Level <= 4) THEN
2328: IF (l_Debug_Level <= 4) THEN
2329: ecx_cln_debug_pub.Add(l_msg_data,4);
2330: ecx_cln_debug_pub.Add('------ Exiting UPDATE_COLLABORATION API ------- ',2);
2331: END IF;
2332:
2333: END IF;
2334:

Line 2347: ecx_cln_debug_pub.Add(l_msg_data,6);

2343: FND_MESSAGE.SET_TOKEN('ERRORMSG',l_error_msg);
2344: x_msg_data :=FND_MESSAGE.GET;
2345: l_msg_data :='Unexpected Error -'||l_error_code||' : '||l_error_msg;
2346: IF (l_Debug_Level <= 5) THEN
2347: ecx_cln_debug_pub.Add(l_msg_data,6);
2348: ecx_cln_debug_pub.Add('------ Exiting UPDATE_COLLABORATION API ------- ',2);
2349: END IF;
2350:
2351:

Line 2348: ecx_cln_debug_pub.Add('------ Exiting UPDATE_COLLABORATION API ------- ',2);

2344: x_msg_data :=FND_MESSAGE.GET;
2345: l_msg_data :='Unexpected Error -'||l_error_code||' : '||l_error_msg;
2346: IF (l_Debug_Level <= 5) THEN
2347: ecx_cln_debug_pub.Add(l_msg_data,6);
2348: ecx_cln_debug_pub.Add('------ Exiting UPDATE_COLLABORATION API ------- ',2);
2349: END IF;
2350:
2351:
2352:

Line 2364: ecx_cln_debug_pub.Add(l_msg_data,4);

2360: FND_MESSAGE.SET_TOKEN('ERRORMSG',l_error_msg);
2361: x_msg_data :=FND_MESSAGE.GET;
2362: l_msg_data :='Unexpected Error -'||l_error_code||' : '||l_error_msg;
2363: IF (l_Debug_Level <= 5) THEN
2364: ecx_cln_debug_pub.Add(l_msg_data,4);
2365: ecx_cln_debug_pub.Add('------ Exiting UPDATE_COLLABORATION API ------- ',2);
2366: END IF;
2367:
2368:

Line 2365: ecx_cln_debug_pub.Add('------ Exiting UPDATE_COLLABORATION API ------- ',2);

2361: x_msg_data :=FND_MESSAGE.GET;
2362: l_msg_data :='Unexpected Error -'||l_error_code||' : '||l_error_msg;
2363: IF (l_Debug_Level <= 5) THEN
2364: ecx_cln_debug_pub.Add(l_msg_data,4);
2365: ecx_cln_debug_pub.Add('------ Exiting UPDATE_COLLABORATION API ------- ',2);
2366: END IF;
2367:
2368:
2369: END UPDATE_COLLABORATION;

Line 2415: --l_debug_mode :=ecx_cln_debug_pub.Set_Debug_Mode('FILE');

2411:
2412: BEGIN
2413:
2414: -- Sets the debug mode to be FILE
2415: --l_debug_mode :=ecx_cln_debug_pub.Set_Debug_Mode('FILE');
2416:
2417:
2418: IF (l_Debug_Level <= 2) THEN
2419: ecx_cln_debug_pub.Add('----- Entering FIND_COLLABORATION_STATUS API -----',2);

Line 2419: ecx_cln_debug_pub.Add('----- Entering FIND_COLLABORATION_STATUS API -----',2);

2415: --l_debug_mode :=ecx_cln_debug_pub.Set_Debug_Mode('FILE');
2416:
2417:
2418: IF (l_Debug_Level <= 2) THEN
2419: ecx_cln_debug_pub.Add('----- Entering FIND_COLLABORATION_STATUS API -----',2);
2420: END IF;
2421:
2422:
2423: -- Initialize API return status to success

Line 2429: ecx_cln_debug_pub.Add('==========Parameters Received=============',1);

2425: l_msg_data := 'Collaboration status successfully found ';
2426:
2427: -- get the paramaters passed
2428: IF (l_Debug_Level <= 1) THEN
2429: ecx_cln_debug_pub.Add('==========Parameters Received=============',1);
2430: ecx_cln_debug_pub.Add('COLLABORATION ID ----- >>>'||p_coll_id,1);
2431: ecx_cln_debug_pub.Add('APPLCATION ID ----- >>>'||p_app_id,1);
2432: ecx_cln_debug_pub.Add('REFERENCE ID ----- >>>'||p_ref_id,1);
2433: ecx_cln_debug_pub.Add('RELEASE NUMBER ----- >>>'||p_rel_no,1);

Line 2430: ecx_cln_debug_pub.Add('COLLABORATION ID ----- >>>'||p_coll_id,1);

2426:
2427: -- get the paramaters passed
2428: IF (l_Debug_Level <= 1) THEN
2429: ecx_cln_debug_pub.Add('==========Parameters Received=============',1);
2430: ecx_cln_debug_pub.Add('COLLABORATION ID ----- >>>'||p_coll_id,1);
2431: ecx_cln_debug_pub.Add('APPLCATION ID ----- >>>'||p_app_id,1);
2432: ecx_cln_debug_pub.Add('REFERENCE ID ----- >>>'||p_ref_id,1);
2433: ecx_cln_debug_pub.Add('RELEASE NUMBER ----- >>>'||p_rel_no,1);
2434: ecx_cln_debug_pub.Add('DOCUMENT NO ----- >>>'||p_doc_no,1);

Line 2431: ecx_cln_debug_pub.Add('APPLCATION ID ----- >>>'||p_app_id,1);

2427: -- get the paramaters passed
2428: IF (l_Debug_Level <= 1) THEN
2429: ecx_cln_debug_pub.Add('==========Parameters Received=============',1);
2430: ecx_cln_debug_pub.Add('COLLABORATION ID ----- >>>'||p_coll_id,1);
2431: ecx_cln_debug_pub.Add('APPLCATION ID ----- >>>'||p_app_id,1);
2432: ecx_cln_debug_pub.Add('REFERENCE ID ----- >>>'||p_ref_id,1);
2433: ecx_cln_debug_pub.Add('RELEASE NUMBER ----- >>>'||p_rel_no,1);
2434: ecx_cln_debug_pub.Add('DOCUMENT NO ----- >>>'||p_doc_no,1);
2435: ecx_cln_debug_pub.Add('DOCUMENT REV. NO ----- >>>'||p_doc_rev_no,1);

Line 2432: ecx_cln_debug_pub.Add('REFERENCE ID ----- >>>'||p_ref_id,1);

2428: IF (l_Debug_Level <= 1) THEN
2429: ecx_cln_debug_pub.Add('==========Parameters Received=============',1);
2430: ecx_cln_debug_pub.Add('COLLABORATION ID ----- >>>'||p_coll_id,1);
2431: ecx_cln_debug_pub.Add('APPLCATION ID ----- >>>'||p_app_id,1);
2432: ecx_cln_debug_pub.Add('REFERENCE ID ----- >>>'||p_ref_id,1);
2433: ecx_cln_debug_pub.Add('RELEASE NUMBER ----- >>>'||p_rel_no,1);
2434: ecx_cln_debug_pub.Add('DOCUMENT NO ----- >>>'||p_doc_no,1);
2435: ecx_cln_debug_pub.Add('DOCUMENT REV. NO ----- >>>'||p_doc_rev_no,1);
2436: ecx_cln_debug_pub.Add('XMLG TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);

Line 2433: ecx_cln_debug_pub.Add('RELEASE NUMBER ----- >>>'||p_rel_no,1);

2429: ecx_cln_debug_pub.Add('==========Parameters Received=============',1);
2430: ecx_cln_debug_pub.Add('COLLABORATION ID ----- >>>'||p_coll_id,1);
2431: ecx_cln_debug_pub.Add('APPLCATION ID ----- >>>'||p_app_id,1);
2432: ecx_cln_debug_pub.Add('REFERENCE ID ----- >>>'||p_ref_id,1);
2433: ecx_cln_debug_pub.Add('RELEASE NUMBER ----- >>>'||p_rel_no,1);
2434: ecx_cln_debug_pub.Add('DOCUMENT NO ----- >>>'||p_doc_no,1);
2435: ecx_cln_debug_pub.Add('DOCUMENT REV. NO ----- >>>'||p_doc_rev_no,1);
2436: ecx_cln_debug_pub.Add('XMLG TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);
2437: ecx_cln_debug_pub.Add('XMLG TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);

Line 2434: ecx_cln_debug_pub.Add('DOCUMENT NO ----- >>>'||p_doc_no,1);

2430: ecx_cln_debug_pub.Add('COLLABORATION ID ----- >>>'||p_coll_id,1);
2431: ecx_cln_debug_pub.Add('APPLCATION ID ----- >>>'||p_app_id,1);
2432: ecx_cln_debug_pub.Add('REFERENCE ID ----- >>>'||p_ref_id,1);
2433: ecx_cln_debug_pub.Add('RELEASE NUMBER ----- >>>'||p_rel_no,1);
2434: ecx_cln_debug_pub.Add('DOCUMENT NO ----- >>>'||p_doc_no,1);
2435: ecx_cln_debug_pub.Add('DOCUMENT REV. NO ----- >>>'||p_doc_rev_no,1);
2436: ecx_cln_debug_pub.Add('XMLG TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);
2437: ecx_cln_debug_pub.Add('XMLG TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);
2438: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);

Line 2435: ecx_cln_debug_pub.Add('DOCUMENT REV. NO ----- >>>'||p_doc_rev_no,1);

2431: ecx_cln_debug_pub.Add('APPLCATION ID ----- >>>'||p_app_id,1);
2432: ecx_cln_debug_pub.Add('REFERENCE ID ----- >>>'||p_ref_id,1);
2433: ecx_cln_debug_pub.Add('RELEASE NUMBER ----- >>>'||p_rel_no,1);
2434: ecx_cln_debug_pub.Add('DOCUMENT NO ----- >>>'||p_doc_no,1);
2435: ecx_cln_debug_pub.Add('DOCUMENT REV. NO ----- >>>'||p_doc_rev_no,1);
2436: ecx_cln_debug_pub.Add('XMLG TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);
2437: ecx_cln_debug_pub.Add('XMLG TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);
2438: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);
2439: ecx_cln_debug_pub.Add('UNIQUE 1 ----- >>>'||p_unique1,1);

Line 2436: ecx_cln_debug_pub.Add('XMLG TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);

2432: ecx_cln_debug_pub.Add('REFERENCE ID ----- >>>'||p_ref_id,1);
2433: ecx_cln_debug_pub.Add('RELEASE NUMBER ----- >>>'||p_rel_no,1);
2434: ecx_cln_debug_pub.Add('DOCUMENT NO ----- >>>'||p_doc_no,1);
2435: ecx_cln_debug_pub.Add('DOCUMENT REV. NO ----- >>>'||p_doc_rev_no,1);
2436: ecx_cln_debug_pub.Add('XMLG TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);
2437: ecx_cln_debug_pub.Add('XMLG TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);
2438: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);
2439: ecx_cln_debug_pub.Add('UNIQUE 1 ----- >>>'||p_unique1,1);
2440: ecx_cln_debug_pub.Add('UNIQUE 2 ----- >>>'||p_unique2,1);

Line 2437: ecx_cln_debug_pub.Add('XMLG TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);

2433: ecx_cln_debug_pub.Add('RELEASE NUMBER ----- >>>'||p_rel_no,1);
2434: ecx_cln_debug_pub.Add('DOCUMENT NO ----- >>>'||p_doc_no,1);
2435: ecx_cln_debug_pub.Add('DOCUMENT REV. NO ----- >>>'||p_doc_rev_no,1);
2436: ecx_cln_debug_pub.Add('XMLG TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);
2437: ecx_cln_debug_pub.Add('XMLG TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);
2438: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);
2439: ecx_cln_debug_pub.Add('UNIQUE 1 ----- >>>'||p_unique1,1);
2440: ecx_cln_debug_pub.Add('UNIQUE 2 ----- >>>'||p_unique2,1);
2441: ecx_cln_debug_pub.Add('UNIQUE 3 ----- >>>'||p_unique3,1);

Line 2438: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);

2434: ecx_cln_debug_pub.Add('DOCUMENT NO ----- >>>'||p_doc_no,1);
2435: ecx_cln_debug_pub.Add('DOCUMENT REV. NO ----- >>>'||p_doc_rev_no,1);
2436: ecx_cln_debug_pub.Add('XMLG TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);
2437: ecx_cln_debug_pub.Add('XMLG TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);
2438: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);
2439: ecx_cln_debug_pub.Add('UNIQUE 1 ----- >>>'||p_unique1,1);
2440: ecx_cln_debug_pub.Add('UNIQUE 2 ----- >>>'||p_unique2,1);
2441: ecx_cln_debug_pub.Add('UNIQUE 3 ----- >>>'||p_unique3,1);
2442: ecx_cln_debug_pub.Add('UNIQUE 4 ----- >>>'||p_unique4,1);

Line 2439: ecx_cln_debug_pub.Add('UNIQUE 1 ----- >>>'||p_unique1,1);

2435: ecx_cln_debug_pub.Add('DOCUMENT REV. NO ----- >>>'||p_doc_rev_no,1);
2436: ecx_cln_debug_pub.Add('XMLG TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);
2437: ecx_cln_debug_pub.Add('XMLG TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);
2438: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);
2439: ecx_cln_debug_pub.Add('UNIQUE 1 ----- >>>'||p_unique1,1);
2440: ecx_cln_debug_pub.Add('UNIQUE 2 ----- >>>'||p_unique2,1);
2441: ecx_cln_debug_pub.Add('UNIQUE 3 ----- >>>'||p_unique3,1);
2442: ecx_cln_debug_pub.Add('UNIQUE 4 ----- >>>'||p_unique4,1);
2443: ecx_cln_debug_pub.Add('UNIQUE 5 ----- >>>'||p_unique5,1);

Line 2440: ecx_cln_debug_pub.Add('UNIQUE 2 ----- >>>'||p_unique2,1);

2436: ecx_cln_debug_pub.Add('XMLG TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);
2437: ecx_cln_debug_pub.Add('XMLG TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);
2438: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);
2439: ecx_cln_debug_pub.Add('UNIQUE 1 ----- >>>'||p_unique1,1);
2440: ecx_cln_debug_pub.Add('UNIQUE 2 ----- >>>'||p_unique2,1);
2441: ecx_cln_debug_pub.Add('UNIQUE 3 ----- >>>'||p_unique3,1);
2442: ecx_cln_debug_pub.Add('UNIQUE 4 ----- >>>'||p_unique4,1);
2443: ecx_cln_debug_pub.Add('UNIQUE 5 ----- >>>'||p_unique5,1);
2444: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_direction,1);

Line 2441: ecx_cln_debug_pub.Add('UNIQUE 3 ----- >>>'||p_unique3,1);

2437: ecx_cln_debug_pub.Add('XMLG TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);
2438: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);
2439: ecx_cln_debug_pub.Add('UNIQUE 1 ----- >>>'||p_unique1,1);
2440: ecx_cln_debug_pub.Add('UNIQUE 2 ----- >>>'||p_unique2,1);
2441: ecx_cln_debug_pub.Add('UNIQUE 3 ----- >>>'||p_unique3,1);
2442: ecx_cln_debug_pub.Add('UNIQUE 4 ----- >>>'||p_unique4,1);
2443: ecx_cln_debug_pub.Add('UNIQUE 5 ----- >>>'||p_unique5,1);
2444: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_direction,1);
2445: ecx_cln_debug_pub.Add('XMLG MESSAGE ID ----- >>>'||p_xmlg_msg_id,1);

Line 2442: ecx_cln_debug_pub.Add('UNIQUE 4 ----- >>>'||p_unique4,1);

2438: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);
2439: ecx_cln_debug_pub.Add('UNIQUE 1 ----- >>>'||p_unique1,1);
2440: ecx_cln_debug_pub.Add('UNIQUE 2 ----- >>>'||p_unique2,1);
2441: ecx_cln_debug_pub.Add('UNIQUE 3 ----- >>>'||p_unique3,1);
2442: ecx_cln_debug_pub.Add('UNIQUE 4 ----- >>>'||p_unique4,1);
2443: ecx_cln_debug_pub.Add('UNIQUE 5 ----- >>>'||p_unique5,1);
2444: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_direction,1);
2445: ecx_cln_debug_pub.Add('XMLG MESSAGE ID ----- >>>'||p_xmlg_msg_id,1);
2446: ecx_cln_debug_pub.Add('XMLG INTERNAL CONTROL NO ----- >>>'||p_xmlg_internal_control_number,1);

Line 2443: ecx_cln_debug_pub.Add('UNIQUE 5 ----- >>>'||p_unique5,1);

2439: ecx_cln_debug_pub.Add('UNIQUE 1 ----- >>>'||p_unique1,1);
2440: ecx_cln_debug_pub.Add('UNIQUE 2 ----- >>>'||p_unique2,1);
2441: ecx_cln_debug_pub.Add('UNIQUE 3 ----- >>>'||p_unique3,1);
2442: ecx_cln_debug_pub.Add('UNIQUE 4 ----- >>>'||p_unique4,1);
2443: ecx_cln_debug_pub.Add('UNIQUE 5 ----- >>>'||p_unique5,1);
2444: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_direction,1);
2445: ecx_cln_debug_pub.Add('XMLG MESSAGE ID ----- >>>'||p_xmlg_msg_id,1);
2446: ecx_cln_debug_pub.Add('XMLG INTERNAL CONTROL NO ----- >>>'||p_xmlg_internal_control_number,1);
2447: ecx_cln_debug_pub.Add('===========================================',1);

Line 2444: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_direction,1);

2440: ecx_cln_debug_pub.Add('UNIQUE 2 ----- >>>'||p_unique2,1);
2441: ecx_cln_debug_pub.Add('UNIQUE 3 ----- >>>'||p_unique3,1);
2442: ecx_cln_debug_pub.Add('UNIQUE 4 ----- >>>'||p_unique4,1);
2443: ecx_cln_debug_pub.Add('UNIQUE 5 ----- >>>'||p_unique5,1);
2444: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_direction,1);
2445: ecx_cln_debug_pub.Add('XMLG MESSAGE ID ----- >>>'||p_xmlg_msg_id,1);
2446: ecx_cln_debug_pub.Add('XMLG INTERNAL CONTROL NO ----- >>>'||p_xmlg_internal_control_number,1);
2447: ecx_cln_debug_pub.Add('===========================================',1);
2448:

Line 2445: ecx_cln_debug_pub.Add('XMLG MESSAGE ID ----- >>>'||p_xmlg_msg_id,1);

2441: ecx_cln_debug_pub.Add('UNIQUE 3 ----- >>>'||p_unique3,1);
2442: ecx_cln_debug_pub.Add('UNIQUE 4 ----- >>>'||p_unique4,1);
2443: ecx_cln_debug_pub.Add('UNIQUE 5 ----- >>>'||p_unique5,1);
2444: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_direction,1);
2445: ecx_cln_debug_pub.Add('XMLG MESSAGE ID ----- >>>'||p_xmlg_msg_id,1);
2446: ecx_cln_debug_pub.Add('XMLG INTERNAL CONTROL NO ----- >>>'||p_xmlg_internal_control_number,1);
2447: ecx_cln_debug_pub.Add('===========================================',1);
2448:
2449: ecx_cln_debug_pub.Add('--- Before SQL Query : Retrieving Collaboration Status ---',1);

Line 2446: ecx_cln_debug_pub.Add('XMLG INTERNAL CONTROL NO ----- >>>'||p_xmlg_internal_control_number,1);

2442: ecx_cln_debug_pub.Add('UNIQUE 4 ----- >>>'||p_unique4,1);
2443: ecx_cln_debug_pub.Add('UNIQUE 5 ----- >>>'||p_unique5,1);
2444: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_direction,1);
2445: ecx_cln_debug_pub.Add('XMLG MESSAGE ID ----- >>>'||p_xmlg_msg_id,1);
2446: ecx_cln_debug_pub.Add('XMLG INTERNAL CONTROL NO ----- >>>'||p_xmlg_internal_control_number,1);
2447: ecx_cln_debug_pub.Add('===========================================',1);
2448:
2449: ecx_cln_debug_pub.Add('--- Before SQL Query : Retrieving Collaboration Status ---',1);
2450: END IF;

Line 2447: ecx_cln_debug_pub.Add('===========================================',1);

2443: ecx_cln_debug_pub.Add('UNIQUE 5 ----- >>>'||p_unique5,1);
2444: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_direction,1);
2445: ecx_cln_debug_pub.Add('XMLG MESSAGE ID ----- >>>'||p_xmlg_msg_id,1);
2446: ecx_cln_debug_pub.Add('XMLG INTERNAL CONTROL NO ----- >>>'||p_xmlg_internal_control_number,1);
2447: ecx_cln_debug_pub.Add('===========================================',1);
2448:
2449: ecx_cln_debug_pub.Add('--- Before SQL Query : Retrieving Collaboration Status ---',1);
2450: END IF;
2451:

Line 2449: ecx_cln_debug_pub.Add('--- Before SQL Query : Retrieving Collaboration Status ---',1);

2445: ecx_cln_debug_pub.Add('XMLG MESSAGE ID ----- >>>'||p_xmlg_msg_id,1);
2446: ecx_cln_debug_pub.Add('XMLG INTERNAL CONTROL NO ----- >>>'||p_xmlg_internal_control_number,1);
2447: ecx_cln_debug_pub.Add('===========================================',1);
2448:
2449: ecx_cln_debug_pub.Add('--- Before SQL Query : Retrieving Collaboration Status ---',1);
2450: END IF;
2451:
2452:
2453: SELECT COLLABORATION_STATUS INTO x_coll_status FROM CLN_COLL_HIST_HDR

Line 2470: ecx_cln_debug_pub.Add('--- After SQL Query : Retrieving Collaboration Status ----',1);

2466: OR XMLG_MSG_ID = p_xmlg_msg_id
2467: OR XMLG_INTERNAL_CONTROL_NUMBER = p_xmlg_internal_control_number;
2468:
2469: IF (l_Debug_Level <= 1) THEN
2470: ecx_cln_debug_pub.Add('--- After SQL Query : Retrieving Collaboration Status ----',1);
2471: END IF;
2472:
2473:
2474: FND_MESSAGE.SET_NAME('CLN','CLN_CH_COLL_STATUS_FOUND');

Line 2478: ecx_cln_debug_pub.Add(l_msg_data,1);

2474: FND_MESSAGE.SET_NAME('CLN','CLN_CH_COLL_STATUS_FOUND');
2475: x_msg_data := FND_MESSAGE.GET;
2476:
2477: IF (l_Debug_Level <= 1) THEN
2478: ecx_cln_debug_pub.Add(l_msg_data,1);
2479: END IF;
2480:
2481: IF (l_Debug_Level <= 2) THEN
2482: ecx_cln_debug_pub.Add('----- Exiting FIND_COLLABORATION_STATUS API -----',2);

Line 2482: ecx_cln_debug_pub.Add('----- Exiting FIND_COLLABORATION_STATUS API -----',2);

2478: ecx_cln_debug_pub.Add(l_msg_data,1);
2479: END IF;
2480:
2481: IF (l_Debug_Level <= 2) THEN
2482: ecx_cln_debug_pub.Add('----- Exiting FIND_COLLABORATION_STATUS API -----',2);
2483: END IF;
2484:
2485:
2486:

Line 2499: ecx_cln_debug_pub.Add(l_msg_data,4);

2495: FND_MESSAGE.SET_TOKEN('ERRORMSG',l_error_msg);
2496: x_msg_data := FND_MESSAGE.GET;
2497: l_msg_data :='Collaboration status could not be retrieved for the parameters passed '||l_error_code||' : '||l_error_msg;
2498: IF (l_Debug_Level <= 4) THEN
2499: ecx_cln_debug_pub.Add(l_msg_data,4);
2500: ecx_cln_debug_pub.Add('----- Exiting FIND_COLLABORATION_STATUS API -----',2);
2501: END IF;
2502:
2503:

Line 2500: ecx_cln_debug_pub.Add('----- Exiting FIND_COLLABORATION_STATUS API -----',2);

2496: x_msg_data := FND_MESSAGE.GET;
2497: l_msg_data :='Collaboration status could not be retrieved for the parameters passed '||l_error_code||' : '||l_error_msg;
2498: IF (l_Debug_Level <= 4) THEN
2499: ecx_cln_debug_pub.Add(l_msg_data,4);
2500: ecx_cln_debug_pub.Add('----- Exiting FIND_COLLABORATION_STATUS API -----',2);
2501: END IF;
2502:
2503:
2504:

Line 2507: ecx_cln_debug_pub.Add('Unable to find the collaboration status in Collaboration History - Header Table',1);

2503:
2504:
2505: WHEN NO_DATA_FOUND THEN
2506: IF (l_Debug_Level <= 5) THEN
2507: ecx_cln_debug_pub.Add('Unable to find the collaboration status in Collaboration History - Header Table',1);
2508: ecx_cln_debug_pub.Add('----- Finding Collaboration status using CLN_COLL_HIST_DTL table ----',1);
2509: END IF;
2510:
2511: BEGIN

Line 2508: ecx_cln_debug_pub.Add('----- Finding Collaboration status using CLN_COLL_HIST_DTL table ----',1);

2504:
2505: WHEN NO_DATA_FOUND THEN
2506: IF (l_Debug_Level <= 5) THEN
2507: ecx_cln_debug_pub.Add('Unable to find the collaboration status in Collaboration History - Header Table',1);
2508: ecx_cln_debug_pub.Add('----- Finding Collaboration status using CLN_COLL_HIST_DTL table ----',1);
2509: END IF;
2510:
2511: BEGIN
2512: SELECT COLLABORATION_STATUS INTO x_coll_status

Line 2523: ecx_cln_debug_pub.Add('Unable to find the collaboration status in Collaboration History - Detail Table',1);

2519:
2520: EXCEPTION
2521: WHEN NO_DATA_FOUND THEN
2522: IF (l_Debug_Level <= 1) THEN
2523: ecx_cln_debug_pub.Add('Unable to find the collaboration status in Collaboration History - Detail Table',1);
2524: END IF;
2525:
2526: l_error_code :=SQLCODE;
2527: l_error_msg :=SQLERRM;

Line 2536: ecx_cln_debug_pub.Add(l_msg_data,1);

2532: x_msg_data := FND_MESSAGE.GET;
2533: l_msg_data :='Collaboration status could not be retrieved for the parameters passed '||l_error_code||' : '||l_error_msg;
2534: END;
2535: IF (l_Debug_Level <= 1) THEN
2536: ecx_cln_debug_pub.Add(l_msg_data,1);
2537: END IF;
2538:
2539: IF (l_Debug_Level <= 2) THEN
2540: ecx_cln_debug_pub.Add('----- Exiting FIND_COLLABORATION_STATUS API -----',2);

Line 2540: ecx_cln_debug_pub.Add('----- Exiting FIND_COLLABORATION_STATUS API -----',2);

2536: ecx_cln_debug_pub.Add(l_msg_data,1);
2537: END IF;
2538:
2539: IF (l_Debug_Level <= 2) THEN
2540: ecx_cln_debug_pub.Add('----- Exiting FIND_COLLABORATION_STATUS API -----',2);
2541: END IF;
2542:
2543:
2544:

Line 2555: ecx_cln_debug_pub.Add(l_msg_data,6);

2551: FND_MESSAGE.SET_TOKEN('ERRORMSG',l_error_msg);
2552: x_msg_data := FND_MESSAGE.GET;
2553: l_msg_data :='Collaboration status could not be retrieved for the parameters passed '||l_error_code||' : '||l_error_msg;
2554: IF (l_Debug_Level <= 5) THEN
2555: ecx_cln_debug_pub.Add(l_msg_data,6);
2556: ecx_cln_debug_pub.Add('----- Exiting FIND_COLLABORATION_STATUS API -----',2);
2557: END IF;
2558:
2559:

Line 2556: ecx_cln_debug_pub.Add('----- Exiting FIND_COLLABORATION_STATUS API -----',2);

2552: x_msg_data := FND_MESSAGE.GET;
2553: l_msg_data :='Collaboration status could not be retrieved for the parameters passed '||l_error_code||' : '||l_error_msg;
2554: IF (l_Debug_Level <= 5) THEN
2555: ecx_cln_debug_pub.Add(l_msg_data,6);
2556: ecx_cln_debug_pub.Add('----- Exiting FIND_COLLABORATION_STATUS API -----',2);
2557: END IF;
2558:
2559:
2560:

Line 2653: --l_debug_file :=ecx_cln_debug_pub.Set_Debug_Mode('FILE');

2649:
2650: BEGIN
2651:
2652: -- Sets the debug mode to be FILE
2653: --l_debug_file :=ecx_cln_debug_pub.Set_Debug_Mode('FILE');
2654:
2655:
2656: IF (l_Debug_Level <= 2) THEN
2657: ecx_cln_debug_pub.Add('------ Entering RETRIEVE_COLLABORATION_DETAILS API -----',2);

Line 2657: ecx_cln_debug_pub.Add('------ Entering RETRIEVE_COLLABORATION_DETAILS API -----',2);

2653: --l_debug_file :=ecx_cln_debug_pub.Set_Debug_Mode('FILE');
2654:
2655:
2656: IF (l_Debug_Level <= 2) THEN
2657: ecx_cln_debug_pub.Add('------ Entering RETRIEVE_COLLABORATION_DETAILS API -----',2);
2658: END IF;
2659:
2660:
2661:

Line 2671: ecx_cln_debug_pub.Add('==========Parameters Received=============',1);

2667: x_msg_data := FND_MESSAGE.GET;
2668:
2669: -- get the paramaters passed
2670: IF (l_Debug_Level <= 1) THEN
2671: ecx_cln_debug_pub.Add('==========Parameters Received=============',1);
2672: ecx_cln_debug_pub.Add('COLLABORATION DETAIL ID ----- >>>'||p_dtl_coll_id,1);
2673: ecx_cln_debug_pub.Add('COLLABORATION ID ----- >>>'||p_coll_id,1);
2674: ecx_cln_debug_pub.Add('APPLCATION ID ----- >>>'||x_app_id,1);
2675: ecx_cln_debug_pub.Add('REFERENCE ID ----- >>>'||x_ref_id,1);

Line 2672: ecx_cln_debug_pub.Add('COLLABORATION DETAIL ID ----- >>>'||p_dtl_coll_id,1);

2668:
2669: -- get the paramaters passed
2670: IF (l_Debug_Level <= 1) THEN
2671: ecx_cln_debug_pub.Add('==========Parameters Received=============',1);
2672: ecx_cln_debug_pub.Add('COLLABORATION DETAIL ID ----- >>>'||p_dtl_coll_id,1);
2673: ecx_cln_debug_pub.Add('COLLABORATION ID ----- >>>'||p_coll_id,1);
2674: ecx_cln_debug_pub.Add('APPLCATION ID ----- >>>'||x_app_id,1);
2675: ecx_cln_debug_pub.Add('REFERENCE ID ----- >>>'||x_ref_id,1);
2676: ecx_cln_debug_pub.Add('RELEASE NUMBER ----- >>>'||x_rel_no,1);

Line 2673: ecx_cln_debug_pub.Add('COLLABORATION ID ----- >>>'||p_coll_id,1);

2669: -- get the paramaters passed
2670: IF (l_Debug_Level <= 1) THEN
2671: ecx_cln_debug_pub.Add('==========Parameters Received=============',1);
2672: ecx_cln_debug_pub.Add('COLLABORATION DETAIL ID ----- >>>'||p_dtl_coll_id,1);
2673: ecx_cln_debug_pub.Add('COLLABORATION ID ----- >>>'||p_coll_id,1);
2674: ecx_cln_debug_pub.Add('APPLCATION ID ----- >>>'||x_app_id,1);
2675: ecx_cln_debug_pub.Add('REFERENCE ID ----- >>>'||x_ref_id,1);
2676: ecx_cln_debug_pub.Add('RELEASE NUMBER ----- >>>'||x_rel_no,1);
2677: ecx_cln_debug_pub.Add('DOCUMENT NO ----- >>>'||x_doc_no,1);

Line 2674: ecx_cln_debug_pub.Add('APPLCATION ID ----- >>>'||x_app_id,1);

2670: IF (l_Debug_Level <= 1) THEN
2671: ecx_cln_debug_pub.Add('==========Parameters Received=============',1);
2672: ecx_cln_debug_pub.Add('COLLABORATION DETAIL ID ----- >>>'||p_dtl_coll_id,1);
2673: ecx_cln_debug_pub.Add('COLLABORATION ID ----- >>>'||p_coll_id,1);
2674: ecx_cln_debug_pub.Add('APPLCATION ID ----- >>>'||x_app_id,1);
2675: ecx_cln_debug_pub.Add('REFERENCE ID ----- >>>'||x_ref_id,1);
2676: ecx_cln_debug_pub.Add('RELEASE NUMBER ----- >>>'||x_rel_no,1);
2677: ecx_cln_debug_pub.Add('DOCUMENT NO ----- >>>'||x_doc_no,1);
2678: ecx_cln_debug_pub.Add('DOCUMENT REV. NO ----- >>>'||x_doc_rev_no,1);

Line 2675: ecx_cln_debug_pub.Add('REFERENCE ID ----- >>>'||x_ref_id,1);

2671: ecx_cln_debug_pub.Add('==========Parameters Received=============',1);
2672: ecx_cln_debug_pub.Add('COLLABORATION DETAIL ID ----- >>>'||p_dtl_coll_id,1);
2673: ecx_cln_debug_pub.Add('COLLABORATION ID ----- >>>'||p_coll_id,1);
2674: ecx_cln_debug_pub.Add('APPLCATION ID ----- >>>'||x_app_id,1);
2675: ecx_cln_debug_pub.Add('REFERENCE ID ----- >>>'||x_ref_id,1);
2676: ecx_cln_debug_pub.Add('RELEASE NUMBER ----- >>>'||x_rel_no,1);
2677: ecx_cln_debug_pub.Add('DOCUMENT NO ----- >>>'||x_doc_no,1);
2678: ecx_cln_debug_pub.Add('DOCUMENT REV. NO ----- >>>'||x_doc_rev_no,1);
2679: ecx_cln_debug_pub.Add('XMLG TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);

Line 2676: ecx_cln_debug_pub.Add('RELEASE NUMBER ----- >>>'||x_rel_no,1);

2672: ecx_cln_debug_pub.Add('COLLABORATION DETAIL ID ----- >>>'||p_dtl_coll_id,1);
2673: ecx_cln_debug_pub.Add('COLLABORATION ID ----- >>>'||p_coll_id,1);
2674: ecx_cln_debug_pub.Add('APPLCATION ID ----- >>>'||x_app_id,1);
2675: ecx_cln_debug_pub.Add('REFERENCE ID ----- >>>'||x_ref_id,1);
2676: ecx_cln_debug_pub.Add('RELEASE NUMBER ----- >>>'||x_rel_no,1);
2677: ecx_cln_debug_pub.Add('DOCUMENT NO ----- >>>'||x_doc_no,1);
2678: ecx_cln_debug_pub.Add('DOCUMENT REV. NO ----- >>>'||x_doc_rev_no,1);
2679: ecx_cln_debug_pub.Add('XMLG TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);
2680: ecx_cln_debug_pub.Add('XMLG TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);

Line 2677: ecx_cln_debug_pub.Add('DOCUMENT NO ----- >>>'||x_doc_no,1);

2673: ecx_cln_debug_pub.Add('COLLABORATION ID ----- >>>'||p_coll_id,1);
2674: ecx_cln_debug_pub.Add('APPLCATION ID ----- >>>'||x_app_id,1);
2675: ecx_cln_debug_pub.Add('REFERENCE ID ----- >>>'||x_ref_id,1);
2676: ecx_cln_debug_pub.Add('RELEASE NUMBER ----- >>>'||x_rel_no,1);
2677: ecx_cln_debug_pub.Add('DOCUMENT NO ----- >>>'||x_doc_no,1);
2678: ecx_cln_debug_pub.Add('DOCUMENT REV. NO ----- >>>'||x_doc_rev_no,1);
2679: ecx_cln_debug_pub.Add('XMLG TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);
2680: ecx_cln_debug_pub.Add('XMLG TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);
2681: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);

Line 2678: ecx_cln_debug_pub.Add('DOCUMENT REV. NO ----- >>>'||x_doc_rev_no,1);

2674: ecx_cln_debug_pub.Add('APPLCATION ID ----- >>>'||x_app_id,1);
2675: ecx_cln_debug_pub.Add('REFERENCE ID ----- >>>'||x_ref_id,1);
2676: ecx_cln_debug_pub.Add('RELEASE NUMBER ----- >>>'||x_rel_no,1);
2677: ecx_cln_debug_pub.Add('DOCUMENT NO ----- >>>'||x_doc_no,1);
2678: ecx_cln_debug_pub.Add('DOCUMENT REV. NO ----- >>>'||x_doc_rev_no,1);
2679: ecx_cln_debug_pub.Add('XMLG TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);
2680: ecx_cln_debug_pub.Add('XMLG TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);
2681: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);
2682: ecx_cln_debug_pub.Add('DOCUMENT TYPE ----- >>>'||x_doc_type,1);

Line 2679: ecx_cln_debug_pub.Add('XMLG TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);

2675: ecx_cln_debug_pub.Add('REFERENCE ID ----- >>>'||x_ref_id,1);
2676: ecx_cln_debug_pub.Add('RELEASE NUMBER ----- >>>'||x_rel_no,1);
2677: ecx_cln_debug_pub.Add('DOCUMENT NO ----- >>>'||x_doc_no,1);
2678: ecx_cln_debug_pub.Add('DOCUMENT REV. NO ----- >>>'||x_doc_rev_no,1);
2679: ecx_cln_debug_pub.Add('XMLG TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);
2680: ecx_cln_debug_pub.Add('XMLG TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);
2681: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);
2682: ecx_cln_debug_pub.Add('DOCUMENT TYPE ----- >>>'||x_doc_type,1);
2683: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||x_doc_dir,1);

Line 2680: ecx_cln_debug_pub.Add('XMLG TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);

2676: ecx_cln_debug_pub.Add('RELEASE NUMBER ----- >>>'||x_rel_no,1);
2677: ecx_cln_debug_pub.Add('DOCUMENT NO ----- >>>'||x_doc_no,1);
2678: ecx_cln_debug_pub.Add('DOCUMENT REV. NO ----- >>>'||x_doc_rev_no,1);
2679: ecx_cln_debug_pub.Add('XMLG TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);
2680: ecx_cln_debug_pub.Add('XMLG TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);
2681: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);
2682: ecx_cln_debug_pub.Add('DOCUMENT TYPE ----- >>>'||x_doc_type,1);
2683: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||x_doc_dir,1);
2684: ecx_cln_debug_pub.Add('COLL POINT ----- >>>'||x_coll_pt,1);

Line 2681: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);

2677: ecx_cln_debug_pub.Add('DOCUMENT NO ----- >>>'||x_doc_no,1);
2678: ecx_cln_debug_pub.Add('DOCUMENT REV. NO ----- >>>'||x_doc_rev_no,1);
2679: ecx_cln_debug_pub.Add('XMLG TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);
2680: ecx_cln_debug_pub.Add('XMLG TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);
2681: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);
2682: ecx_cln_debug_pub.Add('DOCUMENT TYPE ----- >>>'||x_doc_type,1);
2683: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||x_doc_dir,1);
2684: ecx_cln_debug_pub.Add('COLL POINT ----- >>>'||x_coll_pt,1);
2685: ecx_cln_debug_pub.Add('XMLG MESSAGE ID ----- >>>'||x_xmlg_msg_id,1);

Line 2682: ecx_cln_debug_pub.Add('DOCUMENT TYPE ----- >>>'||x_doc_type,1);

2678: ecx_cln_debug_pub.Add('DOCUMENT REV. NO ----- >>>'||x_doc_rev_no,1);
2679: ecx_cln_debug_pub.Add('XMLG TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);
2680: ecx_cln_debug_pub.Add('XMLG TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);
2681: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);
2682: ecx_cln_debug_pub.Add('DOCUMENT TYPE ----- >>>'||x_doc_type,1);
2683: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||x_doc_dir,1);
2684: ecx_cln_debug_pub.Add('COLL POINT ----- >>>'||x_coll_pt,1);
2685: ecx_cln_debug_pub.Add('XMLG MESSAGE ID ----- >>>'||x_xmlg_msg_id,1);
2686: ecx_cln_debug_pub.Add('UNIQUE 1 ----- >>>'||p_unique1,1);

Line 2683: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||x_doc_dir,1);

2679: ecx_cln_debug_pub.Add('XMLG TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);
2680: ecx_cln_debug_pub.Add('XMLG TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);
2681: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);
2682: ecx_cln_debug_pub.Add('DOCUMENT TYPE ----- >>>'||x_doc_type,1);
2683: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||x_doc_dir,1);
2684: ecx_cln_debug_pub.Add('COLL POINT ----- >>>'||x_coll_pt,1);
2685: ecx_cln_debug_pub.Add('XMLG MESSAGE ID ----- >>>'||x_xmlg_msg_id,1);
2686: ecx_cln_debug_pub.Add('UNIQUE 1 ----- >>>'||p_unique1,1);
2687: ecx_cln_debug_pub.Add('UNIQUE 2 ----- >>>'||p_unique2,1);

Line 2684: ecx_cln_debug_pub.Add('COLL POINT ----- >>>'||x_coll_pt,1);

2680: ecx_cln_debug_pub.Add('XMLG TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);
2681: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);
2682: ecx_cln_debug_pub.Add('DOCUMENT TYPE ----- >>>'||x_doc_type,1);
2683: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||x_doc_dir,1);
2684: ecx_cln_debug_pub.Add('COLL POINT ----- >>>'||x_coll_pt,1);
2685: ecx_cln_debug_pub.Add('XMLG MESSAGE ID ----- >>>'||x_xmlg_msg_id,1);
2686: ecx_cln_debug_pub.Add('UNIQUE 1 ----- >>>'||p_unique1,1);
2687: ecx_cln_debug_pub.Add('UNIQUE 2 ----- >>>'||p_unique2,1);
2688: ecx_cln_debug_pub.Add('UNIQUE 3 ----- >>>'||p_unique3,1);

Line 2685: ecx_cln_debug_pub.Add('XMLG MESSAGE ID ----- >>>'||x_xmlg_msg_id,1);

2681: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);
2682: ecx_cln_debug_pub.Add('DOCUMENT TYPE ----- >>>'||x_doc_type,1);
2683: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||x_doc_dir,1);
2684: ecx_cln_debug_pub.Add('COLL POINT ----- >>>'||x_coll_pt,1);
2685: ecx_cln_debug_pub.Add('XMLG MESSAGE ID ----- >>>'||x_xmlg_msg_id,1);
2686: ecx_cln_debug_pub.Add('UNIQUE 1 ----- >>>'||p_unique1,1);
2687: ecx_cln_debug_pub.Add('UNIQUE 2 ----- >>>'||p_unique2,1);
2688: ecx_cln_debug_pub.Add('UNIQUE 3 ----- >>>'||p_unique3,1);
2689: ecx_cln_debug_pub.Add('UNIQUE 4 ----- >>>'||p_unique4,1);

Line 2686: ecx_cln_debug_pub.Add('UNIQUE 1 ----- >>>'||p_unique1,1);

2682: ecx_cln_debug_pub.Add('DOCUMENT TYPE ----- >>>'||x_doc_type,1);
2683: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||x_doc_dir,1);
2684: ecx_cln_debug_pub.Add('COLL POINT ----- >>>'||x_coll_pt,1);
2685: ecx_cln_debug_pub.Add('XMLG MESSAGE ID ----- >>>'||x_xmlg_msg_id,1);
2686: ecx_cln_debug_pub.Add('UNIQUE 1 ----- >>>'||p_unique1,1);
2687: ecx_cln_debug_pub.Add('UNIQUE 2 ----- >>>'||p_unique2,1);
2688: ecx_cln_debug_pub.Add('UNIQUE 3 ----- >>>'||p_unique3,1);
2689: ecx_cln_debug_pub.Add('UNIQUE 4 ----- >>>'||p_unique4,1);
2690: ecx_cln_debug_pub.Add('UNIQUE 5 ----- >>>'||p_unique5,1);

Line 2687: ecx_cln_debug_pub.Add('UNIQUE 2 ----- >>>'||p_unique2,1);

2683: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||x_doc_dir,1);
2684: ecx_cln_debug_pub.Add('COLL POINT ----- >>>'||x_coll_pt,1);
2685: ecx_cln_debug_pub.Add('XMLG MESSAGE ID ----- >>>'||x_xmlg_msg_id,1);
2686: ecx_cln_debug_pub.Add('UNIQUE 1 ----- >>>'||p_unique1,1);
2687: ecx_cln_debug_pub.Add('UNIQUE 2 ----- >>>'||p_unique2,1);
2688: ecx_cln_debug_pub.Add('UNIQUE 3 ----- >>>'||p_unique3,1);
2689: ecx_cln_debug_pub.Add('UNIQUE 4 ----- >>>'||p_unique4,1);
2690: ecx_cln_debug_pub.Add('UNIQUE 5 ----- >>>'||p_unique5,1);
2691: ecx_cln_debug_pub.Add('XMLG INTERNAL CONTROL NO ----- >>>'||p_xmlg_internal_control_number,1);

Line 2688: ecx_cln_debug_pub.Add('UNIQUE 3 ----- >>>'||p_unique3,1);

2684: ecx_cln_debug_pub.Add('COLL POINT ----- >>>'||x_coll_pt,1);
2685: ecx_cln_debug_pub.Add('XMLG MESSAGE ID ----- >>>'||x_xmlg_msg_id,1);
2686: ecx_cln_debug_pub.Add('UNIQUE 1 ----- >>>'||p_unique1,1);
2687: ecx_cln_debug_pub.Add('UNIQUE 2 ----- >>>'||p_unique2,1);
2688: ecx_cln_debug_pub.Add('UNIQUE 3 ----- >>>'||p_unique3,1);
2689: ecx_cln_debug_pub.Add('UNIQUE 4 ----- >>>'||p_unique4,1);
2690: ecx_cln_debug_pub.Add('UNIQUE 5 ----- >>>'||p_unique5,1);
2691: ecx_cln_debug_pub.Add('XMLG INTERNAL CONTROL NO ----- >>>'||p_xmlg_internal_control_number,1);
2692: ecx_cln_debug_pub.Add('===========================================',1);

Line 2689: ecx_cln_debug_pub.Add('UNIQUE 4 ----- >>>'||p_unique4,1);

2685: ecx_cln_debug_pub.Add('XMLG MESSAGE ID ----- >>>'||x_xmlg_msg_id,1);
2686: ecx_cln_debug_pub.Add('UNIQUE 1 ----- >>>'||p_unique1,1);
2687: ecx_cln_debug_pub.Add('UNIQUE 2 ----- >>>'||p_unique2,1);
2688: ecx_cln_debug_pub.Add('UNIQUE 3 ----- >>>'||p_unique3,1);
2689: ecx_cln_debug_pub.Add('UNIQUE 4 ----- >>>'||p_unique4,1);
2690: ecx_cln_debug_pub.Add('UNIQUE 5 ----- >>>'||p_unique5,1);
2691: ecx_cln_debug_pub.Add('XMLG INTERNAL CONTROL NO ----- >>>'||p_xmlg_internal_control_number,1);
2692: ecx_cln_debug_pub.Add('===========================================',1);
2693:

Line 2690: ecx_cln_debug_pub.Add('UNIQUE 5 ----- >>>'||p_unique5,1);

2686: ecx_cln_debug_pub.Add('UNIQUE 1 ----- >>>'||p_unique1,1);
2687: ecx_cln_debug_pub.Add('UNIQUE 2 ----- >>>'||p_unique2,1);
2688: ecx_cln_debug_pub.Add('UNIQUE 3 ----- >>>'||p_unique3,1);
2689: ecx_cln_debug_pub.Add('UNIQUE 4 ----- >>>'||p_unique4,1);
2690: ecx_cln_debug_pub.Add('UNIQUE 5 ----- >>>'||p_unique5,1);
2691: ecx_cln_debug_pub.Add('XMLG INTERNAL CONTROL NO ----- >>>'||p_xmlg_internal_control_number,1);
2692: ecx_cln_debug_pub.Add('===========================================',1);
2693:
2694:

Line 2691: ecx_cln_debug_pub.Add('XMLG INTERNAL CONTROL NO ----- >>>'||p_xmlg_internal_control_number,1);

2687: ecx_cln_debug_pub.Add('UNIQUE 2 ----- >>>'||p_unique2,1);
2688: ecx_cln_debug_pub.Add('UNIQUE 3 ----- >>>'||p_unique3,1);
2689: ecx_cln_debug_pub.Add('UNIQUE 4 ----- >>>'||p_unique4,1);
2690: ecx_cln_debug_pub.Add('UNIQUE 5 ----- >>>'||p_unique5,1);
2691: ecx_cln_debug_pub.Add('XMLG INTERNAL CONTROL NO ----- >>>'||p_xmlg_internal_control_number,1);
2692: ecx_cln_debug_pub.Add('===========================================',1);
2693:
2694:
2695: ecx_cln_debug_pub.Add('---- Before SQL Query : Retrieving Collaboration Details -----',1);

Line 2692: ecx_cln_debug_pub.Add('===========================================',1);

2688: ecx_cln_debug_pub.Add('UNIQUE 3 ----- >>>'||p_unique3,1);
2689: ecx_cln_debug_pub.Add('UNIQUE 4 ----- >>>'||p_unique4,1);
2690: ecx_cln_debug_pub.Add('UNIQUE 5 ----- >>>'||p_unique5,1);
2691: ecx_cln_debug_pub.Add('XMLG INTERNAL CONTROL NO ----- >>>'||p_xmlg_internal_control_number,1);
2692: ecx_cln_debug_pub.Add('===========================================',1);
2693:
2694:
2695: ecx_cln_debug_pub.Add('---- Before SQL Query : Retrieving Collaboration Details -----',1);
2696: END IF;

Line 2695: ecx_cln_debug_pub.Add('---- Before SQL Query : Retrieving Collaboration Details -----',1);

2691: ecx_cln_debug_pub.Add('XMLG INTERNAL CONTROL NO ----- >>>'||p_xmlg_internal_control_number,1);
2692: ecx_cln_debug_pub.Add('===========================================',1);
2693:
2694:
2695: ecx_cln_debug_pub.Add('---- Before SQL Query : Retrieving Collaboration Details -----',1);
2696: END IF;
2697:
2698: Select hdr.APPLICATION_ID,hdr.APPLICATION_REFERENCE_ID,
2699: hdr.RELEASE_NO,hdr.DOCUMENT_NO,hdr.DOC_REVISION_NO,

Line 2750: ecx_cln_debug_pub.Add('----- After SQL Query : Retrieving Collaboration Details -----',1);

2746: OR dtl.XMLG_MSG_ID = x_xmlg_msg_id
2747: OR dtl.XMLG_INTERNAL_CONTROL_NUMBER = p_xmlg_internal_control_number
2748: );
2749: IF (l_Debug_Level <= 1) THEN
2750: ecx_cln_debug_pub.Add('----- After SQL Query : Retrieving Collaboration Details -----',1);
2751: ecx_cln_debug_pub.Add(l_msg_data,1);
2752: ecx_cln_debug_pub.Add('---- Exiting RETRIEVE_COLLABORATION_DETAILS API -----',2);
2753: END IF;
2754:

Line 2751: ecx_cln_debug_pub.Add(l_msg_data,1);

2747: OR dtl.XMLG_INTERNAL_CONTROL_NUMBER = p_xmlg_internal_control_number
2748: );
2749: IF (l_Debug_Level <= 1) THEN
2750: ecx_cln_debug_pub.Add('----- After SQL Query : Retrieving Collaboration Details -----',1);
2751: ecx_cln_debug_pub.Add(l_msg_data,1);
2752: ecx_cln_debug_pub.Add('---- Exiting RETRIEVE_COLLABORATION_DETAILS API -----',2);
2753: END IF;
2754:
2755:

Line 2752: ecx_cln_debug_pub.Add('---- Exiting RETRIEVE_COLLABORATION_DETAILS API -----',2);

2748: );
2749: IF (l_Debug_Level <= 1) THEN
2750: ecx_cln_debug_pub.Add('----- After SQL Query : Retrieving Collaboration Details -----',1);
2751: ecx_cln_debug_pub.Add(l_msg_data,1);
2752: ecx_cln_debug_pub.Add('---- Exiting RETRIEVE_COLLABORATION_DETAILS API -----',2);
2753: END IF;
2754:
2755:
2756:

Line 2769: ecx_cln_debug_pub.Add(l_msg_data,4);

2765: FND_MESSAGE.SET_TOKEN('ERRORMSG',l_error_msg);
2766: x_msg_data := FND_MESSAGE.GET;
2767: l_msg_data :='Collaboration details could not be retrieved for the parameters passed '||l_error_code||' : '||l_error_msg;
2768: IF (l_Debug_Level <= 4) THEN
2769: ecx_cln_debug_pub.Add(l_msg_data,4);
2770: ecx_cln_debug_pub.Add('---- Exiting RETRIEVE_COLLABORATION_DETAILS API -----',2);
2771: END IF;
2772:
2773:

Line 2770: ecx_cln_debug_pub.Add('---- Exiting RETRIEVE_COLLABORATION_DETAILS API -----',2);

2766: x_msg_data := FND_MESSAGE.GET;
2767: l_msg_data :='Collaboration details could not be retrieved for the parameters passed '||l_error_code||' : '||l_error_msg;
2768: IF (l_Debug_Level <= 4) THEN
2769: ecx_cln_debug_pub.Add(l_msg_data,4);
2770: ecx_cln_debug_pub.Add('---- Exiting RETRIEVE_COLLABORATION_DETAILS API -----',2);
2771: END IF;
2772:
2773:
2774:

Line 2785: ecx_cln_debug_pub.Add(l_msg_data,6);

2781: FND_MESSAGE.SET_TOKEN('ERRORMSG',l_error_msg);
2782: x_msg_data := FND_MESSAGE.GET;
2783: l_msg_data :='Collaboration details could not be retrieved for the parameters passed '||l_error_code||' : '||l_error_msg;
2784: IF (l_Debug_Level <= 4) THEN
2785: ecx_cln_debug_pub.Add(l_msg_data,6);
2786: ecx_cln_debug_pub.Add('---- Exiting RETRIEVE_COLLABORATION_DETAILS API -----',2);
2787: END IF;
2788:
2789:

Line 2786: ecx_cln_debug_pub.Add('---- Exiting RETRIEVE_COLLABORATION_DETAILS API -----',2);

2782: x_msg_data := FND_MESSAGE.GET;
2783: l_msg_data :='Collaboration details could not be retrieved for the parameters passed '||l_error_code||' : '||l_error_msg;
2784: IF (l_Debug_Level <= 4) THEN
2785: ecx_cln_debug_pub.Add(l_msg_data,6);
2786: ecx_cln_debug_pub.Add('---- Exiting RETRIEVE_COLLABORATION_DETAILS API -----',2);
2787: END IF;
2788:
2789:
2790:

Line 2801: ecx_cln_debug_pub.Add(l_msg_data,4);

2797: FND_MESSAGE.SET_TOKEN('ERRORMSG',l_error_msg);
2798: x_msg_data := FND_MESSAGE.GET;
2799: l_msg_data :='Collaboration details could not be retrieved for the parameters passed '||l_error_code||' : '||l_error_msg;
2800: IF (l_Debug_Level <= 5) THEN
2801: ecx_cln_debug_pub.Add(l_msg_data,4);
2802: ecx_cln_debug_pub.Add('---- Exiting RETRIEVE_COLLABORATION_DETAILS API -----',2);
2803: END IF;
2804:
2805:

Line 2802: ecx_cln_debug_pub.Add('---- Exiting RETRIEVE_COLLABORATION_DETAILS API -----',2);

2798: x_msg_data := FND_MESSAGE.GET;
2799: l_msg_data :='Collaboration details could not be retrieved for the parameters passed '||l_error_code||' : '||l_error_msg;
2800: IF (l_Debug_Level <= 5) THEN
2801: ecx_cln_debug_pub.Add(l_msg_data,4);
2802: ecx_cln_debug_pub.Add('---- Exiting RETRIEVE_COLLABORATION_DETAILS API -----',2);
2803: END IF;
2804:
2805:
2806:

Line 2817: ecx_cln_debug_pub.Add(l_msg_data,6);

2813: FND_MESSAGE.SET_TOKEN('ERRORMSG',l_error_msg);
2814: x_msg_data := FND_MESSAGE.GET;
2815: l_msg_data :='Collaboration details could not be retrieved for the parameters passed '||l_error_code||' : '||l_error_msg;
2816: IF (l_Debug_Level <= 5) THEN
2817: ecx_cln_debug_pub.Add(l_msg_data,6);
2818: ecx_cln_debug_pub.Add('---- Exiting RETRIEVE_COLLABORATION_DETAILS API -----',2);
2819: END IF;
2820:
2821:

Line 2818: ecx_cln_debug_pub.Add('---- Exiting RETRIEVE_COLLABORATION_DETAILS API -----',2);

2814: x_msg_data := FND_MESSAGE.GET;
2815: l_msg_data :='Collaboration details could not be retrieved for the parameters passed '||l_error_code||' : '||l_error_msg;
2816: IF (l_Debug_Level <= 5) THEN
2817: ecx_cln_debug_pub.Add(l_msg_data,6);
2818: ecx_cln_debug_pub.Add('---- Exiting RETRIEVE_COLLABORATION_DETAILS API -----',2);
2819: END IF;
2820:
2821:
2822:

Line 2882: --l_debug_file :=ecx_cln_debug_pub.Set_Debug_Mode('FILE');

2878:
2879: BEGIN
2880:
2881: -- Sets the debug mode to be FILE
2882: --l_debug_file :=ecx_cln_debug_pub.Set_Debug_Mode('FILE');
2883:
2884: IF (l_Debug_Level <= 2) THEN
2885: ecx_cln_debug_pub.Add('----- Entering ADD_COLLABORATION_MESSAGES API ------',2);
2886: END IF;

Line 2885: ecx_cln_debug_pub.Add('----- Entering ADD_COLLABORATION_MESSAGES API ------',2);

2881: -- Sets the debug mode to be FILE
2882: --l_debug_file :=ecx_cln_debug_pub.Set_Debug_Mode('FILE');
2883:
2884: IF (l_Debug_Level <= 2) THEN
2885: ecx_cln_debug_pub.Add('----- Entering ADD_COLLABORATION_MESSAGES API ------',2);
2886: END IF;
2887:
2888:
2889:

Line 2899: ecx_cln_debug_pub.Add('==========Parameters Received=============',1);

2895: l_dtl_msg := p_dtl_msg;
2896:
2897: -- get the paramaters passed
2898: IF (l_Debug_Level <= 1) THEN
2899: ecx_cln_debug_pub.Add('==========Parameters Received=============',1);
2900: ecx_cln_debug_pub.Add('COLLABORATION DETAIL ID ----- >>>'||l_coll_dtl_id,1);
2901: ecx_cln_debug_pub.Add('REFERENCE 1 ----- >>>'||p_ref1,1);
2902: ecx_cln_debug_pub.Add('REFERENCE 2 ----- >>>'||p_ref2,1);
2903: ecx_cln_debug_pub.Add('REFERENCE 3 ----- >>>'||p_ref3,1);

Line 2900: ecx_cln_debug_pub.Add('COLLABORATION DETAIL ID ----- >>>'||l_coll_dtl_id,1);

2896:
2897: -- get the paramaters passed
2898: IF (l_Debug_Level <= 1) THEN
2899: ecx_cln_debug_pub.Add('==========Parameters Received=============',1);
2900: ecx_cln_debug_pub.Add('COLLABORATION DETAIL ID ----- >>>'||l_coll_dtl_id,1);
2901: ecx_cln_debug_pub.Add('REFERENCE 1 ----- >>>'||p_ref1,1);
2902: ecx_cln_debug_pub.Add('REFERENCE 2 ----- >>>'||p_ref2,1);
2903: ecx_cln_debug_pub.Add('REFERENCE 3 ----- >>>'||p_ref3,1);
2904: ecx_cln_debug_pub.Add('REFERENCE 4 ----- >>>'||p_ref4,1);

Line 2901: ecx_cln_debug_pub.Add('REFERENCE 1 ----- >>>'||p_ref1,1);

2897: -- get the paramaters passed
2898: IF (l_Debug_Level <= 1) THEN
2899: ecx_cln_debug_pub.Add('==========Parameters Received=============',1);
2900: ecx_cln_debug_pub.Add('COLLABORATION DETAIL ID ----- >>>'||l_coll_dtl_id,1);
2901: ecx_cln_debug_pub.Add('REFERENCE 1 ----- >>>'||p_ref1,1);
2902: ecx_cln_debug_pub.Add('REFERENCE 2 ----- >>>'||p_ref2,1);
2903: ecx_cln_debug_pub.Add('REFERENCE 3 ----- >>>'||p_ref3,1);
2904: ecx_cln_debug_pub.Add('REFERENCE 4 ----- >>>'||p_ref4,1);
2905: ecx_cln_debug_pub.Add('REFERENCE 5 ----- >>>'||p_ref5,1);

Line 2902: ecx_cln_debug_pub.Add('REFERENCE 2 ----- >>>'||p_ref2,1);

2898: IF (l_Debug_Level <= 1) THEN
2899: ecx_cln_debug_pub.Add('==========Parameters Received=============',1);
2900: ecx_cln_debug_pub.Add('COLLABORATION DETAIL ID ----- >>>'||l_coll_dtl_id,1);
2901: ecx_cln_debug_pub.Add('REFERENCE 1 ----- >>>'||p_ref1,1);
2902: ecx_cln_debug_pub.Add('REFERENCE 2 ----- >>>'||p_ref2,1);
2903: ecx_cln_debug_pub.Add('REFERENCE 3 ----- >>>'||p_ref3,1);
2904: ecx_cln_debug_pub.Add('REFERENCE 4 ----- >>>'||p_ref4,1);
2905: ecx_cln_debug_pub.Add('REFERENCE 5 ----- >>>'||p_ref5,1);
2906: ecx_cln_debug_pub.Add('DETAIL MSG ----- >>>'||p_dtl_msg,1);

Line 2903: ecx_cln_debug_pub.Add('REFERENCE 3 ----- >>>'||p_ref3,1);

2899: ecx_cln_debug_pub.Add('==========Parameters Received=============',1);
2900: ecx_cln_debug_pub.Add('COLLABORATION DETAIL ID ----- >>>'||l_coll_dtl_id,1);
2901: ecx_cln_debug_pub.Add('REFERENCE 1 ----- >>>'||p_ref1,1);
2902: ecx_cln_debug_pub.Add('REFERENCE 2 ----- >>>'||p_ref2,1);
2903: ecx_cln_debug_pub.Add('REFERENCE 3 ----- >>>'||p_ref3,1);
2904: ecx_cln_debug_pub.Add('REFERENCE 4 ----- >>>'||p_ref4,1);
2905: ecx_cln_debug_pub.Add('REFERENCE 5 ----- >>>'||p_ref5,1);
2906: ecx_cln_debug_pub.Add('DETAIL MSG ----- >>>'||p_dtl_msg,1);
2907: ecx_cln_debug_pub.Add('COLLABORATION ID ----- >>>'||p_coll_id,1);

Line 2904: ecx_cln_debug_pub.Add('REFERENCE 4 ----- >>>'||p_ref4,1);

2900: ecx_cln_debug_pub.Add('COLLABORATION DETAIL ID ----- >>>'||l_coll_dtl_id,1);
2901: ecx_cln_debug_pub.Add('REFERENCE 1 ----- >>>'||p_ref1,1);
2902: ecx_cln_debug_pub.Add('REFERENCE 2 ----- >>>'||p_ref2,1);
2903: ecx_cln_debug_pub.Add('REFERENCE 3 ----- >>>'||p_ref3,1);
2904: ecx_cln_debug_pub.Add('REFERENCE 4 ----- >>>'||p_ref4,1);
2905: ecx_cln_debug_pub.Add('REFERENCE 5 ----- >>>'||p_ref5,1);
2906: ecx_cln_debug_pub.Add('DETAIL MSG ----- >>>'||p_dtl_msg,1);
2907: ecx_cln_debug_pub.Add('COLLABORATION ID ----- >>>'||p_coll_id,1);
2908: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);

Line 2905: ecx_cln_debug_pub.Add('REFERENCE 5 ----- >>>'||p_ref5,1);

2901: ecx_cln_debug_pub.Add('REFERENCE 1 ----- >>>'||p_ref1,1);
2902: ecx_cln_debug_pub.Add('REFERENCE 2 ----- >>>'||p_ref2,1);
2903: ecx_cln_debug_pub.Add('REFERENCE 3 ----- >>>'||p_ref3,1);
2904: ecx_cln_debug_pub.Add('REFERENCE 4 ----- >>>'||p_ref4,1);
2905: ecx_cln_debug_pub.Add('REFERENCE 5 ----- >>>'||p_ref5,1);
2906: ecx_cln_debug_pub.Add('DETAIL MSG ----- >>>'||p_dtl_msg,1);
2907: ecx_cln_debug_pub.Add('COLLABORATION ID ----- >>>'||p_coll_id,1);
2908: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);
2909: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);

Line 2906: ecx_cln_debug_pub.Add('DETAIL MSG ----- >>>'||p_dtl_msg,1);

2902: ecx_cln_debug_pub.Add('REFERENCE 2 ----- >>>'||p_ref2,1);
2903: ecx_cln_debug_pub.Add('REFERENCE 3 ----- >>>'||p_ref3,1);
2904: ecx_cln_debug_pub.Add('REFERENCE 4 ----- >>>'||p_ref4,1);
2905: ecx_cln_debug_pub.Add('REFERENCE 5 ----- >>>'||p_ref5,1);
2906: ecx_cln_debug_pub.Add('DETAIL MSG ----- >>>'||p_dtl_msg,1);
2907: ecx_cln_debug_pub.Add('COLLABORATION ID ----- >>>'||p_coll_id,1);
2908: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);
2909: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);
2910: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION TYPE ----- >>>'||p_xmlg_int_transaction_type,1);

Line 2907: ecx_cln_debug_pub.Add('COLLABORATION ID ----- >>>'||p_coll_id,1);

2903: ecx_cln_debug_pub.Add('REFERENCE 3 ----- >>>'||p_ref3,1);
2904: ecx_cln_debug_pub.Add('REFERENCE 4 ----- >>>'||p_ref4,1);
2905: ecx_cln_debug_pub.Add('REFERENCE 5 ----- >>>'||p_ref5,1);
2906: ecx_cln_debug_pub.Add('DETAIL MSG ----- >>>'||p_dtl_msg,1);
2907: ecx_cln_debug_pub.Add('COLLABORATION ID ----- >>>'||p_coll_id,1);
2908: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);
2909: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);
2910: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION TYPE ----- >>>'||p_xmlg_int_transaction_type,1);
2911: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_int_transaction_subtype,1);

Line 2908: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);

2904: ecx_cln_debug_pub.Add('REFERENCE 4 ----- >>>'||p_ref4,1);
2905: ecx_cln_debug_pub.Add('REFERENCE 5 ----- >>>'||p_ref5,1);
2906: ecx_cln_debug_pub.Add('DETAIL MSG ----- >>>'||p_dtl_msg,1);
2907: ecx_cln_debug_pub.Add('COLLABORATION ID ----- >>>'||p_coll_id,1);
2908: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);
2909: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);
2910: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION TYPE ----- >>>'||p_xmlg_int_transaction_type,1);
2911: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_int_transaction_subtype,1);
2912: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);

Line 2909: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);

2905: ecx_cln_debug_pub.Add('REFERENCE 5 ----- >>>'||p_ref5,1);
2906: ecx_cln_debug_pub.Add('DETAIL MSG ----- >>>'||p_dtl_msg,1);
2907: ecx_cln_debug_pub.Add('COLLABORATION ID ----- >>>'||p_coll_id,1);
2908: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);
2909: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);
2910: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION TYPE ----- >>>'||p_xmlg_int_transaction_type,1);
2911: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_int_transaction_subtype,1);
2912: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);
2913: ecx_cln_debug_pub.Add('DOCUMENT TYPE ----- >>>'||p_doc_type,1);

Line 2910: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION TYPE ----- >>>'||p_xmlg_int_transaction_type,1);

2906: ecx_cln_debug_pub.Add('DETAIL MSG ----- >>>'||p_dtl_msg,1);
2907: ecx_cln_debug_pub.Add('COLLABORATION ID ----- >>>'||p_coll_id,1);
2908: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);
2909: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);
2910: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION TYPE ----- >>>'||p_xmlg_int_transaction_type,1);
2911: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_int_transaction_subtype,1);
2912: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);
2913: ecx_cln_debug_pub.Add('DOCUMENT TYPE ----- >>>'||p_doc_type,1);
2914: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_direction,1);

Line 2911: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_int_transaction_subtype,1);

2907: ecx_cln_debug_pub.Add('COLLABORATION ID ----- >>>'||p_coll_id,1);
2908: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);
2909: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);
2910: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION TYPE ----- >>>'||p_xmlg_int_transaction_type,1);
2911: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_int_transaction_subtype,1);
2912: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);
2913: ecx_cln_debug_pub.Add('DOCUMENT TYPE ----- >>>'||p_doc_type,1);
2914: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_direction,1);
2915: ecx_cln_debug_pub.Add('COLLABORATION POINT ----- >>>'||p_coll_point,1);

Line 2912: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);

2908: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);
2909: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);
2910: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION TYPE ----- >>>'||p_xmlg_int_transaction_type,1);
2911: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_int_transaction_subtype,1);
2912: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);
2913: ecx_cln_debug_pub.Add('DOCUMENT TYPE ----- >>>'||p_doc_type,1);
2914: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_direction,1);
2915: ecx_cln_debug_pub.Add('COLLABORATION POINT ----- >>>'||p_coll_point,1);
2916: ecx_cln_debug_pub.Add('XMLG INTERNAL CTRL NUMBER ----- >>>'||p_xmlg_internal_control_number,1);

Line 2913: ecx_cln_debug_pub.Add('DOCUMENT TYPE ----- >>>'||p_doc_type,1);

2909: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);
2910: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION TYPE ----- >>>'||p_xmlg_int_transaction_type,1);
2911: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_int_transaction_subtype,1);
2912: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);
2913: ecx_cln_debug_pub.Add('DOCUMENT TYPE ----- >>>'||p_doc_type,1);
2914: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_direction,1);
2915: ecx_cln_debug_pub.Add('COLLABORATION POINT ----- >>>'||p_coll_point,1);
2916: ecx_cln_debug_pub.Add('XMLG INTERNAL CTRL NUMBER ----- >>>'||p_xmlg_internal_control_number,1);
2917: ecx_cln_debug_pub.Add('XML MESSAGE ID ----- >>>'||p_xmlg_msg_id,1);

Line 2914: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_direction,1);

2910: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION TYPE ----- >>>'||p_xmlg_int_transaction_type,1);
2911: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_int_transaction_subtype,1);
2912: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);
2913: ecx_cln_debug_pub.Add('DOCUMENT TYPE ----- >>>'||p_doc_type,1);
2914: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_direction,1);
2915: ecx_cln_debug_pub.Add('COLLABORATION POINT ----- >>>'||p_coll_point,1);
2916: ecx_cln_debug_pub.Add('XMLG INTERNAL CTRL NUMBER ----- >>>'||p_xmlg_internal_control_number,1);
2917: ecx_cln_debug_pub.Add('XML MESSAGE ID ----- >>>'||p_xmlg_msg_id,1);
2918: ecx_cln_debug_pub.Add('XMLG EVENT KEY ----- >>>'||p_xml_event_key,1);

Line 2915: ecx_cln_debug_pub.Add('COLLABORATION POINT ----- >>>'||p_coll_point,1);

2911: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_int_transaction_subtype,1);
2912: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);
2913: ecx_cln_debug_pub.Add('DOCUMENT TYPE ----- >>>'||p_doc_type,1);
2914: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_direction,1);
2915: ecx_cln_debug_pub.Add('COLLABORATION POINT ----- >>>'||p_coll_point,1);
2916: ecx_cln_debug_pub.Add('XMLG INTERNAL CTRL NUMBER ----- >>>'||p_xmlg_internal_control_number,1);
2917: ecx_cln_debug_pub.Add('XML MESSAGE ID ----- >>>'||p_xmlg_msg_id,1);
2918: ecx_cln_debug_pub.Add('XMLG EVENT KEY ----- >>>'||p_xml_event_key,1);
2919: ecx_cln_debug_pub.Add('APPLICATION ID ----- >>>'||P_app_id,1);

Line 2916: ecx_cln_debug_pub.Add('XMLG INTERNAL CTRL NUMBER ----- >>>'||p_xmlg_internal_control_number,1);

2912: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);
2913: ecx_cln_debug_pub.Add('DOCUMENT TYPE ----- >>>'||p_doc_type,1);
2914: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_direction,1);
2915: ecx_cln_debug_pub.Add('COLLABORATION POINT ----- >>>'||p_coll_point,1);
2916: ecx_cln_debug_pub.Add('XMLG INTERNAL CTRL NUMBER ----- >>>'||p_xmlg_internal_control_number,1);
2917: ecx_cln_debug_pub.Add('XML MESSAGE ID ----- >>>'||p_xmlg_msg_id,1);
2918: ecx_cln_debug_pub.Add('XMLG EVENT KEY ----- >>>'||p_xml_event_key,1);
2919: ecx_cln_debug_pub.Add('APPLICATION ID ----- >>>'||P_app_id,1);
2920: ecx_cln_debug_pub.Add('REFERENCE ID ----- >>>'||P_ref_id,1);

Line 2917: ecx_cln_debug_pub.Add('XML MESSAGE ID ----- >>>'||p_xmlg_msg_id,1);

2913: ecx_cln_debug_pub.Add('DOCUMENT TYPE ----- >>>'||p_doc_type,1);
2914: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_direction,1);
2915: ecx_cln_debug_pub.Add('COLLABORATION POINT ----- >>>'||p_coll_point,1);
2916: ecx_cln_debug_pub.Add('XMLG INTERNAL CTRL NUMBER ----- >>>'||p_xmlg_internal_control_number,1);
2917: ecx_cln_debug_pub.Add('XML MESSAGE ID ----- >>>'||p_xmlg_msg_id,1);
2918: ecx_cln_debug_pub.Add('XMLG EVENT KEY ----- >>>'||p_xml_event_key,1);
2919: ecx_cln_debug_pub.Add('APPLICATION ID ----- >>>'||P_app_id,1);
2920: ecx_cln_debug_pub.Add('REFERENCE ID ----- >>>'||P_ref_id,1);
2921: ecx_cln_debug_pub.Add('UNIQUE ID 1 ----- >>>'||p_unique1,1);

Line 2918: ecx_cln_debug_pub.Add('XMLG EVENT KEY ----- >>>'||p_xml_event_key,1);

2914: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_direction,1);
2915: ecx_cln_debug_pub.Add('COLLABORATION POINT ----- >>>'||p_coll_point,1);
2916: ecx_cln_debug_pub.Add('XMLG INTERNAL CTRL NUMBER ----- >>>'||p_xmlg_internal_control_number,1);
2917: ecx_cln_debug_pub.Add('XML MESSAGE ID ----- >>>'||p_xmlg_msg_id,1);
2918: ecx_cln_debug_pub.Add('XMLG EVENT KEY ----- >>>'||p_xml_event_key,1);
2919: ecx_cln_debug_pub.Add('APPLICATION ID ----- >>>'||P_app_id,1);
2920: ecx_cln_debug_pub.Add('REFERENCE ID ----- >>>'||P_ref_id,1);
2921: ecx_cln_debug_pub.Add('UNIQUE ID 1 ----- >>>'||p_unique1,1);
2922: ecx_cln_debug_pub.Add('UNIQUE ID 2 ----- >>>'||p_unique2,1);

Line 2919: ecx_cln_debug_pub.Add('APPLICATION ID ----- >>>'||P_app_id,1);

2915: ecx_cln_debug_pub.Add('COLLABORATION POINT ----- >>>'||p_coll_point,1);
2916: ecx_cln_debug_pub.Add('XMLG INTERNAL CTRL NUMBER ----- >>>'||p_xmlg_internal_control_number,1);
2917: ecx_cln_debug_pub.Add('XML MESSAGE ID ----- >>>'||p_xmlg_msg_id,1);
2918: ecx_cln_debug_pub.Add('XMLG EVENT KEY ----- >>>'||p_xml_event_key,1);
2919: ecx_cln_debug_pub.Add('APPLICATION ID ----- >>>'||P_app_id,1);
2920: ecx_cln_debug_pub.Add('REFERENCE ID ----- >>>'||P_ref_id,1);
2921: ecx_cln_debug_pub.Add('UNIQUE ID 1 ----- >>>'||p_unique1,1);
2922: ecx_cln_debug_pub.Add('UNIQUE ID 2 ----- >>>'||p_unique2,1);
2923: ecx_cln_debug_pub.Add('UNIQUE ID 3 ----- >>>'||p_unique3,1);

Line 2920: ecx_cln_debug_pub.Add('REFERENCE ID ----- >>>'||P_ref_id,1);

2916: ecx_cln_debug_pub.Add('XMLG INTERNAL CTRL NUMBER ----- >>>'||p_xmlg_internal_control_number,1);
2917: ecx_cln_debug_pub.Add('XML MESSAGE ID ----- >>>'||p_xmlg_msg_id,1);
2918: ecx_cln_debug_pub.Add('XMLG EVENT KEY ----- >>>'||p_xml_event_key,1);
2919: ecx_cln_debug_pub.Add('APPLICATION ID ----- >>>'||P_app_id,1);
2920: ecx_cln_debug_pub.Add('REFERENCE ID ----- >>>'||P_ref_id,1);
2921: ecx_cln_debug_pub.Add('UNIQUE ID 1 ----- >>>'||p_unique1,1);
2922: ecx_cln_debug_pub.Add('UNIQUE ID 2 ----- >>>'||p_unique2,1);
2923: ecx_cln_debug_pub.Add('UNIQUE ID 3 ----- >>>'||p_unique3,1);
2924: ecx_cln_debug_pub.Add('UNIQUE ID 4 ----- >>>'||p_unique4,1);

Line 2921: ecx_cln_debug_pub.Add('UNIQUE ID 1 ----- >>>'||p_unique1,1);

2917: ecx_cln_debug_pub.Add('XML MESSAGE ID ----- >>>'||p_xmlg_msg_id,1);
2918: ecx_cln_debug_pub.Add('XMLG EVENT KEY ----- >>>'||p_xml_event_key,1);
2919: ecx_cln_debug_pub.Add('APPLICATION ID ----- >>>'||P_app_id,1);
2920: ecx_cln_debug_pub.Add('REFERENCE ID ----- >>>'||P_ref_id,1);
2921: ecx_cln_debug_pub.Add('UNIQUE ID 1 ----- >>>'||p_unique1,1);
2922: ecx_cln_debug_pub.Add('UNIQUE ID 2 ----- >>>'||p_unique2,1);
2923: ecx_cln_debug_pub.Add('UNIQUE ID 3 ----- >>>'||p_unique3,1);
2924: ecx_cln_debug_pub.Add('UNIQUE ID 4 ----- >>>'||p_unique4,1);
2925: ecx_cln_debug_pub.Add('UNIQUE ID 5 ----- >>>'||p_unique5,1);

Line 2922: ecx_cln_debug_pub.Add('UNIQUE ID 2 ----- >>>'||p_unique2,1);

2918: ecx_cln_debug_pub.Add('XMLG EVENT KEY ----- >>>'||p_xml_event_key,1);
2919: ecx_cln_debug_pub.Add('APPLICATION ID ----- >>>'||P_app_id,1);
2920: ecx_cln_debug_pub.Add('REFERENCE ID ----- >>>'||P_ref_id,1);
2921: ecx_cln_debug_pub.Add('UNIQUE ID 1 ----- >>>'||p_unique1,1);
2922: ecx_cln_debug_pub.Add('UNIQUE ID 2 ----- >>>'||p_unique2,1);
2923: ecx_cln_debug_pub.Add('UNIQUE ID 3 ----- >>>'||p_unique3,1);
2924: ecx_cln_debug_pub.Add('UNIQUE ID 4 ----- >>>'||p_unique4,1);
2925: ecx_cln_debug_pub.Add('UNIQUE ID 5 ----- >>>'||p_unique5,1);
2926: ecx_cln_debug_pub.Add('=========================================',1);

Line 2923: ecx_cln_debug_pub.Add('UNIQUE ID 3 ----- >>>'||p_unique3,1);

2919: ecx_cln_debug_pub.Add('APPLICATION ID ----- >>>'||P_app_id,1);
2920: ecx_cln_debug_pub.Add('REFERENCE ID ----- >>>'||P_ref_id,1);
2921: ecx_cln_debug_pub.Add('UNIQUE ID 1 ----- >>>'||p_unique1,1);
2922: ecx_cln_debug_pub.Add('UNIQUE ID 2 ----- >>>'||p_unique2,1);
2923: ecx_cln_debug_pub.Add('UNIQUE ID 3 ----- >>>'||p_unique3,1);
2924: ecx_cln_debug_pub.Add('UNIQUE ID 4 ----- >>>'||p_unique4,1);
2925: ecx_cln_debug_pub.Add('UNIQUE ID 5 ----- >>>'||p_unique5,1);
2926: ecx_cln_debug_pub.Add('=========================================',1);
2927: END IF;

Line 2924: ecx_cln_debug_pub.Add('UNIQUE ID 4 ----- >>>'||p_unique4,1);

2920: ecx_cln_debug_pub.Add('REFERENCE ID ----- >>>'||P_ref_id,1);
2921: ecx_cln_debug_pub.Add('UNIQUE ID 1 ----- >>>'||p_unique1,1);
2922: ecx_cln_debug_pub.Add('UNIQUE ID 2 ----- >>>'||p_unique2,1);
2923: ecx_cln_debug_pub.Add('UNIQUE ID 3 ----- >>>'||p_unique3,1);
2924: ecx_cln_debug_pub.Add('UNIQUE ID 4 ----- >>>'||p_unique4,1);
2925: ecx_cln_debug_pub.Add('UNIQUE ID 5 ----- >>>'||p_unique5,1);
2926: ecx_cln_debug_pub.Add('=========================================',1);
2927: END IF;
2928:

Line 2925: ecx_cln_debug_pub.Add('UNIQUE ID 5 ----- >>>'||p_unique5,1);

2921: ecx_cln_debug_pub.Add('UNIQUE ID 1 ----- >>>'||p_unique1,1);
2922: ecx_cln_debug_pub.Add('UNIQUE ID 2 ----- >>>'||p_unique2,1);
2923: ecx_cln_debug_pub.Add('UNIQUE ID 3 ----- >>>'||p_unique3,1);
2924: ecx_cln_debug_pub.Add('UNIQUE ID 4 ----- >>>'||p_unique4,1);
2925: ecx_cln_debug_pub.Add('UNIQUE ID 5 ----- >>>'||p_unique5,1);
2926: ecx_cln_debug_pub.Add('=========================================',1);
2927: END IF;
2928:
2929:

Line 2926: ecx_cln_debug_pub.Add('=========================================',1);

2922: ecx_cln_debug_pub.Add('UNIQUE ID 2 ----- >>>'||p_unique2,1);
2923: ecx_cln_debug_pub.Add('UNIQUE ID 3 ----- >>>'||p_unique3,1);
2924: ecx_cln_debug_pub.Add('UNIQUE ID 4 ----- >>>'||p_unique4,1);
2925: ecx_cln_debug_pub.Add('UNIQUE ID 5 ----- >>>'||p_unique5,1);
2926: ecx_cln_debug_pub.Add('=========================================',1);
2927: END IF;
2928:
2929:
2930:

Line 2936: ecx_cln_debug_pub.Add('DETAIL MSG AFTER TRIMMING ----- >>>'||l_dtl_msg,1);

2932: -- Remove the last comma from the message if it exists
2933: IF ( substr(p_dtl_msg,-1) )= ',' THEN
2934: l_dtl_msg:= substr( p_dtl_msg, 0, length(p_dtl_msg) - 1);
2935: IF (l_Debug_Level <= 1) THEN
2936: ecx_cln_debug_pub.Add('DETAIL MSG AFTER TRIMMING ----- >>>'||l_dtl_msg,1);
2937: END IF;
2938:
2939: END IF;
2940:

Line 2945: ecx_cln_debug_pub.Add('Message Detail ID generated : '||l_dtl_msg_id,1);

2941:
2942: -- Collaboration Message Detail ID is generated from a sequence.
2943: SELECT cln_collaboration_msg_id_s.nextval INTO l_dtl_msg_id FROM dual ;
2944: IF (l_Debug_Level <= 1) THEN
2945: ecx_cln_debug_pub.Add('Message Detail ID generated : '||l_dtl_msg_id,1);
2946: END IF;
2947:
2948:
2949: -- Check for Collaboration Detail ID value

Line 2953: ecx_cln_debug_pub.Add('COLLABORATION_DETAIL_ID passed as null',1);

2949: -- Check for Collaboration Detail ID value
2950: BEGIN
2951: IF (l_coll_dtl_id IS NULL) THEN
2952: IF (l_Debug_Level <= 1) THEN
2953: ecx_cln_debug_pub.Add('COLLABORATION_DETAIL_ID passed as null',1);
2954: ecx_cln_debug_pub.Add('Before calling CLN_CH_COLLABORATION_PKG.FIND_COLLABORATION_DETAIL_ID API',1);
2955: END IF;
2956:
2957:

Line 2954: ecx_cln_debug_pub.Add('Before calling CLN_CH_COLLABORATION_PKG.FIND_COLLABORATION_DETAIL_ID API',1);

2950: BEGIN
2951: IF (l_coll_dtl_id IS NULL) THEN
2952: IF (l_Debug_Level <= 1) THEN
2953: ecx_cln_debug_pub.Add('COLLABORATION_DETAIL_ID passed as null',1);
2954: ecx_cln_debug_pub.Add('Before calling CLN_CH_COLLABORATION_PKG.FIND_COLLABORATION_DETAIL_ID API',1);
2955: END IF;
2956:
2957:
2958: FIND_COLLABORATION_DETAIL_ID(

Line 2984: ecx_cln_debug_pub.Add('Return Status from FIND_COLLABORATION_DETAIL_ID -'||x_return_status ,1);

2980: p_unique5 => p_unique5
2981: );
2982:
2983: IF (l_Debug_Level <= 1) THEN
2984: ecx_cln_debug_pub.Add('Return Status from FIND_COLLABORATION_DETAIL_ID -'||x_return_status ,1);
2985: ecx_cln_debug_pub.Add('COLLABORATION_DETAIL_ID obtained as -'||l_coll_dtl_id ,1);
2986: END IF;
2987:
2988:

Line 2985: ecx_cln_debug_pub.Add('COLLABORATION_DETAIL_ID obtained as -'||l_coll_dtl_id ,1);

2981: );
2982:
2983: IF (l_Debug_Level <= 1) THEN
2984: ecx_cln_debug_pub.Add('Return Status from FIND_COLLABORATION_DETAIL_ID -'||x_return_status ,1);
2985: ecx_cln_debug_pub.Add('COLLABORATION_DETAIL_ID obtained as -'||l_coll_dtl_id ,1);
2986: END IF;
2987:
2988:
2989: IF (x_return_status <> 'S') THEN

Line 3009: ecx_cln_debug_pub.Add('Before SQL Query : Adding Collaboration Detail Messages',1);

3005: RAISE FND_API.G_EXC_ERROR;
3006: END;
3007:
3008: IF (l_Debug_Level <= 1) THEN
3009: ecx_cln_debug_pub.Add('Before SQL Query : Adding Collaboration Detail Messages',1);
3010: END IF;
3011:
3012:
3013: -- Message Details for a Collaboration are added into CLN_COLL_MESSAGES Table

Line 3022: ecx_cln_debug_pub.Add('After SQL Query : Adding Collaboration Detail Messages',1);

3018: SYSDATE,FND_GLOBAL.USER_ID,SYSDATE,FND_GLOBAL.USER_ID,FND_GLOBAL.LOGIN_ID);
3019:
3020:
3021: IF (l_Debug_Level <= 1) THEN
3022: ecx_cln_debug_pub.Add('After SQL Query : Adding Collaboration Detail Messages',1);
3023: END IF;
3024:
3025:
3026: IF SQL%FOUND THEN

Line 3028: ecx_cln_debug_pub.Add('Detail Messages for a collaboration Added',1);

3024:
3025:
3026: IF SQL%FOUND THEN
3027: IF (l_Debug_Level <= 1) THEN
3028: ecx_cln_debug_pub.Add('Detail Messages for a collaboration Added',1);
3029: END IF;
3030:
3031: ELSE
3032: FND_MESSAGE.SET_NAME('CLN','CLN_CH_ADD_MSGS_FAILED');

Line 3041: ecx_cln_debug_pub.Add(l_msg_data,1);

3037:
3038: FND_MESSAGE.SET_NAME('CLN','CLN_CH_COLL_MSGS_ADDED');
3039: x_msg_data := FND_MESSAGE.GET;
3040: IF (l_Debug_Level <= 1) THEN
3041: ecx_cln_debug_pub.Add(l_msg_data,1);
3042: END IF;
3043:
3044: IF (l_Debug_Level <= 2) THEN
3045: ecx_cln_debug_pub.Add('------ Exiting ADD_COLLABORATION_MESSAGES API ------',2);

Line 3045: ecx_cln_debug_pub.Add('------ Exiting ADD_COLLABORATION_MESSAGES API ------',2);

3041: ecx_cln_debug_pub.Add(l_msg_data,1);
3042: END IF;
3043:
3044: IF (l_Debug_Level <= 2) THEN
3045: ecx_cln_debug_pub.Add('------ Exiting ADD_COLLABORATION_MESSAGES API ------',2);
3046: END IF;
3047:
3048:
3049: EXCEPTION

Line 3054: ecx_cln_debug_pub.Add(l_msg_data,4);

3050:
3051: WHEN FND_API.G_EXC_ERROR THEN
3052: x_return_status :=FND_API.G_RET_STS_ERROR ;
3053: IF (l_Debug_Level <= 4) THEN
3054: ecx_cln_debug_pub.Add(l_msg_data,4);
3055: ecx_cln_debug_pub.Add('------ Exiting ADD_COLLABORATION_MESSAGES API ------',2);
3056: END IF;
3057:
3058:

Line 3055: ecx_cln_debug_pub.Add('------ Exiting ADD_COLLABORATION_MESSAGES API ------',2);

3051: WHEN FND_API.G_EXC_ERROR THEN
3052: x_return_status :=FND_API.G_RET_STS_ERROR ;
3053: IF (l_Debug_Level <= 4) THEN
3054: ecx_cln_debug_pub.Add(l_msg_data,4);
3055: ecx_cln_debug_pub.Add('------ Exiting ADD_COLLABORATION_MESSAGES API ------',2);
3056: END IF;
3057:
3058:
3059:

Line 3070: ecx_cln_debug_pub.Add(l_msg_data,4);

3066: FND_MESSAGE.SET_TOKEN('ERRORCODE',l_error_code);
3067: FND_MESSAGE.SET_TOKEN('ERRORMSG',l_error_msg);
3068: x_msg_data := FND_MESSAGE.GET;
3069: IF (l_Debug_Level <= 5) THEN
3070: ecx_cln_debug_pub.Add(l_msg_data,4);
3071: ecx_cln_debug_pub.Add('------ Exiting ADD_COLLABORATION_MESSAGES API ------',2);
3072: END IF;
3073:
3074:

Line 3071: ecx_cln_debug_pub.Add('------ Exiting ADD_COLLABORATION_MESSAGES API ------',2);

3067: FND_MESSAGE.SET_TOKEN('ERRORMSG',l_error_msg);
3068: x_msg_data := FND_MESSAGE.GET;
3069: IF (l_Debug_Level <= 5) THEN
3070: ecx_cln_debug_pub.Add(l_msg_data,4);
3071: ecx_cln_debug_pub.Add('------ Exiting ADD_COLLABORATION_MESSAGES API ------',2);
3072: END IF;
3073:
3074:
3075:

Line 3085: ecx_cln_debug_pub.Add(l_msg_data,6);

3081: FND_MESSAGE.SET_TOKEN('ERRORMSG',l_error_msg);
3082: x_msg_data :=FND_MESSAGE.GET;
3083: l_msg_data :=l_error_code||' : '||l_error_msg;
3084: IF (l_Debug_Level <= 5) THEN
3085: ecx_cln_debug_pub.Add(l_msg_data,6);
3086: ecx_cln_debug_pub.Add('------ Exiting ADD_COLLABORATION_MESSAGES API ------',2);
3087: END IF;
3088:
3089:

Line 3086: ecx_cln_debug_pub.Add('------ Exiting ADD_COLLABORATION_MESSAGES API ------',2);

3082: x_msg_data :=FND_MESSAGE.GET;
3083: l_msg_data :=l_error_code||' : '||l_error_msg;
3084: IF (l_Debug_Level <= 5) THEN
3085: ecx_cln_debug_pub.Add(l_msg_data,6);
3086: ecx_cln_debug_pub.Add('------ Exiting ADD_COLLABORATION_MESSAGES API ------',2);
3087: END IF;
3088:
3089:
3090:

Line 3130: --l_debug_mode :=ecx_cln_debug_pub.Set_Debug_Mode('FILE');

3126:
3127: BEGIN
3128:
3129: -- Sets the debug mode to be FILE
3130: --l_debug_mode :=ecx_cln_debug_pub.Set_Debug_Mode('FILE');
3131:
3132:
3133: IF (l_Debug_Level <= 2) THEN
3134: ecx_cln_debug_pub.Add('------ Entering IS_UPDATE_REQUIRED API ------ ',2);

Line 3134: ecx_cln_debug_pub.Add('------ Entering IS_UPDATE_REQUIRED API ------ ',2);

3130: --l_debug_mode :=ecx_cln_debug_pub.Set_Debug_Mode('FILE');
3131:
3132:
3133: IF (l_Debug_Level <= 2) THEN
3134: ecx_cln_debug_pub.Add('------ Entering IS_UPDATE_REQUIRED API ------ ',2);
3135: END IF;
3136:
3137:
3138: -- Initialize API return status to success

Line 3151: ecx_cln_debug_pub.Add('==========Parameters Received=============',1);

3147:
3148:
3149: -- get the paramaters passed
3150: IF (l_Debug_Level <= 1) THEN
3151: ecx_cln_debug_pub.Add('==========Parameters Received=============',1);
3152: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_dir,1);
3153: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);
3154: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);
3155: ecx_cln_debug_pub.Add('TRADING PARTNER TYPE ----- >>>'||p_tr_partner_type,1);

Line 3152: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_dir,1);

3148:
3149: -- get the paramaters passed
3150: IF (l_Debug_Level <= 1) THEN
3151: ecx_cln_debug_pub.Add('==========Parameters Received=============',1);
3152: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_dir,1);
3153: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);
3154: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);
3155: ecx_cln_debug_pub.Add('TRADING PARTNER TYPE ----- >>>'||p_tr_partner_type,1);
3156: ecx_cln_debug_pub.Add('TRADING PARTNER ID ----- >>>'||p_tr_partner_id,1);

Line 3153: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);

3149: -- get the paramaters passed
3150: IF (l_Debug_Level <= 1) THEN
3151: ecx_cln_debug_pub.Add('==========Parameters Received=============',1);
3152: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_dir,1);
3153: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);
3154: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);
3155: ecx_cln_debug_pub.Add('TRADING PARTNER TYPE ----- >>>'||p_tr_partner_type,1);
3156: ecx_cln_debug_pub.Add('TRADING PARTNER ID ----- >>>'||p_tr_partner_id,1);
3157: ecx_cln_debug_pub.Add('TRADING PARTNER SITE ----- >>>'||p_tr_partner_site,1);

Line 3154: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);

3150: IF (l_Debug_Level <= 1) THEN
3151: ecx_cln_debug_pub.Add('==========Parameters Received=============',1);
3152: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_dir,1);
3153: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);
3154: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);
3155: ecx_cln_debug_pub.Add('TRADING PARTNER TYPE ----- >>>'||p_tr_partner_type,1);
3156: ecx_cln_debug_pub.Add('TRADING PARTNER ID ----- >>>'||p_tr_partner_id,1);
3157: ecx_cln_debug_pub.Add('TRADING PARTNER SITE ----- >>>'||p_tr_partner_site,1);
3158: ecx_cln_debug_pub.Add('SENDER COMPONENT ----- >>>'||l_protocol_type,1);

Line 3155: ecx_cln_debug_pub.Add('TRADING PARTNER TYPE ----- >>>'||p_tr_partner_type,1);

3151: ecx_cln_debug_pub.Add('==========Parameters Received=============',1);
3152: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_dir,1);
3153: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);
3154: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);
3155: ecx_cln_debug_pub.Add('TRADING PARTNER TYPE ----- >>>'||p_tr_partner_type,1);
3156: ecx_cln_debug_pub.Add('TRADING PARTNER ID ----- >>>'||p_tr_partner_id,1);
3157: ecx_cln_debug_pub.Add('TRADING PARTNER SITE ----- >>>'||p_tr_partner_site,1);
3158: ecx_cln_debug_pub.Add('SENDER COMPONENT ----- >>>'||l_protocol_type,1);
3159: ecx_cln_debug_pub.Add('===========================================',1);

Line 3156: ecx_cln_debug_pub.Add('TRADING PARTNER ID ----- >>>'||p_tr_partner_id,1);

3152: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_dir,1);
3153: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);
3154: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);
3155: ecx_cln_debug_pub.Add('TRADING PARTNER TYPE ----- >>>'||p_tr_partner_type,1);
3156: ecx_cln_debug_pub.Add('TRADING PARTNER ID ----- >>>'||p_tr_partner_id,1);
3157: ecx_cln_debug_pub.Add('TRADING PARTNER SITE ----- >>>'||p_tr_partner_site,1);
3158: ecx_cln_debug_pub.Add('SENDER COMPONENT ----- >>>'||l_protocol_type,1);
3159: ecx_cln_debug_pub.Add('===========================================',1);
3160: END IF;

Line 3157: ecx_cln_debug_pub.Add('TRADING PARTNER SITE ----- >>>'||p_tr_partner_site,1);

3153: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);
3154: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);
3155: ecx_cln_debug_pub.Add('TRADING PARTNER TYPE ----- >>>'||p_tr_partner_type,1);
3156: ecx_cln_debug_pub.Add('TRADING PARTNER ID ----- >>>'||p_tr_partner_id,1);
3157: ecx_cln_debug_pub.Add('TRADING PARTNER SITE ----- >>>'||p_tr_partner_site,1);
3158: ecx_cln_debug_pub.Add('SENDER COMPONENT ----- >>>'||l_protocol_type,1);
3159: ecx_cln_debug_pub.Add('===========================================',1);
3160: END IF;
3161:

Line 3158: ecx_cln_debug_pub.Add('SENDER COMPONENT ----- >>>'||l_protocol_type,1);

3154: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);
3155: ecx_cln_debug_pub.Add('TRADING PARTNER TYPE ----- >>>'||p_tr_partner_type,1);
3156: ecx_cln_debug_pub.Add('TRADING PARTNER ID ----- >>>'||p_tr_partner_id,1);
3157: ecx_cln_debug_pub.Add('TRADING PARTNER SITE ----- >>>'||p_tr_partner_site,1);
3158: ecx_cln_debug_pub.Add('SENDER COMPONENT ----- >>>'||l_protocol_type,1);
3159: ecx_cln_debug_pub.Add('===========================================',1);
3160: END IF;
3161:
3162:

Line 3159: ecx_cln_debug_pub.Add('===========================================',1);

3155: ecx_cln_debug_pub.Add('TRADING PARTNER TYPE ----- >>>'||p_tr_partner_type,1);
3156: ecx_cln_debug_pub.Add('TRADING PARTNER ID ----- >>>'||p_tr_partner_id,1);
3157: ecx_cln_debug_pub.Add('TRADING PARTNER SITE ----- >>>'||p_tr_partner_site,1);
3158: ecx_cln_debug_pub.Add('SENDER COMPONENT ----- >>>'||l_protocol_type,1);
3159: ecx_cln_debug_pub.Add('===========================================',1);
3160: END IF;
3161:
3162:
3163:

Line 3169: ecx_cln_debug_pub.Add('Profile Value - CLN_UPDATION found as NEVER',1);

3165: l_fnd_profile :=FND_PROFILE.VALUE('CLN_UPDATION');
3166:
3167: IF(l_fnd_profile = 'NEVER') THEN
3168: IF (l_Debug_Level <= 1) THEN
3169: ecx_cln_debug_pub.Add('Profile Value - CLN_UPDATION found as NEVER',1);
3170: END IF;
3171:
3172: FND_MESSAGE.SET_NAME('CLN','CLN_CH_COLLABORATION_NOT_REQD');
3173: x_msg_data := FND_MESSAGE.GET;

Line 3177: ecx_cln_debug_pub.Add('Collaboration need not be created/updated',1);

3173: x_msg_data := FND_MESSAGE.GET;
3174: x_return_status := FND_API.G_RET_STS_SUCCESS;
3175: x_update_reqd := FALSE;
3176: IF (l_Debug_Level <= 1) THEN
3177: ecx_cln_debug_pub.Add('Collaboration need not be created/updated',1);
3178: END IF;
3179:
3180: Return;
3181: ELSIF(l_fnd_profile = 'ROSETTANET') THEN

Line 3183: ecx_cln_debug_pub.Add('Profile Value - CLN_UPDATION found as ROSETTANET',1);

3179:
3180: Return;
3181: ELSIF(l_fnd_profile = 'ROSETTANET') THEN
3182: IF (l_Debug_Level <= 1) THEN
3183: ecx_cln_debug_pub.Add('Profile Value - CLN_UPDATION found as ROSETTANET',1);
3184: END IF;
3185:
3186:
3187: IF (p_doc_dir = 'OUT') THEN

Line 3189: ecx_cln_debug_pub.Add('Document direction is out',1);

3185:
3186:
3187: IF (p_doc_dir = 'OUT') THEN
3188: IF (l_Debug_Level <= 1) THEN
3189: ecx_cln_debug_pub.Add('Document direction is out',1);
3190: END IF;
3191:
3192: IF (l_protocol_type IS NULL) THEN
3193: BEGIN

Line 3219: ecx_cln_debug_pub.Add('Hub user id is not null',1);

3215: -- if hub value is also entered along with the protocol or
3216: -- only hub value is there , then also we an get protocol value
3217: IF l_hub_user_id IS NOT NULL THEN
3218: IF (l_Debug_Level <= 1) THEN
3219: ecx_cln_debug_pub.Add('Hub user id is not null',1);
3220: END IF;
3221:
3222:
3223: BEGIN

Line 3240: ecx_cln_debug_pub.Add('Protocol value found as :'||l_protocol_type,1);

3236: END IF;
3237: END IF;
3238:
3239: IF (l_Debug_Level <= 1) THEN
3240: ecx_cln_debug_pub.Add('Protocol value found as :'||l_protocol_type,1);
3241: END IF;
3242:
3243:
3244: IF(l_protocol_type <> 'IAS') THEN

Line 3247: ecx_cln_debug_pub.Add('Protocol type is not IAS',1);

3243:
3244: IF(l_protocol_type <> 'IAS') THEN
3245: FND_MESSAGE.SET_NAME('CLN','CLN_CH_COLLABORATION_NOT_REQD');
3246: x_msg_data := FND_MESSAGE.GET;
3247: ecx_cln_debug_pub.Add('Protocol type is not IAS',1);
3248: ecx_cln_debug_pub.Add('Collaboration need not be created/updated',1);
3249: x_update_reqd :=FALSE;
3250: x_return_status := FND_API.G_RET_STS_SUCCESS;
3251: Return;

Line 3248: ecx_cln_debug_pub.Add('Collaboration need not be created/updated',1);

3244: IF(l_protocol_type <> 'IAS') THEN
3245: FND_MESSAGE.SET_NAME('CLN','CLN_CH_COLLABORATION_NOT_REQD');
3246: x_msg_data := FND_MESSAGE.GET;
3247: ecx_cln_debug_pub.Add('Protocol type is not IAS',1);
3248: ecx_cln_debug_pub.Add('Collaboration need not be created/updated',1);
3249: x_update_reqd :=FALSE;
3250: x_return_status := FND_API.G_RET_STS_SUCCESS;
3251: Return;
3252: END IF;

Line 3254: ecx_cln_debug_pub.Add('Collaboration can be updated',1);

3250: x_return_status := FND_API.G_RET_STS_SUCCESS;
3251: Return;
3252: END IF;
3253: IF (l_Debug_Level <= 1) THEN
3254: ecx_cln_debug_pub.Add('Collaboration can be updated',1);
3255: END IF;
3256:
3257: x_update_reqd := TRUE;
3258:

Line 3260: ecx_cln_debug_pub.Add('Document direction is IN',1);

3256:
3257: x_update_reqd := TRUE;
3258:
3259: ELSIF (p_doc_dir = 'IN') THEN
3260: ecx_cln_debug_pub.Add('Document direction is IN',1);
3261: IF(l_protocol_type = 'IAS') THEN
3262: IF (l_Debug_Level <= 1) THEN
3263: ecx_cln_debug_pub.Add('SENDER/COMPONENT tag has the value as IAS',1);
3264: ecx_cln_debug_pub.Add('Collaboration can be updated',1);

Line 3263: ecx_cln_debug_pub.Add('SENDER/COMPONENT tag has the value as IAS',1);

3259: ELSIF (p_doc_dir = 'IN') THEN
3260: ecx_cln_debug_pub.Add('Document direction is IN',1);
3261: IF(l_protocol_type = 'IAS') THEN
3262: IF (l_Debug_Level <= 1) THEN
3263: ecx_cln_debug_pub.Add('SENDER/COMPONENT tag has the value as IAS',1);
3264: ecx_cln_debug_pub.Add('Collaboration can be updated',1);
3265: END IF;
3266:
3267: x_update_reqd := TRUE;

Line 3264: ecx_cln_debug_pub.Add('Collaboration can be updated',1);

3260: ecx_cln_debug_pub.Add('Document direction is IN',1);
3261: IF(l_protocol_type = 'IAS') THEN
3262: IF (l_Debug_Level <= 1) THEN
3263: ecx_cln_debug_pub.Add('SENDER/COMPONENT tag has the value as IAS',1);
3264: ecx_cln_debug_pub.Add('Collaboration can be updated',1);
3265: END IF;
3266:
3267: x_update_reqd := TRUE;
3268: ELSE

Line 3270: ecx_cln_debug_pub.Add('SENDER/COMPONENT tag has the value as -'||l_protocol_type,1);

3266:
3267: x_update_reqd := TRUE;
3268: ELSE
3269: IF (l_Debug_Level <= 1) THEN
3270: ecx_cln_debug_pub.Add('SENDER/COMPONENT tag has the value as -'||l_protocol_type,1);
3271: ecx_cln_debug_pub.Add('Collaboration need not be created/updated',1);
3272: END IF;
3273:
3274: x_update_reqd := FALSE;

Line 3271: ecx_cln_debug_pub.Add('Collaboration need not be created/updated',1);

3267: x_update_reqd := TRUE;
3268: ELSE
3269: IF (l_Debug_Level <= 1) THEN
3270: ecx_cln_debug_pub.Add('SENDER/COMPONENT tag has the value as -'||l_protocol_type,1);
3271: ecx_cln_debug_pub.Add('Collaboration need not be created/updated',1);
3272: END IF;
3273:
3274: x_update_reqd := FALSE;
3275: END IF;

Line 3282: ecx_cln_debug_pub.Add(l_msg_data,1);

3278: x_update_reqd := TRUE;
3279: END IF;
3280:
3281: IF (l_Debug_Level <= 1) THEN
3282: ecx_cln_debug_pub.Add(l_msg_data,1);
3283: END IF;
3284:
3285: IF (l_Debug_Level <= 2) THEN
3286: ecx_cln_debug_pub.Add('------ Exiting IS_UPDATE_REQUIRED ------- ',2);

Line 3286: ecx_cln_debug_pub.Add('------ Exiting IS_UPDATE_REQUIRED ------- ',2);

3282: ecx_cln_debug_pub.Add(l_msg_data,1);
3283: END IF;
3284:
3285: IF (l_Debug_Level <= 2) THEN
3286: ecx_cln_debug_pub.Add('------ Exiting IS_UPDATE_REQUIRED ------- ',2);
3287: END IF;
3288:
3289:
3290: EXCEPTION

Line 3295: ecx_cln_debug_pub.Add(l_msg_data,4);

3291:
3292: WHEN FND_API.G_EXC_ERROR THEN
3293: x_return_status :=FND_API.G_RET_STS_ERROR ;
3294: IF (l_Debug_Level <= 4) THEN
3295: ecx_cln_debug_pub.Add(l_msg_data,4);
3296: ecx_cln_debug_pub.Add('------ Exiting IS_UPDATE_REQUIRED ------- ',2);
3297: END IF;
3298:
3299:

Line 3296: ecx_cln_debug_pub.Add('------ Exiting IS_UPDATE_REQUIRED ------- ',2);

3292: WHEN FND_API.G_EXC_ERROR THEN
3293: x_return_status :=FND_API.G_RET_STS_ERROR ;
3294: IF (l_Debug_Level <= 4) THEN
3295: ecx_cln_debug_pub.Add(l_msg_data,4);
3296: ecx_cln_debug_pub.Add('------ Exiting IS_UPDATE_REQUIRED ------- ',2);
3297: END IF;
3298:
3299:
3300:

Line 3311: ecx_cln_debug_pub.Add(l_msg_data,6);

3307: FND_MESSAGE.SET_TOKEN('ERRORMSG',l_error_msg);
3308: x_msg_data :=FND_MESSAGE.GET;
3309: l_msg_data := 'Unexpected Error : '||l_error_code||'-'||l_error_msg;
3310: IF (l_Debug_Level <= 5) THEN
3311: ecx_cln_debug_pub.Add(l_msg_data,6);
3312: ecx_cln_debug_pub.Add('------ Exiting IS_UPDATE_REQUIRED ------- ',2);
3313: END IF;
3314:
3315:

Line 3312: ecx_cln_debug_pub.Add('------ Exiting IS_UPDATE_REQUIRED ------- ',2);

3308: x_msg_data :=FND_MESSAGE.GET;
3309: l_msg_data := 'Unexpected Error : '||l_error_code||'-'||l_error_msg;
3310: IF (l_Debug_Level <= 5) THEN
3311: ecx_cln_debug_pub.Add(l_msg_data,6);
3312: ecx_cln_debug_pub.Add('------ Exiting IS_UPDATE_REQUIRED ------- ',2);
3313: END IF;
3314:
3315:
3316: END IS_UPDATE_REQUIRED;

Line 3366: --l_debug_mode :=ecx_cln_debug_pub.Set_Debug_Mode('FILE');

3362: l_coll_id VARCHAR2(255);
3363: BEGIN
3364:
3365: -- Sets the debug mode to be FILE
3366: --l_debug_mode :=ecx_cln_debug_pub.Set_Debug_Mode('FILE');
3367:
3368:
3369: IF (l_Debug_Level <= 2) THEN
3370: ecx_cln_debug_pub.Add('------ Entering FIND_COLLABORATION_DETAIL_ID API -----',2);

Line 3370: ecx_cln_debug_pub.Add('------ Entering FIND_COLLABORATION_DETAIL_ID API -----',2);

3366: --l_debug_mode :=ecx_cln_debug_pub.Set_Debug_Mode('FILE');
3367:
3368:
3369: IF (l_Debug_Level <= 2) THEN
3370: ecx_cln_debug_pub.Add('------ Entering FIND_COLLABORATION_DETAIL_ID API -----',2);
3371: END IF;
3372:
3373:
3374: -- Initialize API return status to success

Line 3383: ecx_cln_debug_pub.Add('==========Parameters Received=============',1);

3379: x_msg_data := FND_MESSAGE.GET;
3380:
3381: -- get the paramaters passed
3382: IF (l_Debug_Level <= 1) THEN
3383: ecx_cln_debug_pub.Add('==========Parameters Received=============',1);
3384: ecx_cln_debug_pub.Add('COLLABORATION ID ----- >>>'||p_coll_id,1);
3385: ecx_cln_debug_pub.Add('APPLCATION ID ----- >>>'||p_app_id,1);
3386: ecx_cln_debug_pub.Add('REFERENCE ID ----- >>>'||p_ref_id,1);
3387: ecx_cln_debug_pub.Add('RELEASE NUMBER ----- >>>'||p_rel_no,1);

Line 3384: ecx_cln_debug_pub.Add('COLLABORATION ID ----- >>>'||p_coll_id,1);

3380:
3381: -- get the paramaters passed
3382: IF (l_Debug_Level <= 1) THEN
3383: ecx_cln_debug_pub.Add('==========Parameters Received=============',1);
3384: ecx_cln_debug_pub.Add('COLLABORATION ID ----- >>>'||p_coll_id,1);
3385: ecx_cln_debug_pub.Add('APPLCATION ID ----- >>>'||p_app_id,1);
3386: ecx_cln_debug_pub.Add('REFERENCE ID ----- >>>'||p_ref_id,1);
3387: ecx_cln_debug_pub.Add('RELEASE NUMBER ----- >>>'||p_rel_no,1);
3388: ecx_cln_debug_pub.Add('DOCUMENT NO ----- >>>'||p_doc_no,1);

Line 3385: ecx_cln_debug_pub.Add('APPLCATION ID ----- >>>'||p_app_id,1);

3381: -- get the paramaters passed
3382: IF (l_Debug_Level <= 1) THEN
3383: ecx_cln_debug_pub.Add('==========Parameters Received=============',1);
3384: ecx_cln_debug_pub.Add('COLLABORATION ID ----- >>>'||p_coll_id,1);
3385: ecx_cln_debug_pub.Add('APPLCATION ID ----- >>>'||p_app_id,1);
3386: ecx_cln_debug_pub.Add('REFERENCE ID ----- >>>'||p_ref_id,1);
3387: ecx_cln_debug_pub.Add('RELEASE NUMBER ----- >>>'||p_rel_no,1);
3388: ecx_cln_debug_pub.Add('DOCUMENT NO ----- >>>'||p_doc_no,1);
3389: ecx_cln_debug_pub.Add('DOCUMENT REV. NO ----- >>>'||p_doc_rev_no,1);

Line 3386: ecx_cln_debug_pub.Add('REFERENCE ID ----- >>>'||p_ref_id,1);

3382: IF (l_Debug_Level <= 1) THEN
3383: ecx_cln_debug_pub.Add('==========Parameters Received=============',1);
3384: ecx_cln_debug_pub.Add('COLLABORATION ID ----- >>>'||p_coll_id,1);
3385: ecx_cln_debug_pub.Add('APPLCATION ID ----- >>>'||p_app_id,1);
3386: ecx_cln_debug_pub.Add('REFERENCE ID ----- >>>'||p_ref_id,1);
3387: ecx_cln_debug_pub.Add('RELEASE NUMBER ----- >>>'||p_rel_no,1);
3388: ecx_cln_debug_pub.Add('DOCUMENT NO ----- >>>'||p_doc_no,1);
3389: ecx_cln_debug_pub.Add('DOCUMENT REV. NO ----- >>>'||p_doc_rev_no,1);
3390: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);

Line 3387: ecx_cln_debug_pub.Add('RELEASE NUMBER ----- >>>'||p_rel_no,1);

3383: ecx_cln_debug_pub.Add('==========Parameters Received=============',1);
3384: ecx_cln_debug_pub.Add('COLLABORATION ID ----- >>>'||p_coll_id,1);
3385: ecx_cln_debug_pub.Add('APPLCATION ID ----- >>>'||p_app_id,1);
3386: ecx_cln_debug_pub.Add('REFERENCE ID ----- >>>'||p_ref_id,1);
3387: ecx_cln_debug_pub.Add('RELEASE NUMBER ----- >>>'||p_rel_no,1);
3388: ecx_cln_debug_pub.Add('DOCUMENT NO ----- >>>'||p_doc_no,1);
3389: ecx_cln_debug_pub.Add('DOCUMENT REV. NO ----- >>>'||p_doc_rev_no,1);
3390: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);
3391: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);

Line 3388: ecx_cln_debug_pub.Add('DOCUMENT NO ----- >>>'||p_doc_no,1);

3384: ecx_cln_debug_pub.Add('COLLABORATION ID ----- >>>'||p_coll_id,1);
3385: ecx_cln_debug_pub.Add('APPLCATION ID ----- >>>'||p_app_id,1);
3386: ecx_cln_debug_pub.Add('REFERENCE ID ----- >>>'||p_ref_id,1);
3387: ecx_cln_debug_pub.Add('RELEASE NUMBER ----- >>>'||p_rel_no,1);
3388: ecx_cln_debug_pub.Add('DOCUMENT NO ----- >>>'||p_doc_no,1);
3389: ecx_cln_debug_pub.Add('DOCUMENT REV. NO ----- >>>'||p_doc_rev_no,1);
3390: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);
3391: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);
3392: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION TYPE ----- >>>'||p_xmlg_int_transaction_type,1);

Line 3389: ecx_cln_debug_pub.Add('DOCUMENT REV. NO ----- >>>'||p_doc_rev_no,1);

3385: ecx_cln_debug_pub.Add('APPLCATION ID ----- >>>'||p_app_id,1);
3386: ecx_cln_debug_pub.Add('REFERENCE ID ----- >>>'||p_ref_id,1);
3387: ecx_cln_debug_pub.Add('RELEASE NUMBER ----- >>>'||p_rel_no,1);
3388: ecx_cln_debug_pub.Add('DOCUMENT NO ----- >>>'||p_doc_no,1);
3389: ecx_cln_debug_pub.Add('DOCUMENT REV. NO ----- >>>'||p_doc_rev_no,1);
3390: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);
3391: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);
3392: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION TYPE ----- >>>'||p_xmlg_int_transaction_type,1);
3393: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_int_transaction_subtype,1);

Line 3390: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);

3386: ecx_cln_debug_pub.Add('REFERENCE ID ----- >>>'||p_ref_id,1);
3387: ecx_cln_debug_pub.Add('RELEASE NUMBER ----- >>>'||p_rel_no,1);
3388: ecx_cln_debug_pub.Add('DOCUMENT NO ----- >>>'||p_doc_no,1);
3389: ecx_cln_debug_pub.Add('DOCUMENT REV. NO ----- >>>'||p_doc_rev_no,1);
3390: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);
3391: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);
3392: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION TYPE ----- >>>'||p_xmlg_int_transaction_type,1);
3393: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_int_transaction_subtype,1);
3394: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);

Line 3391: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);

3387: ecx_cln_debug_pub.Add('RELEASE NUMBER ----- >>>'||p_rel_no,1);
3388: ecx_cln_debug_pub.Add('DOCUMENT NO ----- >>>'||p_doc_no,1);
3389: ecx_cln_debug_pub.Add('DOCUMENT REV. NO ----- >>>'||p_doc_rev_no,1);
3390: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);
3391: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);
3392: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION TYPE ----- >>>'||p_xmlg_int_transaction_type,1);
3393: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_int_transaction_subtype,1);
3394: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);
3395: ecx_cln_debug_pub.Add('UNIQUE 1 ----- >>>'||p_unique1,1);

Line 3392: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION TYPE ----- >>>'||p_xmlg_int_transaction_type,1);

3388: ecx_cln_debug_pub.Add('DOCUMENT NO ----- >>>'||p_doc_no,1);
3389: ecx_cln_debug_pub.Add('DOCUMENT REV. NO ----- >>>'||p_doc_rev_no,1);
3390: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);
3391: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);
3392: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION TYPE ----- >>>'||p_xmlg_int_transaction_type,1);
3393: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_int_transaction_subtype,1);
3394: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);
3395: ecx_cln_debug_pub.Add('UNIQUE 1 ----- >>>'||p_unique1,1);
3396: ecx_cln_debug_pub.Add('UNIQUE 2 ----- >>>'||p_unique2,1);

Line 3393: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_int_transaction_subtype,1);

3389: ecx_cln_debug_pub.Add('DOCUMENT REV. NO ----- >>>'||p_doc_rev_no,1);
3390: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);
3391: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);
3392: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION TYPE ----- >>>'||p_xmlg_int_transaction_type,1);
3393: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_int_transaction_subtype,1);
3394: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);
3395: ecx_cln_debug_pub.Add('UNIQUE 1 ----- >>>'||p_unique1,1);
3396: ecx_cln_debug_pub.Add('UNIQUE 2 ----- >>>'||p_unique2,1);
3397: ecx_cln_debug_pub.Add('UNIQUE 3 ----- >>>'||p_unique3,1);

Line 3394: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);

3390: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);
3391: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);
3392: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION TYPE ----- >>>'||p_xmlg_int_transaction_type,1);
3393: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_int_transaction_subtype,1);
3394: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);
3395: ecx_cln_debug_pub.Add('UNIQUE 1 ----- >>>'||p_unique1,1);
3396: ecx_cln_debug_pub.Add('UNIQUE 2 ----- >>>'||p_unique2,1);
3397: ecx_cln_debug_pub.Add('UNIQUE 3 ----- >>>'||p_unique3,1);
3398: ecx_cln_debug_pub.Add('UNIQUE 4 ----- >>>'||p_unique4,1);

Line 3395: ecx_cln_debug_pub.Add('UNIQUE 1 ----- >>>'||p_unique1,1);

3391: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);
3392: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION TYPE ----- >>>'||p_xmlg_int_transaction_type,1);
3393: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_int_transaction_subtype,1);
3394: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);
3395: ecx_cln_debug_pub.Add('UNIQUE 1 ----- >>>'||p_unique1,1);
3396: ecx_cln_debug_pub.Add('UNIQUE 2 ----- >>>'||p_unique2,1);
3397: ecx_cln_debug_pub.Add('UNIQUE 3 ----- >>>'||p_unique3,1);
3398: ecx_cln_debug_pub.Add('UNIQUE 4 ----- >>>'||p_unique4,1);
3399: ecx_cln_debug_pub.Add('UNIQUE 5 ----- >>>'||p_unique5,1);

Line 3396: ecx_cln_debug_pub.Add('UNIQUE 2 ----- >>>'||p_unique2,1);

3392: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION TYPE ----- >>>'||p_xmlg_int_transaction_type,1);
3393: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_int_transaction_subtype,1);
3394: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);
3395: ecx_cln_debug_pub.Add('UNIQUE 1 ----- >>>'||p_unique1,1);
3396: ecx_cln_debug_pub.Add('UNIQUE 2 ----- >>>'||p_unique2,1);
3397: ecx_cln_debug_pub.Add('UNIQUE 3 ----- >>>'||p_unique3,1);
3398: ecx_cln_debug_pub.Add('UNIQUE 4 ----- >>>'||p_unique4,1);
3399: ecx_cln_debug_pub.Add('UNIQUE 5 ----- >>>'||p_unique5,1);
3400: ecx_cln_debug_pub.Add('DOCUMENT TYPE ----- >>>'||p_doc_type,1);

Line 3397: ecx_cln_debug_pub.Add('UNIQUE 3 ----- >>>'||p_unique3,1);

3393: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_int_transaction_subtype,1);
3394: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);
3395: ecx_cln_debug_pub.Add('UNIQUE 1 ----- >>>'||p_unique1,1);
3396: ecx_cln_debug_pub.Add('UNIQUE 2 ----- >>>'||p_unique2,1);
3397: ecx_cln_debug_pub.Add('UNIQUE 3 ----- >>>'||p_unique3,1);
3398: ecx_cln_debug_pub.Add('UNIQUE 4 ----- >>>'||p_unique4,1);
3399: ecx_cln_debug_pub.Add('UNIQUE 5 ----- >>>'||p_unique5,1);
3400: ecx_cln_debug_pub.Add('DOCUMENT TYPE ----- >>>'||p_doc_type,1);
3401: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_direction,1);

Line 3398: ecx_cln_debug_pub.Add('UNIQUE 4 ----- >>>'||p_unique4,1);

3394: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);
3395: ecx_cln_debug_pub.Add('UNIQUE 1 ----- >>>'||p_unique1,1);
3396: ecx_cln_debug_pub.Add('UNIQUE 2 ----- >>>'||p_unique2,1);
3397: ecx_cln_debug_pub.Add('UNIQUE 3 ----- >>>'||p_unique3,1);
3398: ecx_cln_debug_pub.Add('UNIQUE 4 ----- >>>'||p_unique4,1);
3399: ecx_cln_debug_pub.Add('UNIQUE 5 ----- >>>'||p_unique5,1);
3400: ecx_cln_debug_pub.Add('DOCUMENT TYPE ----- >>>'||p_doc_type,1);
3401: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_direction,1);
3402: ecx_cln_debug_pub.Add('COLLABORATION POINT ----- >>>'||p_coll_point,1);

Line 3399: ecx_cln_debug_pub.Add('UNIQUE 5 ----- >>>'||p_unique5,1);

3395: ecx_cln_debug_pub.Add('UNIQUE 1 ----- >>>'||p_unique1,1);
3396: ecx_cln_debug_pub.Add('UNIQUE 2 ----- >>>'||p_unique2,1);
3397: ecx_cln_debug_pub.Add('UNIQUE 3 ----- >>>'||p_unique3,1);
3398: ecx_cln_debug_pub.Add('UNIQUE 4 ----- >>>'||p_unique4,1);
3399: ecx_cln_debug_pub.Add('UNIQUE 5 ----- >>>'||p_unique5,1);
3400: ecx_cln_debug_pub.Add('DOCUMENT TYPE ----- >>>'||p_doc_type,1);
3401: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_direction,1);
3402: ecx_cln_debug_pub.Add('COLLABORATION POINT ----- >>>'||p_coll_point,1);
3403: ecx_cln_debug_pub.Add('XMLG MESSAGE ID ----- >>>'||p_xmlg_msg_id,1);

Line 3400: ecx_cln_debug_pub.Add('DOCUMENT TYPE ----- >>>'||p_doc_type,1);

3396: ecx_cln_debug_pub.Add('UNIQUE 2 ----- >>>'||p_unique2,1);
3397: ecx_cln_debug_pub.Add('UNIQUE 3 ----- >>>'||p_unique3,1);
3398: ecx_cln_debug_pub.Add('UNIQUE 4 ----- >>>'||p_unique4,1);
3399: ecx_cln_debug_pub.Add('UNIQUE 5 ----- >>>'||p_unique5,1);
3400: ecx_cln_debug_pub.Add('DOCUMENT TYPE ----- >>>'||p_doc_type,1);
3401: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_direction,1);
3402: ecx_cln_debug_pub.Add('COLLABORATION POINT ----- >>>'||p_coll_point,1);
3403: ecx_cln_debug_pub.Add('XMLG MESSAGE ID ----- >>>'||p_xmlg_msg_id,1);
3404: ecx_cln_debug_pub.Add('XMLG INTERNAL CONTROL NO ----- >>>'||p_xmlg_internal_control_number,1);

Line 3401: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_direction,1);

3397: ecx_cln_debug_pub.Add('UNIQUE 3 ----- >>>'||p_unique3,1);
3398: ecx_cln_debug_pub.Add('UNIQUE 4 ----- >>>'||p_unique4,1);
3399: ecx_cln_debug_pub.Add('UNIQUE 5 ----- >>>'||p_unique5,1);
3400: ecx_cln_debug_pub.Add('DOCUMENT TYPE ----- >>>'||p_doc_type,1);
3401: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_direction,1);
3402: ecx_cln_debug_pub.Add('COLLABORATION POINT ----- >>>'||p_coll_point,1);
3403: ecx_cln_debug_pub.Add('XMLG MESSAGE ID ----- >>>'||p_xmlg_msg_id,1);
3404: ecx_cln_debug_pub.Add('XMLG INTERNAL CONTROL NO ----- >>>'||p_xmlg_internal_control_number,1);
3405: ecx_cln_debug_pub.Add('XMLG EVENT KEY ----- >>>'||p_xml_event_key,1);

Line 3402: ecx_cln_debug_pub.Add('COLLABORATION POINT ----- >>>'||p_coll_point,1);

3398: ecx_cln_debug_pub.Add('UNIQUE 4 ----- >>>'||p_unique4,1);
3399: ecx_cln_debug_pub.Add('UNIQUE 5 ----- >>>'||p_unique5,1);
3400: ecx_cln_debug_pub.Add('DOCUMENT TYPE ----- >>>'||p_doc_type,1);
3401: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_direction,1);
3402: ecx_cln_debug_pub.Add('COLLABORATION POINT ----- >>>'||p_coll_point,1);
3403: ecx_cln_debug_pub.Add('XMLG MESSAGE ID ----- >>>'||p_xmlg_msg_id,1);
3404: ecx_cln_debug_pub.Add('XMLG INTERNAL CONTROL NO ----- >>>'||p_xmlg_internal_control_number,1);
3405: ecx_cln_debug_pub.Add('XMLG EVENT KEY ----- >>>'||p_xml_event_key,1);
3406: ecx_cln_debug_pub.Add('===========================================',1);

Line 3403: ecx_cln_debug_pub.Add('XMLG MESSAGE ID ----- >>>'||p_xmlg_msg_id,1);

3399: ecx_cln_debug_pub.Add('UNIQUE 5 ----- >>>'||p_unique5,1);
3400: ecx_cln_debug_pub.Add('DOCUMENT TYPE ----- >>>'||p_doc_type,1);
3401: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_direction,1);
3402: ecx_cln_debug_pub.Add('COLLABORATION POINT ----- >>>'||p_coll_point,1);
3403: ecx_cln_debug_pub.Add('XMLG MESSAGE ID ----- >>>'||p_xmlg_msg_id,1);
3404: ecx_cln_debug_pub.Add('XMLG INTERNAL CONTROL NO ----- >>>'||p_xmlg_internal_control_number,1);
3405: ecx_cln_debug_pub.Add('XMLG EVENT KEY ----- >>>'||p_xml_event_key,1);
3406: ecx_cln_debug_pub.Add('===========================================',1);
3407: END IF;

Line 3404: ecx_cln_debug_pub.Add('XMLG INTERNAL CONTROL NO ----- >>>'||p_xmlg_internal_control_number,1);

3400: ecx_cln_debug_pub.Add('DOCUMENT TYPE ----- >>>'||p_doc_type,1);
3401: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_direction,1);
3402: ecx_cln_debug_pub.Add('COLLABORATION POINT ----- >>>'||p_coll_point,1);
3403: ecx_cln_debug_pub.Add('XMLG MESSAGE ID ----- >>>'||p_xmlg_msg_id,1);
3404: ecx_cln_debug_pub.Add('XMLG INTERNAL CONTROL NO ----- >>>'||p_xmlg_internal_control_number,1);
3405: ecx_cln_debug_pub.Add('XMLG EVENT KEY ----- >>>'||p_xml_event_key,1);
3406: ecx_cln_debug_pub.Add('===========================================',1);
3407: END IF;
3408:

Line 3405: ecx_cln_debug_pub.Add('XMLG EVENT KEY ----- >>>'||p_xml_event_key,1);

3401: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_direction,1);
3402: ecx_cln_debug_pub.Add('COLLABORATION POINT ----- >>>'||p_coll_point,1);
3403: ecx_cln_debug_pub.Add('XMLG MESSAGE ID ----- >>>'||p_xmlg_msg_id,1);
3404: ecx_cln_debug_pub.Add('XMLG INTERNAL CONTROL NO ----- >>>'||p_xmlg_internal_control_number,1);
3405: ecx_cln_debug_pub.Add('XMLG EVENT KEY ----- >>>'||p_xml_event_key,1);
3406: ecx_cln_debug_pub.Add('===========================================',1);
3407: END IF;
3408:
3409:

Line 3406: ecx_cln_debug_pub.Add('===========================================',1);

3402: ecx_cln_debug_pub.Add('COLLABORATION POINT ----- >>>'||p_coll_point,1);
3403: ecx_cln_debug_pub.Add('XMLG MESSAGE ID ----- >>>'||p_xmlg_msg_id,1);
3404: ecx_cln_debug_pub.Add('XMLG INTERNAL CONTROL NO ----- >>>'||p_xmlg_internal_control_number,1);
3405: ecx_cln_debug_pub.Add('XMLG EVENT KEY ----- >>>'||p_xml_event_key,1);
3406: ecx_cln_debug_pub.Add('===========================================',1);
3407: END IF;
3408:
3409:
3410:

Line 3414: ecx_cln_debug_pub.Add('--Before the query to CLN_COLL_HIST_DTL table ---',1);

3410:
3411:
3412: BEGIN
3413: IF (l_Debug_Level <= 1) THEN
3414: ecx_cln_debug_pub.Add('--Before the query to CLN_COLL_HIST_DTL table ---',1);
3415: END IF;
3416:
3417: SELECT MAX(collaboration_dtl_id) INTO x_dtl_coll_id
3418: FROM CLN_COLL_HIST_DTL

Line 3424: ecx_cln_debug_pub.Add('-- After the query to CLN_COLL_HIST_DTL table ---',1);

3420: AND ( XMLG_MSG_ID = p_xmlg_msg_id
3421: OR XMLG_INTERNAL_CONTROL_NUMBER = p_xmlg_internal_control_number
3422: );
3423: IF (l_Debug_Level <= 1) THEN
3424: ecx_cln_debug_pub.Add('-- After the query to CLN_COLL_HIST_DTL table ---',1);
3425: ecx_cln_debug_pub.Add('Collaboration Detail ID : '||x_dtl_coll_id,1);
3426: END IF;
3427:
3428:

Line 3425: ecx_cln_debug_pub.Add('Collaboration Detail ID : '||x_dtl_coll_id,1);

3421: OR XMLG_INTERNAL_CONTROL_NUMBER = p_xmlg_internal_control_number
3422: );
3423: IF (l_Debug_Level <= 1) THEN
3424: ecx_cln_debug_pub.Add('-- After the query to CLN_COLL_HIST_DTL table ---',1);
3425: ecx_cln_debug_pub.Add('Collaboration Detail ID : '||x_dtl_coll_id,1);
3426: END IF;
3427:
3428:
3429: EXCEPTION

Line 3432: ecx_cln_debug_pub.Add('Unable to trace collaboration dtl ID using transaction details',1);

3428:
3429: EXCEPTION
3430: WHEN NO_DATA_FOUND THEN
3431: IF (l_Debug_Level <= 1) THEN
3432: ecx_cln_debug_pub.Add('Unable to trace collaboration dtl ID using transaction details',1);
3433: END IF;
3434:
3435: END;
3436:

Line 3439: ecx_cln_debug_pub.Add('Before SQL Query : Retrieving Collaboration dtl ID using xmlg_document_id',1);

3435: END;
3436:
3437: IF (x_dtl_coll_id is NULL) THEN
3438: IF (l_Debug_Level <= 1) THEN
3439: ecx_cln_debug_pub.Add('Before SQL Query : Retrieving Collaboration dtl ID using xmlg_document_id',1);
3440: END IF;
3441:
3442:
3443: BEGIN

Line 3462: ecx_cln_debug_pub.Add('After SQL Query : Retrieving Collaboration dtl ID using xmlg_document_id',1);

3458: AND (XML_EVENT_KEY is null or p_xml_event_key is null or XML_EVENT_KEY = p_xml_event_key)
3459: )
3460: );
3461: IF (l_Debug_Level <= 1) THEN
3462: ecx_cln_debug_pub.Add('After SQL Query : Retrieving Collaboration dtl ID using xmlg_document_id',1);
3463: ecx_cln_debug_pub.Add('Collaboration Detail ID : '||x_dtl_coll_id,1);
3464: END IF;
3465:
3466:

Line 3463: ecx_cln_debug_pub.Add('Collaboration Detail ID : '||x_dtl_coll_id,1);

3459: )
3460: );
3461: IF (l_Debug_Level <= 1) THEN
3462: ecx_cln_debug_pub.Add('After SQL Query : Retrieving Collaboration dtl ID using xmlg_document_id',1);
3463: ecx_cln_debug_pub.Add('Collaboration Detail ID : '||x_dtl_coll_id,1);
3464: END IF;
3465:
3466:
3467: EXCEPTION

Line 3470: ecx_cln_debug_pub.Add('Unable to trace Collaboration dtl ID using xmlg_document_id',1);

3466:
3467: EXCEPTION
3468: WHEN NO_DATA_FOUND THEN
3469: IF (l_Debug_Level <= 1) THEN
3470: ecx_cln_debug_pub.Add('Unable to trace Collaboration dtl ID using xmlg_document_id',1);
3471: END IF;
3472:
3473: END;
3474: END IF;

Line 3478: ecx_cln_debug_pub.Add(l_msg_data,1);

3474: END IF;
3475:
3476: IF (x_dtl_coll_id IS NOT NULL) THEN
3477: IF (l_Debug_Level <= 1) THEN
3478: ecx_cln_debug_pub.Add(l_msg_data,1);
3479: END IF;
3480:
3481: IF (l_Debug_Level <= 2) THEN
3482: ecx_cln_debug_pub.Add('------ Exiting FIND_COLLABORATION_DETAIL_ID API ------',2);

Line 3482: ecx_cln_debug_pub.Add('------ Exiting FIND_COLLABORATION_DETAIL_ID API ------',2);

3478: ecx_cln_debug_pub.Add(l_msg_data,1);
3479: END IF;
3480:
3481: IF (l_Debug_Level <= 2) THEN
3482: ecx_cln_debug_pub.Add('------ Exiting FIND_COLLABORATION_DETAIL_ID API ------',2);
3483: END IF;
3484:
3485: RETURN;
3486: END IF;

Line 3491: ecx_cln_debug_pub.Add('Collaboration ID passed as '||p_coll_id,1);

3487:
3488:
3489:
3490: IF (l_Debug_Level <= 1) THEN
3491: ecx_cln_debug_pub.Add('Collaboration ID passed as '||p_coll_id,1);
3492: END IF;
3493:
3494: IF (p_coll_id is NULL) THEN
3495: IF (l_Debug_Level <= 1) THEN

Line 3496: ecx_cln_debug_pub.Add('Before SQL Query 1 : Retrieving Collaboration ID using CLN_COLL_HIST_HDR',1);

3492: END IF;
3493:
3494: IF (p_coll_id is NULL) THEN
3495: IF (l_Debug_Level <= 1) THEN
3496: ecx_cln_debug_pub.Add('Before SQL Query 1 : Retrieving Collaboration ID using CLN_COLL_HIST_HDR',1);
3497: END IF;
3498:
3499: BEGIN
3500: SELECT COLLABORATION_ID INTO l_coll_id

Line 3520: ecx_cln_debug_pub.Add('Before SQL Query 2 : Retrieving Collaboration ID using CLN_COLL_HIST_HDR',1);

3516: p_unique4 IS NOT NULL OR
3517: p_unique5 IS NOT NULL THEN
3518:
3519: IF (l_Debug_Level <= 1) THEN
3520: ecx_cln_debug_pub.Add('Before SQL Query 2 : Retrieving Collaboration ID using CLN_COLL_HIST_HDR',1);
3521: END IF;
3522:
3523: BEGIN
3524: SELECT COLLABORATION_ID INTO l_coll_id

Line 3535: ecx_cln_debug_pub.Add('Unable to find the collaboration in Collaboration History - Header Table',1);

3531:
3532: EXCEPTION
3533: WHEN NO_DATA_FOUND THEN
3534: IF (l_Debug_Level <= 1) THEN
3535: ecx_cln_debug_pub.Add('Unable to find the collaboration in Collaboration History - Header Table',1);
3536: END IF;
3537:
3538: FND_MESSAGE.SET_NAME('CLN','CLN_CH_COLLABORATION_NOT_FOUND');
3539: x_msg_data := FND_MESSAGE.GET;

Line 3549: cln_debug_pub.Add('Unique IDs from 1 to 5 are NULL',1);

3545: RAISE FND_API.G_EXC_ERROR;
3546: END;
3547: ELSE
3548: IF (l_Debug_Level <= 1) THEN
3549: cln_debug_pub.Add('Unique IDs from 1 to 5 are NULL',1);
3550: END IF;
3551: END IF;
3552:
3553: END;

Line 3556: ecx_cln_debug_pub.Add('After SQL Query : Retrieving Collaboration ID',1);

3552:
3553: END;
3554: IF (l_Debug_Level <= 1) THEN
3555: IF (l_Debug_Level <= 1) THEN
3556: ecx_cln_debug_pub.Add('After SQL Query : Retrieving Collaboration ID',1);
3557: ecx_cln_debug_pub.Add('Retrieved Collaboration ID' || l_coll_id,1);
3558: END IF;
3559:
3560: END IF;

Line 3557: ecx_cln_debug_pub.Add('Retrieved Collaboration ID' || l_coll_id,1);

3553: END;
3554: IF (l_Debug_Level <= 1) THEN
3555: IF (l_Debug_Level <= 1) THEN
3556: ecx_cln_debug_pub.Add('After SQL Query : Retrieving Collaboration ID',1);
3557: ecx_cln_debug_pub.Add('Retrieved Collaboration ID' || l_coll_id,1);
3558: END IF;
3559:
3560: END IF;
3561:

Line 3567: ecx_cln_debug_pub.Add('--- Before SQL Query : Retrieving Collaboration Detail ID ----',1);

3563: l_coll_id := p_coll_id;
3564: END IF;
3565:
3566: IF (l_Debug_Level <= 1) THEN
3567: ecx_cln_debug_pub.Add('--- Before SQL Query : Retrieving Collaboration Detail ID ----',1);
3568: END IF;
3569:
3570: SELECT max(COLLABORATION_DTL_ID) INTO x_dtl_coll_id
3571: FROM CLN_COLL_HIST_DTL

Line 3577: ecx_cln_debug_pub.Add(' ---- After SQL Query : Retrieving Collaboration Detail ID ----',1);

3573: AND COLLABORATION_DOCUMENT_TYPE = p_doc_type
3574: AND DOCUMENT_DIRECTION = p_doc_direction
3575: AND COLLABORATION_POINT = p_coll_point;
3576: IF (l_Debug_Level <= 1) THEN
3577: ecx_cln_debug_pub.Add(' ---- After SQL Query : Retrieving Collaboration Detail ID ----',1);
3578: ecx_cln_debug_pub.Add(l_msg_data,1);
3579: END IF;
3580:
3581: IF (l_Debug_Level <= 2) THEN

Line 3578: ecx_cln_debug_pub.Add(l_msg_data,1);

3574: AND DOCUMENT_DIRECTION = p_doc_direction
3575: AND COLLABORATION_POINT = p_coll_point;
3576: IF (l_Debug_Level <= 1) THEN
3577: ecx_cln_debug_pub.Add(' ---- After SQL Query : Retrieving Collaboration Detail ID ----',1);
3578: ecx_cln_debug_pub.Add(l_msg_data,1);
3579: END IF;
3580:
3581: IF (l_Debug_Level <= 2) THEN
3582: ecx_cln_debug_pub.Add('------ Exiting FIND_COLLABORATION_DETAIL_ID API ------',2);

Line 3582: ecx_cln_debug_pub.Add('------ Exiting FIND_COLLABORATION_DETAIL_ID API ------',2);

3578: ecx_cln_debug_pub.Add(l_msg_data,1);
3579: END IF;
3580:
3581: IF (l_Debug_Level <= 2) THEN
3582: ecx_cln_debug_pub.Add('------ Exiting FIND_COLLABORATION_DETAIL_ID API ------',2);
3583: END IF;
3584:
3585:
3586:

Line 3599: ecx_cln_debug_pub.Add(l_msg_data,4);

3595: FND_MESSAGE.SET_TOKEN('ERRORMSG',l_error_msg);
3596: x_msg_data := FND_MESSAGE.GET;
3597: l_msg_data :='Collaboration detail id could not be found for the parameters passed :'||l_error_code||' : '||l_error_msg;
3598: IF (l_Debug_Level <= 4) THEN
3599: ecx_cln_debug_pub.Add(l_msg_data,4);
3600: ecx_cln_debug_pub.Add('Error in FIND_COLLABORATION_DETAIL_ID API',2);
3601: ecx_cln_debug_pub.Add('------ Exiting FIND_COLLABORATION_DETAIL_ID API ------',2);
3602: END IF;
3603:

Line 3600: ecx_cln_debug_pub.Add('Error in FIND_COLLABORATION_DETAIL_ID API',2);

3596: x_msg_data := FND_MESSAGE.GET;
3597: l_msg_data :='Collaboration detail id could not be found for the parameters passed :'||l_error_code||' : '||l_error_msg;
3598: IF (l_Debug_Level <= 4) THEN
3599: ecx_cln_debug_pub.Add(l_msg_data,4);
3600: ecx_cln_debug_pub.Add('Error in FIND_COLLABORATION_DETAIL_ID API',2);
3601: ecx_cln_debug_pub.Add('------ Exiting FIND_COLLABORATION_DETAIL_ID API ------',2);
3602: END IF;
3603:
3604:

Line 3601: ecx_cln_debug_pub.Add('------ Exiting FIND_COLLABORATION_DETAIL_ID API ------',2);

3597: l_msg_data :='Collaboration detail id could not be found for the parameters passed :'||l_error_code||' : '||l_error_msg;
3598: IF (l_Debug_Level <= 4) THEN
3599: ecx_cln_debug_pub.Add(l_msg_data,4);
3600: ecx_cln_debug_pub.Add('Error in FIND_COLLABORATION_DETAIL_ID API',2);
3601: ecx_cln_debug_pub.Add('------ Exiting FIND_COLLABORATION_DETAIL_ID API ------',2);
3602: END IF;
3603:
3604:
3605:

Line 3616: ecx_cln_debug_pub.Add(x_msg_data,6);

3612: FND_MESSAGE.SET_TOKEN('ERRORMSG',l_error_msg);
3613: x_msg_data := FND_MESSAGE.GET;
3614: l_msg_data :='Collaboration detail id could not be found for the parameters passed :'||l_error_code||' : '||l_error_msg;
3615: IF (l_Debug_Level <= 5) THEN
3616: ecx_cln_debug_pub.Add(x_msg_data,6);
3617: ecx_cln_debug_pub.Add('Error in FIND_COLLABORATION_DETAIL_ID API',2);
3618: ecx_cln_debug_pub.Add('------ Exiting FIND_COLLABORATION_DETAIL_ID API ------',2);
3619: END IF;
3620:

Line 3617: ecx_cln_debug_pub.Add('Error in FIND_COLLABORATION_DETAIL_ID API',2);

3613: x_msg_data := FND_MESSAGE.GET;
3614: l_msg_data :='Collaboration detail id could not be found for the parameters passed :'||l_error_code||' : '||l_error_msg;
3615: IF (l_Debug_Level <= 5) THEN
3616: ecx_cln_debug_pub.Add(x_msg_data,6);
3617: ecx_cln_debug_pub.Add('Error in FIND_COLLABORATION_DETAIL_ID API',2);
3618: ecx_cln_debug_pub.Add('------ Exiting FIND_COLLABORATION_DETAIL_ID API ------',2);
3619: END IF;
3620:
3621:

Line 3618: ecx_cln_debug_pub.Add('------ Exiting FIND_COLLABORATION_DETAIL_ID API ------',2);

3614: l_msg_data :='Collaboration detail id could not be found for the parameters passed :'||l_error_code||' : '||l_error_msg;
3615: IF (l_Debug_Level <= 5) THEN
3616: ecx_cln_debug_pub.Add(x_msg_data,6);
3617: ecx_cln_debug_pub.Add('Error in FIND_COLLABORATION_DETAIL_ID API',2);
3618: ecx_cln_debug_pub.Add('------ Exiting FIND_COLLABORATION_DETAIL_ID API ------',2);
3619: END IF;
3620:
3621:
3622: END FIND_COLLABORATION_DETAIL_ID;

Line 3688: --l_debug_mode :=ecx_cln_debug_pub.Set_Debug_Mode('FILE');

3684:
3685: BEGIN
3686:
3687: -- Sets the debug mode to be FILE
3688: --l_debug_mode :=ecx_cln_debug_pub.Set_Debug_Mode('FILE');
3689:
3690: IF (l_Debug_Level <= 2) THEN
3691: ecx_cln_debug_pub.Add('------ Entering GET_TRADING_PARTNER_DETAILS API ------ ',2);
3692: END IF;

Line 3691: ecx_cln_debug_pub.Add('------ Entering GET_TRADING_PARTNER_DETAILS API ------ ',2);

3687: -- Sets the debug mode to be FILE
3688: --l_debug_mode :=ecx_cln_debug_pub.Set_Debug_Mode('FILE');
3689:
3690: IF (l_Debug_Level <= 2) THEN
3691: ecx_cln_debug_pub.Add('------ Entering GET_TRADING_PARTNER_DETAILS API ------ ',2);
3692: END IF;
3693:
3694:
3695: -- Initialize API return status to success

Line 3700: ecx_cln_debug_pub.Add('==========Parameters Received=============',1);

3696: x_return_status := FND_API.G_RET_STS_SUCCESS;
3697:
3698: -- get the paramaters passed
3699: IF (l_Debug_Level <= 1) THEN
3700: ecx_cln_debug_pub.Add('==========Parameters Received=============',1);
3701: ecx_cln_debug_pub.Add('XMLG INTERNAL CONTROL NO ----- >>>'||p_xmlg_internal_control_number,1);
3702: ecx_cln_debug_pub.Add('XMLG MESSAGE ID ----- >>>'||p_xmlg_msg_id,1);
3703: ecx_cln_debug_pub.Add('XMLG EXTERNAL TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);
3704: ecx_cln_debug_pub.Add('XMLG EXTERNAL TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);

Line 3701: ecx_cln_debug_pub.Add('XMLG INTERNAL CONTROL NO ----- >>>'||p_xmlg_internal_control_number,1);

3697:
3698: -- get the paramaters passed
3699: IF (l_Debug_Level <= 1) THEN
3700: ecx_cln_debug_pub.Add('==========Parameters Received=============',1);
3701: ecx_cln_debug_pub.Add('XMLG INTERNAL CONTROL NO ----- >>>'||p_xmlg_internal_control_number,1);
3702: ecx_cln_debug_pub.Add('XMLG MESSAGE ID ----- >>>'||p_xmlg_msg_id,1);
3703: ecx_cln_debug_pub.Add('XMLG EXTERNAL TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);
3704: ecx_cln_debug_pub.Add('XMLG EXTERNAL TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);
3705: ecx_cln_debug_pub.Add('XMLG INTERNAL TRANSACTION TYPE ----- >>>'||p_xmlg_int_transaction_type,1);

Line 3702: ecx_cln_debug_pub.Add('XMLG MESSAGE ID ----- >>>'||p_xmlg_msg_id,1);

3698: -- get the paramaters passed
3699: IF (l_Debug_Level <= 1) THEN
3700: ecx_cln_debug_pub.Add('==========Parameters Received=============',1);
3701: ecx_cln_debug_pub.Add('XMLG INTERNAL CONTROL NO ----- >>>'||p_xmlg_internal_control_number,1);
3702: ecx_cln_debug_pub.Add('XMLG MESSAGE ID ----- >>>'||p_xmlg_msg_id,1);
3703: ecx_cln_debug_pub.Add('XMLG EXTERNAL TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);
3704: ecx_cln_debug_pub.Add('XMLG EXTERNAL TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);
3705: ecx_cln_debug_pub.Add('XMLG INTERNAL TRANSACTION TYPE ----- >>>'||p_xmlg_int_transaction_type,1);
3706: ecx_cln_debug_pub.Add('XMLG INTERNAL TRANSACTION SUBTYPE ----- >>>'||p_xmlg_int_transaction_subtype,1);

Line 3703: ecx_cln_debug_pub.Add('XMLG EXTERNAL TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);

3699: IF (l_Debug_Level <= 1) THEN
3700: ecx_cln_debug_pub.Add('==========Parameters Received=============',1);
3701: ecx_cln_debug_pub.Add('XMLG INTERNAL CONTROL NO ----- >>>'||p_xmlg_internal_control_number,1);
3702: ecx_cln_debug_pub.Add('XMLG MESSAGE ID ----- >>>'||p_xmlg_msg_id,1);
3703: ecx_cln_debug_pub.Add('XMLG EXTERNAL TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);
3704: ecx_cln_debug_pub.Add('XMLG EXTERNAL TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);
3705: ecx_cln_debug_pub.Add('XMLG INTERNAL TRANSACTION TYPE ----- >>>'||p_xmlg_int_transaction_type,1);
3706: ecx_cln_debug_pub.Add('XMLG INTERNAL TRANSACTION SUBTYPE ----- >>>'||p_xmlg_int_transaction_subtype,1);
3707: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);

Line 3704: ecx_cln_debug_pub.Add('XMLG EXTERNAL TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);

3700: ecx_cln_debug_pub.Add('==========Parameters Received=============',1);
3701: ecx_cln_debug_pub.Add('XMLG INTERNAL CONTROL NO ----- >>>'||p_xmlg_internal_control_number,1);
3702: ecx_cln_debug_pub.Add('XMLG MESSAGE ID ----- >>>'||p_xmlg_msg_id,1);
3703: ecx_cln_debug_pub.Add('XMLG EXTERNAL TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);
3704: ecx_cln_debug_pub.Add('XMLG EXTERNAL TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);
3705: ecx_cln_debug_pub.Add('XMLG INTERNAL TRANSACTION TYPE ----- >>>'||p_xmlg_int_transaction_type,1);
3706: ecx_cln_debug_pub.Add('XMLG INTERNAL TRANSACTION SUBTYPE ----- >>>'||p_xmlg_int_transaction_subtype,1);
3707: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);
3708: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_dir,1);

Line 3705: ecx_cln_debug_pub.Add('XMLG INTERNAL TRANSACTION TYPE ----- >>>'||p_xmlg_int_transaction_type,1);

3701: ecx_cln_debug_pub.Add('XMLG INTERNAL CONTROL NO ----- >>>'||p_xmlg_internal_control_number,1);
3702: ecx_cln_debug_pub.Add('XMLG MESSAGE ID ----- >>>'||p_xmlg_msg_id,1);
3703: ecx_cln_debug_pub.Add('XMLG EXTERNAL TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);
3704: ecx_cln_debug_pub.Add('XMLG EXTERNAL TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);
3705: ecx_cln_debug_pub.Add('XMLG INTERNAL TRANSACTION TYPE ----- >>>'||p_xmlg_int_transaction_type,1);
3706: ecx_cln_debug_pub.Add('XMLG INTERNAL TRANSACTION SUBTYPE ----- >>>'||p_xmlg_int_transaction_subtype,1);
3707: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);
3708: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_dir,1);
3709: ecx_cln_debug_pub.Add('TRADING PARTNER TYPE ----- >>>'||p_tr_partner_type,1);

Line 3706: ecx_cln_debug_pub.Add('XMLG INTERNAL TRANSACTION SUBTYPE ----- >>>'||p_xmlg_int_transaction_subtype,1);

3702: ecx_cln_debug_pub.Add('XMLG MESSAGE ID ----- >>>'||p_xmlg_msg_id,1);
3703: ecx_cln_debug_pub.Add('XMLG EXTERNAL TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);
3704: ecx_cln_debug_pub.Add('XMLG EXTERNAL TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);
3705: ecx_cln_debug_pub.Add('XMLG INTERNAL TRANSACTION TYPE ----- >>>'||p_xmlg_int_transaction_type,1);
3706: ecx_cln_debug_pub.Add('XMLG INTERNAL TRANSACTION SUBTYPE ----- >>>'||p_xmlg_int_transaction_subtype,1);
3707: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);
3708: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_dir,1);
3709: ecx_cln_debug_pub.Add('TRADING PARTNER TYPE ----- >>>'||p_tr_partner_type,1);
3710: ecx_cln_debug_pub.Add('TRADING PARTNER ID ----- >>>'||p_tr_partner_id,1);

Line 3707: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);

3703: ecx_cln_debug_pub.Add('XMLG EXTERNAL TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);
3704: ecx_cln_debug_pub.Add('XMLG EXTERNAL TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);
3705: ecx_cln_debug_pub.Add('XMLG INTERNAL TRANSACTION TYPE ----- >>>'||p_xmlg_int_transaction_type,1);
3706: ecx_cln_debug_pub.Add('XMLG INTERNAL TRANSACTION SUBTYPE ----- >>>'||p_xmlg_int_transaction_subtype,1);
3707: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);
3708: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_dir,1);
3709: ecx_cln_debug_pub.Add('TRADING PARTNER TYPE ----- >>>'||p_tr_partner_type,1);
3710: ecx_cln_debug_pub.Add('TRADING PARTNER ID ----- >>>'||p_tr_partner_id,1);
3711: ecx_cln_debug_pub.Add('TRADING PARTNER SITE ----- >>>'||p_tr_partner_site,1);

Line 3708: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_dir,1);

3704: ecx_cln_debug_pub.Add('XMLG EXTERNAL TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);
3705: ecx_cln_debug_pub.Add('XMLG INTERNAL TRANSACTION TYPE ----- >>>'||p_xmlg_int_transaction_type,1);
3706: ecx_cln_debug_pub.Add('XMLG INTERNAL TRANSACTION SUBTYPE ----- >>>'||p_xmlg_int_transaction_subtype,1);
3707: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);
3708: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_dir,1);
3709: ecx_cln_debug_pub.Add('TRADING PARTNER TYPE ----- >>>'||p_tr_partner_type,1);
3710: ecx_cln_debug_pub.Add('TRADING PARTNER ID ----- >>>'||p_tr_partner_id,1);
3711: ecx_cln_debug_pub.Add('TRADING PARTNER SITE ----- >>>'||p_tr_partner_site,1);
3712: ecx_cln_debug_pub.Add('SENDER COMPONENT ----- >>>'||p_sender_component,1);

Line 3709: ecx_cln_debug_pub.Add('TRADING PARTNER TYPE ----- >>>'||p_tr_partner_type,1);

3705: ecx_cln_debug_pub.Add('XMLG INTERNAL TRANSACTION TYPE ----- >>>'||p_xmlg_int_transaction_type,1);
3706: ecx_cln_debug_pub.Add('XMLG INTERNAL TRANSACTION SUBTYPE ----- >>>'||p_xmlg_int_transaction_subtype,1);
3707: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);
3708: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_dir,1);
3709: ecx_cln_debug_pub.Add('TRADING PARTNER TYPE ----- >>>'||p_tr_partner_type,1);
3710: ecx_cln_debug_pub.Add('TRADING PARTNER ID ----- >>>'||p_tr_partner_id,1);
3711: ecx_cln_debug_pub.Add('TRADING PARTNER SITE ----- >>>'||p_tr_partner_site,1);
3712: ecx_cln_debug_pub.Add('SENDER COMPONENT ----- >>>'||p_sender_component,1);
3713: ecx_cln_debug_pub.Add('XMLG EVENT KEY ----- >>>'||p_xml_event_key,1);

Line 3710: ecx_cln_debug_pub.Add('TRADING PARTNER ID ----- >>>'||p_tr_partner_id,1);

3706: ecx_cln_debug_pub.Add('XMLG INTERNAL TRANSACTION SUBTYPE ----- >>>'||p_xmlg_int_transaction_subtype,1);
3707: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);
3708: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_dir,1);
3709: ecx_cln_debug_pub.Add('TRADING PARTNER TYPE ----- >>>'||p_tr_partner_type,1);
3710: ecx_cln_debug_pub.Add('TRADING PARTNER ID ----- >>>'||p_tr_partner_id,1);
3711: ecx_cln_debug_pub.Add('TRADING PARTNER SITE ----- >>>'||p_tr_partner_site,1);
3712: ecx_cln_debug_pub.Add('SENDER COMPONENT ----- >>>'||p_sender_component,1);
3713: ecx_cln_debug_pub.Add('XMLG EVENT KEY ----- >>>'||p_xml_event_key,1);
3714: ecx_cln_debug_pub.Add('Collab Standard ----- >>>'||p_collaboration_standard,1);

Line 3711: ecx_cln_debug_pub.Add('TRADING PARTNER SITE ----- >>>'||p_tr_partner_site,1);

3707: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);
3708: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_dir,1);
3709: ecx_cln_debug_pub.Add('TRADING PARTNER TYPE ----- >>>'||p_tr_partner_type,1);
3710: ecx_cln_debug_pub.Add('TRADING PARTNER ID ----- >>>'||p_tr_partner_id,1);
3711: ecx_cln_debug_pub.Add('TRADING PARTNER SITE ----- >>>'||p_tr_partner_site,1);
3712: ecx_cln_debug_pub.Add('SENDER COMPONENT ----- >>>'||p_sender_component,1);
3713: ecx_cln_debug_pub.Add('XMLG EVENT KEY ----- >>>'||p_xml_event_key,1);
3714: ecx_cln_debug_pub.Add('Collab Standard ----- >>>'||p_collaboration_standard,1);
3715: ecx_cln_debug_pub.Add('===========================================',1);

Line 3712: ecx_cln_debug_pub.Add('SENDER COMPONENT ----- >>>'||p_sender_component,1);

3708: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_dir,1);
3709: ecx_cln_debug_pub.Add('TRADING PARTNER TYPE ----- >>>'||p_tr_partner_type,1);
3710: ecx_cln_debug_pub.Add('TRADING PARTNER ID ----- >>>'||p_tr_partner_id,1);
3711: ecx_cln_debug_pub.Add('TRADING PARTNER SITE ----- >>>'||p_tr_partner_site,1);
3712: ecx_cln_debug_pub.Add('SENDER COMPONENT ----- >>>'||p_sender_component,1);
3713: ecx_cln_debug_pub.Add('XMLG EVENT KEY ----- >>>'||p_xml_event_key,1);
3714: ecx_cln_debug_pub.Add('Collab Standard ----- >>>'||p_collaboration_standard,1);
3715: ecx_cln_debug_pub.Add('===========================================',1);
3716: END IF;

Line 3713: ecx_cln_debug_pub.Add('XMLG EVENT KEY ----- >>>'||p_xml_event_key,1);

3709: ecx_cln_debug_pub.Add('TRADING PARTNER TYPE ----- >>>'||p_tr_partner_type,1);
3710: ecx_cln_debug_pub.Add('TRADING PARTNER ID ----- >>>'||p_tr_partner_id,1);
3711: ecx_cln_debug_pub.Add('TRADING PARTNER SITE ----- >>>'||p_tr_partner_site,1);
3712: ecx_cln_debug_pub.Add('SENDER COMPONENT ----- >>>'||p_sender_component,1);
3713: ecx_cln_debug_pub.Add('XMLG EVENT KEY ----- >>>'||p_xml_event_key,1);
3714: ecx_cln_debug_pub.Add('Collab Standard ----- >>>'||p_collaboration_standard,1);
3715: ecx_cln_debug_pub.Add('===========================================',1);
3716: END IF;
3717:

Line 3714: ecx_cln_debug_pub.Add('Collab Standard ----- >>>'||p_collaboration_standard,1);

3710: ecx_cln_debug_pub.Add('TRADING PARTNER ID ----- >>>'||p_tr_partner_id,1);
3711: ecx_cln_debug_pub.Add('TRADING PARTNER SITE ----- >>>'||p_tr_partner_site,1);
3712: ecx_cln_debug_pub.Add('SENDER COMPONENT ----- >>>'||p_sender_component,1);
3713: ecx_cln_debug_pub.Add('XMLG EVENT KEY ----- >>>'||p_xml_event_key,1);
3714: ecx_cln_debug_pub.Add('Collab Standard ----- >>>'||p_collaboration_standard,1);
3715: ecx_cln_debug_pub.Add('===========================================',1);
3716: END IF;
3717:
3718:

Line 3715: ecx_cln_debug_pub.Add('===========================================',1);

3711: ecx_cln_debug_pub.Add('TRADING PARTNER SITE ----- >>>'||p_tr_partner_site,1);
3712: ecx_cln_debug_pub.Add('SENDER COMPONENT ----- >>>'||p_sender_component,1);
3713: ecx_cln_debug_pub.Add('XMLG EVENT KEY ----- >>>'||p_xml_event_key,1);
3714: ecx_cln_debug_pub.Add('Collab Standard ----- >>>'||p_collaboration_standard,1);
3715: ecx_cln_debug_pub.Add('===========================================',1);
3716: END IF;
3717:
3718:
3719:

Line 3742: ecx_cln_debug_pub.Add('-- Before SQL query to find the trading partner set up from ECX_DOCLOGS --',1);

3738: ) THEN
3739:
3740: BEGIN
3741: IF (l_Debug_Level <= 1) THEN
3742: ecx_cln_debug_pub.Add('-- Before SQL query to find the trading partner set up from ECX_DOCLOGS --',1);
3743: END IF;
3744:
3745:
3746: IF (p_xmlg_msg_id is not null ) THEN

Line 3796: ecx_cln_debug_pub.Add('-- After SQL query to find the trading partner set up from ECX_DOCLOGS --',1);

3792: AND doclogs.transaction_subtype = ecxproc.EXT_SUBTYPE
3793: AND doclogs.document_number = p_xmlg_document_id;
3794: END IF;
3795: IF (l_Debug_Level <= 1) THEN
3796: ecx_cln_debug_pub.Add('-- After SQL query to find the trading partner set up from ECX_DOCLOGS --',1);
3797: END IF;
3798:
3799:
3800: EXCEPTION

Line 3804: ecx_cln_debug_pub.Add('Unable to find the set up details for the trading partner',1);

3800: EXCEPTION
3801: WHEN NO_DATA_FOUND THEN
3802: FND_MESSAGE.SET_NAME('CLN','CLN_CH_TP_DETAILS_NOT_FOUND');
3803: x_msg_data := FND_MESSAGE.GET;
3804: ecx_cln_debug_pub.Add('Unable to find the set up details for the trading partner',1);
3805: WHEN TOO_MANY_ROWS THEN
3806: FND_MESSAGE.SET_NAME('CLN','CLN_CH_TP_DETAILS_NOT_FOUND');
3807: x_msg_data := FND_MESSAGE.GET;
3808: ecx_cln_debug_pub.Add('More then one row found for the same trading partner set up',1);

Line 3808: ecx_cln_debug_pub.Add('More then one row found for the same trading partner set up',1);

3804: ecx_cln_debug_pub.Add('Unable to find the set up details for the trading partner',1);
3805: WHEN TOO_MANY_ROWS THEN
3806: FND_MESSAGE.SET_NAME('CLN','CLN_CH_TP_DETAILS_NOT_FOUND');
3807: x_msg_data := FND_MESSAGE.GET;
3808: ecx_cln_debug_pub.Add('More then one row found for the same trading partner set up',1);
3809: END;
3810:
3811: IF (l_Debug_Level <= 1) THEN
3812: ecx_cln_debug_pub.Add('==========Parameters Received From ECX_DOCLOG=============',1);

Line 3812: ecx_cln_debug_pub.Add('==========Parameters Received From ECX_DOCLOG=============',1);

3808: ecx_cln_debug_pub.Add('More then one row found for the same trading partner set up',1);
3809: END;
3810:
3811: IF (l_Debug_Level <= 1) THEN
3812: ecx_cln_debug_pub.Add('==========Parameters Received From ECX_DOCLOG=============',1);
3813: ecx_cln_debug_pub.Add('XMLG INTERNAL CONTROL NO ----- >>>'||l_xmlg_internal_control_number,1);
3814: ecx_cln_debug_pub.Add('XMLG MESSAGE ID ----- >>>'||l_xmlg_msg_id,1);
3815: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION TYPE ----- >>>'||l_xmlg_transaction_type,1);
3816: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUBTYPE ----- >>>'||l_xmlg_transaction_subtype,1);

Line 3813: ecx_cln_debug_pub.Add('XMLG INTERNAL CONTROL NO ----- >>>'||l_xmlg_internal_control_number,1);

3809: END;
3810:
3811: IF (l_Debug_Level <= 1) THEN
3812: ecx_cln_debug_pub.Add('==========Parameters Received From ECX_DOCLOG=============',1);
3813: ecx_cln_debug_pub.Add('XMLG INTERNAL CONTROL NO ----- >>>'||l_xmlg_internal_control_number,1);
3814: ecx_cln_debug_pub.Add('XMLG MESSAGE ID ----- >>>'||l_xmlg_msg_id,1);
3815: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION TYPE ----- >>>'||l_xmlg_transaction_type,1);
3816: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUBTYPE ----- >>>'||l_xmlg_transaction_subtype,1);
3817: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||l_xmlg_document_id,1);

Line 3814: ecx_cln_debug_pub.Add('XMLG MESSAGE ID ----- >>>'||l_xmlg_msg_id,1);

3810:
3811: IF (l_Debug_Level <= 1) THEN
3812: ecx_cln_debug_pub.Add('==========Parameters Received From ECX_DOCLOG=============',1);
3813: ecx_cln_debug_pub.Add('XMLG INTERNAL CONTROL NO ----- >>>'||l_xmlg_internal_control_number,1);
3814: ecx_cln_debug_pub.Add('XMLG MESSAGE ID ----- >>>'||l_xmlg_msg_id,1);
3815: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION TYPE ----- >>>'||l_xmlg_transaction_type,1);
3816: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUBTYPE ----- >>>'||l_xmlg_transaction_subtype,1);
3817: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||l_xmlg_document_id,1);
3818: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||l_doc_dir,1);

Line 3815: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION TYPE ----- >>>'||l_xmlg_transaction_type,1);

3811: IF (l_Debug_Level <= 1) THEN
3812: ecx_cln_debug_pub.Add('==========Parameters Received From ECX_DOCLOG=============',1);
3813: ecx_cln_debug_pub.Add('XMLG INTERNAL CONTROL NO ----- >>>'||l_xmlg_internal_control_number,1);
3814: ecx_cln_debug_pub.Add('XMLG MESSAGE ID ----- >>>'||l_xmlg_msg_id,1);
3815: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION TYPE ----- >>>'||l_xmlg_transaction_type,1);
3816: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUBTYPE ----- >>>'||l_xmlg_transaction_subtype,1);
3817: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||l_xmlg_document_id,1);
3818: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||l_doc_dir,1);
3819: ecx_cln_debug_pub.Add('TRADING PARTNER TYPE ----- >>>'||l_tr_partner_type,1);

Line 3816: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUBTYPE ----- >>>'||l_xmlg_transaction_subtype,1);

3812: ecx_cln_debug_pub.Add('==========Parameters Received From ECX_DOCLOG=============',1);
3813: ecx_cln_debug_pub.Add('XMLG INTERNAL CONTROL NO ----- >>>'||l_xmlg_internal_control_number,1);
3814: ecx_cln_debug_pub.Add('XMLG MESSAGE ID ----- >>>'||l_xmlg_msg_id,1);
3815: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION TYPE ----- >>>'||l_xmlg_transaction_type,1);
3816: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUBTYPE ----- >>>'||l_xmlg_transaction_subtype,1);
3817: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||l_xmlg_document_id,1);
3818: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||l_doc_dir,1);
3819: ecx_cln_debug_pub.Add('TRADING PARTNER TYPE ----- >>>'||l_tr_partner_type,1);
3820: ecx_cln_debug_pub.Add('TRADING PARTNER ID ----- >>>'||l_tr_partner_id,1);

Line 3817: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||l_xmlg_document_id,1);

3813: ecx_cln_debug_pub.Add('XMLG INTERNAL CONTROL NO ----- >>>'||l_xmlg_internal_control_number,1);
3814: ecx_cln_debug_pub.Add('XMLG MESSAGE ID ----- >>>'||l_xmlg_msg_id,1);
3815: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION TYPE ----- >>>'||l_xmlg_transaction_type,1);
3816: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUBTYPE ----- >>>'||l_xmlg_transaction_subtype,1);
3817: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||l_xmlg_document_id,1);
3818: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||l_doc_dir,1);
3819: ecx_cln_debug_pub.Add('TRADING PARTNER TYPE ----- >>>'||l_tr_partner_type,1);
3820: ecx_cln_debug_pub.Add('TRADING PARTNER ID ----- >>>'||l_tr_partner_id,1);
3821: ecx_cln_debug_pub.Add('TRADING PARTNER SITE ----- >>>'||l_tr_partner_site,1);

Line 3818: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||l_doc_dir,1);

3814: ecx_cln_debug_pub.Add('XMLG MESSAGE ID ----- >>>'||l_xmlg_msg_id,1);
3815: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION TYPE ----- >>>'||l_xmlg_transaction_type,1);
3816: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUBTYPE ----- >>>'||l_xmlg_transaction_subtype,1);
3817: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||l_xmlg_document_id,1);
3818: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||l_doc_dir,1);
3819: ecx_cln_debug_pub.Add('TRADING PARTNER TYPE ----- >>>'||l_tr_partner_type,1);
3820: ecx_cln_debug_pub.Add('TRADING PARTNER ID ----- >>>'||l_tr_partner_id,1);
3821: ecx_cln_debug_pub.Add('TRADING PARTNER SITE ----- >>>'||l_tr_partner_site,1);
3822: ecx_cln_debug_pub.Add('SENDER COMPONENT ----- >>>'||l_sender_component,1);

Line 3819: ecx_cln_debug_pub.Add('TRADING PARTNER TYPE ----- >>>'||l_tr_partner_type,1);

3815: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION TYPE ----- >>>'||l_xmlg_transaction_type,1);
3816: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUBTYPE ----- >>>'||l_xmlg_transaction_subtype,1);
3817: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||l_xmlg_document_id,1);
3818: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||l_doc_dir,1);
3819: ecx_cln_debug_pub.Add('TRADING PARTNER TYPE ----- >>>'||l_tr_partner_type,1);
3820: ecx_cln_debug_pub.Add('TRADING PARTNER ID ----- >>>'||l_tr_partner_id,1);
3821: ecx_cln_debug_pub.Add('TRADING PARTNER SITE ----- >>>'||l_tr_partner_site,1);
3822: ecx_cln_debug_pub.Add('SENDER COMPONENT ----- >>>'||l_sender_component,1);
3823: ecx_cln_debug_pub.Add('XMLG MESSAGE STANDARD ID ----- >>>'||l_xmlg_msg_standard,1);

Line 3820: ecx_cln_debug_pub.Add('TRADING PARTNER ID ----- >>>'||l_tr_partner_id,1);

3816: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUBTYPE ----- >>>'||l_xmlg_transaction_subtype,1);
3817: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||l_xmlg_document_id,1);
3818: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||l_doc_dir,1);
3819: ecx_cln_debug_pub.Add('TRADING PARTNER TYPE ----- >>>'||l_tr_partner_type,1);
3820: ecx_cln_debug_pub.Add('TRADING PARTNER ID ----- >>>'||l_tr_partner_id,1);
3821: ecx_cln_debug_pub.Add('TRADING PARTNER SITE ----- >>>'||l_tr_partner_site,1);
3822: ecx_cln_debug_pub.Add('SENDER COMPONENT ----- >>>'||l_sender_component,1);
3823: ecx_cln_debug_pub.Add('XMLG MESSAGE STANDARD ID ----- >>>'||l_xmlg_msg_standard,1);
3824: ecx_cln_debug_pub.Add('XMLG EVENT KEY ----- >>>'||l_xml_event_key,1);

Line 3821: ecx_cln_debug_pub.Add('TRADING PARTNER SITE ----- >>>'||l_tr_partner_site,1);

3817: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||l_xmlg_document_id,1);
3818: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||l_doc_dir,1);
3819: ecx_cln_debug_pub.Add('TRADING PARTNER TYPE ----- >>>'||l_tr_partner_type,1);
3820: ecx_cln_debug_pub.Add('TRADING PARTNER ID ----- >>>'||l_tr_partner_id,1);
3821: ecx_cln_debug_pub.Add('TRADING PARTNER SITE ----- >>>'||l_tr_partner_site,1);
3822: ecx_cln_debug_pub.Add('SENDER COMPONENT ----- >>>'||l_sender_component,1);
3823: ecx_cln_debug_pub.Add('XMLG MESSAGE STANDARD ID ----- >>>'||l_xmlg_msg_standard,1);
3824: ecx_cln_debug_pub.Add('XMLG EVENT KEY ----- >>>'||l_xml_event_key,1);
3825: ecx_cln_debug_pub.Add('===========================================',1);

Line 3822: ecx_cln_debug_pub.Add('SENDER COMPONENT ----- >>>'||l_sender_component,1);

3818: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||l_doc_dir,1);
3819: ecx_cln_debug_pub.Add('TRADING PARTNER TYPE ----- >>>'||l_tr_partner_type,1);
3820: ecx_cln_debug_pub.Add('TRADING PARTNER ID ----- >>>'||l_tr_partner_id,1);
3821: ecx_cln_debug_pub.Add('TRADING PARTNER SITE ----- >>>'||l_tr_partner_site,1);
3822: ecx_cln_debug_pub.Add('SENDER COMPONENT ----- >>>'||l_sender_component,1);
3823: ecx_cln_debug_pub.Add('XMLG MESSAGE STANDARD ID ----- >>>'||l_xmlg_msg_standard,1);
3824: ecx_cln_debug_pub.Add('XMLG EVENT KEY ----- >>>'||l_xml_event_key,1);
3825: ecx_cln_debug_pub.Add('===========================================',1);
3826: END IF;

Line 3823: ecx_cln_debug_pub.Add('XMLG MESSAGE STANDARD ID ----- >>>'||l_xmlg_msg_standard,1);

3819: ecx_cln_debug_pub.Add('TRADING PARTNER TYPE ----- >>>'||l_tr_partner_type,1);
3820: ecx_cln_debug_pub.Add('TRADING PARTNER ID ----- >>>'||l_tr_partner_id,1);
3821: ecx_cln_debug_pub.Add('TRADING PARTNER SITE ----- >>>'||l_tr_partner_site,1);
3822: ecx_cln_debug_pub.Add('SENDER COMPONENT ----- >>>'||l_sender_component,1);
3823: ecx_cln_debug_pub.Add('XMLG MESSAGE STANDARD ID ----- >>>'||l_xmlg_msg_standard,1);
3824: ecx_cln_debug_pub.Add('XMLG EVENT KEY ----- >>>'||l_xml_event_key,1);
3825: ecx_cln_debug_pub.Add('===========================================',1);
3826: END IF;
3827:

Line 3824: ecx_cln_debug_pub.Add('XMLG EVENT KEY ----- >>>'||l_xml_event_key,1);

3820: ecx_cln_debug_pub.Add('TRADING PARTNER ID ----- >>>'||l_tr_partner_id,1);
3821: ecx_cln_debug_pub.Add('TRADING PARTNER SITE ----- >>>'||l_tr_partner_site,1);
3822: ecx_cln_debug_pub.Add('SENDER COMPONENT ----- >>>'||l_sender_component,1);
3823: ecx_cln_debug_pub.Add('XMLG MESSAGE STANDARD ID ----- >>>'||l_xmlg_msg_standard,1);
3824: ecx_cln_debug_pub.Add('XMLG EVENT KEY ----- >>>'||l_xml_event_key,1);
3825: ecx_cln_debug_pub.Add('===========================================',1);
3826: END IF;
3827:
3828:

Line 3825: ecx_cln_debug_pub.Add('===========================================',1);

3821: ecx_cln_debug_pub.Add('TRADING PARTNER SITE ----- >>>'||l_tr_partner_site,1);
3822: ecx_cln_debug_pub.Add('SENDER COMPONENT ----- >>>'||l_sender_component,1);
3823: ecx_cln_debug_pub.Add('XMLG MESSAGE STANDARD ID ----- >>>'||l_xmlg_msg_standard,1);
3824: ecx_cln_debug_pub.Add('XMLG EVENT KEY ----- >>>'||l_xml_event_key,1);
3825: ecx_cln_debug_pub.Add('===========================================',1);
3826: END IF;
3827:
3828:
3829: -- Getting External Transaction type and Subtype associated with Internal transaction type

Line 3833: ecx_cln_debug_pub.Add('Getting values for External Transaction type and SubType and msg standard',1);

3829: -- Getting External Transaction type and Subtype associated with Internal transaction type
3830: -- and Internal transaction subtype
3831: IF ((l_xmlg_transaction_type IS NULL) OR (l_xmlg_transaction_subtype IS NULL) OR (l_xmlg_msg_standard IS NULL ) ) THEN
3832: IF (l_Debug_Level <= 1) THEN
3833: ecx_cln_debug_pub.Add('Getting values for External Transaction type and SubType and msg standard',1);
3834: END IF;
3835:
3836: BEGIN
3837: SELECT ecxproc.EXT_TYPE,ecxproc.EXT_SUBTYPE, estd.standard_code

Line 3852: ecx_cln_debug_pub.Add('====Parameters Received From ECX_TRANSACTIONS/ECX_EXT_PROCESSES====',1);

3848: AND ecxproc.direction = nvl(p_doc_dir,ecxproc.direction)
3849: AND estd.standard_id = ecxproc.standard_id;
3850:
3851: IF (l_Debug_Level <= 1) THEN
3852: ecx_cln_debug_pub.Add('====Parameters Received From ECX_TRANSACTIONS/ECX_EXT_PROCESSES====',1);
3853: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION TYPE ----- >>>'||l_xmlg_transaction_type,1);
3854: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUBTYPE ----- >>>'||l_xmlg_transaction_subtype,1);
3855: ecx_cln_debug_pub.Add('XMLG Message Standard ----- >>>'||l_xmlg_msg_standard,1);
3856: ecx_cln_debug_pub.Add('==================================================================',1);

Line 3853: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION TYPE ----- >>>'||l_xmlg_transaction_type,1);

3849: AND estd.standard_id = ecxproc.standard_id;
3850:
3851: IF (l_Debug_Level <= 1) THEN
3852: ecx_cln_debug_pub.Add('====Parameters Received From ECX_TRANSACTIONS/ECX_EXT_PROCESSES====',1);
3853: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION TYPE ----- >>>'||l_xmlg_transaction_type,1);
3854: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUBTYPE ----- >>>'||l_xmlg_transaction_subtype,1);
3855: ecx_cln_debug_pub.Add('XMLG Message Standard ----- >>>'||l_xmlg_msg_standard,1);
3856: ecx_cln_debug_pub.Add('==================================================================',1);
3857: END IF;

Line 3854: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUBTYPE ----- >>>'||l_xmlg_transaction_subtype,1);

3850:
3851: IF (l_Debug_Level <= 1) THEN
3852: ecx_cln_debug_pub.Add('====Parameters Received From ECX_TRANSACTIONS/ECX_EXT_PROCESSES====',1);
3853: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION TYPE ----- >>>'||l_xmlg_transaction_type,1);
3854: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUBTYPE ----- >>>'||l_xmlg_transaction_subtype,1);
3855: ecx_cln_debug_pub.Add('XMLG Message Standard ----- >>>'||l_xmlg_msg_standard,1);
3856: ecx_cln_debug_pub.Add('==================================================================',1);
3857: END IF;
3858:

Line 3855: ecx_cln_debug_pub.Add('XMLG Message Standard ----- >>>'||l_xmlg_msg_standard,1);

3851: IF (l_Debug_Level <= 1) THEN
3852: ecx_cln_debug_pub.Add('====Parameters Received From ECX_TRANSACTIONS/ECX_EXT_PROCESSES====',1);
3853: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION TYPE ----- >>>'||l_xmlg_transaction_type,1);
3854: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUBTYPE ----- >>>'||l_xmlg_transaction_subtype,1);
3855: ecx_cln_debug_pub.Add('XMLG Message Standard ----- >>>'||l_xmlg_msg_standard,1);
3856: ecx_cln_debug_pub.Add('==================================================================',1);
3857: END IF;
3858:
3859:

Line 3856: ecx_cln_debug_pub.Add('==================================================================',1);

3852: ecx_cln_debug_pub.Add('====Parameters Received From ECX_TRANSACTIONS/ECX_EXT_PROCESSES====',1);
3853: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION TYPE ----- >>>'||l_xmlg_transaction_type,1);
3854: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUBTYPE ----- >>>'||l_xmlg_transaction_subtype,1);
3855: ecx_cln_debug_pub.Add('XMLG Message Standard ----- >>>'||l_xmlg_msg_standard,1);
3856: ecx_cln_debug_pub.Add('==================================================================',1);
3857: END IF;
3858:
3859:
3860:

Line 3866: ecx_cln_debug_pub.Add('Unable to find External Transaction Type/ Subtype',1);

3862: WHEN NO_DATA_FOUND THEN
3863: FND_MESSAGE.SET_NAME('CLN','CLN_CH_TRANSACTION_NOT_FOUND');
3864: x_msg_data := FND_MESSAGE.GET;
3865: IF (l_Debug_Level <= 1) THEN
3866: ecx_cln_debug_pub.Add('Unable to find External Transaction Type/ Subtype',1);
3867: END IF;
3868:
3869:
3870: WHEN TOO_MANY_ROWS THEN

Line 3874: ecx_cln_debug_pub.Add('More then one row found for the same transaction detail',1);

3870: WHEN TOO_MANY_ROWS THEN
3871: FND_MESSAGE.SET_NAME('CLN','CLN_CH_EXCESS_TXN_FOUND');
3872: x_msg_data := SUBSTR(FND_MESSAGE.GET,10);
3873: IF (l_Debug_Level <= 1) THEN
3874: ecx_cln_debug_pub.Add('More then one row found for the same transaction detail',1);
3875: END IF;
3876:
3877: END;
3878: END IF;

Line 3884: ecx_cln_debug_pub.Add('Getting values for Internal Transaction type and SubType',1);

3880: /* ***** NOT REQUIRED *******
3881: -- Getting Internal Transaction type and Subtype associated with External transaction type
3882: -- and External transaction subtype
3883: IF ((p_xmlg_int_transaction_type IS NULL) OR (p_xmlg_int_transaction_subtype IS NULL)) THEN
3884: ecx_cln_debug_pub.Add('Getting values for Internal Transaction type and SubType',1);
3885: BEGIN
3886: SELECT distinct ecxtrans.TRANSACTION_TYPE, ecxtrans.TRANSACTION_SUBTYPE
3887: INTO l_xmlg_int_transaction_type, l_xmlg_int_transaction_subtype
3888: FROM ECX_TRANSACTIONS ecxtrans, ECX_EXT_PROCESSES ecxproc

Line 3894: ecx_cln_debug_pub.Add('====Parameters Received From ECX_TRANSACTIONS/ECX_EXT_PROCESSES====',1);

3890: AND ecxproc.EXT_TYPE = NVL(p_xmlg_transaction_type,l_xmlg_transaction_type)
3891: AND ecxproc.EXT_SUBTYPE = NVL(p_xmlg_transaction_subtype,l_xmlg_transaction_subtype)
3892: AND ecxproc.DIRECTION = NVL(p_doc_dir,l_doc_dir);
3893:
3894: ecx_cln_debug_pub.Add('====Parameters Received From ECX_TRANSACTIONS/ECX_EXT_PROCESSES====',1);
3895: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION TYPE ----- >>>'||l_xmlg_int_transaction_type,1);
3896: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION SUBTYPE ----- >>>'||l_xmlg_int_transaction_subtype,1);
3897: ecx_cln_debug_pub.Add('==================================================================',1);
3898:

Line 3895: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION TYPE ----- >>>'||l_xmlg_int_transaction_type,1);

3891: AND ecxproc.EXT_SUBTYPE = NVL(p_xmlg_transaction_subtype,l_xmlg_transaction_subtype)
3892: AND ecxproc.DIRECTION = NVL(p_doc_dir,l_doc_dir);
3893:
3894: ecx_cln_debug_pub.Add('====Parameters Received From ECX_TRANSACTIONS/ECX_EXT_PROCESSES====',1);
3895: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION TYPE ----- >>>'||l_xmlg_int_transaction_type,1);
3896: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION SUBTYPE ----- >>>'||l_xmlg_int_transaction_subtype,1);
3897: ecx_cln_debug_pub.Add('==================================================================',1);
3898:
3899: EXCEPTION

Line 3896: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION SUBTYPE ----- >>>'||l_xmlg_int_transaction_subtype,1);

3892: AND ecxproc.DIRECTION = NVL(p_doc_dir,l_doc_dir);
3893:
3894: ecx_cln_debug_pub.Add('====Parameters Received From ECX_TRANSACTIONS/ECX_EXT_PROCESSES====',1);
3895: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION TYPE ----- >>>'||l_xmlg_int_transaction_type,1);
3896: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION SUBTYPE ----- >>>'||l_xmlg_int_transaction_subtype,1);
3897: ecx_cln_debug_pub.Add('==================================================================',1);
3898:
3899: EXCEPTION
3900: WHEN NO_DATA_FOUND THEN

Line 3897: ecx_cln_debug_pub.Add('==================================================================',1);

3893:
3894: ecx_cln_debug_pub.Add('====Parameters Received From ECX_TRANSACTIONS/ECX_EXT_PROCESSES====',1);
3895: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION TYPE ----- >>>'||l_xmlg_int_transaction_type,1);
3896: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION SUBTYPE ----- >>>'||l_xmlg_int_transaction_subtype,1);
3897: ecx_cln_debug_pub.Add('==================================================================',1);
3898:
3899: EXCEPTION
3900: WHEN NO_DATA_FOUND THEN
3901: FND_MESSAGE.SET_NAME('CLN','CLN_CH_TRANSACTION_NOT_FOUND');

Line 3903: ecx_cln_debug_pub.Add('Unable to find Internal Transaction Type/ Subtype',1);

3899: EXCEPTION
3900: WHEN NO_DATA_FOUND THEN
3901: FND_MESSAGE.SET_NAME('CLN','CLN_CH_TRANSACTION_NOT_FOUND');
3902: x_msg_data := FND_MESSAGE.GET;
3903: ecx_cln_debug_pub.Add('Unable to find Internal Transaction Type/ Subtype',1);
3904:
3905: WHEN TOO_MANY_ROWS THEN
3906: FND_MESSAGE.SET_NAME('CLN','CLN_CH_EXCESS_TXN_FOUND');
3907: x_msg_data := SUBSTR(FND_MESSAGE.GET,10);

Line 3908: ecx_cln_debug_pub.Add('More then one row found for the same transaction detail',1);

3904:
3905: WHEN TOO_MANY_ROWS THEN
3906: FND_MESSAGE.SET_NAME('CLN','CLN_CH_EXCESS_TXN_FOUND');
3907: x_msg_data := SUBSTR(FND_MESSAGE.GET,10);
3908: ecx_cln_debug_pub.Add('More then one row found for the same transaction detail',1);
3909: END;
3910: END IF;
3911: */
3912:

Line 3932: ecx_cln_debug_pub.Add('-- Before SQL query to find the trading partner set up from ecx_ext_processes /ecx_tp_details /ecx_tp_headers',1);

3928: IF (p_tr_partner_type IS NULL OR p_tr_partner_id IS NULL OR p_tr_partner_site IS NULL or l_xmlg_msg_standard is null )
3929: THEN -- based on the ecx doclogs values we have to get actual TP values
3930: BEGIN
3931: IF (l_Debug_Level <= 1) THEN
3932: ecx_cln_debug_pub.Add('-- Before SQL query to find the trading partner set up from ecx_ext_processes /ecx_tp_details /ecx_tp_headers',1);
3933: END IF;
3934:
3935:
3936: SELECT eth.party_id, eth.party_site_id, eth.party_type, estd.standard_code

Line 3951: ecx_cln_debug_pub.Add('-- After SQL query ----',1);

3947: AND eth.tp_header_id = etd.tp_header_id
3948: AND estd.standard_type = l_xmlg_msg_type;
3949:
3950: IF (l_Debug_Level <= 1) THEN
3951: ecx_cln_debug_pub.Add('-- After SQL query ----',1);
3952: END IF;
3953:
3954:
3955: IF (l_Debug_Level <= 1) THEN

Line 3956: ecx_cln_debug_pub.Add('====Trading Partner Parameters Changed To IDs Using ecx_ext_processes /ecx_tp_details /ecx_tp_headers =====',1);

3952: END IF;
3953:
3954:
3955: IF (l_Debug_Level <= 1) THEN
3956: ecx_cln_debug_pub.Add('====Trading Partner Parameters Changed To IDs Using ecx_ext_processes /ecx_tp_details /ecx_tp_headers =====',1);
3957: ecx_cln_debug_pub.Add('TRADING PARTNER TYPE ----- >>>'||l_txn_partner_id,1);
3958: ecx_cln_debug_pub.Add('TRADING PARTNER ID ----- >>>'||l_txn_partner_site,1);
3959: ecx_cln_debug_pub.Add('TRADING PARTNER SITE ----- >>>'||l_txn_partner_type,1);
3960: ecx_cln_debug_pub.Add('Message Standard ----- >>>'||l_xmlg_msg_standard,1);

Line 3957: ecx_cln_debug_pub.Add('TRADING PARTNER TYPE ----- >>>'||l_txn_partner_id,1);

3953:
3954:
3955: IF (l_Debug_Level <= 1) THEN
3956: ecx_cln_debug_pub.Add('====Trading Partner Parameters Changed To IDs Using ecx_ext_processes /ecx_tp_details /ecx_tp_headers =====',1);
3957: ecx_cln_debug_pub.Add('TRADING PARTNER TYPE ----- >>>'||l_txn_partner_id,1);
3958: ecx_cln_debug_pub.Add('TRADING PARTNER ID ----- >>>'||l_txn_partner_site,1);
3959: ecx_cln_debug_pub.Add('TRADING PARTNER SITE ----- >>>'||l_txn_partner_type,1);
3960: ecx_cln_debug_pub.Add('Message Standard ----- >>>'||l_xmlg_msg_standard,1);
3961: ecx_cln_debug_pub.Add('===========================================================================',1);

Line 3958: ecx_cln_debug_pub.Add('TRADING PARTNER ID ----- >>>'||l_txn_partner_site,1);

3954:
3955: IF (l_Debug_Level <= 1) THEN
3956: ecx_cln_debug_pub.Add('====Trading Partner Parameters Changed To IDs Using ecx_ext_processes /ecx_tp_details /ecx_tp_headers =====',1);
3957: ecx_cln_debug_pub.Add('TRADING PARTNER TYPE ----- >>>'||l_txn_partner_id,1);
3958: ecx_cln_debug_pub.Add('TRADING PARTNER ID ----- >>>'||l_txn_partner_site,1);
3959: ecx_cln_debug_pub.Add('TRADING PARTNER SITE ----- >>>'||l_txn_partner_type,1);
3960: ecx_cln_debug_pub.Add('Message Standard ----- >>>'||l_xmlg_msg_standard,1);
3961: ecx_cln_debug_pub.Add('===========================================================================',1);
3962: END IF;

Line 3959: ecx_cln_debug_pub.Add('TRADING PARTNER SITE ----- >>>'||l_txn_partner_type,1);

3955: IF (l_Debug_Level <= 1) THEN
3956: ecx_cln_debug_pub.Add('====Trading Partner Parameters Changed To IDs Using ecx_ext_processes /ecx_tp_details /ecx_tp_headers =====',1);
3957: ecx_cln_debug_pub.Add('TRADING PARTNER TYPE ----- >>>'||l_txn_partner_id,1);
3958: ecx_cln_debug_pub.Add('TRADING PARTNER ID ----- >>>'||l_txn_partner_site,1);
3959: ecx_cln_debug_pub.Add('TRADING PARTNER SITE ----- >>>'||l_txn_partner_type,1);
3960: ecx_cln_debug_pub.Add('Message Standard ----- >>>'||l_xmlg_msg_standard,1);
3961: ecx_cln_debug_pub.Add('===========================================================================',1);
3962: END IF;
3963:

Line 3960: ecx_cln_debug_pub.Add('Message Standard ----- >>>'||l_xmlg_msg_standard,1);

3956: ecx_cln_debug_pub.Add('====Trading Partner Parameters Changed To IDs Using ecx_ext_processes /ecx_tp_details /ecx_tp_headers =====',1);
3957: ecx_cln_debug_pub.Add('TRADING PARTNER TYPE ----- >>>'||l_txn_partner_id,1);
3958: ecx_cln_debug_pub.Add('TRADING PARTNER ID ----- >>>'||l_txn_partner_site,1);
3959: ecx_cln_debug_pub.Add('TRADING PARTNER SITE ----- >>>'||l_txn_partner_type,1);
3960: ecx_cln_debug_pub.Add('Message Standard ----- >>>'||l_xmlg_msg_standard,1);
3961: ecx_cln_debug_pub.Add('===========================================================================',1);
3962: END IF;
3963:
3964:

Line 3961: ecx_cln_debug_pub.Add('===========================================================================',1);

3957: ecx_cln_debug_pub.Add('TRADING PARTNER TYPE ----- >>>'||l_txn_partner_id,1);
3958: ecx_cln_debug_pub.Add('TRADING PARTNER ID ----- >>>'||l_txn_partner_site,1);
3959: ecx_cln_debug_pub.Add('TRADING PARTNER SITE ----- >>>'||l_txn_partner_type,1);
3960: ecx_cln_debug_pub.Add('Message Standard ----- >>>'||l_xmlg_msg_standard,1);
3961: ecx_cln_debug_pub.Add('===========================================================================',1);
3962: END IF;
3963:
3964:
3965: EXCEPTION

Line 3970: ecx_cln_debug_pub.Add('Unable to find the id details for the trading partner',1);

3966: WHEN NO_DATA_FOUND THEN
3967: FND_MESSAGE.SET_NAME('CLN','CLN_CH_TP_DETAILS_NOT_FOUND');
3968: x_msg_data := FND_MESSAGE.GET;
3969: IF (l_Debug_Level <= 1) THEN
3970: ecx_cln_debug_pub.Add('Unable to find the id details for the trading partner',1);
3971: ecx_cln_debug_pub.Add('Trying to find details without considering party type',1);
3972: END IF;
3973:
3974: BEGIN

Line 3971: ecx_cln_debug_pub.Add('Trying to find details without considering party type',1);

3967: FND_MESSAGE.SET_NAME('CLN','CLN_CH_TP_DETAILS_NOT_FOUND');
3968: x_msg_data := FND_MESSAGE.GET;
3969: IF (l_Debug_Level <= 1) THEN
3970: ecx_cln_debug_pub.Add('Unable to find the id details for the trading partner',1);
3971: ecx_cln_debug_pub.Add('Trying to find details without considering party type',1);
3972: END IF;
3973:
3974: BEGIN
3975: SELECT eth.party_id, eth.party_site_id, eth.party_type, estd.standard_code

Line 3992: ecx_cln_debug_pub.Add('Event without TP, unable to find the id details for the trading partner',1);

3988: WHEN OTHERS THEN
3989: FND_MESSAGE.SET_NAME('CLN','CLN_CH_TP_DETAILS_NOT_FOUND');
3990: x_msg_data := FND_MESSAGE.GET;
3991: IF (l_Debug_Level <= 1) THEN
3992: ecx_cln_debug_pub.Add('Event without TP, unable to find the id details for the trading partner',1);
3993: END IF;
3994: END;
3995:
3996:

Line 4001: ecx_cln_debug_pub.Add('More then one row found for the same trading partner set up',1);

3997: WHEN TOO_MANY_ROWS THEN
3998: FND_MESSAGE.SET_NAME('CLN','CLN_CH_TP_DETAILS_NOT_FOUND');
3999: x_msg_data := FND_MESSAGE.GET;
4000: IF (l_Debug_Level <= 1) THEN
4001: ecx_cln_debug_pub.Add('More then one row found for the same trading partner set up',1);
4002: END IF;
4003:
4004: END;
4005: p_tr_partner_type := NVL(p_tr_partner_type,l_txn_partner_type);

Line 4015: ecx_cln_debug_pub.Add('API - GET_TRADING_PARTNER_DETAILS need not be called as all input parameters are having non-null values ',1);

4011: x_return_status := FND_API.G_RET_STS_SUCCESS;
4012: FND_MESSAGE.SET_NAME('CLN','CLN_CH_API_CALL_NOT_REQD');
4013: x_msg_data := FND_MESSAGE.GET;
4014: IF (l_Debug_Level <= 1) THEN
4015: ecx_cln_debug_pub.Add('API - GET_TRADING_PARTNER_DETAILS need not be called as all input parameters are having non-null values ',1);
4016: END IF;
4017:
4018: RETURN;
4019: END IF;

Line 4023: ecx_cln_debug_pub.Add('====Parameters Just Before Returning To the Main Calling Procedure======',1);

4019: END IF;
4020:
4021: -- values obtained after the query to ecx_doclogs table
4022: IF (l_Debug_Level <= 1) THEN
4023: ecx_cln_debug_pub.Add('====Parameters Just Before Returning To the Main Calling Procedure======',1);
4024: ecx_cln_debug_pub.Add('XMLG INTERNAL CONTROL NO ----- >>>'||p_xmlg_internal_control_number,1);
4025: ecx_cln_debug_pub.Add('XMLG MESSAGE ID ----- >>>'||p_xmlg_msg_id,1);
4026: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);
4027: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUB TYPE ----- >>>'||p_xmlg_transaction_subtype,1);

Line 4024: ecx_cln_debug_pub.Add('XMLG INTERNAL CONTROL NO ----- >>>'||p_xmlg_internal_control_number,1);

4020:
4021: -- values obtained after the query to ecx_doclogs table
4022: IF (l_Debug_Level <= 1) THEN
4023: ecx_cln_debug_pub.Add('====Parameters Just Before Returning To the Main Calling Procedure======',1);
4024: ecx_cln_debug_pub.Add('XMLG INTERNAL CONTROL NO ----- >>>'||p_xmlg_internal_control_number,1);
4025: ecx_cln_debug_pub.Add('XMLG MESSAGE ID ----- >>>'||p_xmlg_msg_id,1);
4026: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);
4027: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUB TYPE ----- >>>'||p_xmlg_transaction_subtype,1);
4028: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION TYPE ----- >>>'||p_xmlg_int_transaction_type,1);

Line 4025: ecx_cln_debug_pub.Add('XMLG MESSAGE ID ----- >>>'||p_xmlg_msg_id,1);

4021: -- values obtained after the query to ecx_doclogs table
4022: IF (l_Debug_Level <= 1) THEN
4023: ecx_cln_debug_pub.Add('====Parameters Just Before Returning To the Main Calling Procedure======',1);
4024: ecx_cln_debug_pub.Add('XMLG INTERNAL CONTROL NO ----- >>>'||p_xmlg_internal_control_number,1);
4025: ecx_cln_debug_pub.Add('XMLG MESSAGE ID ----- >>>'||p_xmlg_msg_id,1);
4026: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);
4027: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUB TYPE ----- >>>'||p_xmlg_transaction_subtype,1);
4028: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION TYPE ----- >>>'||p_xmlg_int_transaction_type,1);
4029: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION SUB TYPE ----- >>>'||p_xmlg_int_transaction_subtype,1);

Line 4026: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);

4022: IF (l_Debug_Level <= 1) THEN
4023: ecx_cln_debug_pub.Add('====Parameters Just Before Returning To the Main Calling Procedure======',1);
4024: ecx_cln_debug_pub.Add('XMLG INTERNAL CONTROL NO ----- >>>'||p_xmlg_internal_control_number,1);
4025: ecx_cln_debug_pub.Add('XMLG MESSAGE ID ----- >>>'||p_xmlg_msg_id,1);
4026: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);
4027: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUB TYPE ----- >>>'||p_xmlg_transaction_subtype,1);
4028: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION TYPE ----- >>>'||p_xmlg_int_transaction_type,1);
4029: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION SUB TYPE ----- >>>'||p_xmlg_int_transaction_subtype,1);
4030: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);

Line 4027: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUB TYPE ----- >>>'||p_xmlg_transaction_subtype,1);

4023: ecx_cln_debug_pub.Add('====Parameters Just Before Returning To the Main Calling Procedure======',1);
4024: ecx_cln_debug_pub.Add('XMLG INTERNAL CONTROL NO ----- >>>'||p_xmlg_internal_control_number,1);
4025: ecx_cln_debug_pub.Add('XMLG MESSAGE ID ----- >>>'||p_xmlg_msg_id,1);
4026: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);
4027: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUB TYPE ----- >>>'||p_xmlg_transaction_subtype,1);
4028: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION TYPE ----- >>>'||p_xmlg_int_transaction_type,1);
4029: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION SUB TYPE ----- >>>'||p_xmlg_int_transaction_subtype,1);
4030: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);
4031: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_dir,1);

Line 4028: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION TYPE ----- >>>'||p_xmlg_int_transaction_type,1);

4024: ecx_cln_debug_pub.Add('XMLG INTERNAL CONTROL NO ----- >>>'||p_xmlg_internal_control_number,1);
4025: ecx_cln_debug_pub.Add('XMLG MESSAGE ID ----- >>>'||p_xmlg_msg_id,1);
4026: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);
4027: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUB TYPE ----- >>>'||p_xmlg_transaction_subtype,1);
4028: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION TYPE ----- >>>'||p_xmlg_int_transaction_type,1);
4029: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION SUB TYPE ----- >>>'||p_xmlg_int_transaction_subtype,1);
4030: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);
4031: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_dir,1);
4032: ecx_cln_debug_pub.Add('TRADING PARTNER TYPE ----- >>>'||p_tr_partner_type,1);

Line 4029: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION SUB TYPE ----- >>>'||p_xmlg_int_transaction_subtype,1);

4025: ecx_cln_debug_pub.Add('XMLG MESSAGE ID ----- >>>'||p_xmlg_msg_id,1);
4026: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);
4027: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUB TYPE ----- >>>'||p_xmlg_transaction_subtype,1);
4028: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION TYPE ----- >>>'||p_xmlg_int_transaction_type,1);
4029: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION SUB TYPE ----- >>>'||p_xmlg_int_transaction_subtype,1);
4030: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);
4031: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_dir,1);
4032: ecx_cln_debug_pub.Add('TRADING PARTNER TYPE ----- >>>'||p_tr_partner_type,1);
4033: ecx_cln_debug_pub.Add('TRADING PARTNER ID ----- >>>'||p_tr_partner_id,1);

Line 4030: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);

4026: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);
4027: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUB TYPE ----- >>>'||p_xmlg_transaction_subtype,1);
4028: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION TYPE ----- >>>'||p_xmlg_int_transaction_type,1);
4029: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION SUB TYPE ----- >>>'||p_xmlg_int_transaction_subtype,1);
4030: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);
4031: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_dir,1);
4032: ecx_cln_debug_pub.Add('TRADING PARTNER TYPE ----- >>>'||p_tr_partner_type,1);
4033: ecx_cln_debug_pub.Add('TRADING PARTNER ID ----- >>>'||p_tr_partner_id,1);
4034: ecx_cln_debug_pub.Add('TRADING PARTNER SITE ----- >>>'||p_tr_partner_site,1);

Line 4031: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_dir,1);

4027: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUB TYPE ----- >>>'||p_xmlg_transaction_subtype,1);
4028: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION TYPE ----- >>>'||p_xmlg_int_transaction_type,1);
4029: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION SUB TYPE ----- >>>'||p_xmlg_int_transaction_subtype,1);
4030: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);
4031: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_dir,1);
4032: ecx_cln_debug_pub.Add('TRADING PARTNER TYPE ----- >>>'||p_tr_partner_type,1);
4033: ecx_cln_debug_pub.Add('TRADING PARTNER ID ----- >>>'||p_tr_partner_id,1);
4034: ecx_cln_debug_pub.Add('TRADING PARTNER SITE ----- >>>'||p_tr_partner_site,1);
4035: ecx_cln_debug_pub.Add('SENDER COMPONENT ----- >>>'||p_sender_component,1);

Line 4032: ecx_cln_debug_pub.Add('TRADING PARTNER TYPE ----- >>>'||p_tr_partner_type,1);

4028: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION TYPE ----- >>>'||p_xmlg_int_transaction_type,1);
4029: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION SUB TYPE ----- >>>'||p_xmlg_int_transaction_subtype,1);
4030: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);
4031: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_dir,1);
4032: ecx_cln_debug_pub.Add('TRADING PARTNER TYPE ----- >>>'||p_tr_partner_type,1);
4033: ecx_cln_debug_pub.Add('TRADING PARTNER ID ----- >>>'||p_tr_partner_id,1);
4034: ecx_cln_debug_pub.Add('TRADING PARTNER SITE ----- >>>'||p_tr_partner_site,1);
4035: ecx_cln_debug_pub.Add('SENDER COMPONENT ----- >>>'||p_sender_component,1);
4036: ecx_cln_debug_pub.Add('XMLG EVENT KEY ----- >>>'||p_xml_event_key,1);

Line 4033: ecx_cln_debug_pub.Add('TRADING PARTNER ID ----- >>>'||p_tr_partner_id,1);

4029: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION SUB TYPE ----- >>>'||p_xmlg_int_transaction_subtype,1);
4030: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);
4031: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_dir,1);
4032: ecx_cln_debug_pub.Add('TRADING PARTNER TYPE ----- >>>'||p_tr_partner_type,1);
4033: ecx_cln_debug_pub.Add('TRADING PARTNER ID ----- >>>'||p_tr_partner_id,1);
4034: ecx_cln_debug_pub.Add('TRADING PARTNER SITE ----- >>>'||p_tr_partner_site,1);
4035: ecx_cln_debug_pub.Add('SENDER COMPONENT ----- >>>'||p_sender_component,1);
4036: ecx_cln_debug_pub.Add('XMLG EVENT KEY ----- >>>'||p_xml_event_key,1);
4037: ecx_cln_debug_pub.Add('Message Standard ----- >>>'||p_collaboration_standard,1);

Line 4034: ecx_cln_debug_pub.Add('TRADING PARTNER SITE ----- >>>'||p_tr_partner_site,1);

4030: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);
4031: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_dir,1);
4032: ecx_cln_debug_pub.Add('TRADING PARTNER TYPE ----- >>>'||p_tr_partner_type,1);
4033: ecx_cln_debug_pub.Add('TRADING PARTNER ID ----- >>>'||p_tr_partner_id,1);
4034: ecx_cln_debug_pub.Add('TRADING PARTNER SITE ----- >>>'||p_tr_partner_site,1);
4035: ecx_cln_debug_pub.Add('SENDER COMPONENT ----- >>>'||p_sender_component,1);
4036: ecx_cln_debug_pub.Add('XMLG EVENT KEY ----- >>>'||p_xml_event_key,1);
4037: ecx_cln_debug_pub.Add('Message Standard ----- >>>'||p_collaboration_standard,1);
4038: ecx_cln_debug_pub.Add('=============================================================',1);

Line 4035: ecx_cln_debug_pub.Add('SENDER COMPONENT ----- >>>'||p_sender_component,1);

4031: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_dir,1);
4032: ecx_cln_debug_pub.Add('TRADING PARTNER TYPE ----- >>>'||p_tr_partner_type,1);
4033: ecx_cln_debug_pub.Add('TRADING PARTNER ID ----- >>>'||p_tr_partner_id,1);
4034: ecx_cln_debug_pub.Add('TRADING PARTNER SITE ----- >>>'||p_tr_partner_site,1);
4035: ecx_cln_debug_pub.Add('SENDER COMPONENT ----- >>>'||p_sender_component,1);
4036: ecx_cln_debug_pub.Add('XMLG EVENT KEY ----- >>>'||p_xml_event_key,1);
4037: ecx_cln_debug_pub.Add('Message Standard ----- >>>'||p_collaboration_standard,1);
4038: ecx_cln_debug_pub.Add('=============================================================',1);
4039: END IF;

Line 4036: ecx_cln_debug_pub.Add('XMLG EVENT KEY ----- >>>'||p_xml_event_key,1);

4032: ecx_cln_debug_pub.Add('TRADING PARTNER TYPE ----- >>>'||p_tr_partner_type,1);
4033: ecx_cln_debug_pub.Add('TRADING PARTNER ID ----- >>>'||p_tr_partner_id,1);
4034: ecx_cln_debug_pub.Add('TRADING PARTNER SITE ----- >>>'||p_tr_partner_site,1);
4035: ecx_cln_debug_pub.Add('SENDER COMPONENT ----- >>>'||p_sender_component,1);
4036: ecx_cln_debug_pub.Add('XMLG EVENT KEY ----- >>>'||p_xml_event_key,1);
4037: ecx_cln_debug_pub.Add('Message Standard ----- >>>'||p_collaboration_standard,1);
4038: ecx_cln_debug_pub.Add('=============================================================',1);
4039: END IF;
4040:

Line 4037: ecx_cln_debug_pub.Add('Message Standard ----- >>>'||p_collaboration_standard,1);

4033: ecx_cln_debug_pub.Add('TRADING PARTNER ID ----- >>>'||p_tr_partner_id,1);
4034: ecx_cln_debug_pub.Add('TRADING PARTNER SITE ----- >>>'||p_tr_partner_site,1);
4035: ecx_cln_debug_pub.Add('SENDER COMPONENT ----- >>>'||p_sender_component,1);
4036: ecx_cln_debug_pub.Add('XMLG EVENT KEY ----- >>>'||p_xml_event_key,1);
4037: ecx_cln_debug_pub.Add('Message Standard ----- >>>'||p_collaboration_standard,1);
4038: ecx_cln_debug_pub.Add('=============================================================',1);
4039: END IF;
4040:
4041:

Line 4038: ecx_cln_debug_pub.Add('=============================================================',1);

4034: ecx_cln_debug_pub.Add('TRADING PARTNER SITE ----- >>>'||p_tr_partner_site,1);
4035: ecx_cln_debug_pub.Add('SENDER COMPONENT ----- >>>'||p_sender_component,1);
4036: ecx_cln_debug_pub.Add('XMLG EVENT KEY ----- >>>'||p_xml_event_key,1);
4037: ecx_cln_debug_pub.Add('Message Standard ----- >>>'||p_collaboration_standard,1);
4038: ecx_cln_debug_pub.Add('=============================================================',1);
4039: END IF;
4040:
4041:
4042:

Line 4048: ecx_cln_debug_pub.Add(l_msg_data,1);

4044: x_msg_data := FND_MESSAGE.GET;
4045:
4046: l_msg_data := 'Successfully retrieved values for the Trading partner';
4047: IF (l_Debug_Level <= 1) THEN
4048: ecx_cln_debug_pub.Add(l_msg_data,1);
4049: END IF;
4050:
4051: IF (l_Debug_Level <= 2) THEN
4052: ecx_cln_debug_pub.Add('------ Exiting GET_TRADING_PARTNER_DETAILS ------- ',2);

Line 4052: ecx_cln_debug_pub.Add('------ Exiting GET_TRADING_PARTNER_DETAILS ------- ',2);

4048: ecx_cln_debug_pub.Add(l_msg_data,1);
4049: END IF;
4050:
4051: IF (l_Debug_Level <= 2) THEN
4052: ecx_cln_debug_pub.Add('------ Exiting GET_TRADING_PARTNER_DETAILS ------- ',2);
4053: END IF;
4054:
4055: EXCEPTION
4056:

Line 4067: ecx_cln_debug_pub.Add(l_msg_data,6);

4063: FND_MESSAGE.SET_TOKEN('ERRORMSG',l_error_msg);
4064: x_msg_data :=FND_MESSAGE.GET;
4065: l_msg_data := 'Unexpected Error : '||l_error_code||'-'||l_error_msg;
4066: IF (l_Debug_Level <= 6) THEN
4067: ecx_cln_debug_pub.Add(l_msg_data,6);
4068: ecx_cln_debug_pub.Add('------ Exiting GET_TRADING_PARTNER_DETAILS ------- ',2);
4069: END IF;
4070:
4071: END GET_TRADING_PARTNER_DETAILS;

Line 4068: ecx_cln_debug_pub.Add('------ Exiting GET_TRADING_PARTNER_DETAILS ------- ',2);

4064: x_msg_data :=FND_MESSAGE.GET;
4065: l_msg_data := 'Unexpected Error : '||l_error_code||'-'||l_error_msg;
4066: IF (l_Debug_Level <= 6) THEN
4067: ecx_cln_debug_pub.Add(l_msg_data,6);
4068: ecx_cln_debug_pub.Add('------ Exiting GET_TRADING_PARTNER_DETAILS ------- ',2);
4069: END IF;
4070:
4071: END GET_TRADING_PARTNER_DETAILS;
4072:

Line 4108: --l_debug_mode :=ecx_cln_debug_pub.Set_Debug_Mode('FILE');

4104:
4105: BEGIN
4106:
4107: -- Sets the debug mode to be FILE
4108: --l_debug_mode :=ecx_cln_debug_pub.Set_Debug_Mode('FILE');
4109:
4110: IF (l_Debug_Level <= 2) THEN
4111: ecx_cln_debug_pub.Add('------ Entering DEFAULT_XMLGTXN_MAPPING API ------ ',2);
4112: END IF;

Line 4111: ecx_cln_debug_pub.Add('------ Entering DEFAULT_XMLGTXN_MAPPING API ------ ',2);

4107: -- Sets the debug mode to be FILE
4108: --l_debug_mode :=ecx_cln_debug_pub.Set_Debug_Mode('FILE');
4109:
4110: IF (l_Debug_Level <= 2) THEN
4111: ecx_cln_debug_pub.Add('------ Entering DEFAULT_XMLGTXN_MAPPING API ------ ',2);
4112: END IF;
4113:
4114:
4115: -- Initialize API return status to success

Line 4120: ecx_cln_debug_pub.Add('==========Parameters Received=============',1);

4116: x_return_status := FND_API.G_RET_STS_SUCCESS;
4117:
4118: -- get the paramaters passed
4119: IF (l_Debug_Level <= 1) THEN
4120: ecx_cln_debug_pub.Add('==========Parameters Received=============',1);
4121: ecx_cln_debug_pub.Add('XMLG TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);
4122: ecx_cln_debug_pub.Add('XMLG TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);
4123: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_dir,1);
4124: ecx_cln_debug_pub.Add('APPLCATION ID ----- >>>'||p_app_id,1);

Line 4121: ecx_cln_debug_pub.Add('XMLG TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);

4117:
4118: -- get the paramaters passed
4119: IF (l_Debug_Level <= 1) THEN
4120: ecx_cln_debug_pub.Add('==========Parameters Received=============',1);
4121: ecx_cln_debug_pub.Add('XMLG TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);
4122: ecx_cln_debug_pub.Add('XMLG TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);
4123: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_dir,1);
4124: ecx_cln_debug_pub.Add('APPLCATION ID ----- >>>'||p_app_id,1);
4125: ecx_cln_debug_pub.Add('COLL TYPE ----- >>>'||p_coll_type,1);

Line 4122: ecx_cln_debug_pub.Add('XMLG TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);

4118: -- get the paramaters passed
4119: IF (l_Debug_Level <= 1) THEN
4120: ecx_cln_debug_pub.Add('==========Parameters Received=============',1);
4121: ecx_cln_debug_pub.Add('XMLG TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);
4122: ecx_cln_debug_pub.Add('XMLG TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);
4123: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_dir,1);
4124: ecx_cln_debug_pub.Add('APPLCATION ID ----- >>>'||p_app_id,1);
4125: ecx_cln_debug_pub.Add('COLL TYPE ----- >>>'||p_coll_type,1);
4126: ecx_cln_debug_pub.Add('DOCUMENT TYPE ----- >>>'||p_doc_type,1);

Line 4123: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_dir,1);

4119: IF (l_Debug_Level <= 1) THEN
4120: ecx_cln_debug_pub.Add('==========Parameters Received=============',1);
4121: ecx_cln_debug_pub.Add('XMLG TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);
4122: ecx_cln_debug_pub.Add('XMLG TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);
4123: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_dir,1);
4124: ecx_cln_debug_pub.Add('APPLCATION ID ----- >>>'||p_app_id,1);
4125: ecx_cln_debug_pub.Add('COLL TYPE ----- >>>'||p_coll_type,1);
4126: ecx_cln_debug_pub.Add('DOCUMENT TYPE ----- >>>'||p_doc_type,1);
4127: ecx_cln_debug_pub.Add('==========================================',1);

Line 4124: ecx_cln_debug_pub.Add('APPLCATION ID ----- >>>'||p_app_id,1);

4120: ecx_cln_debug_pub.Add('==========Parameters Received=============',1);
4121: ecx_cln_debug_pub.Add('XMLG TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);
4122: ecx_cln_debug_pub.Add('XMLG TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);
4123: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_dir,1);
4124: ecx_cln_debug_pub.Add('APPLCATION ID ----- >>>'||p_app_id,1);
4125: ecx_cln_debug_pub.Add('COLL TYPE ----- >>>'||p_coll_type,1);
4126: ecx_cln_debug_pub.Add('DOCUMENT TYPE ----- >>>'||p_doc_type,1);
4127: ecx_cln_debug_pub.Add('==========================================',1);
4128: END IF;

Line 4125: ecx_cln_debug_pub.Add('COLL TYPE ----- >>>'||p_coll_type,1);

4121: ecx_cln_debug_pub.Add('XMLG TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);
4122: ecx_cln_debug_pub.Add('XMLG TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);
4123: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_dir,1);
4124: ecx_cln_debug_pub.Add('APPLCATION ID ----- >>>'||p_app_id,1);
4125: ecx_cln_debug_pub.Add('COLL TYPE ----- >>>'||p_coll_type,1);
4126: ecx_cln_debug_pub.Add('DOCUMENT TYPE ----- >>>'||p_doc_type,1);
4127: ecx_cln_debug_pub.Add('==========================================',1);
4128: END IF;
4129:

Line 4126: ecx_cln_debug_pub.Add('DOCUMENT TYPE ----- >>>'||p_doc_type,1);

4122: ecx_cln_debug_pub.Add('XMLG TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);
4123: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_dir,1);
4124: ecx_cln_debug_pub.Add('APPLCATION ID ----- >>>'||p_app_id,1);
4125: ecx_cln_debug_pub.Add('COLL TYPE ----- >>>'||p_coll_type,1);
4126: ecx_cln_debug_pub.Add('DOCUMENT TYPE ----- >>>'||p_doc_type,1);
4127: ecx_cln_debug_pub.Add('==========================================',1);
4128: END IF;
4129:
4130:

Line 4127: ecx_cln_debug_pub.Add('==========================================',1);

4123: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_dir,1);
4124: ecx_cln_debug_pub.Add('APPLCATION ID ----- >>>'||p_app_id,1);
4125: ecx_cln_debug_pub.Add('COLL TYPE ----- >>>'||p_coll_type,1);
4126: ecx_cln_debug_pub.Add('DOCUMENT TYPE ----- >>>'||p_doc_type,1);
4127: ecx_cln_debug_pub.Add('==========================================',1);
4128: END IF;
4129:
4130:
4131:

Line 4139: ecx_cln_debug_pub.Add(l_msg_data,1);

4135: OR (p_doc_dir IS NULL)
4136: ) THEN
4137: l_msg_data := 'Required parameters(p_xmlg_transaction_type/ p_xmlg_transaction_subtype / p_xmlg_document_direction) missing';
4138: IF (l_Debug_Level <= 1) THEN
4139: ecx_cln_debug_pub.Add(l_msg_data,1);
4140: END IF;
4141:
4142: FND_MESSAGE.SET_NAME('CLN','CLN_CH_REQD_KEY_MISSING');
4143: FND_MESSAGE.SET_TOKEN('API','DEFAULT_XMLGTXN_MAPPING');

Line 4154: ecx_cln_debug_pub.Add('-- Before sql query to CLN_CH_XMLGTXN_MAPPING --',1);

4150: -- Get the trading partner details
4151: IF ((p_app_id IS NULL) OR (p_coll_type IS NULL) OR (p_doc_type IS NULL)) THEN
4152: BEGIN
4153: IF (l_Debug_Level <= 1) THEN
4154: ecx_cln_debug_pub.Add('-- Before sql query to CLN_CH_XMLGTXN_MAPPING --',1);
4155: END IF;
4156:
4157: SELECT application_id, collaboration_type, document_type
4158: INTO l_application_id, l_collaboration_type, l_document_type

Line 4164: ecx_cln_debug_pub.Add('-- After sql query to CLN_CH_XMLGTXN_MAPPING --',1);

4160: WHERE XMLG_TRANSACTION_TYPE = p_xmlg_transaction_type
4161: AND XMLG_TRANSACTION_SUBTYPE = p_xmlg_transaction_subtype
4162: AND DOCUMENT_DIRECTION = p_doc_dir ;
4163: IF (l_Debug_Level <= 1) THEN
4164: ecx_cln_debug_pub.Add('-- After sql query to CLN_CH_XMLGTXN_MAPPING --',1);
4165: END IF;
4166:
4167:
4168: EXCEPTION

Line 4175: ecx_cln_debug_pub.Add(l_msg_data,1);

4171: -- has to create an error collaboration incase setup information is wrong or xmlg gives error
4172: -- while processing the xml document.
4173: l_msg_data := 'Unable to find the default xmlg mapping values for the application';
4174: IF (l_Debug_Level <= 1) THEN
4175: ecx_cln_debug_pub.Add(l_msg_data,1);
4176: END IF;
4177:
4178: FND_MESSAGE.SET_NAME('CLN','CLN_CH_XMLGTXN_MAPPING_NF');
4179: x_msg_data := FND_MESSAGE.GET;

Line 4194: ecx_cln_debug_pub.Add('==========Parameters After Query To ECX_DOCLOGS=============',1);

4190:
4191:
4192: -- values obtained after the query to ecx_doclogs table
4193: IF (l_Debug_Level <= 1) THEN
4194: ecx_cln_debug_pub.Add('==========Parameters After Query To ECX_DOCLOGS=============',1);
4195: ecx_cln_debug_pub.Add('APPLICATION ID ----- >>>'||p_app_id,1);
4196: ecx_cln_debug_pub.Add('COLLABORATION TYPE ----- >>>'||p_coll_type,1);
4197: ecx_cln_debug_pub.Add('COLLABORATION DOCUMENT TYPE ----- >>>'||p_doc_type,1);
4198: ecx_cln_debug_pub.Add('=============================================================',1);

Line 4195: ecx_cln_debug_pub.Add('APPLICATION ID ----- >>>'||p_app_id,1);

4191:
4192: -- values obtained after the query to ecx_doclogs table
4193: IF (l_Debug_Level <= 1) THEN
4194: ecx_cln_debug_pub.Add('==========Parameters After Query To ECX_DOCLOGS=============',1);
4195: ecx_cln_debug_pub.Add('APPLICATION ID ----- >>>'||p_app_id,1);
4196: ecx_cln_debug_pub.Add('COLLABORATION TYPE ----- >>>'||p_coll_type,1);
4197: ecx_cln_debug_pub.Add('COLLABORATION DOCUMENT TYPE ----- >>>'||p_doc_type,1);
4198: ecx_cln_debug_pub.Add('=============================================================',1);
4199: END IF;

Line 4196: ecx_cln_debug_pub.Add('COLLABORATION TYPE ----- >>>'||p_coll_type,1);

4192: -- values obtained after the query to ecx_doclogs table
4193: IF (l_Debug_Level <= 1) THEN
4194: ecx_cln_debug_pub.Add('==========Parameters After Query To ECX_DOCLOGS=============',1);
4195: ecx_cln_debug_pub.Add('APPLICATION ID ----- >>>'||p_app_id,1);
4196: ecx_cln_debug_pub.Add('COLLABORATION TYPE ----- >>>'||p_coll_type,1);
4197: ecx_cln_debug_pub.Add('COLLABORATION DOCUMENT TYPE ----- >>>'||p_doc_type,1);
4198: ecx_cln_debug_pub.Add('=============================================================',1);
4199: END IF;
4200:

Line 4197: ecx_cln_debug_pub.Add('COLLABORATION DOCUMENT TYPE ----- >>>'||p_doc_type,1);

4193: IF (l_Debug_Level <= 1) THEN
4194: ecx_cln_debug_pub.Add('==========Parameters After Query To ECX_DOCLOGS=============',1);
4195: ecx_cln_debug_pub.Add('APPLICATION ID ----- >>>'||p_app_id,1);
4196: ecx_cln_debug_pub.Add('COLLABORATION TYPE ----- >>>'||p_coll_type,1);
4197: ecx_cln_debug_pub.Add('COLLABORATION DOCUMENT TYPE ----- >>>'||p_doc_type,1);
4198: ecx_cln_debug_pub.Add('=============================================================',1);
4199: END IF;
4200:
4201:

Line 4198: ecx_cln_debug_pub.Add('=============================================================',1);

4194: ecx_cln_debug_pub.Add('==========Parameters After Query To ECX_DOCLOGS=============',1);
4195: ecx_cln_debug_pub.Add('APPLICATION ID ----- >>>'||p_app_id,1);
4196: ecx_cln_debug_pub.Add('COLLABORATION TYPE ----- >>>'||p_coll_type,1);
4197: ecx_cln_debug_pub.Add('COLLABORATION DOCUMENT TYPE ----- >>>'||p_doc_type,1);
4198: ecx_cln_debug_pub.Add('=============================================================',1);
4199: END IF;
4200:
4201:
4202: l_msg_data := 'Successfully retrieved default values from the CLN_XMLGTXN_MAPPING';

Line 4204: ecx_cln_debug_pub.Add(l_msg_data,1);

4200:
4201:
4202: l_msg_data := 'Successfully retrieved default values from the CLN_XMLGTXN_MAPPING';
4203: IF (l_Debug_Level <= 1) THEN
4204: ecx_cln_debug_pub.Add(l_msg_data,1);
4205: ecx_cln_debug_pub.Add('------ Exiting DEFAULT_XMLGTXN_MAPPING ------- ',2);
4206: END IF;
4207:
4208:

Line 4205: ecx_cln_debug_pub.Add('------ Exiting DEFAULT_XMLGTXN_MAPPING ------- ',2);

4201:
4202: l_msg_data := 'Successfully retrieved default values from the CLN_XMLGTXN_MAPPING';
4203: IF (l_Debug_Level <= 1) THEN
4204: ecx_cln_debug_pub.Add(l_msg_data,1);
4205: ecx_cln_debug_pub.Add('------ Exiting DEFAULT_XMLGTXN_MAPPING ------- ',2);
4206: END IF;
4207:
4208:
4209:

Line 4215: ecx_cln_debug_pub.Add(l_msg_data,4);

4211:
4212: WHEN FND_API.G_EXC_ERROR THEN
4213: x_return_status := FND_API.G_RET_STS_SUCCESS ;-- sending back success for backward compatibility
4214: IF (l_Debug_Level <= 4) THEN
4215: ecx_cln_debug_pub.Add(l_msg_data,4);
4216: ecx_cln_debug_pub.Add('------ ERROR--------');
4217: ecx_cln_debug_pub.Add('------ Exiting DEFAULT_XMLGTXN_MAPPING ------- ',2);
4218: END IF;
4219:

Line 4216: ecx_cln_debug_pub.Add('------ ERROR--------');

4212: WHEN FND_API.G_EXC_ERROR THEN
4213: x_return_status := FND_API.G_RET_STS_SUCCESS ;-- sending back success for backward compatibility
4214: IF (l_Debug_Level <= 4) THEN
4215: ecx_cln_debug_pub.Add(l_msg_data,4);
4216: ecx_cln_debug_pub.Add('------ ERROR--------');
4217: ecx_cln_debug_pub.Add('------ Exiting DEFAULT_XMLGTXN_MAPPING ------- ',2);
4218: END IF;
4219:
4220:

Line 4217: ecx_cln_debug_pub.Add('------ Exiting DEFAULT_XMLGTXN_MAPPING ------- ',2);

4213: x_return_status := FND_API.G_RET_STS_SUCCESS ;-- sending back success for backward compatibility
4214: IF (l_Debug_Level <= 4) THEN
4215: ecx_cln_debug_pub.Add(l_msg_data,4);
4216: ecx_cln_debug_pub.Add('------ ERROR--------');
4217: ecx_cln_debug_pub.Add('------ Exiting DEFAULT_XMLGTXN_MAPPING ------- ',2);
4218: END IF;
4219:
4220:
4221:

Line 4232: ecx_cln_debug_pub.Add(l_msg_data,6);

4228: FND_MESSAGE.SET_TOKEN('ERRORMSG',l_error_msg);
4229: x_msg_data :=FND_MESSAGE.GET;
4230: l_msg_data := 'Unexpected Error : '||l_error_code||'-'||l_error_msg;
4231: IF (l_Debug_Level <= 5) THEN
4232: ecx_cln_debug_pub.Add(l_msg_data,6);
4233: ecx_cln_debug_pub.Add('------ Exiting DEFAULT_XMLGTXN_MAPPING ------- ',2);
4234: END IF;
4235:
4236:

Line 4233: ecx_cln_debug_pub.Add('------ Exiting DEFAULT_XMLGTXN_MAPPING ------- ',2);

4229: x_msg_data :=FND_MESSAGE.GET;
4230: l_msg_data := 'Unexpected Error : '||l_error_code||'-'||l_error_msg;
4231: IF (l_Debug_Level <= 5) THEN
4232: ecx_cln_debug_pub.Add(l_msg_data,6);
4233: ecx_cln_debug_pub.Add('------ Exiting DEFAULT_XMLGTXN_MAPPING ------- ',2);
4234: END IF;
4235:
4236:
4237: END DEFAULT_XMLGTXN_MAPPING;

Line 4275: --l_debug_mode :=ecx_cln_debug_pub.Set_Debug_Mode('FILE');

4271:
4272: BEGIN
4273:
4274: -- Sets the debug mode to be FILE
4275: --l_debug_mode :=ecx_cln_debug_pub.Set_Debug_Mode('FILE');
4276:
4277: IF (l_Debug_Level <= 2) THEN
4278: ecx_cln_debug_pub.Add('------Entering DEFAULT_COLLABORATION_STATUS API---- ',2);
4279: END IF;

Line 4278: ecx_cln_debug_pub.Add('------Entering DEFAULT_COLLABORATION_STATUS API---- ',2);

4274: -- Sets the debug mode to be FILE
4275: --l_debug_mode :=ecx_cln_debug_pub.Set_Debug_Mode('FILE');
4276:
4277: IF (l_Debug_Level <= 2) THEN
4278: ecx_cln_debug_pub.Add('------Entering DEFAULT_COLLABORATION_STATUS API---- ',2);
4279: END IF;
4280:
4281:
4282: -- Initialize API return status to success

Line 4288: ecx_cln_debug_pub.Add('------------Parameters Received-------------',1);

4284:
4285: FND_MESSAGE.SET_NAME('CLN','CLN_COLL_STATUS_FOUND');
4286:
4287: IF (l_Debug_Level <= 1) THEN
4288: ecx_cln_debug_pub.Add('------------Parameters Received-------------',1);
4289: ecx_cln_debug_pub.Add('APPLCATION ID ----- >>>'||p_app_id,1);
4290: ecx_cln_debug_pub.Add('COLL TYPE ----- >>>'||p_coll_type,1);
4291: ecx_cln_debug_pub.Add('COLL STANDARD ----- >>>'||p_coll_standard,1);
4292: ecx_cln_debug_pub.Add('DOC STATUS ----- >>>'||p_doc_status,1);

Line 4289: ecx_cln_debug_pub.Add('APPLCATION ID ----- >>>'||p_app_id,1);

4285: FND_MESSAGE.SET_NAME('CLN','CLN_COLL_STATUS_FOUND');
4286:
4287: IF (l_Debug_Level <= 1) THEN
4288: ecx_cln_debug_pub.Add('------------Parameters Received-------------',1);
4289: ecx_cln_debug_pub.Add('APPLCATION ID ----- >>>'||p_app_id,1);
4290: ecx_cln_debug_pub.Add('COLL TYPE ----- >>>'||p_coll_type,1);
4291: ecx_cln_debug_pub.Add('COLL STANDARD ----- >>>'||p_coll_standard,1);
4292: ecx_cln_debug_pub.Add('DOC STATUS ----- >>>'||p_doc_status,1);
4293: ecx_cln_debug_pub.Add('DOC TYPE ----- >>>'||p_doc_type,1);

Line 4290: ecx_cln_debug_pub.Add('COLL TYPE ----- >>>'||p_coll_type,1);

4286:
4287: IF (l_Debug_Level <= 1) THEN
4288: ecx_cln_debug_pub.Add('------------Parameters Received-------------',1);
4289: ecx_cln_debug_pub.Add('APPLCATION ID ----- >>>'||p_app_id,1);
4290: ecx_cln_debug_pub.Add('COLL TYPE ----- >>>'||p_coll_type,1);
4291: ecx_cln_debug_pub.Add('COLL STANDARD ----- >>>'||p_coll_standard,1);
4292: ecx_cln_debug_pub.Add('DOC STATUS ----- >>>'||p_doc_status,1);
4293: ecx_cln_debug_pub.Add('DOC TYPE ----- >>>'||p_doc_type,1);
4294: ecx_cln_debug_pub.Add('DOC DIRECTION ----- >>>'||p_doc_dir,1);

Line 4291: ecx_cln_debug_pub.Add('COLL STANDARD ----- >>>'||p_coll_standard,1);

4287: IF (l_Debug_Level <= 1) THEN
4288: ecx_cln_debug_pub.Add('------------Parameters Received-------------',1);
4289: ecx_cln_debug_pub.Add('APPLCATION ID ----- >>>'||p_app_id,1);
4290: ecx_cln_debug_pub.Add('COLL TYPE ----- >>>'||p_coll_type,1);
4291: ecx_cln_debug_pub.Add('COLL STANDARD ----- >>>'||p_coll_standard,1);
4292: ecx_cln_debug_pub.Add('DOC STATUS ----- >>>'||p_doc_status,1);
4293: ecx_cln_debug_pub.Add('DOC TYPE ----- >>>'||p_doc_type,1);
4294: ecx_cln_debug_pub.Add('DOC DIRECTION ----- >>>'||p_doc_dir,1);
4295: ecx_cln_debug_pub.Add('COLLABORATION ID ----- >>>'||p_coll_id,1);

Line 4292: ecx_cln_debug_pub.Add('DOC STATUS ----- >>>'||p_doc_status,1);

4288: ecx_cln_debug_pub.Add('------------Parameters Received-------------',1);
4289: ecx_cln_debug_pub.Add('APPLCATION ID ----- >>>'||p_app_id,1);
4290: ecx_cln_debug_pub.Add('COLL TYPE ----- >>>'||p_coll_type,1);
4291: ecx_cln_debug_pub.Add('COLL STANDARD ----- >>>'||p_coll_standard,1);
4292: ecx_cln_debug_pub.Add('DOC STATUS ----- >>>'||p_doc_status,1);
4293: ecx_cln_debug_pub.Add('DOC TYPE ----- >>>'||p_doc_type,1);
4294: ecx_cln_debug_pub.Add('DOC DIRECTION ----- >>>'||p_doc_dir,1);
4295: ecx_cln_debug_pub.Add('COLLABORATION ID ----- >>>'||p_coll_id,1);
4296: ecx_cln_debug_pub.Add('---------------------------------------------',1);

Line 4293: ecx_cln_debug_pub.Add('DOC TYPE ----- >>>'||p_doc_type,1);

4289: ecx_cln_debug_pub.Add('APPLCATION ID ----- >>>'||p_app_id,1);
4290: ecx_cln_debug_pub.Add('COLL TYPE ----- >>>'||p_coll_type,1);
4291: ecx_cln_debug_pub.Add('COLL STANDARD ----- >>>'||p_coll_standard,1);
4292: ecx_cln_debug_pub.Add('DOC STATUS ----- >>>'||p_doc_status,1);
4293: ecx_cln_debug_pub.Add('DOC TYPE ----- >>>'||p_doc_type,1);
4294: ecx_cln_debug_pub.Add('DOC DIRECTION ----- >>>'||p_doc_dir,1);
4295: ecx_cln_debug_pub.Add('COLLABORATION ID ----- >>>'||p_coll_id,1);
4296: ecx_cln_debug_pub.Add('---------------------------------------------',1);
4297: END IF;

Line 4294: ecx_cln_debug_pub.Add('DOC DIRECTION ----- >>>'||p_doc_dir,1);

4290: ecx_cln_debug_pub.Add('COLL TYPE ----- >>>'||p_coll_type,1);
4291: ecx_cln_debug_pub.Add('COLL STANDARD ----- >>>'||p_coll_standard,1);
4292: ecx_cln_debug_pub.Add('DOC STATUS ----- >>>'||p_doc_status,1);
4293: ecx_cln_debug_pub.Add('DOC TYPE ----- >>>'||p_doc_type,1);
4294: ecx_cln_debug_pub.Add('DOC DIRECTION ----- >>>'||p_doc_dir,1);
4295: ecx_cln_debug_pub.Add('COLLABORATION ID ----- >>>'||p_coll_id,1);
4296: ecx_cln_debug_pub.Add('---------------------------------------------',1);
4297: END IF;
4298:

Line 4295: ecx_cln_debug_pub.Add('COLLABORATION ID ----- >>>'||p_coll_id,1);

4291: ecx_cln_debug_pub.Add('COLL STANDARD ----- >>>'||p_coll_standard,1);
4292: ecx_cln_debug_pub.Add('DOC STATUS ----- >>>'||p_doc_status,1);
4293: ecx_cln_debug_pub.Add('DOC TYPE ----- >>>'||p_doc_type,1);
4294: ecx_cln_debug_pub.Add('DOC DIRECTION ----- >>>'||p_doc_dir,1);
4295: ecx_cln_debug_pub.Add('COLLABORATION ID ----- >>>'||p_coll_id,1);
4296: ecx_cln_debug_pub.Add('---------------------------------------------',1);
4297: END IF;
4298:
4299:

Line 4296: ecx_cln_debug_pub.Add('---------------------------------------------',1);

4292: ecx_cln_debug_pub.Add('DOC STATUS ----- >>>'||p_doc_status,1);
4293: ecx_cln_debug_pub.Add('DOC TYPE ----- >>>'||p_doc_type,1);
4294: ecx_cln_debug_pub.Add('DOC DIRECTION ----- >>>'||p_doc_dir,1);
4295: ecx_cln_debug_pub.Add('COLLABORATION ID ----- >>>'||p_coll_id,1);
4296: ecx_cln_debug_pub.Add('---------------------------------------------',1);
4297: END IF;
4298:
4299:
4300:

Line 4306: ecx_cln_debug_pub.Add('Collaboration Status ----- >>>'||x_coll_status ,1);

4302: x_coll_status := 'ERROR';
4303: FND_MESSAGE.SET_TOKEN('STATUS','ERROR');
4304: x_msg_data := FND_MESSAGE.GET;
4305: IF (l_Debug_Level <= 1) THEN
4306: ecx_cln_debug_pub.Add('Collaboration Status ----- >>>'||x_coll_status ,1);
4307: END IF;
4308:
4309: IF (l_Debug_Level <= 2) THEN
4310: ecx_cln_debug_pub.Add('-------- Exiting DEFAULT_COLLABORATION_STATUS API ----- ',2);

Line 4310: ecx_cln_debug_pub.Add('-------- Exiting DEFAULT_COLLABORATION_STATUS API ----- ',2);

4306: ecx_cln_debug_pub.Add('Collaboration Status ----- >>>'||x_coll_status ,1);
4307: END IF;
4308:
4309: IF (l_Debug_Level <= 2) THEN
4310: ecx_cln_debug_pub.Add('-------- Exiting DEFAULT_COLLABORATION_STATUS API ----- ',2);
4311: END IF;
4312:
4313: RETURN;
4314: END IF;

Line 4319: ecx_cln_debug_pub.Add('----- Before querying the CLN_COLL_COMPLETED_STATUS ----',1);

4315:
4316: x_coll_status := 'STARTED';
4317: BEGIN
4318: IF (l_Debug_Level <= 1) THEN
4319: ecx_cln_debug_pub.Add('----- Before querying the CLN_COLL_COMPLETED_STATUS ----',1);
4320: END IF;
4321:
4322:
4323: SELECT message_count

Line 4333: ecx_cln_debug_pub.Add('----- After querying the CLN_COLL_COMPLETED_STATUS ----',1);

4329: AND document_type = p_doc_type
4330: AND document_direction = p_doc_dir;
4331:
4332: IF (l_Debug_Level <= 1) THEN
4333: ecx_cln_debug_pub.Add('----- After querying the CLN_COLL_COMPLETED_STATUS ----',1);
4334: ecx_cln_debug_pub.Add('----- Message count : '||l_message_count,1);
4335: END IF;
4336:
4337:

Line 4334: ecx_cln_debug_pub.Add('----- Message count : '||l_message_count,1);

4330: AND document_direction = p_doc_dir;
4331:
4332: IF (l_Debug_Level <= 1) THEN
4333: ecx_cln_debug_pub.Add('----- After querying the CLN_COLL_COMPLETED_STATUS ----',1);
4334: ecx_cln_debug_pub.Add('----- Message count : '||l_message_count,1);
4335: END IF;
4336:
4337:
4338: IF (l_message_count > 1) THEN

Line 4343: ecx_cln_debug_pub.Add('---- Before querying the collaboration history ---',1);

4339: -- We have to query coll and find out for howmany messages
4340: -- are already there. If they are greater than or equal to
4341: -- what is specified then the status is completed normal.
4342: IF (l_Debug_Level <= 1) THEN
4343: ecx_cln_debug_pub.Add('---- Before querying the collaboration history ---',1);
4344: END IF;
4345:
4346:
4347: SELECT count('x')

Line 4358: ecx_cln_debug_pub.Add('---- After querying the collaboration history ---, count : ' || l_msg_count_in_hist ,1);

4354: AND dtl.collaboration_document_type = p_doc_type
4355: AND dtl.document_direction = p_doc_dir;
4356:
4357: IF (l_Debug_Level <= 1) THEN
4358: ecx_cln_debug_pub.Add('---- After querying the collaboration history ---, count : ' || l_msg_count_in_hist ,1);
4359: END IF;
4360:
4361:
4362: IF (l_msg_count_in_hist >= l_message_count-1) THEN

Line 4381: ecx_cln_debug_pub.Add('Collaboration Status ----- >>>'||x_coll_status ,1);

4377: x_msg_data := FND_MESSAGE.GET;
4378: END;
4379:
4380: IF (l_Debug_Level <= 1) THEN
4381: ecx_cln_debug_pub.Add('Collaboration Status ----- >>>'||x_coll_status ,1);
4382: END IF;
4383:
4384: IF (l_Debug_Level <= 2) THEN
4385: ecx_cln_debug_pub.Add('-------- Exiting DEFAULT_COLLABORATION_STATUS API ----- ',2);

Line 4385: ecx_cln_debug_pub.Add('-------- Exiting DEFAULT_COLLABORATION_STATUS API ----- ',2);

4381: ecx_cln_debug_pub.Add('Collaboration Status ----- >>>'||x_coll_status ,1);
4382: END IF;
4383:
4384: IF (l_Debug_Level <= 2) THEN
4385: ecx_cln_debug_pub.Add('-------- Exiting DEFAULT_COLLABORATION_STATUS API ----- ',2);
4386: END IF;
4387:
4388:
4389: -- Exception Handling

Line 4397: ecx_cln_debug_pub.Add(x_msg_data,6);

4393: l_error_msg := SQLERRM;
4394: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
4395: x_msg_data := l_error_code||' : '||l_error_msg;
4396: IF (l_Debug_Level <= 6) THEN
4397: ecx_cln_debug_pub.Add(x_msg_data,6);
4398: ecx_cln_debug_pub.Add('-------- Exiting DEFAULT_COLLABORATION_STATUS API WITH ERROR----- ',2);
4399: END IF;
4400:
4401:

Line 4398: ecx_cln_debug_pub.Add('-------- Exiting DEFAULT_COLLABORATION_STATUS API WITH ERROR----- ',2);

4394: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
4395: x_msg_data := l_error_code||' : '||l_error_msg;
4396: IF (l_Debug_Level <= 6) THEN
4397: ecx_cln_debug_pub.Add(x_msg_data,6);
4398: ecx_cln_debug_pub.Add('-------- Exiting DEFAULT_COLLABORATION_STATUS API WITH ERROR----- ',2);
4399: END IF;
4400:
4401:
4402: END DEFAULT_COLLABORATION_STATUS;

Line 4452: --l_debug_mode :=ecx_cln_debug_pub.Set_Debug_Mode('FILE');

4448: l_corrspnd_internal_cntrl_num NUMBER;
4449: BEGIN
4450:
4451: -- Sets the debug mode to be FILE
4452: --l_debug_mode :=ecx_cln_debug_pub.Set_Debug_Mode('FILE');
4453:
4454:
4455: IF (l_Debug_Level <= 2) THEN
4456: ecx_cln_debug_pub.Add('--------- Entering FIND_COLLABORATION_ID API ------------ ',2);

Line 4456: ecx_cln_debug_pub.Add('--------- Entering FIND_COLLABORATION_ID API ------------ ',2);

4452: --l_debug_mode :=ecx_cln_debug_pub.Set_Debug_Mode('FILE');
4453:
4454:
4455: IF (l_Debug_Level <= 2) THEN
4456: ecx_cln_debug_pub.Add('--------- Entering FIND_COLLABORATION_ID API ------------ ',2);
4457: END IF;
4458:
4459:
4460: -- Initialize API return status to success

Line 4467: ecx_cln_debug_pub.Add('==========Parameters Received=============',1);

4463:
4464:
4465: -- get the paramaters passed
4466: IF (l_Debug_Level <= 1) THEN
4467: ecx_cln_debug_pub.Add('==========Parameters Received=============',1);
4468: ecx_cln_debug_pub.Add('APPLCATION ID ----- >>>'||p_app_id,1);
4469: ecx_cln_debug_pub.Add('REFERENCE ID ----- >>>'||p_ref_id,1);
4470: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);
4471: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);

Line 4468: ecx_cln_debug_pub.Add('APPLCATION ID ----- >>>'||p_app_id,1);

4464:
4465: -- get the paramaters passed
4466: IF (l_Debug_Level <= 1) THEN
4467: ecx_cln_debug_pub.Add('==========Parameters Received=============',1);
4468: ecx_cln_debug_pub.Add('APPLCATION ID ----- >>>'||p_app_id,1);
4469: ecx_cln_debug_pub.Add('REFERENCE ID ----- >>>'||p_ref_id,1);
4470: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);
4471: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);
4472: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION TYPE ----- >>>'||p_xmlg_int_transaction_type,1);

Line 4469: ecx_cln_debug_pub.Add('REFERENCE ID ----- >>>'||p_ref_id,1);

4465: -- get the paramaters passed
4466: IF (l_Debug_Level <= 1) THEN
4467: ecx_cln_debug_pub.Add('==========Parameters Received=============',1);
4468: ecx_cln_debug_pub.Add('APPLCATION ID ----- >>>'||p_app_id,1);
4469: ecx_cln_debug_pub.Add('REFERENCE ID ----- >>>'||p_ref_id,1);
4470: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);
4471: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);
4472: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION TYPE ----- >>>'||p_xmlg_int_transaction_type,1);
4473: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_int_transaction_subtype,1);

Line 4470: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);

4466: IF (l_Debug_Level <= 1) THEN
4467: ecx_cln_debug_pub.Add('==========Parameters Received=============',1);
4468: ecx_cln_debug_pub.Add('APPLCATION ID ----- >>>'||p_app_id,1);
4469: ecx_cln_debug_pub.Add('REFERENCE ID ----- >>>'||p_ref_id,1);
4470: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);
4471: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);
4472: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION TYPE ----- >>>'||p_xmlg_int_transaction_type,1);
4473: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_int_transaction_subtype,1);
4474: ecx_cln_debug_pub.Add('XMLG TRADING PARTNER ID ----- >>>'||p_tr_partner_id,1);

Line 4471: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);

4467: ecx_cln_debug_pub.Add('==========Parameters Received=============',1);
4468: ecx_cln_debug_pub.Add('APPLCATION ID ----- >>>'||p_app_id,1);
4469: ecx_cln_debug_pub.Add('REFERENCE ID ----- >>>'||p_ref_id,1);
4470: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);
4471: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);
4472: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION TYPE ----- >>>'||p_xmlg_int_transaction_type,1);
4473: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_int_transaction_subtype,1);
4474: ecx_cln_debug_pub.Add('XMLG TRADING PARTNER ID ----- >>>'||p_tr_partner_id,1);
4475: ecx_cln_debug_pub.Add('XMLG TRADING PARTNER SITE ----- >>>'||p_tr_partner_site,1);

Line 4472: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION TYPE ----- >>>'||p_xmlg_int_transaction_type,1);

4468: ecx_cln_debug_pub.Add('APPLCATION ID ----- >>>'||p_app_id,1);
4469: ecx_cln_debug_pub.Add('REFERENCE ID ----- >>>'||p_ref_id,1);
4470: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);
4471: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);
4472: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION TYPE ----- >>>'||p_xmlg_int_transaction_type,1);
4473: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_int_transaction_subtype,1);
4474: ecx_cln_debug_pub.Add('XMLG TRADING PARTNER ID ----- >>>'||p_tr_partner_id,1);
4475: ecx_cln_debug_pub.Add('XMLG TRADING PARTNER SITE ----- >>>'||p_tr_partner_site,1);
4476: ecx_cln_debug_pub.Add('XMLG TRADING PARTNER TYPE ----- >>>'||p_tr_partner_type,1);

Line 4473: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_int_transaction_subtype,1);

4469: ecx_cln_debug_pub.Add('REFERENCE ID ----- >>>'||p_ref_id,1);
4470: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);
4471: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);
4472: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION TYPE ----- >>>'||p_xmlg_int_transaction_type,1);
4473: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_int_transaction_subtype,1);
4474: ecx_cln_debug_pub.Add('XMLG TRADING PARTNER ID ----- >>>'||p_tr_partner_id,1);
4475: ecx_cln_debug_pub.Add('XMLG TRADING PARTNER SITE ----- >>>'||p_tr_partner_site,1);
4476: ecx_cln_debug_pub.Add('XMLG TRADING PARTNER TYPE ----- >>>'||p_tr_partner_type,1);
4477: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);

Line 4474: ecx_cln_debug_pub.Add('XMLG TRADING PARTNER ID ----- >>>'||p_tr_partner_id,1);

4470: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);
4471: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);
4472: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION TYPE ----- >>>'||p_xmlg_int_transaction_type,1);
4473: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_int_transaction_subtype,1);
4474: ecx_cln_debug_pub.Add('XMLG TRADING PARTNER ID ----- >>>'||p_tr_partner_id,1);
4475: ecx_cln_debug_pub.Add('XMLG TRADING PARTNER SITE ----- >>>'||p_tr_partner_site,1);
4476: ecx_cln_debug_pub.Add('XMLG TRADING PARTNER TYPE ----- >>>'||p_tr_partner_type,1);
4477: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);
4478: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_dir,1);

Line 4475: ecx_cln_debug_pub.Add('XMLG TRADING PARTNER SITE ----- >>>'||p_tr_partner_site,1);

4471: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);
4472: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION TYPE ----- >>>'||p_xmlg_int_transaction_type,1);
4473: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_int_transaction_subtype,1);
4474: ecx_cln_debug_pub.Add('XMLG TRADING PARTNER ID ----- >>>'||p_tr_partner_id,1);
4475: ecx_cln_debug_pub.Add('XMLG TRADING PARTNER SITE ----- >>>'||p_tr_partner_site,1);
4476: ecx_cln_debug_pub.Add('XMLG TRADING PARTNER TYPE ----- >>>'||p_tr_partner_type,1);
4477: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);
4478: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_dir,1);
4479: ecx_cln_debug_pub.Add('XMLG MESSAGE ID ----- >>>'||p_xmlg_msg_id,1);

Line 4476: ecx_cln_debug_pub.Add('XMLG TRADING PARTNER TYPE ----- >>>'||p_tr_partner_type,1);

4472: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION TYPE ----- >>>'||p_xmlg_int_transaction_type,1);
4473: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_int_transaction_subtype,1);
4474: ecx_cln_debug_pub.Add('XMLG TRADING PARTNER ID ----- >>>'||p_tr_partner_id,1);
4475: ecx_cln_debug_pub.Add('XMLG TRADING PARTNER SITE ----- >>>'||p_tr_partner_site,1);
4476: ecx_cln_debug_pub.Add('XMLG TRADING PARTNER TYPE ----- >>>'||p_tr_partner_type,1);
4477: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);
4478: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_dir,1);
4479: ecx_cln_debug_pub.Add('XMLG MESSAGE ID ----- >>>'||p_xmlg_msg_id,1);
4480: ecx_cln_debug_pub.Add('UNIQUE 1 ----- >>>'||p_unique1,1);

Line 4477: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);

4473: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_int_transaction_subtype,1);
4474: ecx_cln_debug_pub.Add('XMLG TRADING PARTNER ID ----- >>>'||p_tr_partner_id,1);
4475: ecx_cln_debug_pub.Add('XMLG TRADING PARTNER SITE ----- >>>'||p_tr_partner_site,1);
4476: ecx_cln_debug_pub.Add('XMLG TRADING PARTNER TYPE ----- >>>'||p_tr_partner_type,1);
4477: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);
4478: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_dir,1);
4479: ecx_cln_debug_pub.Add('XMLG MESSAGE ID ----- >>>'||p_xmlg_msg_id,1);
4480: ecx_cln_debug_pub.Add('UNIQUE 1 ----- >>>'||p_unique1,1);
4481: ecx_cln_debug_pub.Add('UNIQUE 2 ----- >>>'||p_unique2,1);

Line 4478: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_dir,1);

4474: ecx_cln_debug_pub.Add('XMLG TRADING PARTNER ID ----- >>>'||p_tr_partner_id,1);
4475: ecx_cln_debug_pub.Add('XMLG TRADING PARTNER SITE ----- >>>'||p_tr_partner_site,1);
4476: ecx_cln_debug_pub.Add('XMLG TRADING PARTNER TYPE ----- >>>'||p_tr_partner_type,1);
4477: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);
4478: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_dir,1);
4479: ecx_cln_debug_pub.Add('XMLG MESSAGE ID ----- >>>'||p_xmlg_msg_id,1);
4480: ecx_cln_debug_pub.Add('UNIQUE 1 ----- >>>'||p_unique1,1);
4481: ecx_cln_debug_pub.Add('UNIQUE 2 ----- >>>'||p_unique2,1);
4482: ecx_cln_debug_pub.Add('UNIQUE 3 ----- >>>'||p_unique3,1);

Line 4479: ecx_cln_debug_pub.Add('XMLG MESSAGE ID ----- >>>'||p_xmlg_msg_id,1);

4475: ecx_cln_debug_pub.Add('XMLG TRADING PARTNER SITE ----- >>>'||p_tr_partner_site,1);
4476: ecx_cln_debug_pub.Add('XMLG TRADING PARTNER TYPE ----- >>>'||p_tr_partner_type,1);
4477: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);
4478: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_dir,1);
4479: ecx_cln_debug_pub.Add('XMLG MESSAGE ID ----- >>>'||p_xmlg_msg_id,1);
4480: ecx_cln_debug_pub.Add('UNIQUE 1 ----- >>>'||p_unique1,1);
4481: ecx_cln_debug_pub.Add('UNIQUE 2 ----- >>>'||p_unique2,1);
4482: ecx_cln_debug_pub.Add('UNIQUE 3 ----- >>>'||p_unique3,1);
4483: ecx_cln_debug_pub.Add('UNIQUE 4 ----- >>>'||p_unique4,1);

Line 4480: ecx_cln_debug_pub.Add('UNIQUE 1 ----- >>>'||p_unique1,1);

4476: ecx_cln_debug_pub.Add('XMLG TRADING PARTNER TYPE ----- >>>'||p_tr_partner_type,1);
4477: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);
4478: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_dir,1);
4479: ecx_cln_debug_pub.Add('XMLG MESSAGE ID ----- >>>'||p_xmlg_msg_id,1);
4480: ecx_cln_debug_pub.Add('UNIQUE 1 ----- >>>'||p_unique1,1);
4481: ecx_cln_debug_pub.Add('UNIQUE 2 ----- >>>'||p_unique2,1);
4482: ecx_cln_debug_pub.Add('UNIQUE 3 ----- >>>'||p_unique3,1);
4483: ecx_cln_debug_pub.Add('UNIQUE 4 ----- >>>'||p_unique4,1);
4484: ecx_cln_debug_pub.Add('UNIQUE 5 ----- >>>'||p_unique5,1);

Line 4481: ecx_cln_debug_pub.Add('UNIQUE 2 ----- >>>'||p_unique2,1);

4477: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);
4478: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_dir,1);
4479: ecx_cln_debug_pub.Add('XMLG MESSAGE ID ----- >>>'||p_xmlg_msg_id,1);
4480: ecx_cln_debug_pub.Add('UNIQUE 1 ----- >>>'||p_unique1,1);
4481: ecx_cln_debug_pub.Add('UNIQUE 2 ----- >>>'||p_unique2,1);
4482: ecx_cln_debug_pub.Add('UNIQUE 3 ----- >>>'||p_unique3,1);
4483: ecx_cln_debug_pub.Add('UNIQUE 4 ----- >>>'||p_unique4,1);
4484: ecx_cln_debug_pub.Add('UNIQUE 5 ----- >>>'||p_unique5,1);
4485: ecx_cln_debug_pub.Add('XMLG INTERNAL CONTROL NO ----- >>>'||p_xmlg_internal_control_number,1);

Line 4482: ecx_cln_debug_pub.Add('UNIQUE 3 ----- >>>'||p_unique3,1);

4478: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_dir,1);
4479: ecx_cln_debug_pub.Add('XMLG MESSAGE ID ----- >>>'||p_xmlg_msg_id,1);
4480: ecx_cln_debug_pub.Add('UNIQUE 1 ----- >>>'||p_unique1,1);
4481: ecx_cln_debug_pub.Add('UNIQUE 2 ----- >>>'||p_unique2,1);
4482: ecx_cln_debug_pub.Add('UNIQUE 3 ----- >>>'||p_unique3,1);
4483: ecx_cln_debug_pub.Add('UNIQUE 4 ----- >>>'||p_unique4,1);
4484: ecx_cln_debug_pub.Add('UNIQUE 5 ----- >>>'||p_unique5,1);
4485: ecx_cln_debug_pub.Add('XMLG INTERNAL CONTROL NO ----- >>>'||p_xmlg_internal_control_number,1);
4486: ecx_cln_debug_pub.Add('XMLG EVENT KEY ----- >>>'||p_xml_event_key,1);

Line 4483: ecx_cln_debug_pub.Add('UNIQUE 4 ----- >>>'||p_unique4,1);

4479: ecx_cln_debug_pub.Add('XMLG MESSAGE ID ----- >>>'||p_xmlg_msg_id,1);
4480: ecx_cln_debug_pub.Add('UNIQUE 1 ----- >>>'||p_unique1,1);
4481: ecx_cln_debug_pub.Add('UNIQUE 2 ----- >>>'||p_unique2,1);
4482: ecx_cln_debug_pub.Add('UNIQUE 3 ----- >>>'||p_unique3,1);
4483: ecx_cln_debug_pub.Add('UNIQUE 4 ----- >>>'||p_unique4,1);
4484: ecx_cln_debug_pub.Add('UNIQUE 5 ----- >>>'||p_unique5,1);
4485: ecx_cln_debug_pub.Add('XMLG INTERNAL CONTROL NO ----- >>>'||p_xmlg_internal_control_number,1);
4486: ecx_cln_debug_pub.Add('XMLG EVENT KEY ----- >>>'||p_xml_event_key,1);
4487: ecx_cln_debug_pub.Add('===========================================',1);

Line 4484: ecx_cln_debug_pub.Add('UNIQUE 5 ----- >>>'||p_unique5,1);

4480: ecx_cln_debug_pub.Add('UNIQUE 1 ----- >>>'||p_unique1,1);
4481: ecx_cln_debug_pub.Add('UNIQUE 2 ----- >>>'||p_unique2,1);
4482: ecx_cln_debug_pub.Add('UNIQUE 3 ----- >>>'||p_unique3,1);
4483: ecx_cln_debug_pub.Add('UNIQUE 4 ----- >>>'||p_unique4,1);
4484: ecx_cln_debug_pub.Add('UNIQUE 5 ----- >>>'||p_unique5,1);
4485: ecx_cln_debug_pub.Add('XMLG INTERNAL CONTROL NO ----- >>>'||p_xmlg_internal_control_number,1);
4486: ecx_cln_debug_pub.Add('XMLG EVENT KEY ----- >>>'||p_xml_event_key,1);
4487: ecx_cln_debug_pub.Add('===========================================',1);
4488: END IF;

Line 4485: ecx_cln_debug_pub.Add('XMLG INTERNAL CONTROL NO ----- >>>'||p_xmlg_internal_control_number,1);

4481: ecx_cln_debug_pub.Add('UNIQUE 2 ----- >>>'||p_unique2,1);
4482: ecx_cln_debug_pub.Add('UNIQUE 3 ----- >>>'||p_unique3,1);
4483: ecx_cln_debug_pub.Add('UNIQUE 4 ----- >>>'||p_unique4,1);
4484: ecx_cln_debug_pub.Add('UNIQUE 5 ----- >>>'||p_unique5,1);
4485: ecx_cln_debug_pub.Add('XMLG INTERNAL CONTROL NO ----- >>>'||p_xmlg_internal_control_number,1);
4486: ecx_cln_debug_pub.Add('XMLG EVENT KEY ----- >>>'||p_xml_event_key,1);
4487: ecx_cln_debug_pub.Add('===========================================',1);
4488: END IF;
4489:

Line 4486: ecx_cln_debug_pub.Add('XMLG EVENT KEY ----- >>>'||p_xml_event_key,1);

4482: ecx_cln_debug_pub.Add('UNIQUE 3 ----- >>>'||p_unique3,1);
4483: ecx_cln_debug_pub.Add('UNIQUE 4 ----- >>>'||p_unique4,1);
4484: ecx_cln_debug_pub.Add('UNIQUE 5 ----- >>>'||p_unique5,1);
4485: ecx_cln_debug_pub.Add('XMLG INTERNAL CONTROL NO ----- >>>'||p_xmlg_internal_control_number,1);
4486: ecx_cln_debug_pub.Add('XMLG EVENT KEY ----- >>>'||p_xml_event_key,1);
4487: ecx_cln_debug_pub.Add('===========================================',1);
4488: END IF;
4489:
4490:

Line 4487: ecx_cln_debug_pub.Add('===========================================',1);

4483: ecx_cln_debug_pub.Add('UNIQUE 4 ----- >>>'||p_unique4,1);
4484: ecx_cln_debug_pub.Add('UNIQUE 5 ----- >>>'||p_unique5,1);
4485: ecx_cln_debug_pub.Add('XMLG INTERNAL CONTROL NO ----- >>>'||p_xmlg_internal_control_number,1);
4486: ecx_cln_debug_pub.Add('XMLG EVENT KEY ----- >>>'||p_xml_event_key,1);
4487: ecx_cln_debug_pub.Add('===========================================',1);
4488: END IF;
4489:
4490:
4491:

Line 4494: ecx_cln_debug_pub.Add('----- Query 1: Finding Collaboration ID from CLN_COLL_HIST_HDR table ----',1);

4490:
4491:
4492: BEGIN
4493: IF (l_Debug_Level <= 1) THEN
4494: ecx_cln_debug_pub.Add('----- Query 1: Finding Collaboration ID from CLN_COLL_HIST_HDR table ----',1);
4495: END IF;
4496:
4497: SELECT COLLABORATION_ID INTO x_coll_id
4498: FROM CLN_COLL_HIST_HDR

Line 4504: ecx_cln_debug_pub.Add('Collaboration ID found as - '||x_coll_id,1);

4500: OR XMLG_MSG_ID = p_xmlg_msg_id
4501: OR XMLG_INTERNAL_CONTROL_NUMBER = p_xmlg_internal_control_number;
4502:
4503: IF (l_Debug_Level <= 1) THEN
4504: ecx_cln_debug_pub.Add('Collaboration ID found as - '||x_coll_id,1);
4505: END IF;
4506:
4507:
4508: EXCEPTION

Line 4516: cln_debug_pub.Add('Unable to find the collaboration in Collaboration History - Header Table',1);

4512: l_msg_data := 'Unique Collaboration Not Found';
4513: RAISE FND_API.G_EXC_ERROR;
4514: WHEN NO_DATA_FOUND THEN
4515: IF (l_Debug_Level <= 1) THEN
4516: cln_debug_pub.Add('Unable to find the collaboration in Collaboration History - Header Table',1);
4517: END IF;
4518: IF p_unique1 IS NOT NULL OR
4519: p_unique2 IS NOT NULL OR
4520: p_unique3 IS NOT NULL OR

Line 4525: ecx_cln_debug_pub.Add('----- Query 2: Finding Collaboration ID from CLN_COLL_HIST_HDR table ----',1);

4521: p_unique4 IS NOT NULL OR
4522: p_unique5 IS NOT NULL THEN
4523: BEGIN
4524: IF (l_Debug_Level <= 1) THEN
4525: ecx_cln_debug_pub.Add('----- Query 2: Finding Collaboration ID from CLN_COLL_HIST_HDR table ----',1);
4526: END IF;
4527:
4528: SELECT COLLABORATION_ID INTO x_coll_id
4529: FROM CLN_COLL_HIST_HDR

Line 4537: ecx_cln_debug_pub.Add('Collaboration ID found as - '||x_coll_id,1);

4533: OR (APPLICATION_ID = p_app_id AND UNIQUE_ID4 = p_unique4)
4534: OR (APPLICATION_ID = p_app_id AND UNIQUE_ID5 = p_unique5);
4535:
4536: IF (l_Debug_Level <= 1) THEN
4537: ecx_cln_debug_pub.Add('Collaboration ID found as - '||x_coll_id,1);
4538: END IF;
4539: EXCEPTION
4540: WHEN NO_DATA_FOUND THEN
4541:

Line 4543: ecx_cln_debug_pub.Add('Unable to find the collaboration in Collaboration History - Header Table',1);

4539: EXCEPTION
4540: WHEN NO_DATA_FOUND THEN
4541:
4542: IF (l_Debug_Level <= 1) THEN
4543: ecx_cln_debug_pub.Add('Unable to find the collaboration in Collaboration History - Header Table',1);
4544: END IF;
4545:
4546: WHEN TOO_MANY_ROWS THEN
4547: FND_MESSAGE.SET_NAME('CLN','CLN_CH_UNIQUE_COLLABORATION_NF');

Line 4555: cln_debug_pub.Add('Unique_id from 1 to 5 are NULL',1);

4551:
4552: END;
4553: ELSE
4554: IF (l_Debug_Level <= 1) THEN
4555: cln_debug_pub.Add('Unique_id from 1 to 5 are NULL',1);
4556: END IF;
4557: END IF;
4558: END;
4559:

Line 4562: ecx_cln_debug_pub.Add('------ Exiting FIND_COLLABORATION_ID API ------- ',2);

4558: END;
4559:
4560: IF x_coll_id IS NOT NULL THEN
4561: IF (l_Debug_Level <= 1) THEN
4562: ecx_cln_debug_pub.Add('------ Exiting FIND_COLLABORATION_ID API ------- ',2);
4563: END IF;
4564:
4565: RETURN;
4566: END IF;

Line 4570: ecx_cln_debug_pub.Add('----- Finding Collaboration ID from CLN_COLL_HIST_DTL table ----',1);

4566: END IF;
4567:
4568:
4569: IF (l_Debug_Level <= 1) THEN
4570: ecx_cln_debug_pub.Add('----- Finding Collaboration ID from CLN_COLL_HIST_DTL table ----',1);
4571: END IF;
4572:
4573: BEGIN
4574: SELECT COLLABORATION_ID INTO x_coll_id

Line 4580: ecx_cln_debug_pub.Add('Collaboration ID found as - '||x_coll_id,1);

4576: WHERE (XMLG_MSG_ID = p_xmlg_msg_id
4577: OR XMLG_INTERNAL_CONTROL_NUMBER = p_xmlg_internal_control_number)
4578: AND ROWNUM < 2;
4579: IF (l_Debug_Level <= 1) THEN
4580: ecx_cln_debug_pub.Add('Collaboration ID found as - '||x_coll_id,1);
4581: END IF;
4582:
4583: EXCEPTION
4584: WHEN NO_DATA_FOUND THEN

Line 4586: ecx_cln_debug_pub.Add('Unable to find the collaboration in Collaboration History - Detail Table',1);

4582:
4583: EXCEPTION
4584: WHEN NO_DATA_FOUND THEN
4585: IF (l_Debug_Level <= 1) THEN
4586: ecx_cln_debug_pub.Add('Unable to find the collaboration in Collaboration History - Detail Table',1);
4587: END IF;
4588:
4589: WHEN TOO_MANY_ROWS THEN
4590: FND_MESSAGE.SET_NAME('CLN','CLN_CH_UNIQUE_COLLABORATION_NF');

Line 4598: ecx_cln_debug_pub.Add('------ Exiting FIND_COLLABORATION_ID API ------- ',2);

4594: END;
4595:
4596: IF x_coll_id IS NOT NULL THEN
4597: IF (l_Debug_Level <= 2) THEN
4598: ecx_cln_debug_pub.Add('------ Exiting FIND_COLLABORATION_ID API ------- ',2);
4599: END IF;
4600:
4601: RETURN;
4602: END IF;

Line 4605: ecx_cln_debug_pub.Add('----- Finding Collaboration ID from CLN_COLL_HIST_HDR table using Transaction Type/SubType',1);

4601: RETURN;
4602: END IF;
4603:
4604: IF (l_Debug_Level <= 1) THEN
4605: ecx_cln_debug_pub.Add('----- Finding Collaboration ID from CLN_COLL_HIST_HDR table using Transaction Type/SubType',1);
4606: END IF;
4607:
4608: BEGIN
4609: SELECT COLLABORATION_ID INTO x_coll_id

Line 4617: ecx_cln_debug_pub.Add('Collaboration ID found as - '||x_coll_id,1);

4613: AND XMLG_DOCUMENT_ID = p_xmlg_document_id
4614: AND DOCUMENT_DIRECTION = nvl(p_doc_dir, DOCUMENT_DIRECTION)
4615: AND (XML_EVENT_KEY is null or p_xml_event_key is null or XML_EVENT_KEY = p_xml_event_key);
4616: IF (l_Debug_Level <= 1) THEN
4617: ecx_cln_debug_pub.Add('Collaboration ID found as - '||x_coll_id,1);
4618: END IF;
4619:
4620: EXCEPTION
4621: WHEN NO_DATA_FOUND THEN

Line 4623: ecx_cln_debug_pub.Add('Unable to find the collaboration in Collaboration History - Header Table using Transaction Type/SubType',1);

4619:
4620: EXCEPTION
4621: WHEN NO_DATA_FOUND THEN
4622: IF (l_Debug_Level <= 1) THEN
4623: ecx_cln_debug_pub.Add('Unable to find the collaboration in Collaboration History - Header Table using Transaction Type/SubType',1);
4624: END IF;
4625:
4626: WHEN TOO_MANY_ROWS THEN
4627: FND_MESSAGE.SET_NAME('CLN','CLN_CH_UNIQUE_COLLABORATION_NF');

Line 4636: ecx_cln_debug_pub.Add('------ Exiting FIND_COLLABORATION_ID API ------- ',2);

4632:
4633:
4634: IF x_coll_id IS NOT NULL THEN
4635: IF (l_Debug_Level <= 2) THEN
4636: ecx_cln_debug_pub.Add('------ Exiting FIND_COLLABORATION_ID API ------- ',2);
4637: END IF;
4638:
4639: RETURN;
4640: END IF;

Line 4644: ecx_cln_debug_pub.Add('----- Finding Collaboration ID using the reference id of the payload and then FIELD7 of doclogs',1);

4640: END IF;
4641:
4642: IF (p_doc_dir = 'OUT') and (p_xmlg_msg_id IS NOT NULL) and (p_collaboration_standard is not null) THEN
4643: IF (l_Debug_Level <= 1) THEN
4644: ecx_cln_debug_pub.Add('----- Finding Collaboration ID using the reference id of the payload and then FIELD7 of doclogs',1);
4645: END IF;
4646:
4647: GET_DATA_AREA_REFID(p_xmlg_msg_id,p_collaboration_standard,l_data_area_refid, p_app_id, p_coll_type);
4648:

Line 4650: ecx_cln_debug_pub.Add('Data area reference id got as : ' || l_data_area_refid ,1);

4646:
4647: GET_DATA_AREA_REFID(p_xmlg_msg_id,p_collaboration_standard,l_data_area_refid, p_app_id, p_coll_type);
4648:
4649: IF (l_Debug_Level <= 1) THEN
4650: ecx_cln_debug_pub.Add('Data area reference id got as : ' || l_data_area_refid ,1);
4651: END IF;
4652:
4653: IF l_data_area_refid IS NOT NULL THEN
4654: IF (l_Debug_Level <= 1) THEN

Line 4655: ecx_cln_debug_pub.Add('Trying to find collaboration based on data area reference id through ecx_doclogs' ,1);

4651: END IF;
4652:
4653: IF l_data_area_refid IS NOT NULL THEN
4654: IF (l_Debug_Level <= 1) THEN
4655: ecx_cln_debug_pub.Add('Trying to find collaboration based on data area reference id through ecx_doclogs' ,1);
4656: END IF;
4657:
4658: BEGIN
4659: IF (l_Debug_Level <= 1) THEN

Line 4660: ecx_cln_debug_pub.Add('Trying to get internal control number ',1);

4656: END IF;
4657:
4658: BEGIN
4659: IF (l_Debug_Level <= 1) THEN
4660: ecx_cln_debug_pub.Add('Trying to get internal control number ',1);
4661: END IF;
4662:
4663: SELECT doclogs.internal_control_number
4664: INTO l_corrspnd_internal_cntrl_num

Line 4681: ecx_cln_debug_pub.Add('Internal control number got : ' || l_corrspnd_internal_cntrl_num,1);

4677: AND eth.party_id = p_tr_partner_id
4678: AND eth.party_site_id = p_tr_partner_site
4679: AND eth.party_type = p_tr_partner_type;
4680: IF (l_Debug_Level <= 1) THEN
4681: ecx_cln_debug_pub.Add('Internal control number got : ' || l_corrspnd_internal_cntrl_num,1);
4682: END IF;
4683:
4684:
4685: IF (l_Debug_Level <= 1) THEN

Line 4686: ecx_cln_debug_pub.Add('Trying to get collaboration id ',1);

4682: END IF;
4683:
4684:
4685: IF (l_Debug_Level <= 1) THEN
4686: ecx_cln_debug_pub.Add('Trying to get collaboration id ',1);
4687: END IF;
4688:
4689:
4690: SELECT distinct COLLABORATION_ID INTO x_coll_id

Line 4697: ecx_cln_debug_pub.Add('Unable to find the collaboration in Collaboration History - Header Table using Transaction Type/SubType',1);

4693:
4694: EXCEPTION
4695: WHEN NO_DATA_FOUND THEN
4696: IF (l_Debug_Level <= 1) THEN
4697: ecx_cln_debug_pub.Add('Unable to find the collaboration in Collaboration History - Header Table using Transaction Type/SubType',1);
4698: END IF;
4699:
4700: WHEN TOO_MANY_ROWS THEN
4701: FND_MESSAGE.SET_NAME('CLN','CLN_CH_UNIQUE_COLLABORATION_NF');

Line 4711: ecx_cln_debug_pub.Add('Collaboration ID found as : '||x_coll_id,1);

4707: END IF;
4708:
4709:
4710: IF (l_Debug_Level <= 1) THEN
4711: ecx_cln_debug_pub.Add('Collaboration ID found as : '||x_coll_id,1);
4712: END IF;
4713:
4714: IF (l_Debug_Level <= 2) THEN
4715: ecx_cln_debug_pub.Add('------ Exiting FIND_COLLABORATION_ID API ------- ',2);

Line 4715: ecx_cln_debug_pub.Add('------ Exiting FIND_COLLABORATION_ID API ------- ',2);

4711: ecx_cln_debug_pub.Add('Collaboration ID found as : '||x_coll_id,1);
4712: END IF;
4713:
4714: IF (l_Debug_Level <= 2) THEN
4715: ecx_cln_debug_pub.Add('------ Exiting FIND_COLLABORATION_ID API ------- ',2);
4716: END IF;
4717:
4718:
4719:

Line 4725: ecx_cln_debug_pub.Add(l_msg_data,4);

4721:
4722: WHEN FND_API.G_EXC_ERROR THEN
4723: x_return_status := FND_API.G_RET_STS_ERROR ;
4724: IF (l_Debug_Level <= 4) THEN
4725: ecx_cln_debug_pub.Add(l_msg_data,4);
4726: END IF;
4727:
4728: l_msg_data :=l_error_code||' : '||l_error_msg;
4729: IF (l_Debug_Level <= 4) THEN

Line 4730: ecx_cln_debug_pub.Add(l_msg_data,4);

4726: END IF;
4727:
4728: l_msg_data :=l_error_code||' : '||l_error_msg;
4729: IF (l_Debug_Level <= 4) THEN
4730: ecx_cln_debug_pub.Add(l_msg_data,4);
4731: ecx_cln_debug_pub.Add('------ Exiting FIND_COLLABORATION_ID API ------- ',2);
4732: END IF;
4733:
4734:

Line 4731: ecx_cln_debug_pub.Add('------ Exiting FIND_COLLABORATION_ID API ------- ',2);

4727:
4728: l_msg_data :=l_error_code||' : '||l_error_msg;
4729: IF (l_Debug_Level <= 4) THEN
4730: ecx_cln_debug_pub.Add(l_msg_data,4);
4731: ecx_cln_debug_pub.Add('------ Exiting FIND_COLLABORATION_ID API ------- ',2);
4732: END IF;
4733:
4734:
4735: WHEN OTHERS THEN

Line 4745: ecx_cln_debug_pub.Add(l_msg_data,4);

4741: FND_MESSAGE.SET_TOKEN('ERRORMSG',l_error_msg);
4742: x_msg_data :=FND_MESSAGE.GET;
4743: l_msg_data :='Unexpected Error -'||l_error_code||' : '||l_error_msg;
4744: IF (l_Debug_Level <= 4) THEN
4745: ecx_cln_debug_pub.Add(l_msg_data,4);
4746: ecx_cln_debug_pub.Add('------ Exiting FIND_COLLABORATION_ID API ------- ',2);
4747: END IF;
4748:
4749:

Line 4746: ecx_cln_debug_pub.Add('------ Exiting FIND_COLLABORATION_ID API ------- ',2);

4742: x_msg_data :=FND_MESSAGE.GET;
4743: l_msg_data :='Unexpected Error -'||l_error_code||' : '||l_error_msg;
4744: IF (l_Debug_Level <= 4) THEN
4745: ecx_cln_debug_pub.Add(l_msg_data,4);
4746: ecx_cln_debug_pub.Add('------ Exiting FIND_COLLABORATION_ID API ------- ',2);
4747: END IF;
4748:
4749:
4750: END FIND_COLLABORATION_ID;

Line 4874: --l_debug_mode :=ecx_cln_debug_pub.Set_Debug_Mode('FILE');

4870:
4871: BEGIN
4872:
4873: -- Sets the debug mode to be FILE
4874: --l_debug_mode :=ecx_cln_debug_pub.Set_Debug_Mode('FILE');
4875:
4876:
4877: IF (l_Debug_Level <= 2) THEN
4878: ecx_cln_debug_pub.Add('--------- Entering ADD_COLLABORATION API ------------ ',2);

Line 4878: ecx_cln_debug_pub.Add('--------- Entering ADD_COLLABORATION API ------------ ',2);

4874: --l_debug_mode :=ecx_cln_debug_pub.Set_Debug_Mode('FILE');
4875:
4876:
4877: IF (l_Debug_Level <= 2) THEN
4878: ecx_cln_debug_pub.Add('--------- Entering ADD_COLLABORATION API ------------ ',2);
4879: END IF;
4880:
4881:
4882: -- Initialize API return status to success

Line 4890: ecx_cln_debug_pub.Add('==========Parameters Received=============',1);

4886:
4887:
4888: -- get the paramaters passed
4889: IF (l_Debug_Level <= 1) THEN
4890: ecx_cln_debug_pub.Add('==========Parameters Received=============',1);
4891: ecx_cln_debug_pub.Add('COLLABORATION ID ----- >>>'||p_coll_id,1);
4892: ecx_cln_debug_pub.Add('APPLCATION ID ----- >>>'||p_app_id,1);
4893: ecx_cln_debug_pub.Add('REFERENCE ID ----- >>>'||p_ref_id,1);
4894: ecx_cln_debug_pub.Add('RELEASE NUMBER ----- >>>'||p_rel_no,1);

Line 4891: ecx_cln_debug_pub.Add('COLLABORATION ID ----- >>>'||p_coll_id,1);

4887:
4888: -- get the paramaters passed
4889: IF (l_Debug_Level <= 1) THEN
4890: ecx_cln_debug_pub.Add('==========Parameters Received=============',1);
4891: ecx_cln_debug_pub.Add('COLLABORATION ID ----- >>>'||p_coll_id,1);
4892: ecx_cln_debug_pub.Add('APPLCATION ID ----- >>>'||p_app_id,1);
4893: ecx_cln_debug_pub.Add('REFERENCE ID ----- >>>'||p_ref_id,1);
4894: ecx_cln_debug_pub.Add('RELEASE NUMBER ----- >>>'||p_rel_no,1);
4895: ecx_cln_debug_pub.Add('DOCUMENT NO ----- >>>'||p_doc_no,1);

Line 4892: ecx_cln_debug_pub.Add('APPLCATION ID ----- >>>'||p_app_id,1);

4888: -- get the paramaters passed
4889: IF (l_Debug_Level <= 1) THEN
4890: ecx_cln_debug_pub.Add('==========Parameters Received=============',1);
4891: ecx_cln_debug_pub.Add('COLLABORATION ID ----- >>>'||p_coll_id,1);
4892: ecx_cln_debug_pub.Add('APPLCATION ID ----- >>>'||p_app_id,1);
4893: ecx_cln_debug_pub.Add('REFERENCE ID ----- >>>'||p_ref_id,1);
4894: ecx_cln_debug_pub.Add('RELEASE NUMBER ----- >>>'||p_rel_no,1);
4895: ecx_cln_debug_pub.Add('DOCUMENT NO ----- >>>'||p_doc_no,1);
4896: ecx_cln_debug_pub.Add('DOCUMENT REV. NO ----- >>>'||p_doc_rev_no,1);

Line 4893: ecx_cln_debug_pub.Add('REFERENCE ID ----- >>>'||p_ref_id,1);

4889: IF (l_Debug_Level <= 1) THEN
4890: ecx_cln_debug_pub.Add('==========Parameters Received=============',1);
4891: ecx_cln_debug_pub.Add('COLLABORATION ID ----- >>>'||p_coll_id,1);
4892: ecx_cln_debug_pub.Add('APPLCATION ID ----- >>>'||p_app_id,1);
4893: ecx_cln_debug_pub.Add('REFERENCE ID ----- >>>'||p_ref_id,1);
4894: ecx_cln_debug_pub.Add('RELEASE NUMBER ----- >>>'||p_rel_no,1);
4895: ecx_cln_debug_pub.Add('DOCUMENT NO ----- >>>'||p_doc_no,1);
4896: ecx_cln_debug_pub.Add('DOCUMENT REV. NO ----- >>>'||p_doc_rev_no,1);
4897: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);

Line 4894: ecx_cln_debug_pub.Add('RELEASE NUMBER ----- >>>'||p_rel_no,1);

4890: ecx_cln_debug_pub.Add('==========Parameters Received=============',1);
4891: ecx_cln_debug_pub.Add('COLLABORATION ID ----- >>>'||p_coll_id,1);
4892: ecx_cln_debug_pub.Add('APPLCATION ID ----- >>>'||p_app_id,1);
4893: ecx_cln_debug_pub.Add('REFERENCE ID ----- >>>'||p_ref_id,1);
4894: ecx_cln_debug_pub.Add('RELEASE NUMBER ----- >>>'||p_rel_no,1);
4895: ecx_cln_debug_pub.Add('DOCUMENT NO ----- >>>'||p_doc_no,1);
4896: ecx_cln_debug_pub.Add('DOCUMENT REV. NO ----- >>>'||p_doc_rev_no,1);
4897: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);
4898: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);

Line 4895: ecx_cln_debug_pub.Add('DOCUMENT NO ----- >>>'||p_doc_no,1);

4891: ecx_cln_debug_pub.Add('COLLABORATION ID ----- >>>'||p_coll_id,1);
4892: ecx_cln_debug_pub.Add('APPLCATION ID ----- >>>'||p_app_id,1);
4893: ecx_cln_debug_pub.Add('REFERENCE ID ----- >>>'||p_ref_id,1);
4894: ecx_cln_debug_pub.Add('RELEASE NUMBER ----- >>>'||p_rel_no,1);
4895: ecx_cln_debug_pub.Add('DOCUMENT NO ----- >>>'||p_doc_no,1);
4896: ecx_cln_debug_pub.Add('DOCUMENT REV. NO ----- >>>'||p_doc_rev_no,1);
4897: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);
4898: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);
4899: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION TYPE ----- >>>'||p_xmlg_int_transaction_type,1);

Line 4896: ecx_cln_debug_pub.Add('DOCUMENT REV. NO ----- >>>'||p_doc_rev_no,1);

4892: ecx_cln_debug_pub.Add('APPLCATION ID ----- >>>'||p_app_id,1);
4893: ecx_cln_debug_pub.Add('REFERENCE ID ----- >>>'||p_ref_id,1);
4894: ecx_cln_debug_pub.Add('RELEASE NUMBER ----- >>>'||p_rel_no,1);
4895: ecx_cln_debug_pub.Add('DOCUMENT NO ----- >>>'||p_doc_no,1);
4896: ecx_cln_debug_pub.Add('DOCUMENT REV. NO ----- >>>'||p_doc_rev_no,1);
4897: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);
4898: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);
4899: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION TYPE ----- >>>'||p_xmlg_int_transaction_type,1);
4900: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_int_transaction_subtype,1);

Line 4897: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);

4893: ecx_cln_debug_pub.Add('REFERENCE ID ----- >>>'||p_ref_id,1);
4894: ecx_cln_debug_pub.Add('RELEASE NUMBER ----- >>>'||p_rel_no,1);
4895: ecx_cln_debug_pub.Add('DOCUMENT NO ----- >>>'||p_doc_no,1);
4896: ecx_cln_debug_pub.Add('DOCUMENT REV. NO ----- >>>'||p_doc_rev_no,1);
4897: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);
4898: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);
4899: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION TYPE ----- >>>'||p_xmlg_int_transaction_type,1);
4900: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_int_transaction_subtype,1);
4901: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);

Line 4898: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);

4894: ecx_cln_debug_pub.Add('RELEASE NUMBER ----- >>>'||p_rel_no,1);
4895: ecx_cln_debug_pub.Add('DOCUMENT NO ----- >>>'||p_doc_no,1);
4896: ecx_cln_debug_pub.Add('DOCUMENT REV. NO ----- >>>'||p_doc_rev_no,1);
4897: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);
4898: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);
4899: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION TYPE ----- >>>'||p_xmlg_int_transaction_type,1);
4900: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_int_transaction_subtype,1);
4901: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);
4902: ecx_cln_debug_pub.Add('RESENG FLAG ----- >>>'||p_resend_flag,1);

Line 4899: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION TYPE ----- >>>'||p_xmlg_int_transaction_type,1);

4895: ecx_cln_debug_pub.Add('DOCUMENT NO ----- >>>'||p_doc_no,1);
4896: ecx_cln_debug_pub.Add('DOCUMENT REV. NO ----- >>>'||p_doc_rev_no,1);
4897: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);
4898: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);
4899: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION TYPE ----- >>>'||p_xmlg_int_transaction_type,1);
4900: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_int_transaction_subtype,1);
4901: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);
4902: ecx_cln_debug_pub.Add('RESENG FLAG ----- >>>'||p_resend_flag,1);
4903: ecx_cln_debug_pub.Add('RESEND COUNT ----- >>>'||p_resend_count,1);

Line 4900: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_int_transaction_subtype,1);

4896: ecx_cln_debug_pub.Add('DOCUMENT REV. NO ----- >>>'||p_doc_rev_no,1);
4897: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);
4898: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);
4899: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION TYPE ----- >>>'||p_xmlg_int_transaction_type,1);
4900: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_int_transaction_subtype,1);
4901: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);
4902: ecx_cln_debug_pub.Add('RESENG FLAG ----- >>>'||p_resend_flag,1);
4903: ecx_cln_debug_pub.Add('RESEND COUNT ----- >>>'||p_resend_count,1);
4904: ecx_cln_debug_pub.Add('DISPOSITION ----- >>>'||p_disposition,1);

Line 4901: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);

4897: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION TYPE ----- >>>'||p_xmlg_transaction_type,1);
4898: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);
4899: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION TYPE ----- >>>'||p_xmlg_int_transaction_type,1);
4900: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_int_transaction_subtype,1);
4901: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);
4902: ecx_cln_debug_pub.Add('RESENG FLAG ----- >>>'||p_resend_flag,1);
4903: ecx_cln_debug_pub.Add('RESEND COUNT ----- >>>'||p_resend_count,1);
4904: ecx_cln_debug_pub.Add('DISPOSITION ----- >>>'||p_disposition,1);
4905: ecx_cln_debug_pub.Add('COLLABORATION STATUS ----- >>>'||p_coll_status,1);

Line 4902: ecx_cln_debug_pub.Add('RESENG FLAG ----- >>>'||p_resend_flag,1);

4898: ecx_cln_debug_pub.Add('XMLG EXT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_transaction_subtype,1);
4899: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION TYPE ----- >>>'||p_xmlg_int_transaction_type,1);
4900: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_int_transaction_subtype,1);
4901: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);
4902: ecx_cln_debug_pub.Add('RESENG FLAG ----- >>>'||p_resend_flag,1);
4903: ecx_cln_debug_pub.Add('RESEND COUNT ----- >>>'||p_resend_count,1);
4904: ecx_cln_debug_pub.Add('DISPOSITION ----- >>>'||p_disposition,1);
4905: ecx_cln_debug_pub.Add('COLLABORATION STATUS ----- >>>'||p_coll_status,1);
4906: ecx_cln_debug_pub.Add('COLLABORATION TYPE ----- >>>'||p_coll_type,1);

Line 4903: ecx_cln_debug_pub.Add('RESEND COUNT ----- >>>'||p_resend_count,1);

4899: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION TYPE ----- >>>'||p_xmlg_int_transaction_type,1);
4900: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_int_transaction_subtype,1);
4901: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);
4902: ecx_cln_debug_pub.Add('RESENG FLAG ----- >>>'||p_resend_flag,1);
4903: ecx_cln_debug_pub.Add('RESEND COUNT ----- >>>'||p_resend_count,1);
4904: ecx_cln_debug_pub.Add('DISPOSITION ----- >>>'||p_disposition,1);
4905: ecx_cln_debug_pub.Add('COLLABORATION STATUS ----- >>>'||p_coll_status,1);
4906: ecx_cln_debug_pub.Add('COLLABORATION TYPE ----- >>>'||p_coll_type,1);
4907: ecx_cln_debug_pub.Add('DOCUMENT TYPE ----- >>>'||p_doc_type,1);

Line 4904: ecx_cln_debug_pub.Add('DISPOSITION ----- >>>'||p_disposition,1);

4900: ecx_cln_debug_pub.Add('XMLG INT TRANSACTION SUBTYPE ----- >>>'||p_xmlg_int_transaction_subtype,1);
4901: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);
4902: ecx_cln_debug_pub.Add('RESENG FLAG ----- >>>'||p_resend_flag,1);
4903: ecx_cln_debug_pub.Add('RESEND COUNT ----- >>>'||p_resend_count,1);
4904: ecx_cln_debug_pub.Add('DISPOSITION ----- >>>'||p_disposition,1);
4905: ecx_cln_debug_pub.Add('COLLABORATION STATUS ----- >>>'||p_coll_status,1);
4906: ecx_cln_debug_pub.Add('COLLABORATION TYPE ----- >>>'||p_coll_type,1);
4907: ecx_cln_debug_pub.Add('DOCUMENT TYPE ----- >>>'||p_doc_type,1);
4908: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_dir,1);

Line 4905: ecx_cln_debug_pub.Add('COLLABORATION STATUS ----- >>>'||p_coll_status,1);

4901: ecx_cln_debug_pub.Add('XMLG DOCUMENT ID ----- >>>'||p_xmlg_document_id,1);
4902: ecx_cln_debug_pub.Add('RESENG FLAG ----- >>>'||p_resend_flag,1);
4903: ecx_cln_debug_pub.Add('RESEND COUNT ----- >>>'||p_resend_count,1);
4904: ecx_cln_debug_pub.Add('DISPOSITION ----- >>>'||p_disposition,1);
4905: ecx_cln_debug_pub.Add('COLLABORATION STATUS ----- >>>'||p_coll_status,1);
4906: ecx_cln_debug_pub.Add('COLLABORATION TYPE ----- >>>'||p_coll_type,1);
4907: ecx_cln_debug_pub.Add('DOCUMENT TYPE ----- >>>'||p_doc_type,1);
4908: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_dir,1);
4909: ecx_cln_debug_pub.Add('COLLABORATION POINT ----- >>>'||p_coll_pt,1);

Line 4906: ecx_cln_debug_pub.Add('COLLABORATION TYPE ----- >>>'||p_coll_type,1);

4902: ecx_cln_debug_pub.Add('RESENG FLAG ----- >>>'||p_resend_flag,1);
4903: ecx_cln_debug_pub.Add('RESEND COUNT ----- >>>'||p_resend_count,1);
4904: ecx_cln_debug_pub.Add('DISPOSITION ----- >>>'||p_disposition,1);
4905: ecx_cln_debug_pub.Add('COLLABORATION STATUS ----- >>>'||p_coll_status,1);
4906: ecx_cln_debug_pub.Add('COLLABORATION TYPE ----- >>>'||p_coll_type,1);
4907: ecx_cln_debug_pub.Add('DOCUMENT TYPE ----- >>>'||p_doc_type,1);
4908: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_dir,1);
4909: ecx_cln_debug_pub.Add('COLLABORATION POINT ----- >>>'||p_coll_pt,1);
4910: ecx_cln_debug_pub.Add('ORIGINATOR REFERENCE ----- >>>'||p_org_ref,1);

Line 4907: ecx_cln_debug_pub.Add('DOCUMENT TYPE ----- >>>'||p_doc_type,1);

4903: ecx_cln_debug_pub.Add('RESEND COUNT ----- >>>'||p_resend_count,1);
4904: ecx_cln_debug_pub.Add('DISPOSITION ----- >>>'||p_disposition,1);
4905: ecx_cln_debug_pub.Add('COLLABORATION STATUS ----- >>>'||p_coll_status,1);
4906: ecx_cln_debug_pub.Add('COLLABORATION TYPE ----- >>>'||p_coll_type,1);
4907: ecx_cln_debug_pub.Add('DOCUMENT TYPE ----- >>>'||p_doc_type,1);
4908: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_dir,1);
4909: ecx_cln_debug_pub.Add('COLLABORATION POINT ----- >>>'||p_coll_pt,1);
4910: ecx_cln_debug_pub.Add('ORIGINATOR REFERENCE ----- >>>'||p_org_ref,1);
4911: ecx_cln_debug_pub.Add('DOCUMENT STATUS ----- >>>'||p_doc_status,1);

Line 4908: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_dir,1);

4904: ecx_cln_debug_pub.Add('DISPOSITION ----- >>>'||p_disposition,1);
4905: ecx_cln_debug_pub.Add('COLLABORATION STATUS ----- >>>'||p_coll_status,1);
4906: ecx_cln_debug_pub.Add('COLLABORATION TYPE ----- >>>'||p_coll_type,1);
4907: ecx_cln_debug_pub.Add('DOCUMENT TYPE ----- >>>'||p_doc_type,1);
4908: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_dir,1);
4909: ecx_cln_debug_pub.Add('COLLABORATION POINT ----- >>>'||p_coll_pt,1);
4910: ecx_cln_debug_pub.Add('ORIGINATOR REFERENCE ----- >>>'||p_org_ref,1);
4911: ecx_cln_debug_pub.Add('DOCUMENT STATUS ----- >>>'||p_doc_status,1);
4912: ecx_cln_debug_pub.Add('NOTIFICATION ID ----- >>>'||p_notification_id,1);

Line 4909: ecx_cln_debug_pub.Add('COLLABORATION POINT ----- >>>'||p_coll_pt,1);

4905: ecx_cln_debug_pub.Add('COLLABORATION STATUS ----- >>>'||p_coll_status,1);
4906: ecx_cln_debug_pub.Add('COLLABORATION TYPE ----- >>>'||p_coll_type,1);
4907: ecx_cln_debug_pub.Add('DOCUMENT TYPE ----- >>>'||p_doc_type,1);
4908: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_dir,1);
4909: ecx_cln_debug_pub.Add('COLLABORATION POINT ----- >>>'||p_coll_pt,1);
4910: ecx_cln_debug_pub.Add('ORIGINATOR REFERENCE ----- >>>'||p_org_ref,1);
4911: ecx_cln_debug_pub.Add('DOCUMENT STATUS ----- >>>'||p_doc_status,1);
4912: ecx_cln_debug_pub.Add('NOTIFICATION ID ----- >>>'||p_notification_id,1);
4913: ecx_cln_debug_pub.Add('MESSAGE TEST ----- >>>'||p_msg_text,1);

Line 4910: ecx_cln_debug_pub.Add('ORIGINATOR REFERENCE ----- >>>'||p_org_ref,1);

4906: ecx_cln_debug_pub.Add('COLLABORATION TYPE ----- >>>'||p_coll_type,1);
4907: ecx_cln_debug_pub.Add('DOCUMENT TYPE ----- >>>'||p_doc_type,1);
4908: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_dir,1);
4909: ecx_cln_debug_pub.Add('COLLABORATION POINT ----- >>>'||p_coll_pt,1);
4910: ecx_cln_debug_pub.Add('ORIGINATOR REFERENCE ----- >>>'||p_org_ref,1);
4911: ecx_cln_debug_pub.Add('DOCUMENT STATUS ----- >>>'||p_doc_status,1);
4912: ecx_cln_debug_pub.Add('NOTIFICATION ID ----- >>>'||p_notification_id,1);
4913: ecx_cln_debug_pub.Add('MESSAGE TEST ----- >>>'||p_msg_text,1);
4914: ecx_cln_debug_pub.Add('XMLG MESSAGE ID ----- >>>'||p_xmlg_msg_id,1);

Line 4911: ecx_cln_debug_pub.Add('DOCUMENT STATUS ----- >>>'||p_doc_status,1);

4907: ecx_cln_debug_pub.Add('DOCUMENT TYPE ----- >>>'||p_doc_type,1);
4908: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_dir,1);
4909: ecx_cln_debug_pub.Add('COLLABORATION POINT ----- >>>'||p_coll_pt,1);
4910: ecx_cln_debug_pub.Add('ORIGINATOR REFERENCE ----- >>>'||p_org_ref,1);
4911: ecx_cln_debug_pub.Add('DOCUMENT STATUS ----- >>>'||p_doc_status,1);
4912: ecx_cln_debug_pub.Add('NOTIFICATION ID ----- >>>'||p_notification_id,1);
4913: ecx_cln_debug_pub.Add('MESSAGE TEST ----- >>>'||p_msg_text,1);
4914: ecx_cln_debug_pub.Add('XMLG MESSAGE ID ----- >>>'||p_xmlg_msg_id,1);
4915: ecx_cln_debug_pub.Add('UNIQUE 1 ----- >>>'||p_unique1,1);

Line 4912: ecx_cln_debug_pub.Add('NOTIFICATION ID ----- >>>'||p_notification_id,1);

4908: ecx_cln_debug_pub.Add('DOCUMENT DIRECTION ----- >>>'||p_doc_dir,1);
4909: ecx_cln_debug_pub.Add('COLLABORATION POINT ----- >>>'||p_coll_pt,1);
4910: ecx_cln_debug_pub.Add('ORIGINATOR REFERENCE ----- >>>'||p_org_ref,1);
4911: ecx_cln_debug_pub.Add('DOCUMENT STATUS ----- >>>'||p_doc_status,1);
4912: ecx_cln_debug_pub.Add('NOTIFICATION ID ----- >>>'||p_notification_id,1);
4913: ecx_cln_debug_pub.Add('MESSAGE TEST ----- >>>'||p_msg_text,1);
4914: ecx_cln_debug_pub.Add('XMLG MESSAGE ID ----- >>>'||p_xmlg_msg_id,1);
4915: ecx_cln_debug_pub.Add('UNIQUE 1 ----- >>>'||p_unique1,1);
4916: ecx_cln_debug_pub.Add('UNIQUE 2 ----- >>>'||p_unique2,1);

Line 4913: ecx_cln_debug_pub.Add('MESSAGE TEST ----- >>>'||p_msg_text,1);

4909: ecx_cln_debug_pub.Add('COLLABORATION POINT ----- >>>'||p_coll_pt,1);
4910: ecx_cln_debug_pub.Add('ORIGINATOR REFERENCE ----- >>>'||p_org_ref,1);
4911: ecx_cln_debug_pub.Add('DOCUMENT STATUS ----- >>>'||p_doc_status,1);
4912: ecx_cln_debug_pub.Add('NOTIFICATION ID ----- >>>'||p_notification_id,1);
4913: ecx_cln_debug_pub.Add('MESSAGE TEST ----- >>>'||p_msg_text,1);
4914: ecx_cln_debug_pub.Add('XMLG MESSAGE ID ----- >>>'||p_xmlg_msg_id,1);
4915: ecx_cln_debug_pub.Add('UNIQUE 1 ----- >>>'||p_unique1,1);
4916: ecx_cln_debug_pub.Add('UNIQUE 2 ----- >>>'||p_unique2,1);
4917: ecx_cln_debug_pub.Add('UNIQUE 3 ----- >>>'||p_unique3,1);

Line 4914: ecx_cln_debug_pub.Add('XMLG MESSAGE ID ----- >>>'||p_xmlg_msg_id,1);

4910: ecx_cln_debug_pub.Add('ORIGINATOR REFERENCE ----- >>>'||p_org_ref,1);
4911: ecx_cln_debug_pub.Add('DOCUMENT STATUS ----- >>>'||p_doc_status,1);
4912: ecx_cln_debug_pub.Add('NOTIFICATION ID ----- >>>'||p_notification_id,1);
4913: ecx_cln_debug_pub.Add('MESSAGE TEST ----- >>>'||p_msg_text,1);
4914: ecx_cln_debug_pub.Add('XMLG MESSAGE ID ----- >>>'||p_xmlg_msg_id,1);
4915: ecx_cln_debug_pub.Add('UNIQUE 1 ----- >>>'||p_unique1,1);
4916: ecx_cln_debug_pub.Add('UNIQUE 2 ----- >>>'||p_unique2,1);
4917: ecx_cln_debug_pub.Add('UNIQUE 3 ----- >>>'||p_unique3,1);
4918: ecx_cln_debug_pub.Add('UNIQUE 4 ----- >>>'||p_unique4,1);

Line 4915: ecx_cln_debug_pub.Add('UNIQUE 1 ----- >>>'||p_unique1,1);

4911: ecx_cln_debug_pub.Add('DOCUMENT STATUS ----- >>>'||p_doc_status,1);
4912: ecx_cln_debug_pub.Add('NOTIFICATION ID ----- >>>'||p_notification_id,1);
4913: ecx_cln_debug_pub.Add('MESSAGE TEST ----- >>>'||p_msg_text,1);
4914: ecx_cln_debug_pub.Add('XMLG MESSAGE ID ----- >>>'||p_xmlg_msg_id,1);
4915: ecx_cln_debug_pub.Add('UNIQUE 1 ----- >>>'||p_unique1,1);
4916: ecx_cln_debug_pub.Add('UNIQUE 2 ----- >>>'||p_unique2,1);
4917: ecx_cln_debug_pub.Add('UNIQUE 3 ----- >>>'||p_unique3,1);
4918: ecx_cln_debug_pub.Add('UNIQUE 4 ----- >>>'||p_unique4,1);
4919: ecx_cln_debug_pub.Add('UNIQUE 5 ----- >>>'||p_unique5,1);

Line 4916: ecx_cln_debug_pub.Add('UNIQUE 2 ----- >>>'||p_unique2,1);

4912: ecx_cln_debug_pub.Add('NOTIFICATION ID ----- >>>'||p_notification_id,1);
4913: ecx_cln_debug_pub.Add('MESSAGE TEST ----- >>>'||p_msg_text,1);
4914: ecx_cln_debug_pub.Add('XMLG MESSAGE ID ----- >>>'||p_xmlg_msg_id,1);
4915: ecx_cln_debug_pub.Add('UNIQUE 1 ----- >>>'||p_unique1,1);
4916: ecx_cln_debug_pub.Add('UNIQUE 2 ----- >>>'||p_unique2,1);
4917: ecx_cln_debug_pub.Add('UNIQUE 3 ----- >>>'||p_unique3,1);
4918: ecx_cln_debug_pub.Add('UNIQUE 4 ----- >>>'||p_unique4,1);
4919: ecx_cln_debug_pub.Add('UNIQUE 5 ----- >>>'||p_unique5,1);
4920: ecx_cln_debug_pub.Add('TRADING PARTNER TYPE ----- >>>'||p_tr_partner_type,1);

Line 4917: ecx_cln_debug_pub.Add('UNIQUE 3 ----- >>>'||p_unique3,1);

4913: ecx_cln_debug_pub.Add('MESSAGE TEST ----- >>>'||p_msg_text,1);
4914: ecx_cln_debug_pub.Add('XMLG MESSAGE ID ----- >>>'||p_xmlg_msg_id,1);
4915: ecx_cln_debug_pub.Add('UNIQUE 1 ----- >>>'||p_unique1,1);
4916: ecx_cln_debug_pub.Add('UNIQUE 2 ----- >>>'||p_unique2,1);
4917: ecx_cln_debug_pub.Add('UNIQUE 3 ----- >>>'||p_unique3,1);
4918: ecx_cln_debug_pub.Add('UNIQUE 4 ----- >>>'||p_unique4,1);
4919: ecx_cln_debug_pub.Add('UNIQUE 5 ----- >>>'||p_unique5,1);
4920: ecx_cln_debug_pub.Add('TRADING PARTNER TYPE ----- >>>'||p_tr_partner_type,1);
4921: ecx_cln_debug_pub.Add('TRADING PARTNER ID ----- >>>'||p_tr_partner_id,1);

Line 4918: ecx_cln_debug_pub.Add('UNIQUE 4 ----- >>>'||p_unique4,1);

4914: ecx_cln_debug_pub.Add('XMLG MESSAGE ID ----- >>>'||p_xmlg_msg_id,1);
4915: ecx_cln_debug_pub.Add('UNIQUE 1 ----- >>>'||p_unique1,1);
4916: ecx_cln_debug_pub.Add('UNIQUE 2 ----- >>>'||p_unique2,1);
4917: ecx_cln_debug_pub.Add('UNIQUE 3 ----- >>>'||p_unique3,1);
4918: ecx_cln_debug_pub.Add('UNIQUE 4 ----- >>>'||p_unique4,1);
4919: ecx_cln_debug_pub.Add('UNIQUE 5 ----- >>>'||p_unique5,1);
4920: ecx_cln_debug_pub.Add('TRADING PARTNER TYPE ----- >>>'||p_tr_partner_type,1);
4921: ecx_cln_debug_pub.Add('TRADING PARTNER ID ----- >>>'||p_tr_partner_id,1);
4922: ecx_cln_debug_pub.Add('TRADING PARTNER SITE ----- >>>'||p_tr_partner_site,1);

Line 4919: ecx_cln_debug_pub.Add('UNIQUE 5 ----- >>>'||p_unique5,1);

4915: ecx_cln_debug_pub.Add('UNIQUE 1 ----- >>>'||p_unique1,1);
4916: ecx_cln_debug_pub.Add('UNIQUE 2 ----- >>>'||p_unique2,1);
4917: ecx_cln_debug_pub.Add('UNIQUE 3 ----- >>>'||p_unique3,1);
4918: ecx_cln_debug_pub.Add('UNIQUE 4 ----- >>>'||p_unique4,1);
4919: ecx_cln_debug_pub.Add('UNIQUE 5 ----- >>>'||p_unique5,1);
4920: ecx_cln_debug_pub.Add('TRADING PARTNER TYPE ----- >>>'||p_tr_partner_type,1);
4921: ecx_cln_debug_pub.Add('TRADING PARTNER ID ----- >>>'||p_tr_partner_id,1);
4922: ecx_cln_debug_pub.Add('TRADING PARTNER SITE ----- >>>'||p_tr_partner_site,1);
4923: ecx_cln_debug_pub.Add('SENDER COMPONENT ----- >>>'||p_sender_component,1);

Line 4920: ecx_cln_debug_pub.Add('TRADING PARTNER TYPE ----- >>>'||p_tr_partner_type,1);

4916: ecx_cln_debug_pub.Add('UNIQUE 2 ----- >>>'||p_unique2,1);
4917: ecx_cln_debug_pub.Add('UNIQUE 3 ----- >>>'||p_unique3,1);
4918: ecx_cln_debug_pub.Add('UNIQUE 4 ----- >>>'||p_unique4,1);
4919: ecx_cln_debug_pub.Add('UNIQUE 5 ----- >>>'||p_unique5,1);
4920: ecx_cln_debug_pub.Add('TRADING PARTNER TYPE ----- >>>'||p_tr_partner_type,1);
4921: ecx_cln_debug_pub.Add('TRADING PARTNER ID ----- >>>'||p_tr_partner_id,1);
4922: ecx_cln_debug_pub.Add('TRADING PARTNER SITE ----- >>>'||p_tr_partner_site,1);
4923: ecx_cln_debug_pub.Add('SENDER COMPONENT ----- >>>'||p_sender_component,1);
4924: ecx_cln_debug_pub.Add('XMLG INTERNAL CONTROL NO ----- >>>'||p_xmlg_internal_control_number,1);

Line 4921: ecx_cln_debug_pub.Add('TRADING PARTNER ID ----- >>>'||p_tr_partner_id,1);

4917: ecx_cln_debug_pub.Add('UNIQUE 3 ----- >>>'||p_unique3,1);
4918: ecx_cln_debug_pub.Add('UNIQUE 4 ----- >>>'||p_unique4,1);
4919: ecx_cln_debug_pub.Add('UNIQUE 5 ----- >>>'||p_unique5,1);
4920: ecx_cln_debug_pub.Add('TRADING PARTNER TYPE ----- >>>'||p_tr_partner_type,1);
4921: ecx_cln_debug_pub.Add('TRADING PARTNER ID ----- >>>'||p_tr_partner_id,1);
4922: ecx_cln_debug_pub.Add('TRADING PARTNER SITE ----- >>>'||p_tr_partner_site,1);
4923: ecx_cln_debug_pub.Add('SENDER COMPONENT ----- >>>'||p_sender_component,1);
4924: ecx_cln_debug_pub.Add('XMLG INTERNAL CONTROL NO ----- >>>'||p_xmlg_internal_control_number,1);
4925: ecx_cln_debug_pub.Add('PARTNER DOCUMENT NO ----- >>>'||p_partner_doc_no,1);

Line 4922: ecx_cln_debug_pub.Add('TRADING PARTNER SITE ----- >>>'||p_tr_partner_site,1);

4918: ecx_cln_debug_pub.Add('UNIQUE 4 ----- >>>'||p_unique4,1);
4919: ecx_cln_debug_pub.Add('UNIQUE 5 ----- >>>'||p_unique5,1);
4920: ecx_cln_debug_pub.Add('TRADING PARTNER TYPE ----- >>>'||p_tr_partner_type,1);
4921: ecx_cln_debug_pub.Add('TRADING PARTNER ID ----- >>>'||p_tr_partner_id,1);
4922: ecx_cln_debug_pub.Add('TRADING PARTNER SITE ----- >>>'||p_tr_partner_site,1);
4923: ecx_cln_debug_pub.Add('SENDER COMPONENT ----- >>>'||p_sender_component,1);
4924: ecx_cln_debug_pub.Add('XMLG INTERNAL CONTROL NO ----- >>>'||p_xmlg_internal_control_number,1);
4925: ecx_cln_debug_pub.Add('PARTNER DOCUMENT NO ----- >>>'||p_partner_doc_no,1);
4926: ecx_cln_debug_pub.Add('ORG ID ----- >>>'||p_org_id,1);

Line 4923: ecx_cln_debug_pub.Add('SENDER COMPONENT ----- >>>'||p_sender_component,1);

4919: ecx_cln_debug_pub.Add('UNIQUE 5 ----- >>>'||p_unique5,1);
4920: ecx_cln_debug_pub.Add('TRADING PARTNER TYPE ----- >>>'||p_tr_partner_type,1);
4921: ecx_cln_debug_pub.Add('TRADING PARTNER ID ----- >>>'||p_tr_partner_id,1);
4922: ecx_cln_debug_pub.Add('TRADING PARTNER SITE ----- >>>'||p_tr_partner_site,1);
4923: ecx_cln_debug_pub.Add('SENDER COMPONENT ----- >>>'||p_sender_component,1);
4924: ecx_cln_debug_pub.Add('XMLG INTERNAL CONTROL NO ----- >>>'||p_xmlg_internal_control_number,1);
4925: ecx_cln_debug_pub.Add('PARTNER DOCUMENT NO ----- >>>'||p_partner_doc_no,1);
4926: ecx_cln_debug_pub.Add('ORG ID ----- >>>'||p_org_id,1);
4927: ecx_cln_debug_pub.Add('DOCUMENT CREATION DATE ----- >>>'||p_doc_creation_date,1);

Line 4924: ecx_cln_debug_pub.Add('XMLG INTERNAL CONTROL NO ----- >>>'||p_xmlg_internal_control_number,1);

4920: ecx_cln_debug_pub.Add('TRADING PARTNER TYPE ----- >>>'||p_tr_partner_type,1);
4921: ecx_cln_debug_pub.Add('TRADING PARTNER ID ----- >>>'||p_tr_partner_id,1);
4922: ecx_cln_debug_pub.Add('TRADING PARTNER SITE ----- >>>'||p_tr_partner_site,1);
4923: ecx_cln_debug_pub.Add('SENDER COMPONENT ----- >>>'||p_sender_component,1);
4924: ecx_cln_debug_pub.Add('XMLG INTERNAL CONTROL NO ----- >>>'||p_xmlg_internal_control_number,1);
4925: ecx_cln_debug_pub.Add('PARTNER DOCUMENT NO ----- >>>'||p_partner_doc_no,1);
4926: ecx_cln_debug_pub.Add('ORG ID ----- >>>'||p_org_id,1);
4927: ecx_cln_debug_pub.Add('DOCUMENT CREATION DATE ----- >>>'||p_doc_creation_date,1);
4928: ecx_cln_debug_pub.Add('DOCUMENT REVISION DATE ----- >>>'||p_doc_revision_date,1);

Line 4925: ecx_cln_debug_pub.Add('PARTNER DOCUMENT NO ----- >>>'||p_partner_doc_no,1);

4921: ecx_cln_debug_pub.Add('TRADING PARTNER ID ----- >>>'||p_tr_partner_id,1);
4922: ecx_cln_debug_pub.Add('TRADING PARTNER SITE ----- >>>'||p_tr_partner_site,1);
4923: ecx_cln_debug_pub.Add('SENDER COMPONENT ----- >>>'||p_sender_component,1);
4924: ecx_cln_debug_pub.Add('XMLG INTERNAL CONTROL NO ----- >>>'||p_xmlg_internal_control_number,1);
4925: ecx_cln_debug_pub.Add('PARTNER DOCUMENT NO ----- >>>'||p_partner_doc_no,1);
4926: ecx_cln_debug_pub.Add('ORG ID ----- >>>'||p_org_id,1);
4927: ecx_cln_debug_pub.Add('DOCUMENT CREATION DATE ----- >>>'||p_doc_creation_date,1);
4928: ecx_cln_debug_pub.Add('DOCUMENT REVISION DATE ----- >>>'||p_doc_revision_date,1);
4929: ecx_cln_debug_pub.Add('INIT DATE ----- >>>'||p_init_date,1);

Line 4926: ecx_cln_debug_pub.Add('ORG ID ----- >>>'||p_org_id,1);

4922: ecx_cln_debug_pub.Add('TRADING PARTNER SITE ----- >>>'||p_tr_partner_site,1);
4923: ecx_cln_debug_pub.Add('SENDER COMPONENT ----- >>>'||p_sender_component,1);
4924: ecx_cln_debug_pub.Add('XMLG INTERNAL CONTROL NO ----- >>>'||p_xmlg_internal_control_number,1);
4925: ecx_cln_debug_pub.Add('PARTNER DOCUMENT NO ----- >>>'||p_partner_doc_no,1);
4926: ecx_cln_debug_pub.Add('ORG ID ----- >>>'||p_org_id,1);
4927: ecx_cln_debug_pub.Add('DOCUMENT CREATION DATE ----- >>>'||p_doc_creation_date,1);
4928: ecx_cln_debug_pub.Add('DOCUMENT REVISION DATE ----- >>>'||p_doc_revision_date,1);
4929: ecx_cln_debug_pub.Add('INIT DATE ----- >>>'||p_init_date,1);
4930: ecx_cln_debug_pub.Add('DOCUMENT OWNER ----- >>>'||p_doc_owner,1);

Line 4927: ecx_cln_debug_pub.Add('DOCUMENT CREATION DATE ----- >>>'||p_doc_creation_date,1);

4923: ecx_cln_debug_pub.Add('SENDER COMPONENT ----- >>>'||p_sender_component,1);
4924: ecx_cln_debug_pub.Add('XMLG INTERNAL CONTROL NO ----- >>>'||p_xmlg_internal_control_number,1);
4925: ecx_cln_debug_pub.Add('PARTNER DOCUMENT NO ----- >>>'||p_partner_doc_no,1);
4926: ecx_cln_debug_pub.Add('ORG ID ----- >>>'||p_org_id,1);
4927: ecx_cln_debug_pub.Add('DOCUMENT CREATION DATE ----- >>>'||p_doc_creation_date,1);
4928: ecx_cln_debug_pub.Add('DOCUMENT REVISION DATE ----- >>>'||p_doc_revision_date,1);
4929: ecx_cln_debug_pub.Add('INIT DATE ----- >>>'||p_init_date,1);
4930: ecx_cln_debug_pub.Add('DOCUMENT OWNER ----- >>>'||p_doc_owner,1);
4931: ecx_cln_debug_pub.Add('OWNER ROLE ----- >>>'||p_owner_role,1);

Line 4928: ecx_cln_debug_pub.Add('DOCUMENT REVISION DATE ----- >>>'||p_doc_revision_date,1);

4924: ecx_cln_debug_pub.Add('XMLG INTERNAL CONTROL NO ----- >>>'||p_xmlg_internal_control_number,1);
4925: ecx_cln_debug_pub.Add('PARTNER DOCUMENT NO ----- >>>'||p_partner_doc_no,1);
4926: ecx_cln_debug_pub.Add('ORG ID ----- >>>'||p_org_id,1);
4927: ecx_cln_debug_pub.Add('DOCUMENT CREATION DATE ----- >>>'||p_doc_creation_date,1);
4928: ecx_cln_debug_pub.Add('DOCUMENT REVISION DATE ----- >>>'||p_doc_revision_date,1);
4929: ecx_cln_debug_pub.Add('INIT DATE ----- >>>'||p_init_date,1);
4930: ecx_cln_debug_pub.Add('DOCUMENT OWNER ----- >>>'||p_doc_owner,1);
4931: ecx_cln_debug_pub.Add('OWNER ROLE ----- >>>'||p_owner_role,1);
4932: ecx_cln_debug_pub.Add('XMLG EVENT KEY ----- >>>'||p_xml_event_key,1);

Line 4929: ecx_cln_debug_pub.Add('INIT DATE ----- >>>'||p_init_date,1);

4925: ecx_cln_debug_pub.Add('PARTNER DOCUMENT NO ----- >>>'||p_partner_doc_no,1);
4926: ecx_cln_debug_pub.Add('ORG ID ----- >>>'||p_org_id,1);
4927: ecx_cln_debug_pub.Add('DOCUMENT CREATION DATE ----- >>>'||p_doc_creation_date,1);
4928: ecx_cln_debug_pub.Add('DOCUMENT REVISION DATE ----- >>>'||p_doc_revision_date,1);
4929: ecx_cln_debug_pub.Add('INIT DATE ----- >>>'||p_init_date,1);
4930: ecx_cln_debug_pub.Add('DOCUMENT OWNER ----- >>>'||p_doc_owner,1);
4931: ecx_cln_debug_pub.Add('OWNER ROLE ----- >>>'||p_owner_role,1);
4932: ecx_cln_debug_pub.Add('XMLG EVENT KEY ----- >>>'||p_xml_event_key,1);
4933: ecx_cln_debug_pub.Add('Collaboration Standard ----- >>>'||p_collaboration_standard,1);

Line 4930: ecx_cln_debug_pub.Add('DOCUMENT OWNER ----- >>>'||p_doc_owner,1);

4926: ecx_cln_debug_pub.Add('ORG ID ----- >>>'||p_org_id,1);
4927: ecx_cln_debug_pub.Add('DOCUMENT CREATION DATE ----- >>>'||p_doc_creation_date,1);
4928: ecx_cln_debug_pub.Add('DOCUMENT REVISION DATE ----- >>>'||p_doc_revision_date,1);
4929: ecx_cln_debug_pub.Add('INIT DATE ----- >>>'||p_init_date,1);
4930: ecx_cln_debug_pub.Add('DOCUMENT OWNER ----- >>>'||p_doc_owner,1);
4931: ecx_cln_debug_pub.Add('OWNER ROLE ----- >>>'||p_owner_role,1);
4932: ecx_cln_debug_pub.Add('XMLG EVENT KEY ----- >>>'||p_xml_event_key,1);
4933: ecx_cln_debug_pub.Add('Collaboration Standard ----- >>>'||p_collaboration_standard,1);
4934: ecx_cln_debug_pub.Add('ATTRIBUTE1 ----- >>>'||p_attribute1,1);

Line 4931: ecx_cln_debug_pub.Add('OWNER ROLE ----- >>>'||p_owner_role,1);

4927: ecx_cln_debug_pub.Add('DOCUMENT CREATION DATE ----- >>>'||p_doc_creation_date,1);
4928: ecx_cln_debug_pub.Add('DOCUMENT REVISION DATE ----- >>>'||p_doc_revision_date,1);
4929: ecx_cln_debug_pub.Add('INIT DATE ----- >>>'||p_init_date,1);
4930: ecx_cln_debug_pub.Add('DOCUMENT OWNER ----- >>>'||p_doc_owner,1);
4931: ecx_cln_debug_pub.Add('OWNER ROLE ----- >>>'||p_owner_role,1);
4932: ecx_cln_debug_pub.Add('XMLG EVENT KEY ----- >>>'||p_xml_event_key,1);
4933: ecx_cln_debug_pub.Add('Collaboration Standard ----- >>>'||p_collaboration_standard,1);
4934: ecx_cln_debug_pub.Add('ATTRIBUTE1 ----- >>>'||p_attribute1,1);
4935: ecx_cln_debug_pub.Add('ATTRIBUTE2 ----- >>>'||p_attribute2,1);

Line 4932: ecx_cln_debug_pub.Add('XMLG EVENT KEY ----- >>>'||p_xml_event_key,1);

4928: ecx_cln_debug_pub.Add('DOCUMENT REVISION DATE ----- >>>'||p_doc_revision_date,1);
4929: ecx_cln_debug_pub.Add('INIT DATE ----- >>>'||p_init_date,1);
4930: ecx_cln_debug_pub.Add('DOCUMENT OWNER ----- >>>'||p_doc_owner,1);
4931: ecx_cln_debug_pub.Add('OWNER ROLE ----- >>>'||p_owner_role,1);
4932: ecx_cln_debug_pub.Add('XMLG EVENT KEY ----- >>>'||p_xml_event_key,1);
4933: ecx_cln_debug_pub.Add('Collaboration Standard ----- >>>'||p_collaboration_standard,1);
4934: ecx_cln_debug_pub.Add('ATTRIBUTE1 ----- >>>'||p_attribute1,1);
4935: ecx_cln_debug_pub.Add('ATTRIBUTE2 ----- >>>'||p_attribute2,1);
4936: ecx_cln_debug_pub.Add('ATTRIBUTE3 ----- >>>'||p_attribute3,1);

Line 4933: ecx_cln_debug_pub.Add('Collaboration Standard ----- >>>'||p_collaboration_standard,1);

4929: ecx_cln_debug_pub.Add('INIT DATE ----- >>>'||p_init_date,1);
4930: ecx_cln_debug_pub.Add('DOCUMENT OWNER ----- >>>'||p_doc_owner,1);
4931: ecx_cln_debug_pub.Add('OWNER ROLE ----- >>>'||p_owner_role,1);
4932: ecx_cln_debug_pub.Add('XMLG EVENT KEY ----- >>>'||p_xml_event_key,1);
4933: ecx_cln_debug_pub.Add('Collaboration Standard ----- >>>'||p_collaboration_standard,1);
4934: ecx_cln_debug_pub.Add('ATTRIBUTE1 ----- >>>'||p_attribute1,1);
4935: ecx_cln_debug_pub.Add('ATTRIBUTE2 ----- >>>'||p_attribute2,1);
4936: ecx_cln_debug_pub.Add('ATTRIBUTE3 ----- >>>'||p_attribute3,1);
4937: ecx_cln_debug_pub.Add('ATTRIBUTE4 ----- >>>'||p_attribute4,1);

Line 4934: ecx_cln_debug_pub.Add('ATTRIBUTE1 ----- >>>'||p_attribute1,1);

4930: ecx_cln_debug_pub.Add('DOCUMENT OWNER ----- >>>'||p_doc_owner,1);
4931: ecx_cln_debug_pub.Add('OWNER ROLE ----- >>>'||p_owner_role,1);
4932: ecx_cln_debug_pub.Add('XMLG EVENT KEY ----- >>>'||p_xml_event_key,1);
4933: ecx_cln_debug_pub.Add('Collaboration Standard ----- >>>'||p_collaboration_standard,1);
4934: ecx_cln_debug_pub.Add('ATTRIBUTE1 ----- >>>'||p_attribute1,1);
4935: ecx_cln_debug_pub.Add('ATTRIBUTE2 ----- >>>'||p_attribute2,1);
4936: ecx_cln_debug_pub.Add('ATTRIBUTE3 ----- >>>'||p_attribute3,1);
4937: ecx_cln_debug_pub.Add('ATTRIBUTE4 ----- >>>'||p_attribute4,1);
4938: ecx_cln_debug_pub.Add('ATTRIBUTE5 ----- >>>'||p_attribute5,1);

Line 4935: ecx_cln_debug_pub.Add('ATTRIBUTE2 ----- >>>'||p_attribute2,1);

4931: ecx_cln_debug_pub.Add('OWNER ROLE ----- >>>'||p_owner_role,1);
4932: ecx_cln_debug_pub.Add('XMLG EVENT KEY ----- >>>'||p_xml_event_key,1);
4933: ecx_cln_debug_pub.Add('Collaboration Standard ----- >>>'||p_collaboration_standard,1);
4934: ecx_cln_debug_pub.Add('ATTRIBUTE1 ----- >>>'||p_attribute1,1);
4935: ecx_cln_debug_pub.Add('ATTRIBUTE2 ----- >>>'||p_attribute2,1);
4936: ecx_cln_debug_pub.Add('ATTRIBUTE3 ----- >>>'||p_attribute3,1);
4937: ecx_cln_debug_pub.Add('ATTRIBUTE4 ----- >>>'||p_attribute4,1);
4938: ecx_cln_debug_pub.Add('ATTRIBUTE5 ----- >>>'||p_attribute5,1);
4939: ecx_cln_debug_pub.Add('ATTRIBUTE6 ----- >>>'||p_attribute6,1);

Line 4936: ecx_cln_debug_pub.Add('ATTRIBUTE3 ----- >>>'||p_attribute3,1);

4932: ecx_cln_debug_pub.Add('XMLG EVENT KEY ----- >>>'||p_xml_event_key,1);
4933: ecx_cln_debug_pub.Add('Collaboration Standard ----- >>>'||p_collaboration_standard,1);
4934: ecx_cln_debug_pub.Add('ATTRIBUTE1 ----- >>>'||p_attribute1,1);
4935: ecx_cln_debug_pub.Add('ATTRIBUTE2 ----- >>>'||p_attribute2,1);
4936: ecx_cln_debug_pub.Add('ATTRIBUTE3 ----- >>>'||p_attribute3,1);
4937: ecx_cln_debug_pub.Add('ATTRIBUTE4 ----- >>>'||p_attribute4,1);
4938: ecx_cln_debug_pub.Add('ATTRIBUTE5 ----- >>>'||p_attribute5,1);
4939: ecx_cln_debug_pub.Add('ATTRIBUTE6 ----- >>>'||p_attribute6,1);
4940: ecx_cln_debug_pub.Add('ATTRIBUTE7 ----- >>>'||p_attribute7,1);

Line 4937: ecx_cln_debug_pub.Add('ATTRIBUTE4 ----- >>>'||p_attribute4,1);

4933: ecx_cln_debug_pub.Add('Collaboration Standard ----- >>>'||p_collaboration_standard,1);
4934: ecx_cln_debug_pub.Add('ATTRIBUTE1 ----- >>>'||p_attribute1,1);
4935: ecx_cln_debug_pub.Add('ATTRIBUTE2 ----- >>>'||p_attribute2,1);
4936: ecx_cln_debug_pub.Add('ATTRIBUTE3 ----- >>>'||p_attribute3,1);
4937: ecx_cln_debug_pub.Add('ATTRIBUTE4 ----- >>>'||p_attribute4,1);
4938: ecx_cln_debug_pub.Add('ATTRIBUTE5 ----- >>>'||p_attribute5,1);
4939: ecx_cln_debug_pub.Add('ATTRIBUTE6 ----- >>>'||p_attribute6,1);
4940: ecx_cln_debug_pub.Add('ATTRIBUTE7 ----- >>>'||p_attribute7,1);
4941: ecx_cln_debug_pub.Add('ATTRIBUTE8 ----- >>>'||p_attribute8,1);

Line 4938: ecx_cln_debug_pub.Add('ATTRIBUTE5 ----- >>>'||p_attribute5,1);

4934: ecx_cln_debug_pub.Add('ATTRIBUTE1 ----- >>>'||p_attribute1,1);
4935: ecx_cln_debug_pub.Add('ATTRIBUTE2 ----- >>>'||p_attribute2,1);
4936: ecx_cln_debug_pub.Add('ATTRIBUTE3 ----- >>>'||p_attribute3,1);
4937: ecx_cln_debug_pub.Add('ATTRIBUTE4 ----- >>>'||p_attribute4,1);
4938: ecx_cln_debug_pub.Add('ATTRIBUTE5 ----- >>>'||p_attribute5,1);
4939: ecx_cln_debug_pub.Add('ATTRIBUTE6 ----- >>>'||p_attribute6,1);
4940: ecx_cln_debug_pub.Add('ATTRIBUTE7 ----- >>>'||p_attribute7,1);
4941: ecx_cln_debug_pub.Add('ATTRIBUTE8 ----- >>>'||p_attribute8,1);
4942: ecx_cln_debug_pub.Add('ATTRIBUTE9 ----- >>>'||p_attribute9,1);

Line 4939: ecx_cln_debug_pub.Add('ATTRIBUTE6 ----- >>>'||p_attribute6,1);

4935: ecx_cln_debug_pub.Add('ATTRIBUTE2 ----- >>>'||p_attribute2,1);
4936: ecx_cln_debug_pub.Add('ATTRIBUTE3 ----- >>>'||p_attribute3,1);
4937: ecx_cln_debug_pub.Add('ATTRIBUTE4 ----- >>>'||p_attribute4,1);
4938: ecx_cln_debug_pub.Add('ATTRIBUTE5 ----- >>>'||p_attribute5,1);
4939: ecx_cln_debug_pub.Add('ATTRIBUTE6 ----- >>>'||p_attribute6,1);
4940: ecx_cln_debug_pub.Add('ATTRIBUTE7 ----- >>>'||p_attribute7,1);
4941: ecx_cln_debug_pub.Add('ATTRIBUTE8 ----- >>>'||p_attribute8,1);
4942: ecx_cln_debug_pub.Add('ATTRIBUTE9 ----- >>>'||p_attribute9,1);
4943: ecx_cln_debug_pub.Add('ATTRIBUTE10 ----- >>>'||p_attribute10,1);

Line 4940: ecx_cln_debug_pub.Add('ATTRIBUTE7 ----- >>>'||p_attribute7,1);

4936: ecx_cln_debug_pub.Add('ATTRIBUTE3 ----- >>>'||p_attribute3,1);
4937: ecx_cln_debug_pub.Add('ATTRIBUTE4 ----- >>>'||p_attribute4,1);
4938: ecx_cln_debug_pub.Add('ATTRIBUTE5 ----- >>>'||p_attribute5,1);
4939: ecx_cln_debug_pub.Add('ATTRIBUTE6 ----- >>>'||p_attribute6,1);
4940: ecx_cln_debug_pub.Add('ATTRIBUTE7 ----- >>>'||p_attribute7,1);
4941: ecx_cln_debug_pub.Add('ATTRIBUTE8 ----- >>>'||p_attribute8,1);
4942: ecx_cln_debug_pub.Add('ATTRIBUTE9 ----- >>>'||p_attribute9,1);
4943: ecx_cln_debug_pub.Add('ATTRIBUTE10 ----- >>>'||p_attribute10,1);
4944: ecx_cln_debug_pub.Add('ATTRIBUTE11 ----- >>>'||p_attribute11,1);

Line 4941: ecx_cln_debug_pub.Add('ATTRIBUTE8 ----- >>>'||p_attribute8,1);

4937: ecx_cln_debug_pub.Add('ATTRIBUTE4 ----- >>>'||p_attribute4,1);
4938: ecx_cln_debug_pub.Add('ATTRIBUTE5 ----- >>>'||p_attribute5,1);
4939: ecx_cln_debug_pub.Add('ATTRIBUTE6 ----- >>>'||p_attribute6,1);
4940: ecx_cln_debug_pub.Add('ATTRIBUTE7 ----- >>>'||p_attribute7,1);
4941: ecx_cln_debug_pub.Add('ATTRIBUTE8 ----- >>>'||p_attribute8,1);
4942: ecx_cln_debug_pub.Add('ATTRIBUTE9 ----- >>>'||p_attribute9,1);
4943: ecx_cln_debug_pub.Add('ATTRIBUTE10 ----- >>>'||p_attribute10,1);
4944: ecx_cln_debug_pub.Add('ATTRIBUTE11 ----- >>>'||p_attribute11,1);
4945: ecx_cln_debug_pub.Add('ATTRIBUTE12 ----- >>>'||p_attribute12,1);

Line 4942: ecx_cln_debug_pub.Add('ATTRIBUTE9 ----- >>>'||p_attribute9,1);

4938: ecx_cln_debug_pub.Add('ATTRIBUTE5 ----- >>>'||p_attribute5,1);
4939: ecx_cln_debug_pub.Add('ATTRIBUTE6 ----- >>>'||p_attribute6,1);
4940: ecx_cln_debug_pub.Add('ATTRIBUTE7 ----- >>>'||p_attribute7,1);
4941: ecx_cln_debug_pub.Add('ATTRIBUTE8 ----- >>>'||p_attribute8,1);
4942: ecx_cln_debug_pub.Add('ATTRIBUTE9 ----- >>>'||p_attribute9,1);
4943: ecx_cln_debug_pub.Add('ATTRIBUTE10 ----- >>>'||p_attribute10,1);
4944: ecx_cln_debug_pub.Add('ATTRIBUTE11 ----- >>>'||p_attribute11,1);
4945: ecx_cln_debug_pub.Add('ATTRIBUTE12 ----- >>>'||p_attribute12,1);
4946: ecx_cln_debug_pub.Add('ATTRIBUTE13 ----- >>>'||p_attribute13,1);

Line 4943: ecx_cln_debug_pub.Add('ATTRIBUTE10 ----- >>>'||p_attribute10,1);

4939: ecx_cln_debug_pub.Add('ATTRIBUTE6 ----- >>>'||p_attribute6,1);
4940: ecx_cln_debug_pub.Add('ATTRIBUTE7 ----- >>>'||p_attribute7,1);
4941: ecx_cln_debug_pub.Add('ATTRIBUTE8 ----- >>>'||p_attribute8,1);
4942: ecx_cln_debug_pub.Add('ATTRIBUTE9 ----- >>>'||p_attribute9,1);
4943: ecx_cln_debug_pub.Add('ATTRIBUTE10 ----- >>>'||p_attribute10,1);
4944: ecx_cln_debug_pub.Add('ATTRIBUTE11 ----- >>>'||p_attribute11,1);
4945: ecx_cln_debug_pub.Add('ATTRIBUTE12 ----- >>>'||p_attribute12,1);
4946: ecx_cln_debug_pub.Add('ATTRIBUTE13 ----- >>>'||p_attribute13,1);
4947: ecx_cln_debug_pub.Add('ATTRIBUTE14 ----- >>>'||p_attribute14,1);

Line 4944: ecx_cln_debug_pub.Add('ATTRIBUTE11 ----- >>>'||p_attribute11,1);

4940: ecx_cln_debug_pub.Add('ATTRIBUTE7 ----- >>>'||p_attribute7,1);
4941: ecx_cln_debug_pub.Add('ATTRIBUTE8 ----- >>>'||p_attribute8,1);
4942: ecx_cln_debug_pub.Add('ATTRIBUTE9 ----- >>>'||p_attribute9,1);
4943: ecx_cln_debug_pub.Add('ATTRIBUTE10 ----- >>>'||p_attribute10,1);
4944: ecx_cln_debug_pub.Add('ATTRIBUTE11 ----- >>>'||p_attribute11,1);
4945: ecx_cln_debug_pub.Add('ATTRIBUTE12 ----- >>>'||p_attribute12,1);
4946: ecx_cln_debug_pub.Add('ATTRIBUTE13 ----- >>>'||p_attribute13,1);
4947: ecx_cln_debug_pub.Add('ATTRIBUTE14 ----- >>>'||p_attribute14,1);
4948: ecx_cln_debug_pub.Add('ATTRIBUTE15 ----- >>>'||p_attribute15,1);

Line 4945: ecx_cln_debug_pub.Add('ATTRIBUTE12 ----- >>>'||p_attribute12,1);

4941: ecx_cln_debug_pub.Add('ATTRIBUTE8 ----- >>>'||p_attribute8,1);
4942: ecx_cln_debug_pub.Add('ATTRIBUTE9 ----- >>>'||p_attribute9,1);
4943: ecx_cln_debug_pub.Add('ATTRIBUTE10 ----- >>>'||p_attribute10,1);
4944: ecx_cln_debug_pub.Add('ATTRIBUTE11 ----- >>>'||p_attribute11,1);
4945: ecx_cln_debug_pub.Add('ATTRIBUTE12 ----- >>>'||p_attribute12,1);
4946: ecx_cln_debug_pub.Add('ATTRIBUTE13 ----- >>>'||p_attribute13,1);
4947: ecx_cln_debug_pub.Add('ATTRIBUTE14 ----- >>>'||p_attribute14,1);
4948: ecx_cln_debug_pub.Add('ATTRIBUTE15 ----- >>>'||p_attribute15,1);
4949: ecx_cln_debug_pub.Add('DATTRIBUTE1 ----- >>>'||p_dattribute1,1);

Line 4946: ecx_cln_debug_pub.Add('ATTRIBUTE13 ----- >>>'||p_attribute13,1);

4942: ecx_cln_debug_pub.Add('ATTRIBUTE9 ----- >>>'||p_attribute9,1);
4943: ecx_cln_debug_pub.Add('ATTRIBUTE10 ----- >>>'||p_attribute10,1);
4944: ecx_cln_debug_pub.Add('ATTRIBUTE11 ----- >>>'||p_attribute11,1);
4945: ecx_cln_debug_pub.Add('ATTRIBUTE12 ----- >>>'||p_attribute12,1);
4946: ecx_cln_debug_pub.Add('ATTRIBUTE13 ----- >>>'||p_attribute13,1);
4947: ecx_cln_debug_pub.Add('ATTRIBUTE14 ----- >>>'||p_attribute14,1);
4948: ecx_cln_debug_pub.Add('ATTRIBUTE15 ----- >>>'||p_attribute15,1);
4949: ecx_cln_debug_pub.Add('DATTRIBUTE1 ----- >>>'||p_dattribute1,1);
4950: ecx_cln_debug_pub.Add('DATTRIBUTE2 ----- >>>'||p_dattribute2,1);

Line 4947: ecx_cln_debug_pub.Add('ATTRIBUTE14 ----- >>>'||p_attribute14,1);

4943: ecx_cln_debug_pub.Add('ATTRIBUTE10 ----- >>>'||p_attribute10,1);
4944: ecx_cln_debug_pub.Add('ATTRIBUTE11 ----- >>>'||p_attribute11,1);
4945: ecx_cln_debug_pub.Add('ATTRIBUTE12 ----- >>>'||p_attribute12,1);
4946: ecx_cln_debug_pub.Add('ATTRIBUTE13 ----- >>>'||p_attribute13,1);
4947: ecx_cln_debug_pub.Add('ATTRIBUTE14 ----- >>>'||p_attribute14,1);
4948: ecx_cln_debug_pub.Add('ATTRIBUTE15 ----- >>>'||p_attribute15,1);
4949: ecx_cln_debug_pub.Add('DATTRIBUTE1 ----- >>>'||p_dattribute1,1);
4950: ecx_cln_debug_pub.Add('DATTRIBUTE2 ----- >>>'||p_dattribute2,1);
4951: ecx_cln_debug_pub.Add('DATTRIBUTE3 ----- >>>'||p_dattribute3,1);

Line 4948: ecx_cln_debug_pub.Add('ATTRIBUTE15 ----- >>>'||p_attribute15,1);

4944: ecx_cln_debug_pub.Add('ATTRIBUTE11 ----- >>>'||p_attribute11,1);
4945: ecx_cln_debug_pub.Add('ATTRIBUTE12 ----- >>>'||p_attribute12,1);
4946: ecx_cln_debug_pub.Add('ATTRIBUTE13 ----- >>>'||p_attribute13,1);
4947: ecx_cln_debug_pub.Add('ATTRIBUTE14 ----- >>>'||p_attribute14,1);
4948: ecx_cln_debug_pub.Add('ATTRIBUTE15 ----- >>>'||p_attribute15,1);
4949: ecx_cln_debug_pub.Add('DATTRIBUTE1 ----- >>>'||p_dattribute1,1);
4950: ecx_cln_debug_pub.Add('DATTRIBUTE2 ----- >>>'||p_dattribute2,1);
4951: ecx_cln_debug_pub.Add('DATTRIBUTE3 ----- >>>'||p_dattribute3,1);
4952: ecx_cln_debug_pub.Add('DATTRIBUTE4 ----- >>>'||p_dattribute4,1);

Line 4949: ecx_cln_debug_pub.Add('DATTRIBUTE1 ----- >>>'||p_dattribute1,1);

4945: ecx_cln_debug_pub.Add('ATTRIBUTE12 ----- >>>'||p_attribute12,1);
4946: ecx_cln_debug_pub.Add('ATTRIBUTE13 ----- >>>'||p_attribute13,1);
4947: ecx_cln_debug_pub.Add('ATTRIBUTE14 ----- >>>'||p_attribute14,1);
4948: ecx_cln_debug_pub.Add('ATTRIBUTE15 ----- >>>'||p_attribute15,1);
4949: ecx_cln_debug_pub.Add('DATTRIBUTE1 ----- >>>'||p_dattribute1,1);
4950: ecx_cln_debug_pub.Add('DATTRIBUTE2 ----- >>>'||p_dattribute2,1);
4951: ecx_cln_debug_pub.Add('DATTRIBUTE3 ----- >>>'||p_dattribute3,1);
4952: ecx_cln_debug_pub.Add('DATTRIBUTE4 ----- >>>'||p_dattribute4,1);
4953: ecx_cln_debug_pub.Add('DATTRIBUTE5 ----- >>>'||p_dattribute5,1);

Line 4950: ecx_cln_debug_pub.Add('DATTRIBUTE2 ----- >>>'||p_dattribute2,1);

4946: ecx_cln_debug_pub.Add('ATTRIBUTE13 ----- >>>'||p_attribute13,1);
4947: ecx_cln_debug_pub.Add('ATTRIBUTE14 ----- >>>'||p_attribute14,1);
4948: ecx_cln_debug_pub.Add('ATTRIBUTE15 ----- >>>'||p_attribute15,1);
4949: ecx_cln_debug_pub.Add('DATTRIBUTE1 ----- >>>'||p_dattribute1,1);
4950: ecx_cln_debug_pub.Add('DATTRIBUTE2 ----- >>>'||p_dattribute2,1);
4951: ecx_cln_debug_pub.Add('DATTRIBUTE3 ----- >>>'||p_dattribute3,1);
4952: ecx_cln_debug_pub.Add('DATTRIBUTE4 ----- >>>'||p_dattribute4,1);
4953: ecx_cln_debug_pub.Add('DATTRIBUTE5 ----- >>>'||p_dattribute5,1);
4954: ecx_cln_debug_pub.Add('===========================================',1);

Line 4951: ecx_cln_debug_pub.Add('DATTRIBUTE3 ----- >>>'||p_dattribute3,1);

4947: ecx_cln_debug_pub.Add('ATTRIBUTE14 ----- >>>'||p_attribute14,1);
4948: ecx_cln_debug_pub.Add('ATTRIBUTE15 ----- >>>'||p_attribute15,1);
4949: ecx_cln_debug_pub.Add('DATTRIBUTE1 ----- >>>'||p_dattribute1,1);
4950: ecx_cln_debug_pub.Add('DATTRIBUTE2 ----- >>>'||p_dattribute2,1);
4951: ecx_cln_debug_pub.Add('DATTRIBUTE3 ----- >>>'||p_dattribute3,1);
4952: ecx_cln_debug_pub.Add('DATTRIBUTE4 ----- >>>'||p_dattribute4,1);
4953: ecx_cln_debug_pub.Add('DATTRIBUTE5 ----- >>>'||p_dattribute5,1);
4954: ecx_cln_debug_pub.Add('===========================================',1);
4955: END IF;

Line 4952: ecx_cln_debug_pub.Add('DATTRIBUTE4 ----- >>>'||p_dattribute4,1);

4948: ecx_cln_debug_pub.Add('ATTRIBUTE15 ----- >>>'||p_attribute15,1);
4949: ecx_cln_debug_pub.Add('DATTRIBUTE1 ----- >>>'||p_dattribute1,1);
4950: ecx_cln_debug_pub.Add('DATTRIBUTE2 ----- >>>'||p_dattribute2,1);
4951: ecx_cln_debug_pub.Add('DATTRIBUTE3 ----- >>>'||p_dattribute3,1);
4952: ecx_cln_debug_pub.Add('DATTRIBUTE4 ----- >>>'||p_dattribute4,1);
4953: ecx_cln_debug_pub.Add('DATTRIBUTE5 ----- >>>'||p_dattribute5,1);
4954: ecx_cln_debug_pub.Add('===========================================',1);
4955: END IF;
4956:

Line 4953: ecx_cln_debug_pub.Add('DATTRIBUTE5 ----- >>>'||p_dattribute5,1);

4949: ecx_cln_debug_pub.Add('DATTRIBUTE1 ----- >>>'||p_dattribute1,1);
4950: ecx_cln_debug_pub.Add('DATTRIBUTE2 ----- >>>'||p_dattribute2,1);
4951: ecx_cln_debug_pub.Add('DATTRIBUTE3 ----- >>>'||p_dattribute3,1);
4952: ecx_cln_debug_pub.Add('DATTRIBUTE4 ----- >>>'||p_dattribute4,1);
4953: ecx_cln_debug_pub.Add('DATTRIBUTE5 ----- >>>'||p_dattribute5,1);
4954: ecx_cln_debug_pub.Add('===========================================',1);
4955: END IF;
4956:
4957:

Line 4954: ecx_cln_debug_pub.Add('===========================================',1);

4950: ecx_cln_debug_pub.Add('DATTRIBUTE2 ----- >>>'||p_dattribute2,1);
4951: ecx_cln_debug_pub.Add('DATTRIBUTE3 ----- >>>'||p_dattribute3,1);
4952: ecx_cln_debug_pub.Add('DATTRIBUTE4 ----- >>>'||p_dattribute4,1);
4953: ecx_cln_debug_pub.Add('DATTRIBUTE5 ----- >>>'||p_dattribute5,1);
4954: ecx_cln_debug_pub.Add('===========================================',1);
4955: END IF;
4956:
4957:
4958:

Line 4978: ecx_cln_debug_pub.Add('==========Call to GET_TRADING_PARTNER_DETAILS API=============',1);

4974: l_collaboration_standard := p_collaboration_standard;
4975:
4976: -- call the API to get the trading partner set up details
4977: IF (l_Debug_Level <= 1) THEN
4978: ecx_cln_debug_pub.Add('==========Call to GET_TRADING_PARTNER_DETAILS API=============',1);
4979: END IF;
4980:
4981:
4982: GET_TRADING_PARTNER_DETAILS(

Line 5006: ecx_cln_debug_pub.Add('===========================================',1);

5002: -- x_msg_data is set to appropriate value by GET_TRADING_PARTNER_DETAILS
5003: RAISE FND_API.G_EXC_ERROR;
5004: END IF;
5005: IF (l_Debug_Level <= 1) THEN
5006: ecx_cln_debug_pub.Add('===========================================',1);
5007: END IF;
5008:
5009: l_app_id := p_app_id;
5010: l_coll_type := p_coll_type;

Line 5028: ecx_cln_debug_pub.Add('Collaboration ID passed as null',1);

5024:
5025:
5026: IF l_coll_id IS NULL THEN
5027: IF (l_Debug_Level <= 1) THEN
5028: ecx_cln_debug_pub.Add('Collaboration ID passed as null',1);
5029: ecx_cln_debug_pub.Add('==========Call to FIND_COLLABORATION_ID API=============',1);
5030: END IF;
5031:
5032: FIND_COLLABORATION_ID(

Line 5029: ecx_cln_debug_pub.Add('==========Call to FIND_COLLABORATION_ID API=============',1);

5025:
5026: IF l_coll_id IS NULL THEN
5027: IF (l_Debug_Level <= 1) THEN
5028: ecx_cln_debug_pub.Add('Collaboration ID passed as null',1);
5029: ecx_cln_debug_pub.Add('==========Call to FIND_COLLABORATION_ID API=============',1);
5030: END IF;
5031:
5032: FIND_COLLABORATION_ID(
5033: x_return_status => x_return_status,

Line 5062: ecx_cln_debug_pub.Add('Collaboration ID Found as '||l_coll_id,1);

5058: -- x_msg_data is set to appropriate value by FIND_COLLABORATION_ID
5059: RAISE FND_API.G_EXC_ERROR;
5060: END IF;
5061: IF (l_Debug_Level <= 1) THEN
5062: ecx_cln_debug_pub.Add('Collaboration ID Found as '||l_coll_id,1);
5063: END IF;
5064:
5065:
5066: END IF;

Line 5070: ecx_cln_debug_pub.Add('.....Collaboration Does Not Exist...............',1);

5066: END IF;
5067:
5068: IF l_coll_id IS NULL THEN
5069: IF (l_Debug_Level <= 1) THEN
5070: ecx_cln_debug_pub.Add('.....Collaboration Does Not Exist...............',1);
5071: ecx_cln_debug_pub.Add('.....Call to Create Collaboration API...........',1);
5072: END IF;
5073:
5074:

Line 5071: ecx_cln_debug_pub.Add('.....Call to Create Collaboration API...........',1);

5067:
5068: IF l_coll_id IS NULL THEN
5069: IF (l_Debug_Level <= 1) THEN
5070: ecx_cln_debug_pub.Add('.....Collaboration Does Not Exist...............',1);
5071: ecx_cln_debug_pub.Add('.....Call to Create Collaboration API...........',1);
5072: END IF;
5073:
5074:
5075: CREATE_COLLABORATION(

Line 5149: ecx_cln_debug_pub.Add('.....Collaboration Exists...........',1);

5145:
5146:
5147: IF l_coll_id IS NOT NULL THEN
5148: IF (l_Debug_Level <= 1) THEN
5149: ecx_cln_debug_pub.Add('.....Collaboration Exists...........',1);
5150: ecx_cln_debug_pub.Add('.....Call to Update Collaboration API...........',1);
5151: END IF;
5152:
5153:

Line 5150: ecx_cln_debug_pub.Add('.....Call to Update Collaboration API...........',1);

5146:
5147: IF l_coll_id IS NOT NULL THEN
5148: IF (l_Debug_Level <= 1) THEN
5149: ecx_cln_debug_pub.Add('.....Collaboration Exists...........',1);
5150: ecx_cln_debug_pub.Add('.....Call to Update Collaboration API...........',1);
5151: END IF;
5152:
5153:
5154:

Line 5248: ecx_cln_debug_pub.Add(l_msg_data,1);

5244: END IF;
5245:
5246:
5247: IF (l_Debug_Level <= 1) THEN
5248: ecx_cln_debug_pub.Add(l_msg_data,1);
5249: END IF;
5250:
5251: IF (l_Debug_Level <= 2) THEN
5252: ecx_cln_debug_pub.Add('------ Exiting ADD_COLLABORATION API ------- ',2);

Line 5252: ecx_cln_debug_pub.Add('------ Exiting ADD_COLLABORATION API ------- ',2);

5248: ecx_cln_debug_pub.Add(l_msg_data,1);
5249: END IF;
5250:
5251: IF (l_Debug_Level <= 2) THEN
5252: ecx_cln_debug_pub.Add('------ Exiting ADD_COLLABORATION API ------- ',2);
5253: END IF;
5254:
5255:
5256: EXCEPTION

Line 5262: ecx_cln_debug_pub.Add(l_msg_data,4);

5258: WHEN FND_API.G_EXC_ERROR THEN
5259: --ROLLBACK TO UPDATE_COLLABORATION_PUB;
5260: x_return_status := FND_API.G_RET_STS_ERROR ;
5261: IF (l_Debug_Level <= 4) THEN
5262: ecx_cln_debug_pub.Add(l_msg_data,4);
5263: ecx_cln_debug_pub.Add('------ Exiting ADD_COLLABORATION API ------- ',2);
5264: END IF;
5265:
5266:

Line 5263: ecx_cln_debug_pub.Add('------ Exiting ADD_COLLABORATION API ------- ',2);

5259: --ROLLBACK TO UPDATE_COLLABORATION_PUB;
5260: x_return_status := FND_API.G_RET_STS_ERROR ;
5261: IF (l_Debug_Level <= 4) THEN
5262: ecx_cln_debug_pub.Add(l_msg_data,4);
5263: ecx_cln_debug_pub.Add('------ Exiting ADD_COLLABORATION API ------- ',2);
5264: END IF;
5265:
5266:
5267: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN

Line 5278: ecx_cln_debug_pub.Add(l_msg_data,6);

5274: FND_MESSAGE.SET_TOKEN('ERRORMSG',l_error_msg);
5275: x_msg_data :=FND_MESSAGE.GET;
5276: l_msg_data :='Unexpected Error -'||l_error_code||' : '||l_error_msg;
5277: IF (l_Debug_Level <= 5) THEN
5278: ecx_cln_debug_pub.Add(l_msg_data,6);
5279: ecx_cln_debug_pub.Add('------ Exiting ADD_COLLABORATION API ------- ',2);
5280: END IF;
5281:
5282:

Line 5279: ecx_cln_debug_pub.Add('------ Exiting ADD_COLLABORATION API ------- ',2);

5275: x_msg_data :=FND_MESSAGE.GET;
5276: l_msg_data :='Unexpected Error -'||l_error_code||' : '||l_error_msg;
5277: IF (l_Debug_Level <= 5) THEN
5278: ecx_cln_debug_pub.Add(l_msg_data,6);
5279: ecx_cln_debug_pub.Add('------ Exiting ADD_COLLABORATION API ------- ',2);
5280: END IF;
5281:
5282:
5283:

Line 5295: ecx_cln_debug_pub.Add(l_msg_data,4);

5291: FND_MESSAGE.SET_TOKEN('ERRORMSG',l_error_msg);
5292: x_msg_data :=FND_MESSAGE.GET;
5293: l_msg_data :='Unexpected Error -'||l_error_code||' : '||l_error_msg;
5294: IF (l_Debug_Level <= 4) THEN
5295: ecx_cln_debug_pub.Add(l_msg_data,4);
5296: ecx_cln_debug_pub.Add('------ Exiting ADD_COLLABORATION API ------- ',2);
5297: END IF;
5298:
5299:

Line 5296: ecx_cln_debug_pub.Add('------ Exiting ADD_COLLABORATION API ------- ',2);

5292: x_msg_data :=FND_MESSAGE.GET;
5293: l_msg_data :='Unexpected Error -'||l_error_code||' : '||l_error_msg;
5294: IF (l_Debug_Level <= 4) THEN
5295: ecx_cln_debug_pub.Add(l_msg_data,4);
5296: ecx_cln_debug_pub.Add('------ Exiting ADD_COLLABORATION API ------- ',2);
5297: END IF;
5298:
5299:
5300: END ADD_COLLABORATION;