DBA Data[Home] [Help]

APPS.FND_CONC_PRIVATE_UTILS dependencies on FND_PROFILE

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

11: IS
12: svc varchar2(254);
13:
14: BEGIN
15: if (fnd_profile.defined('FS_SVC_PREFIX')) then
16: fnd_profile.get('FS_SVC_PREFIX', svc);
17: if (svc is not null) then
18: svc := substr(svc || node, 1, 254);
19: else

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

12: svc varchar2(254);
13:
14: BEGIN
15: if (fnd_profile.defined('FS_SVC_PREFIX')) then
16: fnd_profile.get('FS_SVC_PREFIX', svc);
17: if (svc is not null) then
18: svc := substr(svc || node, 1, 254);
19: else
20: svc := 'FNDFS_' || node;

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

53: pos number;
54: svc varchar2(254);
55: BEGIN
56:
57: fnd_profile.get('APPS_WEB_AGENT', base);
58:
59: IF(base IS NULL) THEN
60: RETURN NULL;
61: END IF;

Line 368: fnd_profile.get ('CONC_ATTACH_URL', profbuf);

364: where request_id = req_id;
365:
366: -- bug453714 ends
367:
368: fnd_profile.get ('CONC_ATTACH_URL', profbuf);
369:
370: if profbuf = 'Y' then
371:
372: fnd_profile.get ('CONC_URL_LIFETIME', profbuf);

Line 372: fnd_profile.get ('CONC_URL_LIFETIME', profbuf);

368: fnd_profile.get ('CONC_ATTACH_URL', profbuf);
369:
370: if profbuf = 'Y' then
371:
372: fnd_profile.get ('CONC_URL_LIFETIME', profbuf);
373: url_ttl := to_number(profbuf);
374:
375: /* Note, we must set a default value for url_ttl. *
376: * Stored procedure defaults only work for missing args, *

Line 403: fnd_profile.get('CONC_NOTIFY_GROUP', profbuf);

399: end if;
400:
401: -- If this profile option is set, use the Workflow 'sendgroup' API
402: -- to send a notification to all members of the role.
403: fnd_profile.get('CONC_NOTIFY_GROUP', profbuf);
404:
405: begin
406: if profbuf = 'Y' then
407: nid := wf_notification.sendgroup(recip, msgtype, msgname);