DBA Data[Home] [Help]

APPS.IGS_EN_WORKFLOW dependencies on FND_PROFILE

Line 52: fnd_profile.get('IGS_WF_ENABLE',l_wf_installed);

48: l_wf_installed fnd_lookups.lookup_code%TYPE;
49:
50: BEGIN
51: -- get the profile value that is set for checking if workflow is installed
52: fnd_profile.get('IGS_WF_ENABLE',l_wf_installed);
53:
54: -- if workflow is installed then carry on with the raising an event
55: IF (RTRIM(l_wf_installed) ='Y') THEN
56: -- get the next value of the sequence

Line 110: fnd_profile.get('IGS_WF_ENABLE',l_wf_installed);

106:
107: BEGIN
108:
109: -- get the profile value that is set for checking if workflow is installed
110: fnd_profile.get('IGS_WF_ENABLE',l_wf_installed);
111:
112: -- if workflow is installed then carry on with the raising an event
113: IF (RTRIM(l_wf_installed) ='Y') THEN
114: -- get the next value of the sequence

Line 168: fnd_profile.get('IGS_WF_ENABLE',l_wf_installed);

164:
165: BEGIN
166:
167: -- get the profile value that is set for checking if workflow is installed
168: fnd_profile.get('IGS_WF_ENABLE',l_wf_installed);
169:
170: -- if workflow is installed then carry on with the raising an event
171: IF (RTRIM(l_wf_installed) ='Y') THEN
172: -- get the next value of the sequence

Line 234: SELECT FND_PROFILE.VALUE('IGS_WF_ENABLE') value

230:
231: -- Getting the Profile value for the profile IGS_WF_ENABLE, to check if workflow is installed in the environment
232:
233: CURSOR cur_prof_value IS
234: SELECT FND_PROFILE.VALUE('IGS_WF_ENABLE') value
235: FROM dual;
236:
237: -- Cursor for fetching the Program Type based on the program Attempt.
238:

Line 370: SELECT FND_PROFILE.VALUE('IGS_WF_ENABLE') value

366:
367: -- Getting the Profile value for the profile IGS_WF_ENABLE, to check if workflow is installed in the environment
368:
369: CURSOR cur_prof_value IS
370: SELECT FND_PROFILE.VALUE('IGS_WF_ENABLE') value
371: FROM dual;
372:
373: -- Getting the logged in User
374:

Line 499: SELECT FND_PROFILE.VALUE('IGS_WF_ENABLE') value

495:
496: -- Getting the Profile value for the profile IGS_WF_ENABLE, to check if workflow is installed in the environment
497:
498: CURSOR cur_prof_value IS
499: SELECT FND_PROFILE.VALUE('IGS_WF_ENABLE') value
500: FROM dual;
501:
502: -- Getting the logged in User
503:

Line 617: SELECT FND_PROFILE.VALUE('IGS_WF_ENABLE') value

613:
614: -- Getting the Profile value for the profile IGS_WF_ENABLE, to check if workflow is installed in the environment
615:
616: CURSOR cur_prof_value IS
617: SELECT FND_PROFILE.VALUE('IGS_WF_ENABLE') value
618: FROM dual;
619:
620: -- Getting the logged in User
621:

Line 1568: SELECT FND_PROFILE.VALUE('IGS_WF_ENABLE') value

1564: FROM dual;
1565:
1566: -- Getting the Profile value for the profile IGS_WF_ENABLE, to check if workflow is installed in the environment
1567: CURSOR cur_prof_value IS
1568: SELECT FND_PROFILE.VALUE('IGS_WF_ENABLE') value
1569: FROM dual;
1570:
1571: -- Cursor to fetch the person number
1572: CURSOR cur_pers_number(cp_person_id NUMBER) IS

Line 1809: fnd_profile.get('IGS_WF_ENABLE',l_wf_installed);

1805: l_wf_installed fnd_lookups.lookup_code%TYPE;
1806:
1807: BEGIN
1808: -- get the profile value that is set for checking if workflow is installed
1809: fnd_profile.get('IGS_WF_ENABLE',l_wf_installed);
1810:
1811: -- if workflow is installed then carry on with the raising an event
1812: IF (RTRIM(l_wf_installed) ='Y') THEN
1813: -- get the next value of the sequence