DBA Data[Home] [Help]

APPS.AR_CMGT_WF_ENGINE dependencies on WF_DIRECTORY

Line 149: wf_directory.getusername ('PER', p_employee_id,

145: p_employee_id IN NUMBER,
146: p_user_name OUT NOCOPY VARCHAR2,
147: p_display_name OUT NOCOPY VARCHAR2) AS
148: BEGIN
149: wf_directory.getusername ('PER', p_employee_id,
150: p_user_name,
151: p_display_name);
152: EXCEPTION
153: WHEN OTHERS

Line 421: l_role_display_name := wf_directory.getRoleDisplayName (

417: -- this role will be used to re-assign credit analyst by Credit Scheduler
418: -- in case credit analyst is not available. Credit Analyst is defined in
419: -- resource manger as role_type CREDIT_ANALYST.
420:
421: l_role_display_name := wf_directory.getRoleDisplayName (
422: p_role_name => 'AR_CMGT_CREDIT_ANALYST_ROLE');
423: IF l_role_display_name IS NULL
424: THEN
425: l_role_display_name := 'Credit Analyst Role';

Line 426: wf_directory.CreateAdHocRole

422: p_role_name => 'AR_CMGT_CREDIT_ANALYST_ROLE');
423: IF l_role_display_name IS NULL
424: THEN
425: l_role_display_name := 'Credit Analyst Role';
426: wf_directory.CreateAdHocRole
427: (role_name => l_role_name,
428: role_display_name => l_role_display_name,
429: expiration_date => to_date('31/12/4712','DD/MM/RRRR'));
430: END IF;

Line 444: IF wf_directory.useractive(l_user_name)

440: get_employee_details(c_get_resurce_rec.source_id,
441: l_user_name,
442: l_display_name);
443: -- first check whether this is the active user or not
444: IF wf_directory.useractive(l_user_name)
445: THEN
446: --if user already added then it will raise an exception
447: --if not then it will add the user.
448: BEGIN

Line 449: wf_directory.AddUsersToAdHocRole

445: THEN
446: --if user already added then it will raise an exception
447: --if not then it will add the user.
448: BEGIN
449: wf_directory.AddUsersToAdHocRole
450: ('AR_CMGT_CREDIT_ANALYST_ROLE',l_user_name);
451: EXCEPTION
452: WHEN OTHERS THEN
453: NULL;

Line 3014: IF wf_directory.UserActive(l_approver_user_name)

3010: get_employee_details(l_approver_id,
3011: l_approver_user_name,
3012: l_approver_display_name);
3013:
3014: IF wf_directory.UserActive(l_approver_user_name)
3015: THEN
3016: WF_ENGINE.setItemAttrNumber(itemType => itemtype,
3017: itemKey => itemkey,
3018: aname => 'APPROVER_ID',