DBA Data[Home] [Help]

APPS.HR_DOR_REVIEW_SS dependencies on WF_ENGINE

Line 27: l_item_value := wf_engine.getItemAttrText(

23:
24: BEGIN
25: hr_utility.set_location('ENTERING get_approval_req', 10);
26: IF (funcmode='RUN') THEN
27: l_item_value := wf_engine.getItemAttrText(
28: itemtype => itemtype
29: ,itemkey => itemkey
30: , aname => 'HR_RUNTIME_APPROVAL_REQ_FLAG');
31:

Line 155: wf_engine.SetItemAttrText(

151: l_transaction_id := hr_transaction_ss.get_transaction_id
152: (p_item_type => p_item_type
153: ,p_item_key => p_item_key);
154:
155: wf_engine.SetItemAttrText(
156: itemtype => p_item_type,
157: itemkey => p_item_key,
158: aname => 'TRANSACTION_ID',
159: avalue => l_transaction_id);

Line 161: wf_engine.SetItemAttrText(

157: itemkey => p_item_key,
158: aname => 'TRANSACTION_ID',
159: avalue => l_transaction_id);
160:
161: wf_engine.SetItemAttrText(
162: itemtype => p_item_type,
163: itemkey => p_item_key,
164: aname => 'HR_REVIEW_TEMPLATE_RN_ATTR',
165: avalue => 'DOR_REVIEW_NTF');

Line 167: wf_engine.SetItemAttrText(

163: itemkey => p_item_key,
164: aname => 'HR_REVIEW_TEMPLATE_RN_ATTR',
165: avalue => 'DOR_REVIEW_NTF');
166:
167: wf_engine.SetItemAttrText(
168: itemtype => p_item_type,
169: itemkey => p_item_key,
170: aname => 'HR_RESTRICT_EDIT_ATTR',
171: avalue => 'Y');

Line 2195: l_user_name := wf_engine.GetItemAttrText(

2191: ,p_name => 'P_ITEM_KEY');
2192:
2193: if p_dor_rec.verified_by is null then
2194:
2195: l_user_name := wf_engine.GetItemAttrText(
2196: itemtype => p_item_type,
2197: itemkey => p_item_key,
2198: aname => 'FORWARD_TO_USERNAME');
2199:

Line 3912: wf_engine.abortprocess(itemtype => p_item_type

3908: p_item_type,p_item_key
3909: from hr_api_transactions
3910: where transaction_id = p_transaction_id;
3911:
3912: wf_engine.abortprocess(itemtype => p_item_type
3913: ,itemkey => p_item_key);
3914:
3915: hr_transaction_api.rollback_transaction
3916: (p_transaction_id => p_transaction_id);

Line 4247: wf_engine.AddItemAttr(itemtype => itemtype,

4243: l_result_out varchar2(400);
4244:
4245: BEGIN
4246: IF (funcmode='RUN') THEN
4247: wf_engine.AddItemAttr(itemtype => itemtype,
4248: itemkey => itemkey,
4249: aname => 'CREATE_TRN_BLOCK_ACTIVITY',
4250: text_value => actid,
4251: number_value => null,

Line 4290: wf_engine.AddItemAttr(itemtype => itemtype,

4286: hr_utility.set_location('Entered hr_dor_review_ss.create_bprv_block',10);
4287: hr_utility.set_location('create_bprv_block - funcmode = '||funcmode,20);
4288: IF (funcmode='RUN') THEN
4289: hr_utility.set_location('create_bprv_block - funcmode = '||funcmode,30);
4290: wf_engine.AddItemAttr(itemtype => itemtype,
4291: itemkey => itemkey,
4292: aname => 'CREATE_TRN_BPRV_BLOCK',
4293: text_value => actid,
4294: number_value => null,