DBA Data[Home] [Help]

APPS.IGI_EXP_APPROVAL_PKG dependencies on WF_DIRECTORY

Line 1136: wf_directory.GetUserName(p_orig_system => 'PER',

1132: ' SetItemAttrNumber TRANSMITTER_EMP_ID --> '|| l_transmitter_emp_id);
1133: -- =============== END DEBUG LOG ==================
1134:
1135: -- Get the employee name of the transmitter
1136: wf_directory.GetUserName(p_orig_system => 'PER',
1137: p_orig_system_id => l_transmitter_emp_id,
1138: p_name => l_transmitter_emp_name,
1139: p_display_name => l_display_name );
1140:

Line 2510: ' Calling wf_directory.IsPerformer with '

2506: -- =============== START DEBUG LOG ================
2507: DEBUG_LOG_STRING (l_proc_level, 'Check_user_position.Msg8',
2508: ' l_role_name --> ' || l_role_name);
2509: DEBUG_LOG_STRING (l_proc_level, 'Check_user_position.Msg9',
2510: ' Calling wf_directory.IsPerformer with '
2511: ||' l_picked_authorizer --> ' || l_picked_authorizer
2512: ||' l_role_name --> ' || l_role_name);
2513: -- =============== END DEBUG LOG ==================
2514:

Line 2516: IF (wf_directory.IsPerformer(l_picked_authorizer,l_role_name)) THEN

2512: ||' l_role_name --> ' || l_role_name);
2513: -- =============== END DEBUG LOG ==================
2514:
2515: -- Check that the chosen authorizer is assigned to the current position
2516: IF (wf_directory.IsPerformer(l_picked_authorizer,l_role_name)) THEN
2517: result := 'COMPLETE:USER';
2518: -- =============== START DEBUG LOG ================
2519: DEBUG_LOG_STRING (l_proc_level, 'Check_user_position.Msg10',
2520: ' wf_directory.IsPerformer --> TRUE - result -> ' || result);

Line 2520: ' wf_directory.IsPerformer --> TRUE - result -> ' || result);

2516: IF (wf_directory.IsPerformer(l_picked_authorizer,l_role_name)) THEN
2517: result := 'COMPLETE:USER';
2518: -- =============== START DEBUG LOG ================
2519: DEBUG_LOG_STRING (l_proc_level, 'Check_user_position.Msg10',
2520: ' wf_directory.IsPerformer --> TRUE - result -> ' || result);
2521: -- =============== END DEBUG LOG ==================
2522: return;
2523: ELSE
2524: -- =============== START DEBUG LOG ================

Line 2526: ' wf_directory.IsPerformer --> FALSE - Raise e_wrong_user');

2522: return;
2523: ELSE
2524: -- =============== START DEBUG LOG ================
2525: DEBUG_LOG_STRING (l_proc_level, 'Check_user_position.Msg11',
2526: ' wf_directory.IsPerformer --> FALSE - Raise e_wrong_user');
2527: -- =============== END DEBUG LOG ==================
2528: -- Chosen authorizer is not assigned to current position so raise error
2529: RAISE e_wrong_user;
2530: END IF;