DBA Data[Home] [Help]

APPS.UMX_NOTIFICATION_UTIL dependencies on FND_USER_PKG

Line 77: -- We have to call the fnd_user_pkg.testusername api to find out

73: elsif l_context = 'APPROVAL_REQUIRED' then
74: resultout := 'COMPLETE:APPROVAL_REQUIRED';
75:
76: elsif l_context = 'APPROVAL_CONFIRMATION' then
77: -- We have to call the fnd_user_pkg.testusername api to find out
78: -- whether oid is enable. If that is the case, then we have to
79: -- send a differnet notification.
80: l_requested_username := wf_engine.getitemattrtext (itemtype => item_type,
81: itemkey => item_key,

Line 95: if (l_return_status = fnd_user_pkg.user_synched) then

91: p_name => 'TESTUSERNAME_RET_STATUS',
92: p_parameterlist => l_parameter_list);
93:
94:
95: if (l_return_status = fnd_user_pkg.user_synched) then
96: resultout := 'COMPLETE:APPROVAL_CONFIRMATION_SYNCHED';
97: else
98: resultout := 'COMPLETE:APPROVAL_CONFIRMATION';
99: end if;