DBA Data[Home] [Help]

APPS.CSM_SETUP_PROFILE dependencies on JTF_DIAGNOSTIC_ADAPTUTIL

Line 94: JTF_DIAGNOSTIC_ADAPTUTIL.setUpVars(reportClob);

90: AND NVL(mcv.disable_date, sysdate) >= SYSDATE ;
91: itemProfValNotFound exception ;
92:
93: BEGIN
94: JTF_DIAGNOSTIC_ADAPTUTIL.setUpVars(reportClob);
95: --R12 Changes
96: -- profileTable(1).profileName := 'CSF_M_HISTORY' ;
97: -- profileTable(1).profileUserName := 'CSF: History_M' ;
98: -- profileTable(2).profileName := 'CSF_PALM_ITEM_ORGANIZATION' ;

Line 149: JTF_DIAGNOSTIC_ADAPTUTIL.addStringToReport(reportClob,reportStr);

145: 'JTM_MOB_APPS_ENABLED', null, respId, 883); --Field Service Palm resp
146:
147: IF (jtmProfileValue = 'Y') and (csmProfileValue = 'Y') then
148: reportStr := 'Profile option values set Yes for profile JTM: Mobile Applications Enabled' ;
149: JTF_DIAGNOSTIC_ADAPTUTIL.addStringToReport(reportClob,reportStr);
150: statusStr := 'SUCCESS';
151: ELSE
152: statusStr := 'FAILURE';
153: errStr := 'JTM application level and/or Oracle Mobile Field Service responsibility level JTM: Mobile Applications Enabled profile value is not set.';

Line 166: JTF_DIAGNOSTIC_ADAPTUTIL.addStringToReport(reportClob,reportStr);

162: reportStr := 'Profile option value set for profile ' || profileTable(i).profileUserName || ' as '|| profileValue ;
163: else
164: reportStr := ', ' || profileTable(i).profileUserName || ' as '|| profileValue;
165: end if ;
166: JTF_DIAGNOSTIC_ADAPTUTIL.addStringToReport(reportClob,reportStr);
167: if statusStr is null or statusStr = 'SUCCESS' then
168: statusStr := 'SUCCESS';
169: end if ;
170: ELSE

Line 190: JTF_DIAGNOSTIC_ADAPTUTIL.addStringToReport(reportClob,reportStr);

186: fnd_profile.get(itemCatProfName,itemCatProf) ;
187: fnd_profile.get(itemCatSetProfName,itemCatSetProf) ;
188: IF (itemCatProf IS NULL AND itemCatSetProf IS NULL) then
189: reportStr := ' Profile option value not set for profile ' || itemCatProfUser || ' and '|| itemCatSetProfUser || '.' ;
190: JTF_DIAGNOSTIC_ADAPTUTIL.addStringToReport(reportClob,reportStr);
191: if statusStr is null or statusStr = 'SUCCESS' then
192: statusStr := 'SUCCESS';
193: end if ;
194: ELSIF (itemCatProf IS NOT NULL AND itemCatSetProf IS NOT NULL) THEN

Line 200: JTF_DIAGNOSTIC_ADAPTUTIL.addStringToReport(reportClob,reportStr);

196: open itemProfVal(to_number(itemCatProf), to_number(itemCatSetProf)) ;
197: fetch itemProfVal into dummy ;
198: if itemProfVal%found then
199: reportStr := ' Profile option value set for profile ' || itemCatProfUser || ' and '|| itemCatSetProfUser || '.' ;
200: JTF_DIAGNOSTIC_ADAPTUTIL.addStringToReport(reportClob,reportStr);
201: if statusStr is null or statusStr = 'SUCCESS' then
202: statusStr := 'SUCCESS';
203: end if ;
204: else

Line 231: report := JTF_DIAGNOSTIC_ADAPTUTIL.constructReport(statusStr,errStr1,fixInfo1,isFatal);

227: fixInfo1 := fixInfo ;
228: end if ;
229: errStr1 := errStr1 || itemCatErrStr ;
230: fixInfo1 := fixInfo1 || itemCatFixInfo ;
231: report := JTF_DIAGNOSTIC_ADAPTUTIL.constructReport(statusStr,errStr1,fixInfo1,isFatal);
232: reportClob := JTF_DIAGNOSTIC_ADAPTUTIL.getReportClob ;
233: END runTest;
234:
235: ------------------------------------------------------------

Line 232: reportClob := JTF_DIAGNOSTIC_ADAPTUTIL.getReportClob ;

228: end if ;
229: errStr1 := errStr1 || itemCatErrStr ;
230: fixInfo1 := fixInfo1 || itemCatFixInfo ;
231: report := JTF_DIAGNOSTIC_ADAPTUTIL.constructReport(statusStr,errStr1,fixInfo1,isFatal);
232: reportClob := JTF_DIAGNOSTIC_ADAPTUTIL.getReportClob ;
233: END runTest;
234:
235: ------------------------------------------------------------
236: -- procedure to report name back to framework