DBA Data[Home] [Help]

APPS.FND_GFM dependencies on FND_WEB_CONFIG

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

159: end if;
160:
161: --check the release
162: if (fnd_gfm.getRelease = 11) then
163: url := fnd_web_config.trail_slash(gfm_agent)||'fndgfm/fnd_gfm.get/'||access_id||'/'||file_id||'/'||file_name;
164: else
165: -- we take all this trouble only if we are on R12
166: --construct the download URL
167: if (modplsql) then

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

164: else
165: -- we take all this trouble only if we are on R12
166: --construct the download URL
167: if (modplsql) then
168: url := fnd_web_config.trail_slash(gfm_agent)||'fndgfm/fnd_gfm.get/'||access_id||'/'||file_id||'/'||file_name;
169: else
170: if (authenticate) then
171: 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;
172: else

Line 171: 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;

167: if (modplsql) then
168: url := fnd_web_config.trail_slash(gfm_agent)||'fndgfm/fnd_gfm.get/'||access_id||'/'||file_id||'/'||file_name;
169: else
170: if (authenticate) then
171: 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;
172: else
173: url := fnd_web_config.trail_slash(fnd_profile.value('APPS_FRAMEWORK_AGENT'))||'OA_HTML/fndgfm.jsp?mode=download_blob'||'&'||'fid='||file_id;
174: end if;
175:

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

169: else
170: if (authenticate) then
171: 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;
172: else
173: url := fnd_web_config.trail_slash(fnd_profile.value('APPS_FRAMEWORK_AGENT'))||'OA_HTML/fndgfm.jsp?mode=download_blob'||'&'||'fid='||file_id;
174: end if;
175:
176: end if;
177: end if;

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

216: from fnd_form_functions
217: where function_name = 'FND_FNDFLUPL';
218: exception
219: when no_data_found then
220: return fnd_web_config.trail_slash(gfm_agent)||proc;
221: when too_many_rows then
222: select function_id
223: into func_id
224: from fnd_form_functions

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

262: --end if;
263: --end if;
264:
265: else
266: return fnd_web_config.trail_slash(gfm_agent)||proc;
267: end if;
268:
269: exception
270: when others then

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

281: proc varchar2,
282: path varchar2) return varchar2 is
283: pragma autonomous_transaction;
284: begin
285: return fnd_web_config.trail_slash(gfm_agent)||
286: fnd_gfm.construct_relative_get(proc,path);
287: exception
288: when others then
289: fnd_gfm.err_msg('construct_get_url');

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

508: slash := nvl(instr(cmd, '/'), 0);
509: proc := upper(substr(cmd, 1, slash-1));
510: arg := substr(cmd, slash);
511:
512: if (fnd_web_config.check_enabled(proc) = 'Y') then
513: cmd := 'begin '||proc||'(:1); end;';
514: execute immediate cmd using in arg;
515: else
516: htp.htmlOpen;