DBA Data[Home] [Help]

APPS.FA_CIP_PUB dependencies on FND_CLIENT_INFO

Line 395: fnd_client_info.set_currency_context (px_asset_hdr_rec.set_of_books_id);

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
399: -- the book struct

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

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
654: px_asset_hdr_rec => l_asset_hdr_rec, -- tax

Line 679: fnd_client_info.set_currency_context (l_orig_currency_context);

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

Line 692: fnd_client_info.set_currency_context (l_orig_currency_context);

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

Line 900: fnd_client_info.set_currency_context (to_char(l_sob_tbl(l_sob_index)));

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

Line 1131: fnd_client_info.set_currency_context (px_asset_hdr_rec.set_of_books_id);

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:
1135: EXCEPTION