DBA Data[Home] [Help]

APPS.FND_GFM dependencies on FND_WEB_CONFIG

Line 157: url := fnd_web_config.trail_slash(gfm_agent)||'fndgfm/fnd_gfm.get/'||access_id||'/'||file_id||'/'||file_name;

153: end if;
154:
155: --check the release
156: if (fnd_gfm.getRelease = 11) then
157: url := fnd_web_config.trail_slash(gfm_agent)||'fndgfm/fnd_gfm.get/'||access_id||'/'||file_id||'/'||file_name;
158: else
159: -- we take all this trouble only if we are on R12
160: --construct the download URL
161: if (modplsql) then

Line 162: url := fnd_web_config.trail_slash(gfm_agent)||'fndgfm/fnd_gfm.get/'||access_id||'/'||file_id||'/'||file_name;

158: else
159: -- we take all this trouble only if we are on R12
160: --construct the download URL
161: if (modplsql) then
162: url := fnd_web_config.trail_slash(gfm_agent)||'fndgfm/fnd_gfm.get/'||access_id||'/'||file_id||'/'||file_name;
163: else
164: if (authenticate) then
165: url := fnd_web_config.trail_slash(fnd_profile.value('APPS_FRAMEWORK_AGENT'))||'OA_HTML/fndgfm.jsp?mode=download_blob'||'&'||'fid='||file_id||'&'||'accessid='||access_id;
166: else

Line 165: url := fnd_web_config.trail_slash(fnd_profile.value('APPS_FRAMEWORK_AGENT'))||'OA_HTML/fndgfm.jsp?mode=download_blob'||'&'||'fid='||file_id||'&'||'accessid='||access_id;

161: if (modplsql) then
162: url := fnd_web_config.trail_slash(gfm_agent)||'fndgfm/fnd_gfm.get/'||access_id||'/'||file_id||'/'||file_name;
163: else
164: if (authenticate) then
165: url := fnd_web_config.trail_slash(fnd_profile.value('APPS_FRAMEWORK_AGENT'))||'OA_HTML/fndgfm.jsp?mode=download_blob'||'&'||'fid='||file_id||'&'||'accessid='||access_id;
166: else
167: url := fnd_web_config.trail_slash(fnd_profile.value('APPS_FRAMEWORK_AGENT'))||'OA_HTML/fndgfm.jsp?mode=download_blob'||'&'||'fid='||file_id;
168: end if;
169:

Line 167: url := fnd_web_config.trail_slash(fnd_profile.value('APPS_FRAMEWORK_AGENT'))||'OA_HTML/fndgfm.jsp?mode=download_blob'||'&'||'fid='||file_id;

163: else
164: if (authenticate) then
165: url := fnd_web_config.trail_slash(fnd_profile.value('APPS_FRAMEWORK_AGENT'))||'OA_HTML/fndgfm.jsp?mode=download_blob'||'&'||'fid='||file_id||'&'||'accessid='||access_id;
166: else
167: url := fnd_web_config.trail_slash(fnd_profile.value('APPS_FRAMEWORK_AGENT'))||'OA_HTML/fndgfm.jsp?mode=download_blob'||'&'||'fid='||file_id;
168: end if;
169:
170: end if;
171: end if;

Line 214: return fnd_web_config.trail_slash(gfm_agent)||proc;

210: from fnd_form_functions
211: where function_name = 'FND_FNDFLUPL';
212: exception
213: when no_data_found then
214: return fnd_web_config.trail_slash(gfm_agent)||proc;
215: when too_many_rows then
216: select function_id
217: into func_id
218: from fnd_form_functions

Line 260: return fnd_web_config.trail_slash(gfm_agent)||proc;

256: --end if;
257: --end if;
258:
259: else
260: return fnd_web_config.trail_slash(gfm_agent)||proc;
261: end if;
262:
263: exception
264: when others then

Line 279: return fnd_web_config.trail_slash(gfm_agent)||

275: proc varchar2,
276: path varchar2) return varchar2 is
277: pragma autonomous_transaction;
278: begin
279: return fnd_web_config.trail_slash(gfm_agent)||
280: fnd_gfm.construct_relative_get(proc,path);
281: exception
282: when others then
283: fnd_gfm.err_msg('construct_get_url');

Line 499: if (fnd_web_config.check_enabled(proc) = 'Y') then

495: slash := nvl(instr(cmd, '/'), 0);
496: proc := upper(substr(cmd, 1, slash-1));
497: arg := substr(cmd, slash);
498:
499: if (fnd_web_config.check_enabled(proc) = 'Y') then
500: cmd := 'begin '||proc||'(:1); end;';
501: execute immediate cmd using in arg;
502: else
503: htp.htmlOpen;