DBA Data[Home] [Help]

APPS.FA_UNPLANNED_PUB dependencies on FND_CLIENT_INFO

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

105: FND_PROFILE.GET ('GL_SET_OF_BKS_ID',l_orig_set_of_books_id);
106: l_orig_currency_context := SUBSTRB(USERENV('CLIENT_INFO'),45,10);
107:
108: fnd_profile.put('GL_SET_OF_BKS_ID', px_asset_hdr_rec.set_of_books_id);
109: fnd_client_info.set_currency_context (px_asset_hdr_rec.set_of_books_id);
110:
111:
112: -- Account for transaction submitted from a responsibility
113: -- that is not tied to a SOB_ID by getting the value from

Line 282: fnd_client_info.set_currency_context (l_orig_currency_context);

278: when unp_err then
279: ROLLBACK to do_unplanned;
280:
281: fnd_profile.put('GL_SET_OF_BKS_ID', l_orig_set_of_books_id);
282: fnd_client_info.set_currency_context (l_orig_currency_context);
283:
284: fa_srvr_msg.add_message(calling_fn => l_calling_fn
285: ,p_log_level_rec => g_log_level_rec);
286:

Line 301: fnd_client_info.set_currency_context (l_orig_currency_context);

297: when others then
298: ROLLBACK to do_unplanned;
299:
300: fnd_profile.put('GL_SET_OF_BKS_ID', l_orig_set_of_books_id);
301: fnd_client_info.set_currency_context (l_orig_currency_context);
302:
303: fa_srvr_msg.add_sql_error(
304: calling_fn => l_calling_fn
305: ,p_log_level_rec => g_log_level_rec);

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

560: l_asset_hdr_rec.set_of_books_id := l_sob_tbl(l_sob_index);
561:
562: -- set the sob_id and currency context
563: fnd_profile.put('GL_SET_OF_BKS_ID', l_sob_tbl(l_sob_index));
564: fnd_client_info.set_currency_context (to_char(l_sob_tbl(l_sob_index)));
565:
566: end if;
567:
568:

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

955:
956: end loop; -- sob loop
957:
958: fnd_profile.put('GL_SET_OF_BKS_ID', px_asset_hdr_rec.set_of_books_id);
959: fnd_client_info.set_currency_context (px_asset_hdr_rec.set_of_books_id);
960:
961: return true;
962:
963: EXCEPTION