DBA Data[Home] [Help]

APPS.FND_RUN_FUNCTION dependencies on FND_WEB_CONFIG

Line 94: -- copied from fnd_web_config, but this version uses a call to

90: end;
91:
92:
93: --
94: -- copied from fnd_web_config, but this version uses a call to
95: -- fnd_profile.value_specific when getting the APPS_SERVLET_AGENT
96: --
97: function GET_JSP_AGENT ( p_resp_id number,
98: p_resp_appl_id number,

Line 116: agent_url := FND_WEB_CONFIG.TRAIL_SLASH(agent_url);

112: FND_MESSAGE.SET_TOKEN('OPTION','APPS_SERVLET_AGENT');
113: return NULL;
114: end if;
115:
116: agent_url := FND_WEB_CONFIG.TRAIL_SLASH(agent_url);
117:
118: index1 := INSTRB(agent_url, '//', 1) + 2; /* skip 'http://' */
119:
120: index2 := INSTRB(agent_url, '/', index1); /* get to 'http://serv:port/' */

Line 124: return FND_WEB_CONFIG.TRAIL_SLASH(SUBSTRB(agent_url, 1, index2-1)) ||

120: index2 := INSTRB(agent_url, '/', index1); /* get to 'http://serv:port/' */
121:
122: if(index1 <> index2) AND (index1 <> 2) AND (index2 > 2)
123: AND (index1 is not NULL) AND (index2 is not NULL) then
124: return FND_WEB_CONFIG.TRAIL_SLASH(SUBSTRB(agent_url, 1, index2-1)) ||
125: 'OA_HTML/';
126: else
127: /* Incorrect format; give an error message */
128: FND_MESSAGE.SET_NAME('FND', 'AF_WCFG_BAD_AGENT_URL_FORMAT');

Line 208: l_db_id := fnd_web_config.database_id;

204: --
205: l_db_id := fnd_profile.value_specific('APPS_DATABASE_ID', null, p_resp_id,
206: p_resp_appl_id, p_security_group_id);
207: if ( l_db_id is null ) then
208: l_db_id := fnd_web_config.database_id;
209: end if;
210:
211: if ( p_override_agent is not null ) then
212: l_jsp_agent := fnd_web_config.trail_slash(p_override_agent);

Line 212: l_jsp_agent := fnd_web_config.trail_slash(p_override_agent);

208: l_db_id := fnd_web_config.database_id;
209: end if;
210:
211: if ( p_override_agent is not null ) then
212: l_jsp_agent := fnd_web_config.trail_slash(p_override_agent);
213: else
214: l_jsp_agent := get_jsp_agent(p_resp_id, p_resp_appl_id,
215: p_security_group_id);
216: end if;