DBA Data[Home] [Help]

APPS.FA_RETIREMENT_ADJUSTMENT_PUB dependencies on FND_PROFILE

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

111: end if;
112:
113: -- get the current info for the primary book
114:
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);

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

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

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

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

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

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

Line 390: fnd_profile.put('GL_SET_OF_BKS_ID', l_mrc_asset_hdr_rec.set_of_books_id);

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

Line 491: fnd_profile.put('GL_SET_OF_BKS_ID', l_asset_hdr_rec.set_of_books_id);

487: raise ret_adj_err;
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:

Line 497: fnd_profile.put('GL_SET_OF_BKS_ID', l_asset_hdr_rec.set_of_books_id);

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