DBA Data[Home] [Help]

APPS.FA_GAINLOSS_PKG dependencies on FA_SRVR_MSG

Line 129: FA_SRVR_MSG.Set_Message_Level(message_level => 10);

125:
126: -- clear the debug stack for each asset
127: FA_DEBUG_PKG.Initialize;
128: -- reset the message level to prevent bogus errors
129: FA_SRVR_MSG.Set_Message_Level(message_level => 10);
130:
131: BEGIN
132:
133: select asset_number into l_asset_number from fa_additions where asset_id = l_asset_id(l_loop_count);--bug 3087644 fix

Line 148: fa_srvr_msg.add_message(

144:
145: x_success_count := x_success_count + 1;
146:
147: --bug 3087644 fix starts
148: fa_srvr_msg.add_message(
149: calling_fn => NULL,
150: name =>'FA_RET_STATUS_SUCCEED',
151: token1 => 'RETID',
152: value1 => l_retirement_id(l_loop_count),

Line 157: fa_srvr_msg.add_message(

153: token2 => 'ASSET',
154: value2 => l_asset_number,
155: p_log_level_rec => g_log_level_rec);
156:
157: fa_srvr_msg.add_message(
158: calling_fn => NULL,
159: name => 'FA_ASSET_ID',
160: token1 => 'ASSET_ID',
161: value1 => l_asset_id(l_loop_count),

Line 176: fa_srvr_msg.add_message(

172: -- end if;
173:
174: x_failure_count := x_failure_count + 1;
175:
176: fa_srvr_msg.add_message(
177: calling_fn => NULL,
178: name =>'FA_RET_STATUS_FAIL',
179: token1 => 'RETID',
180: value1 => l_retirement_id(l_loop_count),

Line 185: fa_srvr_msg.add_message(

181: token2 => 'ASSET',
182: value2 => l_asset_number,
183: p_log_level_rec => g_log_level_rec);
184:
185: fa_srvr_msg.add_message(
186: calling_fn => NULL,
187: name => 'FA_ASSET_ID',
188: token1 => 'ASSET_ID',
189: value1 => l_asset_id(l_loop_count),

Line 200: fa_srvr_msg.add_message(

196: -- if (fa_cache_pkg.fa_print_debug) then
197: -- fa_debug_pkg.dump_debug_messages(max_mesgs => 0);
198: -- end if;
199: x_failure_count := x_failure_count + 1;
200: fa_srvr_msg.add_message(
201: calling_fn => l_calling_fn,
202: name => 'FA_RET_STATUS_FAIL',
203: token1 => 'RETID',
204: value1 => l_retirement_id(l_loop_count),

Line 228: fa_srvr_msg.add_message(calling_fn => l_calling_fn);

224: x_return_status := 0;
225:
226: when gainloss_err then
227: FND_CONCURRENT.AF_ROLLBACK;
228: fa_srvr_msg.add_message(calling_fn => l_calling_fn);
229:
230: -- Commented for bugfix 4672237
231: -- if (fa_cache_pkg.fa_print_debug) then
232: -- FA_DEBUG_PKG.dump_debug_messages(max_mesgs => 0);

Line 238: fa_srvr_msg.add_message(calling_fn => l_calling_fn);

234: x_return_status := 2;
235:
236: when others then
237: FND_CONCURRENT.AF_ROLLBACK;
238: fa_srvr_msg.add_message(calling_fn => l_calling_fn);
239: x_return_status := 2;
240:
241: END Do_Calc_GainLoss;
242:

Line 391: fa_srvr_msg.add_message(calling_fn => l_calling_fn);

387: null;
388: end;
389:
390: if (l_count <> 0) then
391: fa_srvr_msg.add_message(calling_fn => l_calling_fn);
392: end if;
393:
394: if p_log_level_rec.statement_level then
395: fa_debug_pkg.add

Line 520: fa_srvr_msg.add_message(

516: p_asset_id => ret.asset_id,
517: p_book_type_code => ret.book,
518: p_calling_function => l_calling_fn) then
519:
520: fa_srvr_msg.add_message(
521: calling_fn => 'l_calling_fn'||'(Calling IAC)',
522: name => 'FA_RET_STATUS_FAIL',
523: token1 => 'RETID',
524: value1 => ret.retirement_id,

Line 816: fa_srvr_msg.add_message(

812: p_book_type_code => ret.book,
813: p_event_id => l_trans_rec.event_id,
814: p_calling_function => l_calling_fn) then
815:
816: fa_srvr_msg.add_message(
817: calling_fn => 'l_calling_fn'||'(Calling IAC)',
818: name => 'FA_RET_STATUS_FAIL',
819: token1 => 'RETID',
820: value1 => ret.retirement_id,

Line 858: fa_srvr_msg.add_message(calling_fn => l_calling_fn);

854: element => 'RETIREMENT_ID',
855: value => p_retirement_id,
856: p_log_level_rec => p_log_level_rec);
857: end if;
858: fa_srvr_msg.add_message(calling_fn => l_calling_fn);
859:
860: -- Commented for bugfix 4672237
861: -- if (fa_cache_pkg.fa_print_debug) then
862: -- FA_DEBUG_PKG.dump_debug_messages(max_mesgs => 0);

Line 875: fa_srvr_msg.add_sql_error(calling_fn => l_calling_fn);

871: element => 'RETIREMENT_ID',
872: value => p_retirement_id,
873: p_log_level_rec => p_log_level_rec);
874: end if;
875: fa_srvr_msg.add_sql_error(calling_fn => l_calling_fn);
876: x_return_status := 2;
877:
878: END Do_Calc_GainLoss_Asset;
879: