DBA Data[Home] [Help]

APPS.FND_WEBFILE dependencies on FND_PROFILE

Line 203: IF (fnd_profile.defined('APPS_CGI_AGENT')) THEN

199:
200: /* Get URL base. */
201:
202: --First check IF there is a url base defined FOR CGI - enh# 4477258
203: IF (fnd_profile.defined('APPS_CGI_AGENT')) THEN
204: fnd_profile.get('APPS_CGI_AGENT', base);
205: END IF;
206:
207: --IF CGI agent is null then check the web agent

Line 204: fnd_profile.get('APPS_CGI_AGENT', base);

200: /* Get URL base. */
201:
202: --First check IF there is a url base defined FOR CGI - enh# 4477258
203: IF (fnd_profile.defined('APPS_CGI_AGENT')) THEN
204: fnd_profile.get('APPS_CGI_AGENT', base);
205: END IF;
206:
207: --IF CGI agent is null then check the web agent
208: --Also set the base_type to WEB

Line 210: fnd_profile.get('APPS_WEB_AGENT', base);

206:
207: --IF CGI agent is null then check the web agent
208: --Also set the base_type to WEB
209: IF (base IS NULL) THEN
210: fnd_profile.get('APPS_WEB_AGENT', base);
211: base_type := 'WEB';
212: END IF;
213:
214: if (base is null) then

Line 536: if (fnd_profile.defined('FS_SVC_PREFIX')) then

532:
533: node := source_node;
534: fname := source_file;
535:
536: if (fnd_profile.defined('FS_SVC_PREFIX')) then
537: fnd_profile.get('FS_SVC_PREFIX', dest_svc);
538: if (dest_svc is not null) then
539: dest_svc := substr(dest_svc || dest_node, 1, 254);
540: else

Line 537: fnd_profile.get('FS_SVC_PREFIX', dest_svc);

533: node := source_node;
534: fname := source_file;
535:
536: if (fnd_profile.defined('FS_SVC_PREFIX')) then
537: fnd_profile.get('FS_SVC_PREFIX', dest_svc);
538: if (dest_svc is not null) then
539: dest_svc := substr(dest_svc || dest_node, 1, 254);
540: else
541: dest_svc := 'FNDFS_' || dest_node;

Line 550: if (fnd_profile.defined('FS_SVC_PREFIX')) then

546:
547: end if;
548:
549:
550: if (fnd_profile.defined('FS_SVC_PREFIX')) then
551: fnd_profile.get('FS_SVC_PREFIX', svc);
552: if (svc is not null) then
553: svc := substr(svc || node, 1, 254);
554: else

Line 551: fnd_profile.get('FS_SVC_PREFIX', svc);

547: end if;
548:
549:
550: if (fnd_profile.defined('FS_SVC_PREFIX')) then
551: fnd_profile.get('FS_SVC_PREFIX', svc);
552: if (svc is not null) then
553: svc := substr(svc || node, 1, 254);
554: else
555: svc := 'FNDFS_' || node;

Line 728: fnd_profile.get('FND_NATIVE_CLIENT_ENCODING', nc_encoding);

724: allow_enc := 'N';
725: end;
726:
727: if allow_enc = 'Y' then
728: fnd_profile.get('FND_NATIVE_CLIENT_ENCODING', nc_encoding);
729: if (nc_encoding is null) then
730: fnd_message.set_name('CONC', 'CONC-Cannot get profile value');
731: fnd_message.set_token('ROUTINE', 'CREATE_ID');
732: fnd_message.set_token('PROFILE', 'FND_NATIVE_CLIENT_ENCODING');

Line 741: if (fnd_profile.defined('FS_SVC_PREFIX')) then

737:
738: --- Begin Shared Appltop failover code
739: begin
740:
741: if (fnd_profile.defined('FS_SVC_PREFIX')) then
742: fnd_profile.get('FS_SVC_PREFIX', fs_prefix);
743: end if;
744:
745: if (fs_prefix is null) then

Line 742: fnd_profile.get('FS_SVC_PREFIX', fs_prefix);

738: --- Begin Shared Appltop failover code
739: begin
740:
741: if (fnd_profile.defined('FS_SVC_PREFIX')) then
742: fnd_profile.get('FS_SVC_PREFIX', fs_prefix);
743: end if;
744:
745: if (fs_prefix is null) then
746: fs_prefix := 'FNDFS_';