DBA Data[Home] [Help]

APPS.FARX_MCP dependencies on FA_SRVR_MSG

Line 240: FA_SRVR_MSG.Init_Server_Message;

236:
237: BEGIN
238:
239: -- Initialize message stacks.
240: FA_SRVR_MSG.Init_Server_Message;
241: FA_DEBUG_PKG.Initialize;
242: FA_DEBUG_PKG.SET_DEBUG_FLAG;
243:
244:

Line 371: FA_SRVR_MSG.Add_Message(

367: CLOSE get_status;
368:
369: IF (h_preview_status_d <> h_current_status_d) THEN
370: -- Re-using message for mass change program.
371: FA_SRVR_MSG.Add_Message(
372: CALLING_FN => 'FARX_MCP.Preview_Change',
373: NAME => 'FA_MASSRCL_WRONG_STATUS',
374: TOKEN1 => 'CURRENT',
375: VALUE1 => h_current_status_d,

Line 571: FA_SRVR_MSG.Write_Msg_Log(

567:
568: FND_MSG_PUB.Count_And_Get(
569: p_count => h_msg_count,
570: p_data => h_msg_data);
571: FA_SRVR_MSG.Write_Msg_Log(
572: msg_count => h_msg_count,
573: msg_data => h_msg_data);
574: IF (h_debug_flag = 'YES') THEN
575: FA_DEBUG_PKG.Write_Debug_Log;

Line 614: FA_SRVR_MSG.Write_Msg_Log(

610: IF (X_RX_Flag = 'YES') THEN
611: FND_MSG_PUB.Count_And_Get(
612: p_count => h_msg_count,
613: p_data => h_msg_data);
614: FA_SRVR_MSG.Write_Msg_Log(
615: msg_count => h_msg_count,
616: msg_data => h_msg_data);
617: IF (h_debug_flag = 'YES') THEN
618: FA_DEBUG_PKG.Write_Debug_Log;

Line 624: FA_SRVR_MSG.Add_SQL_Error(

620: END IF;
621: WHEN OTHERS THEN
622: retcode := 2; -- Completed with error.
623: IF SQLCODE <> 0 THEN
624: FA_SRVR_MSG.Add_SQL_Error(
625: CALLING_FN => 'FARX_RP.Preview_Reclass');
626: END IF;
627:
628: -- Reset global variable values.

Line 658: FA_SRVR_MSG.Write_Msg_Log(

654: IF (X_RX_Flag = 'YES') THEN
655: FND_MSG_PUB.Count_And_Get(
656: p_count => h_msg_count,
657: p_data => h_msg_data);
658: FA_SRVR_MSG.Write_Msg_Log(
659: msg_count => h_msg_count,
660: msg_data => h_msg_data);
661: IF (h_debug_flag = 'YES') THEN
662: FA_DEBUG_PKG.Write_Debug_Log;

Line 895: FA_SRVR_MSG.Add_SQL_Error(

891: a_tbl(a_index + 1).category_id := a_tbl(a_index).category_id;
892:
893: EXCEPTION
894: WHEN OTHERS THEN
895: FA_SRVR_MSG.Add_SQL_Error(
896: CALLING_FN => 'FARX_MCP.Store_Results');
897: raise;
898:
899: END Store_Results;