DBA Data[Home] [Help]

APPS.FA_RESERVE_TRANSFER_PUB dependencies on FND_PROFILE

Line 117: fnd_profile.get ('GL_SET_OF_BKS_ID',l_orig_set_of_books_id);

113:
114:
115: -- get the current info for the primary book
116:
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);

Line 120: fnd_profile.put('GL_SET_OF_BKS_ID', fa_cache_pkg.fazcbc_record.set_of_books_id);

116:
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

Line 178: fnd_profile.put('GL_SET_OF_BKS_ID', l_orig_set_of_books_id);

174:
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);

Line 198: fnd_profile.put('GL_SET_OF_BKS_ID', l_orig_set_of_books_id);

194:
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

Line 564: fnd_profile.put('GL_SET_OF_BKS_ID', l_mrc_src_asset_hdr_rec.set_of_books_id);

560: l_reporting_flag := 'R';
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 (

Line 718: fnd_profile.put('GL_SET_OF_BKS_ID', l_src_asset_hdr_rec.set_of_books_id);

714: end if;
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:

Line 724: fnd_profile.put('GL_SET_OF_BKS_ID', l_src_asset_hdr_rec.set_of_books_id);

720:
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: