DBA Data[Home] [Help]

APPS.BEN_PROCESS_USER_SS_API dependencies on WF_ENGINE

Line 855: l_user_pswd := wf_engine.GetItemAttrText

851: end if;
852:
853: -- Getting unencrypted password
854:
855: l_user_pswd := wf_engine.GetItemAttrText
856: (itemtype => p_item_type,
857: itemkey => p_item_key,
858: aname =>'USER_ACCOUNT_INFO');
859:

Line 862: /* wf_engine.SetItemAttrText (itemtype => p_item_type,

858: aname =>'USER_ACCOUNT_INFO');
859:
860: -- Setting wf attribute 'USER_ACCOUNT_INFO' to null
861:
862: /* wf_engine.SetItemAttrText (itemtype => p_item_type,
863: itemkey => p_item_key,
864: aname => 'USER_ACCOUNT_INFO',
865: avalue => null);
866:

Line 1101: wf_engine.SetItemAttrText (itemtype => p_item_type,

1097: --hr_utility.set_location('Entering'||g_package||'we are hereeeeeeeeee9'||l_transaction_step_id, 55);
1098: --
1099: if p_employee_id is null then
1100: --hr_utility.set_location('Entering'||g_package||'we are hereeeeeeeeee10', 5);
1101: wf_engine.SetItemAttrText (itemtype => p_item_type,
1102: itemkey => p_item_key,
1103: aname => 'USER_TRANSACTION_STEP',
1104: avalue => to_char(l_transaction_step_id));
1105: end if;

Line 1107: wf_engine.SetItemAttrText (itemtype => p_item_type,

1103: aname => 'USER_TRANSACTION_STEP',
1104: avalue => to_char(l_transaction_step_id));
1105: end if;
1106: -- bug 3728862, set the USER_ACCOUNT_INFO attr. here instead of setting from UserReviewCO
1107: wf_engine.SetItemAttrText (itemtype => p_item_type,
1108: itemkey => p_item_key,
1109: aname => 'USER_ACCOUNT_INFO',
1110: avalue => nvl(ben_process_user_utility.g_fnd_user_record.password,l_user_pswd));
1111: exception

Line 1205: l_user_pswd := wf_engine.GetItemAttrText

1201: l_item_key := hr_transaction_api.get_varchar2_value
1202: (p_transaction_step_id => p_transaction_step_id
1203: ,p_name => 'P_ITEM_KEY');
1204:
1205: l_user_pswd := wf_engine.GetItemAttrText
1206: (itemtype => l_item_type,
1207: itemkey => l_item_key,
1208: aname =>'USER_ACCOUNT_INFO');
1209:

Line 1210: /* wf_engine.SetItemAttrText (itemtype => l_item_type,

1206: (itemtype => l_item_type,
1207: itemkey => l_item_key,
1208: aname =>'USER_ACCOUNT_INFO');
1209:
1210: /* wf_engine.SetItemAttrText (itemtype => l_item_type,
1211: itemkey => l_item_key,
1212: aname => 'USER_ACCOUNT_INFO',
1213: avalue => null);
1214: */

Line 1243: wf_engine.SetItemAttrText (itemtype => l_item_type,

1239: ,p_user_id => l_user_id
1240: );
1241:
1242: -- bug 3728862, set the USER_ACCOUNT_INFO attr. here instead of setting from UserReviewCO
1243: wf_engine.SetItemAttrText (itemtype => l_item_type,
1244: itemkey => l_item_key,
1245: aname => 'USER_ACCOUNT_INFO',
1246: avalue => nvl(ben_process_user_utility.g_fnd_user_record.password,l_user_pswd));
1247: