DBA Data[Home] [Help]

APPS.IBE_CFG_CONFIG_PVT dependencies on FND_PROFILE

Line 33: l_log_enabled := fnd_profile.value_specific(

29: l_log_enabled VARCHAR2(1) := 'N';
30: l_user_id NUMBER;
31: begin
32: l_user_id := fnd_global.user_id;
33: l_log_enabled := fnd_profile.value_specific(
34: name =>'IBE_DEBUG',
35: user_id => l_user_id);
36: if (l_log_enabled = 'Y') then
37: ----IBE_Util.Enable_Debug;

Line 64: l_resp_id := fnd_profile.value('RESP_ID');

60: x_return_status := FND_API.g_ret_sts_success;
61:
62: -- just something to get working for now
63:
64: l_resp_id := fnd_profile.value('RESP_ID');
65: l_resp_appl_id := fnd_profile.value('RESP_APPL_ID');
66:
67: if (l_log_enabled = 'Y') then
68: IF (IBE_UTIL.G_DEBUGON = l_true) THEN

Line 65: l_resp_appl_id := fnd_profile.value('RESP_APPL_ID');

61:
62: -- just something to get working for now
63:
64: l_resp_id := fnd_profile.value('RESP_ID');
65: l_resp_appl_id := fnd_profile.value('RESP_APPL_ID');
66:
67: if (l_log_enabled = 'Y') then
68: IF (IBE_UTIL.G_DEBUGON = l_true) THEN
69: ibe_util.debug('ibe_cfg_config_pvt.Get_Config_Launch_Info - responsibility id ' || l_resp_id);

Line 100: x_servlet_url := fnd_profile.value('CZ_UIMGR_URL');

96: -- get the dbc file name
97: x_db_id := FND_WEB_CONFIG.DATABASE_ID;
98:
99: -- get the URL for servlet
100: x_servlet_url := fnd_profile.value('CZ_UIMGR_URL');
101:
102: -- get the SYSDATE
103: x_sysdate := to_char(sysdate,'mm-dd-yyyy-hh24-mi-ss');
104:

Line 247: l_log_enabled := fnd_profile.value_specific(

243: fetch c_old_cfg_info into p_config_rec.config_header_id, p_config_rec.config_revision_num;
244: close c_old_cfg_info;
245:
246: l_user_id := fnd_global.user_id;
247: l_log_enabled := fnd_profile.value_specific(
248: name =>'IBE_DEBUG',
249: user_id => l_user_id);
250: if (l_log_enabled = 'Y') then
251: IF (IBE_UTIL.G_DEBUGON = l_true) THEN