DBA Data[Home] [Help]

APPS.FA_RETIREMENT_ADJUSTMENT_PUB dependencies on FND_CLIENT_INFO

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

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

Line 176: fnd_client_info.set_currency_context (l_orig_currency_context);

172: when ret_adj_err then
173: ROLLBACK TO do_retirement_adjustment;
174:
175: fnd_profile.put('GL_SET_OF_BKS_ID', l_orig_set_of_books_id);
176: fnd_client_info.set_currency_context (l_orig_currency_context);
177:
178: fa_srvr_msg.add_message(calling_fn => l_calling_fn,
179: p_log_level_rec => g_log_level_rec);
180:

Line 193: fnd_client_info.set_currency_context (l_orig_currency_context);

189: when others then
190: ROLLBACK TO do_retirement_adjustment;
191:
192: fnd_profile.put('GL_SET_OF_BKS_ID', l_orig_set_of_books_id);
193: fnd_client_info.set_currency_context (l_orig_currency_context);
194:
195: fa_srvr_msg.add_sql_error(calling_fn => l_calling_fn
196: ,p_log_level_rec => g_log_level_rec);
197:

Line 391: fnd_client_info.set_currency_context (l_mrc_asset_hdr_rec.set_of_books_id);

387: end if;
388:
389: -- Set the gl_sob profile to this reporting book
390: fnd_profile.put('GL_SET_OF_BKS_ID', l_mrc_asset_hdr_rec.set_of_books_id);
391: fnd_client_info.set_currency_context (l_mrc_asset_hdr_rec.set_of_books_id);
392:
393: -- Need to always call fazcbcs
394: if (NOT fa_cache_pkg.fazcbcs (
395: X_book => l_mrc_asset_hdr_rec.book_type_code,

Line 492: fnd_client_info.set_currency_context (l_asset_hdr_rec.set_of_books_id);

488: end if; -- do_adjustment
489:
490: -- reset GL sob id to original value before moving to next book
491: fnd_profile.put('GL_SET_OF_BKS_ID', l_asset_hdr_rec.set_of_books_id);
492: fnd_client_info.set_currency_context (l_asset_hdr_rec.set_of_books_id);
493:
494: end loop;
495:
496: -- Reset the gl_sob profile

Line 498: fnd_client_info.set_currency_context (l_asset_hdr_rec.set_of_books_id);

494: end loop;
495:
496: -- Reset the gl_sob profile
497: fnd_profile.put('GL_SET_OF_BKS_ID', l_asset_hdr_rec.set_of_books_id);
498: fnd_client_info.set_currency_context (l_asset_hdr_rec.set_of_books_id);
499:
500: return true;
501:
502: EXCEPTION