DBA Data[Home] [Help]

APPS.PQP_SS_VEHICLE_TRANSACTIONS dependencies on WF_ENGINE

Line 24: l_attr:= wf_engine.GetItemAttrText(

20:
21: --Get the status whether the Extra info exists or not
22: --returns 'Y' or 'N'
23:
24: l_attr:= wf_engine.GetItemAttrText(
25: itemtype => itemtype,
26: itemkey =>itemkey,
27: aname =>'PQP_EXTRA_INFO_EXISTS_ATTR',
28: ignore_notfound =>l_ignore);

Line 67: l_responsibility_id:= wf_engine.GetItemAttrNumber(

63: Begin
64:
65: --Get the status whether the process is in Update or Insert mode
66:
67: l_responsibility_id:= wf_engine.GetItemAttrNumber(
68: itemtype => itemtype,
69: itemkey =>itemkey,
70: aname =>'PQP_RESPONSIBILITY_ID_ATTR',
71: -- actid =>actid ,

Line 86: wf_engine.SetItemAttrText(

82: l_exists :='N';
83: END IF;
84:
85:
86: wf_engine.SetItemAttrText(
87: itemtype => itemtype,
88: itemkey =>itemkey,
89: aname =>'PQP_EXTRA_INFO_EXISTS_ATTR',
90: avalue =>l_exists);

Line 264: l_transaction_id:= wf_engine.GetItemAttrNumber(itemtype => itemtype,

260: l_transaction_id number;
261: l_attr varchar2(30);
262: l_ignore boolean ;
263: Begin
264: l_transaction_id:= wf_engine.GetItemAttrNumber(itemtype => itemtype,
265: itemkey =>itemkey,
266: aname => 'TRANSACTION_ID',
267: ignore_notfound =>l_ignore);
268:

Line 269: l_attr:= wf_engine.GetActivityAttrText(itemtype => itemtype,

265: itemkey =>itemkey,
266: aname => 'TRANSACTION_ID',
267: ignore_notfound =>l_ignore);
268:
269: l_attr:= wf_engine.GetActivityAttrText(itemtype => itemtype,
270: itemkey =>itemkey,
271: aname =>'PQP_APPROVAL_REQUIRED',
272: actid =>actid , --'PQP_APPROVAL_REQUIRED',
273: ignore_notfound =>l_ignore);

Line 274: wf_engine.SetItemAttrText(itemtype => itemtype,

270: itemkey =>itemkey,
271: aname =>'PQP_APPROVAL_REQUIRED',
272: actid =>actid , --'PQP_APPROVAL_REQUIRED',
273: ignore_notfound =>l_ignore);
274: wf_engine.SetItemAttrText(itemtype => itemtype,
275: itemkey =>itemkey,
276: aname =>'HR_RUNTIME_APPROVAL_REQ_FLAG',
277: avalue =>'YES');
278:

Line 2122: wf_engine.setitemattrnumber

2118: ,p_rptg_grp_id => NULL
2119: ,p_effective_date_option => x_effective_date
2120: ,p_transaction_id => l_transaction_id
2121: );
2122: wf_engine.setitemattrnumber
2123: (itemtype => x_item_type
2124: ,itemkey => x_item_key
2125: ,aname => 'TRANSACTION_ID'
2126: ,avalue => l_transaction_id);

Line 3288: wf_engine.setitemattrnumber

3284: ,p_transaction_id =>l_transaction_id
3285: );
3286:
3287: hr_utility.set_location('Leaving create_transaction :',15);
3288: wf_engine.setitemattrnumber
3289: (itemtype => x_item_type
3290: ,itemkey => x_item_key
3291: ,aname => 'TRANSACTION_ID'
3292: ,avalue => l_transaction_id

Line 4270: wf_engine.SetItemAttrNumber( itemtype =>l_get_other_tstep.item_type,

4266: OPEN c_get_details;
4267: FETCH c_get_details INTO l_get_details;
4268: CLOSE c_get_details;
4269:
4270: wf_engine.SetItemAttrNumber( itemtype =>l_get_other_tstep.item_type,
4271: itemkey =>l_get_other_tstep.item_key,
4272: aname =>'PQP_VEH_REPOSITORY_ID_ATTR',
4273: avalue =>l_get_details.vehicle_repository_id);
4274:

Line 4275: wf_engine.SetItemAttrNumber( itemtype =>l_get_other_tstep.item_type,

4271: itemkey =>l_get_other_tstep.item_key,
4272: aname =>'PQP_VEH_REPOSITORY_ID_ATTR',
4273: avalue =>l_get_details.vehicle_repository_id);
4274:
4275: wf_engine.SetItemAttrNumber( itemtype =>l_get_other_tstep.item_type,
4276: itemkey =>l_get_other_tstep.item_key,
4277: aname =>'PQP_VEH_ALLOCATION_ID_ATTR',
4278: avalue =>l_get_details.vehicle_allocation_id);
4279: