DBA Data[Home] [Help]

APPS.CSL_SETUP_PROFILE dependencies on FND_PROFILE

Line 47: jtmProfileValue := fnd_profile.VALUE_SPECIFIC(

43: BEGIN
44: JTF_DIAGNOSTIC_ADAPTUTIL.setUpVars(reportClob);
45:
46: /*First level specific profiles*/
47: jtmProfileValue := fnd_profile.VALUE_SPECIFIC(
48: Name => 'JTM_MOB_APPS_ENABLED', APPLICATION_ID => 874); -- JTM
49:
50: cslProfileValue := fnd_profile.VALUE_SPECIFIC(
51: Name => 'JTM_MOB_APPS_ENABLED', APPLICATION_ID => 868, RESPONSIBILITY_ID => 22916 ); --CSL

Line 50: cslProfileValue := fnd_profile.VALUE_SPECIFIC(

46: /*First level specific profiles*/
47: jtmProfileValue := fnd_profile.VALUE_SPECIFIC(
48: Name => 'JTM_MOB_APPS_ENABLED', APPLICATION_ID => 874); -- JTM
49:
50: cslProfileValue := fnd_profile.VALUE_SPECIFIC(
51: Name => 'JTM_MOB_APPS_ENABLED', APPLICATION_ID => 868, RESPONSIBILITY_ID => 22916 ); --CSL
52:
53: IF (jtmProfileValue = 'Y') AND (cslProfileValue = 'Y') THEN
54: reportStr := '-Profile option values for JTM: Mobile Applications Enabled are set up correct'||

Line 83: jtmProfileValue := fnd_profile.VALUE_SPECIFIC(

79: END IF;
80: isFatal := 'FALSE';
81: END IF;
82:
83: jtmProfileValue := fnd_profile.VALUE_SPECIFIC(
84: Name => 'JTM_DEFAULT_LOGON_RESPONSIBILITY', APPLICATION_ID => 868); -- CSL
85: IF jtmProfileValue = 'CSL_IMOBILE' THEN
86: reportStr := '-Profile JTM: Default Logon Responsibility for CRM Mobile Application '||
87: 'is correct set to Oracle Field Service/Laptop-';

Line 110: fnd_profile.get(profileTable(i),profileValue) ;

106: profileTable(1) := 'CS_INV_VALIDATION_ORG' ;
107: reportStr := NULL;
108: FOR i IN 1..profileTable.COUNT LOOP
109: profileValue := null ;
110: fnd_profile.get(profileTable(i),profileValue) ;
111: IF profileValue IS NOT NULL THEN
112: reportStr := '-Profile option value set for profile '|| profileTable(i)||' to: '||profileValue||'-';
113: JTF_DIAGNOSTIC_ADAPTUTIL.addStringToReport(reportClob,reportStr);
114: IF statusStr IS NULL OR statusStr = 'SUCCESS' THEN