DBA Data[Home] [Help]

APPS.CLN_XMLG_EVENT_HANDLER_PKG dependencies on FND_API

Line 77: x_return_status := FND_API.G_RET_STS_SUCCESS;

73: END IF;
74:
75:
76: -- Initialize API return status to success
77: x_return_status := FND_API.G_RET_STS_SUCCESS;
78: x_msg_data := 'Collaboration History is successfully updated with the error message';
79:
80: -- Getting trading partner details, transaction type, subtype, document id, etc..
81: -- from ecx tables using message ID

Line 285: IF x_return_status <> FND_API.G_RET_STS_SUCCESS THEN

281: p_unique5 => NULL,
282: p_sender_component => l_sender_component,
283: p_rosettanet_check_required => l_rosettanet_check_required,
284: x_coll_id => l_coll_id);
285: IF x_return_status <> FND_API.G_RET_STS_SUCCESS THEN
286: x_msg_data := 'Create Collaboration Failed:' || x_msg_data;
287: IF (l_Debug_Level <= 1) THEN
288: ecx_cln_debug_pub.Add('ERROR:' || x_msg_data, 1);
289: END IF;

Line 311: IF x_return_status <> FND_API.G_RET_STS_SUCCESS THEN

307: -- Update collaboration
308: CLN_NP_PROCESSOR_PKG.PROCESS_NOTIFICATION(x_return_status, x_msg_data, NULL, l_app_ref_id,
309: '99', l_fnd_message, p_err_code, p_err_desc,
310: l_int_con_no, 'XML_GATEWAY', l_doc_dir, l_coll_id,NULL);
311: IF x_return_status <> FND_API.G_RET_STS_SUCCESS THEN
312: x_msg_data := 'Process Notification Failed:' || x_msg_data;
313: IF (l_Debug_Level <= 4) THEN
314: ecx_cln_debug_pub.Add('ERROR:' || x_msg_data, 4);
315: END IF;

Line 328: x_return_status := FND_API.G_RET_STS_ERROR;

324: WHEN OTHERS THEN
325: l_error_code := SQLCODE;
326: l_error_msg := SQLERRM;
327: x_msg_data := 'ERROR: ' || l_error_code||' : '||l_error_msg;
328: x_return_status := FND_API.G_RET_STS_ERROR;
329: IF (l_Debug_Level <= 5) THEN
330: ecx_cln_debug_pub.Add(x_msg_data, 6);
331: ecx_cln_debug_pub.Add('EXITING NOTIFIY_XMLG_IN_ERROR', 2);
332: END IF;

Line 532: -- IF l_return_code <> FND_API.G_RET_STS_SUCCESS THEN

528: p_doc_dir => l_direction,
529: p_app_id => l_app_id,
530: p_coll_type => l_coll_type,
531: p_doc_type => l_doc_type);
532: -- IF l_return_code <> FND_API.G_RET_STS_SUCCESS THEN
533: -- Procedure will return success even if there is NO_DATA_FOUND exception
534: IF ((l_app_id IS NULL) OR (l_coll_type IS NULL) OR (l_doc_type IS NULL)) THEN
535: IF (l_Debug_Level <= 1) THEN
536: ecx_cln_debug_pub.Add('This message is not for oracle supply chain trading connector',1);

Line 582: IF l_return_code <> FND_API.G_RET_STS_SUCCESS THEN

578: p_msg_text => l_msg,
579: p_coll_pt => 'XML_GATEWAY',
580: p_xmlg_msg_id => l_msg_id,
581: x_dtl_coll_id => l_dtl_coll_id);
582: IF l_return_code <> FND_API.G_RET_STS_SUCCESS THEN
583: l_return_msg := 'Create Collaboration Failed:' || l_return_msg;
584: IF (l_Debug_Level <= 4) THEN
585: ecx_cln_debug_pub.Add('ERROR:' || l_return_msg, 4);
586: END IF;