DBA Data[Home] [Help]

APPS.FA_RESERVE_TRANSFER_PUB dependencies on FND_CLIENT_INFO

Line 121: fnd_client_info.set_currency_context (fa_cache_pkg.fazcbc_record.set_of_books_id);

117: fnd_profile.get ('GL_SET_OF_BKS_ID',l_orig_set_of_books_id);
118: l_orig_currency_context := SUBSTRB(USERENV('CLIENT_INFO'),45,10);
119:
120: fnd_profile.put('GL_SET_OF_BKS_ID', fa_cache_pkg.fazcbc_record.set_of_books_id);
121: fnd_client_info.set_currency_context (fa_cache_pkg.fazcbc_record.set_of_books_id);
122:
123: -- Account for transaction submitted from a responsibility
124: -- that is not tied to a SOB_ID by getting the value from
125: -- the book struct

Line 179: fnd_client_info.set_currency_context (l_orig_currency_context);

175: when rsv_xfr_err then
176: ROLLBACK TO do_reserve_transfer;
177:
178: fnd_profile.put('GL_SET_OF_BKS_ID', l_orig_set_of_books_id);
179: fnd_client_info.set_currency_context (l_orig_currency_context);
180:
181: fa_srvr_msg.add_message(calling_fn => l_calling_fn,
182: p_log_level_rec => g_log_level_rec);
183:

Line 199: fnd_client_info.set_currency_context (l_orig_currency_context);

195: when others then
196: ROLLBACK TO do_reserve_transfer;
197:
198: fnd_profile.put('GL_SET_OF_BKS_ID', l_orig_set_of_books_id);
199: fnd_client_info.set_currency_context (l_orig_currency_context);
200:
201: fa_srvr_msg.add_sql_error(
202: calling_fn => l_calling_fn
203: ,p_log_level_rec => g_log_level_rec);

Line 565: fnd_client_info.set_currency_context (l_mrc_src_asset_hdr_rec.set_of_books_id);

561: end if;
562:
563: -- Set the gl_sob profile to this reporting book
564: fnd_profile.put('GL_SET_OF_BKS_ID', l_mrc_src_asset_hdr_rec.set_of_books_id);
565: fnd_client_info.set_currency_context (l_mrc_src_asset_hdr_rec.set_of_books_id);
566:
567: -- Need to always call fazcbcs
568: if (NOT fa_cache_pkg.fazcbcs (
569: X_book => l_mrc_src_asset_hdr_rec.book_type_code,

Line 719: fnd_client_info.set_currency_context (l_src_asset_hdr_rec.set_of_books_id);

715: */
716:
717: -- reset GL sob id to original value before moving to next book
718: fnd_profile.put('GL_SET_OF_BKS_ID', l_src_asset_hdr_rec.set_of_books_id);
719: fnd_client_info.set_currency_context (l_src_asset_hdr_rec.set_of_books_id);
720:
721: end loop;
722:
723: -- Reset the gl_sob profile

Line 725: fnd_client_info.set_currency_context (l_src_asset_hdr_rec.set_of_books_id);

721: end loop;
722:
723: -- Reset the gl_sob profile
724: fnd_profile.put('GL_SET_OF_BKS_ID', l_src_asset_hdr_rec.set_of_books_id);
725: fnd_client_info.set_currency_context (l_src_asset_hdr_rec.set_of_books_id);
726:
727: return true;
728:
729: EXCEPTION