DBA Data[Home] [Help]

APPS.HR_UTIL_MISC_SS dependencies on FND_DATA_SECURITY

Line 242: * Wrapper function that calls fnd_data_security.check_function and

238: End Loop;
239: END getCompSourceInfo;
240:
241: /**
242: * Wrapper function that calls fnd_data_security.check_function and
243: * check_cwk_access
244: */
245: FUNCTION validate_selected_function (
246: p_api_version IN NUMBER

Line 278: hr_utility.set_location('Entering: '|| 'fnd_data_security.check_function', 10);

274:
275: IF (l_status = 'T' AND p_person_id <> '-1' ) THEN
276: hr_utility.trace('In ( IF (l_status = T AND p_person_id <> -1 ) ): '|| l_proc);
277: IF g_debug then
278: hr_utility.set_location('Entering: '|| 'fnd_data_security.check_function', 10);
279: END IF;
280:
281: l_status := fnd_data_security.check_function(
282: p_api_version => p_api_version

Line 281: l_status := fnd_data_security.check_function(

277: IF g_debug then
278: hr_utility.set_location('Entering: '|| 'fnd_data_security.check_function', 10);
279: END IF;
280:
281: l_status := fnd_data_security.check_function(
282: p_api_version => p_api_version
283: ,p_function => p_function
284: ,p_object_name => p_object_name
285: ,p_instance_pk1_value => p_person_id

Line 288: hr_utility.trace('Error in fnd_data_security.check_function l_status is: '||l_status||'. Error is: '|| replace(fnd_message.get_encoded(), chr(0), ' '));

284: ,p_object_name => p_object_name
285: ,p_instance_pk1_value => p_person_id
286: ,p_instance_pk2_value => p_instance_pk2_value);
287: IF l_status = 'E' OR l_status = 'U' THEN
288: hr_utility.trace('Error in fnd_data_security.check_function l_status is: '||l_status||'. Error is: '|| replace(fnd_message.get_encoded(), chr(0), ' '));
289: l_status := 'F';
290: END IF;
291:
292: IF g_debug then

Line 293: hr_utility.set_location('Leaving: '|| 'fnd_data_security.check_function', 15);

289: l_status := 'F';
290: END IF;
291:
292: IF g_debug then
293: hr_utility.set_location('Leaving: '|| 'fnd_data_security.check_function', 15);
294: END IF;
295: END IF;
296:
297: IF (l_status = 'T' AND p_person_id <> '-1' ) THEN