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 286: hr_utility.set_location('Entering: '|| 'fnd_data_security.check_function', 10);

282:
283: IF (l_status = 'T' AND p_person_id <> '-1' ) THEN
284: hr_utility.trace('In ( IF (l_status = T AND p_person_id <> -1 ) ): '|| l_proc);
285: IF g_debug then
286: hr_utility.set_location('Entering: '|| 'fnd_data_security.check_function', 10);
287: END IF;
288:
289: l_status := fnd_data_security.check_function(
290: p_api_version => p_api_version

Line 289: l_status := fnd_data_security.check_function(

285: IF g_debug then
286: hr_utility.set_location('Entering: '|| 'fnd_data_security.check_function', 10);
287: END IF;
288:
289: l_status := fnd_data_security.check_function(
290: p_api_version => p_api_version
291: ,p_function => p_function
292: ,p_object_name => p_object_name
293: ,p_instance_pk1_value => p_person_id

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

292: ,p_object_name => p_object_name
293: ,p_instance_pk1_value => p_person_id
294: ,p_instance_pk2_value => p_instance_pk2_value);
295: IF l_status = 'E' OR l_status = 'U' THEN
296: hr_utility.trace('Error in fnd_data_security.check_function l_status is: '||l_status||'. Error is: '|| replace(fnd_message.get_encoded(), chr(0), ' '));
297: l_status := 'F';
298: END IF;
299:
300: IF g_debug then

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

297: l_status := 'F';
298: END IF;
299:
300: IF g_debug then
301: hr_utility.set_location('Leaving: '|| 'fnd_data_security.check_function', 15);
302: END IF;
303: END IF;
304:
305: IF (l_status = 'T' AND p_person_id <> '-1' ) THEN