DBA Data[Home] [Help]

APPS.HR_TRANSACTION_SWI dependencies on FND_MSG_PUB

Line 2599: msg_count := fnd_msg_pub.Count_Msg;

2595: p_msg_index_out NUMBER;
2596:
2597: BEGIN
2598: hr_utility.set_location('Entering createEOErrorMSgNode : ', 10);
2599: msg_count := fnd_msg_pub.Count_Msg;
2600: p_data := null;
2601:
2602: msg_count_elmt :=xmldom.createElement(doc, 'MsgCount');
2603: xmldom.setAttribute(

Line 2630: -- get the actual message from fnd_msg_pub

2626: item_node := xmldom.appendChild(
2627: message_node
2628: , xmldom.makeNode(item_elmt)
2629: );
2630: -- get the actual message from fnd_msg_pub
2631: msg_details :=fnd_msg_pub.Get_Detail(p_msg_index=>i,p_encoded=>'F');
2632: p_data := p_data || ' %%%% ' || msg_details;
2633: hr_utility.set_location('EO Error : ' || msg_details, 20);
2634: item_text := xmldom.createTextNode(

Line 2631: msg_details :=fnd_msg_pub.Get_Detail(p_msg_index=>i,p_encoded=>'F');

2627: message_node
2628: , xmldom.makeNode(item_elmt)
2629: );
2630: -- get the actual message from fnd_msg_pub
2631: msg_details :=fnd_msg_pub.Get_Detail(p_msg_index=>i,p_encoded=>'F');
2632: p_data := p_data || ' %%%% ' || msg_details;
2633: hr_utility.set_location('EO Error : ' || msg_details, 20);
2634: item_text := xmldom.createTextNode(
2635: doc

Line 2809: -- read the fnd msg pub for errors and log them to error doc

2805: );
2806: EXCEPTION
2807: WHEN g_process_api_internal_error THEN
2808: x_return_status := set_status(x_return_status,'E');
2809: -- read the fnd msg pub for errors and log them to error doc
2810: IF(xmldom.isnull(error_doc)) THEN -- first error condition
2811: -- create the new empty document
2812: error_doc := xmldom.newDOMDocument;
2813: error_doc_main_node := xmldom.makeNode(error_doc);