DBA Data[Home] [Help]

APPS.HR_TRANSACTION_SWI dependencies on FND_MSG_PUB

Line 2204: msg_count := fnd_msg_pub.Count_Msg;

2200: p_data VARCHAR2(4000);
2201: p_msg_index_out NUMBER;
2202:
2203: BEGIN
2204: msg_count := fnd_msg_pub.Count_Msg;
2205:
2206: msg_count_elmt :=xmldom.createElement(doc, 'MsgCount');
2207: xmldom.setAttribute(
2208: msg_count_elmt

Line 2234: -- get the actual message from fnd_msg_pub

2230: item_node := xmldom.appendChild(
2231: message_node
2232: , xmldom.makeNode(item_elmt)
2233: );
2234: -- get the actual message from fnd_msg_pub
2235: msg_details :=fnd_msg_pub.Get_Detail(p_msg_index=>i,p_encoded=>'F');
2236: item_text := xmldom.createTextNode(
2237: doc
2238: , msg_details

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

2231: message_node
2232: , xmldom.makeNode(item_elmt)
2233: );
2234: -- get the actual message from fnd_msg_pub
2235: msg_details :=fnd_msg_pub.Get_Detail(p_msg_index=>i,p_encoded=>'F');
2236: item_text := xmldom.createTextNode(
2237: doc
2238: , msg_details
2239: );

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

2389: );
2390: EXCEPTION
2391: WHEN g_process_api_internal_error THEN
2392: x_return_status := set_status(x_return_status,'E');
2393: -- read the fnd msg pub for errors and log them to error doc
2394: IF(xmldom.isnull(error_doc)) THEN -- first error condition
2395: -- create the new empty document
2396: error_doc := xmldom.newDOMDocument;
2397: error_doc_main_node := xmldom.makeNode(error_doc);