DBA Data[Home] [Help]

APPS.FARX_RP dependencies on FA_SRVR_MSG

Line 264: FA_SRVR_MSG.Init_Server_Message;

260:
261: BEGIN
262:
263: -- Initialize message stacks.
264: FA_SRVR_MSG.Init_Server_Message;
265:
266: FA_DEBUG_PKG.Initialize;
267:
268: FA_DEBUG_PKG.SET_DEBUG_FLAG;

Line 326: FA_SRVR_MSG.Add_Message(

322: CLOSE get_status;
323:
324: IF (h_preview_status_d <> h_current_status_d) THEN
325: -- Re-using message for mass reclass program.
326: FA_SRVR_MSG.Add_Message(
327: CALLING_FN => 'FARX_RP.Preview_Reclass',
328: NAME => 'FA_MASSRCL_WRONG_STATUS',
329: TOKEN1 => 'CURRENT',
330: VALUE1 => h_current_status_d,

Line 578: FA_SRVR_MSG.Write_Msg_Log(

574: IF (X_RX_Flag = 'YES') THEN
575: FND_MSG_PUB.Count_And_Get(
576: p_count => h_msg_count,
577: p_data => h_msg_data);
578: FA_SRVR_MSG.Write_Msg_Log(
579: msg_count => h_msg_count,
580: msg_data => h_msg_data);
581: IF (h_debug_flag = 'YES') THEN
582: FA_DEBUG_PKG.Write_Debug_Log;

Line 588: FA_SRVR_MSG.Add_SQL_Error(

584: END IF;
585: WHEN OTHERS THEN
586: retcode := 2; -- Completed with error.
587: IF SQLCODE <> 0 THEN
588: FA_SRVR_MSG.Add_SQL_Error(
589: CALLING_FN => 'FARX_RP.Preview_Reclass');
590: END IF;
591:
592: -- Reset global variable values.

Line 613: FA_SRVR_MSG.Write_Msg_Log(

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

Line 775: FA_SRVR_MSG.Add_Message(

771: p_book_type_code => h_book_type_code,
772: p_date_placed_in_service => h_dpis,
773: x_pos => pos);
774: IF pos IS NULL THEN
775: FA_SRVR_MSG.Add_Message(
776: CALLING_FN => 'FARX_RP.Store_Results',
777: NAME => 'FA_REC_NO_CAT_DEFAULTS');
778: raise store_failure;
779: END IF;

Line 977: FA_SRVR_MSG.Add_SQL_Error(

973: END IF; /* IF (X_Get_New_Rules = 'YES') */
974:
975: EXCEPTION
976: WHEN OTHERS THEN
977: FA_SRVR_MSG.Add_SQL_Error(
978: CALLING_FN => 'FARX_RP.Store_Results');
979: raise;
980: END Store_Results;
981:

Line 1057: FA_SRVR_MSG.Add_Message(

1053: p_asset_id => X_Asset_Id,
1054: p_book_type_code => X_Book_Type_Code,
1055: p_trans_date => h_trans_date)
1056: THEN
1057: FA_SRVR_MSG.Add_Message(
1058: CALLING_FN => 'FARX_RP.Check_Trans_Date_Book');
1059: RETURN (FALSE);
1060: END IF;
1061:

Line 1066: FA_SRVR_MSG.Add_SQL_Error(

1062: RETURN (TRUE);
1063:
1064: EXCEPTION
1065: WHEN OTHERS THEN
1066: FA_SRVR_MSG.Add_SQL_Error(
1067: CALLING_FN => 'FARX_RP.Check_Trans_Date_Book');
1068: RETURN (FALSE);
1069: END Check_Trans_Date_Book;
1070: