DBA Data[Home] [Help]

APPS.FA_INV_XFR_PUB dependencies on FA_SRVR_MSG

Line 98: fa_srvr_msg.init_server_message;

94:
95: -- Initialize message list if p_init_msg_list is set to TRUE.
96: if (fnd_api.to_boolean(p_init_msg_list)) then
97: -- initialize error message stack.
98: fa_srvr_msg.init_server_message;
99:
100: -- initialize debug message stack.
101: fa_debug_pkg.initialize;
102: end if;

Line 153: fa_srvr_msg.add_message

149: -- Error out if the program is submitted from the Reporting Responsibility
150: -- No transaction permitted directly on reporting books.
151:
152: IF l_mrc_sob_type_code = 'R' THEN
153: fa_srvr_msg.add_message
154: (NAME => 'MRC_OSP_INVALID_BOOK_TYPE',
155: CALLING_FN => l_calling_fn
156: ,p_log_level_rec => g_log_level_rec);
157: raise inv_xfr_err;

Line 167: fa_srvr_msg.add_message(

163: -- additional validation migrated from the external transfers program
164: -- do not allow transfers between books
165: if (px_src_asset_hdr_rec.book_type_code <>
166: px_dest_asset_hdr_rec.book_type_code) then
167: fa_srvr_msg.add_message(
168: calling_fn => l_calling_fn,
169: name => 'FA_TFRINV_NOT_BTWN_BOOKS',
170: token1 => 'BOOK',
171: value1 => px_dest_asset_hdr_rec.book_type_code

Line 178: fa_srvr_msg.add_message(

174: end if;
175:
176: -- From and To Asset Ids Identical
177: if (px_src_asset_hdr_rec.asset_id = px_dest_asset_hdr_rec.asset_id) then
178: fa_srvr_msg.add_message(
179: calling_fn => l_calling_fn,
180: name => 'FA_TFRINV_NOT_SAME_ASSET'
181: ,p_log_level_rec => g_log_level_rec);
182: raise inv_xfr_err;

Line 234: fa_srvr_msg.add_message(

230: l_dest_inv_tbl(l_inv_index).payables_cost := p_inv_tbl(l_inv_index).payables_cost;
231: end if;
232:
233: if (p_inv_tbl(l_inv_index).fixed_assets_cost is null) then
234: fa_srvr_msg.add_message(
235: calling_fn => l_calling_fn,
236: name => 'FA_TFRINV_NONE_TFR_COST'
237: ,p_log_level_rec => g_log_level_rec);
238: end if;

Line 607: fa_srvr_msg.add_message(

603: -- Cannot Transfer Lines between expensed and Non Expensed Assets */
604: if ((l_from_asset_type = 'EXPENSED' and l_to_asset_type <> 'EXPENSED') OR
605: (l_from_asset_type <> 'EXPENSED' and l_to_asset_type = 'EXPENSED')) THEN
606:
607: fa_srvr_msg.add_message(
608: calling_fn => l_calling_fn,
609: name => 'FA_TFRINV_NO_EXP_NONEXP',
610: p_log_level_rec => g_log_level_rec);
611: raise inv_xfr_err;

Line 636: fa_srvr_msg.add_message(

632:
633: fnd_profile.put('GL_SET_OF_BKS_ID', l_orig_sob_id);
634: fnd_client_info.set_currency_context (l_orig_currency_context);
635:
636: fa_srvr_msg.add_message(
637: CALLING_FN => l_calling_fn,
638: NAME => 'FA_TFRINV_NO_COST_CLR',
639: p_log_level_rec => g_log_level_rec);
640:

Line 654: fa_srvr_msg.add_message(

650:
651: fnd_profile.put('GL_SET_OF_BKS_ID', l_orig_sob_id);
652: fnd_client_info.set_currency_context (l_orig_currency_context);
653:
654: fa_srvr_msg.add_message(
655: calling_fn => l_calling_fn,
656: p_log_level_rec => g_log_level_rec);
657:
658: FND_MSG_PUB.count_and_get (

Line 671: fa_srvr_msg.add_sql_error(

667:
668: fnd_profile.put('GL_SET_OF_BKS_ID', l_orig_sob_id);
669: fnd_client_info.set_currency_context (l_orig_currency_context);
670:
671: fa_srvr_msg.add_sql_error(
672: calling_fn => l_calling_fn
673: ,p_log_level_rec => g_log_level_rec);
674:
675: FND_MSG_PUB.count_and_get (