DBA Data[Home] [Help]

APPS.FA_PROCESS_GROUPS_PKG dependencies on FA_SRVR_MSG

Line 52: fa_srvr_msg.Init_Server_Message; -- Initialize server message stack

48: raise group_adj_err;
49: end if;
50: end if;
51:
52: fa_srvr_msg.Init_Server_Message; -- Initialize server message stack
53: fa_debug_pkg.Initialize; -- Initialize debug message stack
54:
55: if not do_all_books(
56: p_book => p_book,

Line 64: fa_srvr_msg.add_message(

60: p_log_level_rec => g_log_level_rec) then
61: raise group_adj_err;
62: end if;
63:
64: fa_srvr_msg.add_message(
65: calling_fn => l_calling_fn,
66: name => 'FA_SHARED_END_SUCCESS',
67: token1 => 'PROGRAM',
68: value1 => 'FAPGADJ',

Line 75: fa_srvr_msg.Write_Msg_Log(l_msg_count, l_msg_data);

71: FND_MSG_PUB.Count_And_Get(
72: p_count => l_msg_count,
73: p_data => l_msg_data);
74:
75: fa_srvr_msg.Write_Msg_Log(l_msg_count, l_msg_data);
76:
77: -- return success to concurrent manager
78: retcode := 0;
79:

Line 83: fa_srvr_msg.add_message(

79:
80: EXCEPTION
81: WHEN GROUP_ADJ_ERR THEN
82: ROLLBACK WORK;
83: fa_srvr_msg.add_message(
84: calling_fn => 'fa_process_groups_pkg.do_pending_groups',
85: name => 'FA_SHARED_END_WITH_ERROR',
86: token1 => 'PROGRAM',
87: value1 => 'FAPGADJ'

Line 96: fa_srvr_msg.Write_Msg_Log(l_msg_count, l_msg_data);

92: end if;
93: FND_MSG_PUB.Count_And_Get(
94: p_count => l_msg_count,
95: p_data => l_msg_data);
96: fa_srvr_msg.Write_Msg_Log(l_msg_count, l_msg_data);
97: -- return failure to concurrent manager
98: retcode := 2;
99:
100: WHEN OTHERS THEN

Line 102: fa_srvr_msg.add_sql_error (

98: retcode := 2;
99:
100: WHEN OTHERS THEN
101: ROLLBACK WORK;
102: fa_srvr_msg.add_sql_error (
103: calling_fn => l_calling_fn
104: ,p_log_level_rec => g_log_level_rec);
105: fa_srvr_msg.add_message(
106: calling_fn => l_calling_fn,

Line 105: fa_srvr_msg.add_message(

101: ROLLBACK WORK;
102: fa_srvr_msg.add_sql_error (
103: calling_fn => l_calling_fn
104: ,p_log_level_rec => g_log_level_rec);
105: fa_srvr_msg.add_message(
106: calling_fn => l_calling_fn,
107: name => 'FA_SHARED_END_WITH_ERROR',
108: token1 => 'PROGRAM',
109: value1 => 'FAPGADJ',

Line 118: fa_srvr_msg.Write_Msg_Log(l_msg_count, l_msg_data);

114: end if;
115: FND_MSG_PUB.Count_And_Get(
116: p_count => l_msg_count,
117: p_data => l_msg_data);
118: fa_srvr_msg.Write_Msg_Log(l_msg_count, l_msg_data);
119: -- return failure to concurrent manager
120: retcode := 2;
121:
122: END do_pending_groups;

Line 1049: fa_srvr_msg.add_message (calling_fn => l_calling_fn, p_log_level_rec => p_log_level_rec);

1045: if (l_mrc_sob_type_code <> 'R') then
1046: if not fa_cache_pkg.fazccmt(l_asset_fin_rec_new.deprn_method_code
1047: , l_asset_fin_rec_new.life_in_months,
1048: p_log_level_rec => p_log_level_rec) then
1049: fa_srvr_msg.add_message (calling_fn => l_calling_fn, p_log_level_rec => p_log_level_rec);
1050: raise group_adj_err;
1051: end if;
1052: end if;
1053:

Line 1210: fa_srvr_msg.add_message(

1206: return TRUE;
1207:
1208: EXCEPTION
1209: WHEN GROUP_ADJ_ERR THEN
1210: fa_srvr_msg.add_message(
1211: calling_fn => l_calling_fn,
1212: p_log_level_rec => p_log_level_rec);
1213: return FALSE;
1214: WHEN OTHERS THEN

Line 1215: fa_srvr_msg.add_sql_error (

1211: calling_fn => l_calling_fn,
1212: p_log_level_rec => p_log_level_rec);
1213: return FALSE;
1214: WHEN OTHERS THEN
1215: fa_srvr_msg.add_sql_error (
1216: calling_fn => l_calling_fn
1217: ,p_log_level_rec => p_log_level_rec);
1218: return FALSE;
1219:

Line 2593: fa_srvr_msg.add_message(calling_fn => l_calling_fn

2589:
2590: EXCEPTION
2591:
2592: WHEN GROUP_REC_ERR THEN
2593: fa_srvr_msg.add_message(calling_fn => l_calling_fn
2594: ,p_log_level_rec => p_log_level_rec);
2595: return FALSE;
2596:
2597: WHEN OTHERS THEN

Line 2598: fa_srvr_msg.add_sql_error (calling_fn => l_calling_fn

2594: ,p_log_level_rec => p_log_level_rec);
2595: return FALSE;
2596:
2597: WHEN OTHERS THEN
2598: fa_srvr_msg.add_sql_error (calling_fn => l_calling_fn
2599: ,p_log_level_rec => p_log_level_rec);
2600: return FALSE;
2601:
2602: END do_group_reclass;