DBA Data[Home] [Help]

APPS.FA_REVALUATION_PUB dependencies on FND_PROFILE

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

122: end if;
123:
124: -- get the current info for the primary book
125:
126: fnd_profile.get ('GL_SET_OF_BKS_ID',l_orig_set_of_books_id);
127: l_orig_currency_context := SUBSTRB(USERENV('CLIENT_INFO'),45,10);
128:
129: fnd_profile.put('GL_SET_OF_BKS_ID', px_asset_hdr_rec.set_of_books_id);
130: fnd_client_info.set_currency_context (px_asset_hdr_rec.set_of_books_id);

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

125:
126: fnd_profile.get ('GL_SET_OF_BKS_ID',l_orig_set_of_books_id);
127: l_orig_currency_context := SUBSTRB(USERENV('CLIENT_INFO'),45,10);
128:
129: fnd_profile.put('GL_SET_OF_BKS_ID', px_asset_hdr_rec.set_of_books_id);
130: fnd_client_info.set_currency_context (px_asset_hdr_rec.set_of_books_id);
131:
132: -- Account for transaction submitted from a responsibility
133: -- that is not tied to a SOB_ID by getting the value from

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

223: COMMIT WORK;
224: end if;
225:
226: -- Reset the gl_sob profile
227: fnd_profile.put('GL_SET_OF_BKS_ID', l_orig_set_of_books_id);
228: fnd_client_info.set_currency_context (l_orig_currency_context);
229:
230: x_return_status := FND_API.G_RET_STS_SUCCESS;
231:

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

234:
235: when reval_err then
236: ROLLBACK TO do_reval;
237:
238: fnd_profile.put('GL_SET_OF_BKS_ID', l_orig_set_of_books_id);
239: fnd_client_info.set_currency_context (l_orig_currency_context);
240:
241: fa_srvr_msg.add_message(calling_fn => l_calling_fn,
242: p_log_level_rec => g_log_level_rec);

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

250:
251: when others then
252: ROLLBACK TO do_reval;
253:
254: fnd_profile.put('GL_SET_OF_BKS_ID', l_orig_set_of_books_id);
255: fnd_client_info.set_currency_context (l_orig_currency_context);
256:
257: fa_srvr_msg.add_sql_error(calling_fn => l_calling_fn
258: ,p_log_level_rec => g_log_level_rec);

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

361: l_reporting_flag := 'R';
362: l_asset_hdr_rec.set_of_books_id := l_sob_tbl(l_sob_index);
363:
364: -- set the sob_id and currency context
365: fnd_profile.put('GL_SET_OF_BKS_ID', l_sob_tbl(l_sob_index));
366: fnd_client_info.set_currency_context (to_char(l_sob_tbl(l_sob_index)));
367:
368: end if;
369:

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

474:
475: end loop; -- sob loop
476:
477: -- reset the gl sob info back to the primary book so fazcbc cache is ok
478: fnd_profile.put('GL_SET_OF_BKS_ID', px_asset_hdr_rec.set_of_books_id);
479: fnd_client_info.set_currency_context (px_asset_hdr_rec.set_of_books_id);
480:
481: return true;
482: