DBA Data[Home] [Help]

APPS.FARX_MCP dependencies on FA_SRVR_MSG

Line 337: FA_SRVR_MSG.Init_Server_Message;

333:
334: BEGIN
335:
336: -- Initialize message stacks.
337: FA_SRVR_MSG.Init_Server_Message;
338: FA_DEBUG_PKG.Initialize;
339: FA_DEBUG_PKG.SET_DEBUG_FLAG;
340:
341: /* Bug 8402286 removing LARGE ROLLBACK SEGMENT

Line 477: FA_SRVR_MSG.Add_Message(

473: CLOSE get_status;
474:
475: IF (h_preview_status_d <> h_current_status_d) THEN
476: -- Re-using message for mass change program.
477: FA_SRVR_MSG.Add_Message(
478: CALLING_FN => 'FARX_MCP.Preview_Change',
479: NAME => 'FA_MASSRCL_WRONG_STATUS',
480: TOKEN1 => 'CURRENT',
481: VALUE1 => h_current_status_d,

Line 679: FA_SRVR_MSG.Write_Msg_Log(

675: */
676: FND_MSG_PUB.Count_And_Get(
677: p_count => h_msg_count,
678: p_data => h_msg_data);
679: FA_SRVR_MSG.Write_Msg_Log(
680: msg_count => h_msg_count,
681: msg_data => h_msg_data);
682: IF (h_debug_flag = 'YES') THEN
683: FA_DEBUG_PKG.Write_Debug_Log;

Line 720: FA_SRVR_MSG.Write_Msg_Log(

716: IF (X_RX_Flag = 'YES') THEN
717: FND_MSG_PUB.Count_And_Get(
718: p_count => h_msg_count,
719: p_data => h_msg_data);
720: FA_SRVR_MSG.Write_Msg_Log(
721: msg_count => h_msg_count,
722: msg_data => h_msg_data);
723: IF (h_debug_flag = 'YES') THEN
724: FA_DEBUG_PKG.Write_Debug_Log;

Line 730: FA_SRVR_MSG.Add_SQL_Error(

726: END IF;
727: WHEN OTHERS THEN
728: retcode := 2; -- Completed with error.
729: IF SQLCODE <> 0 THEN
730: FA_SRVR_MSG.Add_SQL_Error(
731: CALLING_FN => 'FARX_RP.Preview_Reclass');
732: END IF;
733:
734: -- Reset global variable values.

Line 762: FA_SRVR_MSG.Write_Msg_Log(

758: IF (X_RX_Flag = 'YES') THEN
759: FND_MSG_PUB.Count_And_Get(
760: p_count => h_msg_count,
761: p_data => h_msg_data);
762: FA_SRVR_MSG.Write_Msg_Log(
763: msg_count => h_msg_count,
764: msg_data => h_msg_data);
765: IF (h_debug_flag = 'YES') THEN
766: FA_DEBUG_PKG.Write_Debug_Log;

Line 999: FA_SRVR_MSG.Add_SQL_Error(

995: a_tbl(a_index + 1).category_id := a_tbl(a_index).category_id;
996:
997: EXCEPTION
998: WHEN OTHERS THEN
999: FA_SRVR_MSG.Add_SQL_Error(
1000: CALLING_FN => 'FARX_MCP.Store_Results');
1001: raise;
1002:
1003: END Store_Results;