DBA Data[Home] [Help]

APPS.FARX_RP dependencies on FA_SRVR_MSG

Line 272: FA_SRVR_MSG.Init_Server_Message;

268:
269: BEGIN
270:
271: -- Initialize message stacks.
272: FA_SRVR_MSG.Init_Server_Message;
273:
274: FA_DEBUG_PKG.Initialize;
275:
276: FA_DEBUG_PKG.SET_DEBUG_FLAG;

Line 345: FA_SRVR_MSG.Add_Message(

341: CLOSE get_status;
342:
343: IF (h_preview_status_d <> h_current_status_d) THEN
344: -- Re-using message for mass reclass program.
345: FA_SRVR_MSG.Add_Message(
346: CALLING_FN => 'FARX_RP.Preview_Reclass',
347: NAME => 'FA_MASSRCL_WRONG_STATUS',
348: TOKEN1 => 'CURRENT',
349: VALUE1 => h_current_status_d,

Line 601: FA_SRVR_MSG.Write_Msg_Log(

597: IF (X_RX_Flag = 'YES') THEN
598: FND_MSG_PUB.Count_And_Get(
599: p_count => h_msg_count,
600: p_data => h_msg_data);
601: FA_SRVR_MSG.Write_Msg_Log(
602: msg_count => h_msg_count,
603: msg_data => h_msg_data);
604: IF (h_debug_flag = 'YES') THEN
605: FA_DEBUG_PKG.Write_Debug_Log;

Line 611: FA_SRVR_MSG.Add_SQL_Error(

607: END IF;
608: WHEN OTHERS THEN
609: retcode := 2; -- Completed with error.
610: IF SQLCODE <> 0 THEN
611: FA_SRVR_MSG.Add_SQL_Error(
612: CALLING_FN => 'FARX_RP.Preview_Reclass');
613: END IF;
614:
615: -- Reset global variable values.

Line 636: FA_SRVR_MSG.Write_Msg_Log(

632: IF (X_RX_Flag = 'YES') THEN
633: FND_MSG_PUB.Count_And_Get(
634: p_count => h_msg_count,
635: p_data => h_msg_data);
636: FA_SRVR_MSG.Write_Msg_Log(
637: msg_count => h_msg_count,
638: msg_data => h_msg_data);
639: IF (h_debug_flag = 'YES') THEN
640: FA_DEBUG_PKG.Write_Debug_Log;

Line 801: FA_SRVR_MSG.Add_Message(

797: p_date_placed_in_service => h_dpis,
798: x_pos => pos,
799: p_log_level_rec => g_log_level_rec);
800: IF pos IS NULL THEN
801: FA_SRVR_MSG.Add_Message(
802: CALLING_FN => 'FARX_RP.Store_Results',
803: NAME => 'FA_REC_NO_CAT_DEFAULTS');
804: raise store_failure;
805: END IF;

Line 1006: FA_SRVR_MSG.Add_SQL_Error(

1002: END IF; /* IF (X_Get_New_Rules = 'YES') */
1003:
1004: EXCEPTION
1005: WHEN OTHERS THEN
1006: FA_SRVR_MSG.Add_SQL_Error(
1007: CALLING_FN => 'FARX_RP.Store_Results');
1008: raise;
1009: END Store_Results;
1010:

Line 1088: FA_SRVR_MSG.Add_Message(

1084: p_book_type_code => X_Book_Type_Code,
1085: p_trans_date => h_trans_date,
1086: p_log_level_rec => g_log_level_rec)
1087: THEN
1088: FA_SRVR_MSG.Add_Message(
1089: CALLING_FN => 'FARX_RP.Check_Trans_Date_Book');
1090: RETURN (FALSE);
1091: END IF;
1092:

Line 1097: FA_SRVR_MSG.Add_SQL_Error(

1093: RETURN (TRUE);
1094:
1095: EXCEPTION
1096: WHEN OTHERS THEN
1097: FA_SRVR_MSG.Add_SQL_Error(
1098: CALLING_FN => 'FARX_RP.Check_Trans_Date_Book');
1099: RETURN (FALSE);
1100: END Check_Trans_Date_Book;
1101: