DBA Data[Home] [Help]

APPS.BSC_PORTLET_UTIL dependencies on FND_WEB_CONFIG

Line 29: ws_url := FND_WEB_CONFIG.JSP_AGENT; /* 'http://serv:port/OA_HTML/' */

25: index1 NUMBER;
26: index2 NUMBER;
27:
28: BEGIN
29: ws_url := FND_WEB_CONFIG.JSP_AGENT; /* 'http://serv:port/OA_HTML/' */
30: if ( ws_url is null ) then
31: return null;
32: else
33: index1 := INSTRB(ws_url, '//', 1) + 2; /* skip 'http://' */

Line 68: ws_url := FND_WEB_CONFIG.WEB_SERVER; -- ex : 'http://ap100jvm.us.oracle.com:8724/';

64: index2 NUMBER;
65:
66: BEGIN
67:
68: ws_url := FND_WEB_CONFIG.WEB_SERVER; -- ex : 'http://ap100jvm.us.oracle.com:8724/';
69:
70:
71: index1 := INSTRB(ws_url, '//', 1) + 2; -- skip 'http://'
72: index2 := INSTRB(ws_url, ':', index1);

Line 85: -- dbms_output.put_line('FND_WEB_CONFIG.WEB_SERVER= ' || ws_url);

81:
82: RETURN hostname;
83: ---------------------------------------------------------------------
84: -- testing
85: -- dbms_output.put_line('FND_WEB_CONFIG.WEB_SERVER= ' || ws_url);
86: -- dbms_output.put_line('second pos= ' || index2);
87: -- dbms_output.put_line('host name= ' || hostname);
88: ---------------------------------------------------------------------
89:

Line 117: ws_url := FND_WEB_CONFIG.WEB_SERVER; -- ex : 'http://ap100jvm.us.oracle.com:8724/';

113: index2 NUMBER;
114:
115: BEGIN
116:
117: ws_url := FND_WEB_CONFIG.WEB_SERVER; -- ex : 'http://ap100jvm.us.oracle.com:8724/';
118:
119:
120: index1 := INSTRB(ws_url, '//', 1) + 2; -- skip 'http://'
121: index2 := INSTRB(ws_url, ':', index1);

Line 133: -- dbms_output.put_line('FND_WEB_CONFIG.WEB_SERVER= ' || ws_url);

129:
130: RETURN portno;
131: ---------------------------------------------------------------------
132: -- testing
133: -- dbms_output.put_line('FND_WEB_CONFIG.WEB_SERVER= ' || ws_url);
134: -- dbms_output.put_line('second pos= ' || index2);
135: -- dbms_output.put_line('host name= ' || hostname);
136: -- dbms_output.put_line('port name= ' || portno);
137: ---------------------------------------------------------------------

Line 212: l_dbcFilePath := FND_WEB_CONFIG.DATABASE_ID;

208: -----------------------------------------------------------------
209: -- A valid session
210: -----------------------------------------------------------------
211:
212: l_dbcFilePath := FND_WEB_CONFIG.DATABASE_ID;
213:
214: -- !!! need to find out NOCOPY p_ticket
215: l_sessionCookieValue := ICX_CALL.ENCRYPT3(ICX_SEC.getsessioncookie(ICX_CALL.ENCRYPT3(p_session_id)));
216: -- l_sessionCookieValue := ICX_CALL.ENCRYPT3(p_session_id);

Line 288: l_servlet_agent := FND_WEB_CONFIG.JSP_AGENT; -- 'http://serv:port/OA_HTML/'

284: -------------------------------------------------------------
285: -- Uses 'APPS_WEB_AGENT' only if 'APPS_SERVLET_AGENT' is null
286: -------------------------------------------------------------
287:
288: l_servlet_agent := FND_WEB_CONFIG.JSP_AGENT; -- 'http://serv:port/OA_HTML/'
289: l_jsp_path := 'jsp/bsc/';
290:
291: if ( l_servlet_agent is null ) then -- 'APPS_SERVLET_AGENT' is null
292: l_servlet_agent := FND_WEB_CONFIG.WEB_SERVER;

Line 292: l_servlet_agent := FND_WEB_CONFIG.WEB_SERVER;

288: l_servlet_agent := FND_WEB_CONFIG.JSP_AGENT; -- 'http://serv:port/OA_HTML/'
289: l_jsp_path := 'jsp/bsc/';
290:
291: if ( l_servlet_agent is null ) then -- 'APPS_SERVLET_AGENT' is null
292: l_servlet_agent := FND_WEB_CONFIG.WEB_SERVER;
293: l_jsp_path := 'OA_HTML/jsp/bsc/';
294: end if;
295:
296: