DBA Data[Home] [Help]

APPS.JTF_DIAG_QAPACKAGE dependencies on FND_USER

Line 41: from fnd_user

37: BEGIN
38: JTF_DIAGNOSTIC_ADAPTUTIL.setUpVars;
39: c_username := JTF_DIAGNOSTIC_ADAPTUTIL.getInputValue('USERNAME',inputs);
40: select count(*) into counter
41: from fnd_user
42: where user_name like c_username;
43: IF (counter = 1) THEN
44: reportStr := 'Report on Successful run displayed here';
45: JTF_DIAGNOSTIC_ADAPTUTIL.addStringToReport(reportStr);

Line 50: from fnd_user

46: statusStr := 'SUCCESS';
47: ELSE
48: c_username := upper(c_username);
49: select count(*) into counter
50: from fnd_user
51: where user_name like c_username;
52: IF (counter = 1) THEN
53: reportStr := 'Warning: user found, but name was not in all caps';
54: errStr := 'Test failure message displayed here';