DBA Data[Home] [Help]

APPS.FA_UNPLANNED_PUB dependencies on FND_PROFILE

Line 105: FND_PROFILE.GET ('GL_SET_OF_BKS_ID',l_orig_set_of_books_id);

101: end if;
102:
103: -- get the current info for the primary book
104:
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);

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

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

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

277: EXCEPTION
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);

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

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

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

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

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

954: end if; -- Group Asset Process
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: