DBA Data[Home] [Help]

APPS.FA_CIP_PUB dependencies on FND_PROFILE

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

387: 'in main, sobid', px_asset_hdr_rec.set_of_books_id
388: ,p_log_level_rec => p_log_level_rec);
389: end if;
390:
391: fnd_profile.get ('GL_SET_OF_BKS_ID',l_orig_set_of_books_id);
392: l_orig_currency_context := SUBSTRB(USERENV('CLIENT_INFO'),45,10);
393:
394: fnd_profile.put('GL_SET_OF_BKS_ID', px_asset_hdr_rec.set_of_books_id);
395: fnd_client_info.set_currency_context (px_asset_hdr_rec.set_of_books_id);

Line 394: fnd_profile.put('GL_SET_OF_BKS_ID', px_asset_hdr_rec.set_of_books_id);

390:
391: fnd_profile.get ('GL_SET_OF_BKS_ID',l_orig_set_of_books_id);
392: l_orig_currency_context := SUBSTRB(USERENV('CLIENT_INFO'),45,10);
393:
394: fnd_profile.put('GL_SET_OF_BKS_ID', px_asset_hdr_rec.set_of_books_id);
395: fnd_client_info.set_currency_context (px_asset_hdr_rec.set_of_books_id);
396:
397: -- Account for transaction submitted from a responsibility
398: -- that is not tied to a SOB_ID by getting the value from

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

645: end if;
646: l_asset_fin_rec.date_placed_in_service := px_asset_fin_rec.date_placed_in_service;
647:
648: -- set the gl sob info for the primary tax book
649: fnd_profile.put('GL_SET_OF_BKS_ID', l_asset_hdr_rec.set_of_books_id);
650: fnd_client_info.set_currency_context (l_asset_hdr_rec.set_of_books_id);
651:
652: if not do_all_books
653: (px_trans_rec => l_trans_rec, -- tax

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

674:
675: when cap_rev_err then
676: ROLLBACK TO do_cap_rev;
677:
678: fnd_profile.put('GL_SET_OF_BKS_ID', l_orig_set_of_books_id);
679: fnd_client_info.set_currency_context (l_orig_currency_context);
680:
681: fa_srvr_msg.add_message(calling_fn => l_calling_fn
682: ,p_log_level_rec => p_log_level_rec);

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

687:
688: when others then
689: ROLLBACK TO do_cap_rev;
690:
691: fnd_profile.put('GL_SET_OF_BKS_ID', l_orig_set_of_books_id);
692: fnd_client_info.set_currency_context (l_orig_currency_context);
693:
694: fa_srvr_msg.add_sql_error(calling_fn => l_calling_fn
695: ,p_log_level_rec => p_log_level_rec);

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

895: l_reporting_flag := 'R';
896: l_asset_hdr_rec.set_of_books_id := l_sob_tbl(l_sob_index);
897:
898: -- set the sob_id and currency context
899: fnd_profile.put('GL_SET_OF_BKS_ID', l_sob_tbl(l_sob_index));
900: fnd_client_info.set_currency_context (to_char(l_sob_tbl(l_sob_index)));
901:
902: end if;
903:

Line 1130: fnd_profile.put('GL_SET_OF_BKS_ID', px_asset_hdr_rec.set_of_books_id);

1126:
1127: end loop;
1128:
1129: -- set the gl sob info back to the primary book so fazcbc cache is ok
1130: fnd_profile.put('GL_SET_OF_BKS_ID', px_asset_hdr_rec.set_of_books_id);
1131: fnd_client_info.set_currency_context (px_asset_hdr_rec.set_of_books_id);
1132:
1133: return true;
1134: