DBA Data[Home] [Help]

APPS.FA_TAX_RSV_ADJ_PUB dependencies on FND_PROFILE

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

129: end if;
130:
131: -- get the current info for the primary book
132:
133: fnd_profile.get ('GL_SET_OF_BKS_ID',l_orig_set_of_books_id);
134: l_orig_currency_context := SUBSTRB(USERENV('CLIENT_INFO'),45,10);
135:
136: -- Account for transaction submitted from a responsibility
137: -- that is not tied to a SOB_ID by getting the value from

Line 316: fnd_profile.put('GL_SET_OF_BKS_ID',l_primary_sob_id);

312: end if;
313:
314: -- Reset back to the original Primay SOB.
315:
316: fnd_profile.put('GL_SET_OF_BKS_ID',l_primary_sob_id);
317: fnd_client_info.set_currency_context (l_currency_context);
318:
319: -- Bug 5472772
320: -- Standard call to get message count and if count is 1 get message info.

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

330: when tax_rsv_adj_err then
331:
332: ROLLBACK TO do_tax_rsv_adj;
333:
334: fnd_profile.put('GL_SET_OF_BKS_ID', l_orig_set_of_books_id);
335: fnd_client_info.set_currency_context (l_orig_currency_context);
336:
337: fa_srvr_msg.add_message(calling_fn => l_calling_fn,
338: p_log_level_rec => g_log_level_rec);

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

348:
349: when others then
350: ROLLBACK TO do_tax_rsv_adj;
351:
352: fnd_profile.put('GL_SET_OF_BKS_ID', l_orig_set_of_books_id);
353: fnd_client_info.set_currency_context (l_orig_currency_context);
354:
355: fa_srvr_msg.add_sql_error(
356: calling_fn => l_calling_fn,

Line 535: fnd_profile.put('GL_SET_OF_BKS_ID', l_sob_tbl(l_sob_index));

531: else
532: l_reporting_flag := 'R';
533: l_asset_hdr_rec_mrc.set_of_books_id := l_sob_tbl(l_sob_index);
534: -- set the sob_id and currency context
535: fnd_profile.put('GL_SET_OF_BKS_ID', l_sob_tbl(l_sob_index));
536: fnd_client_info.set_currency_context (to_char(l_sob_tbl(l_sob_index)));
537: end if;
538:
539: -- Call the private api ... FA_TAX_RSV_ADJ_PVT.do_tax_rsv_adj;