DBA Data[Home] [Help]

APPS.PQH_AME_APPROVALS dependencies on WF_ENGINE

Line 29: wf_engine.SetItemAttrText

25: ,p_orig_system_id => p_forward_to_person_id
26: ,p_name => l_forward_to_username
27: ,p_display_name => l_forward_to_disp_name);
28:
29: wf_engine.SetItemAttrText
30: (itemtype => p_itemtype
31: ,itemkey => p_itemkey
32: ,aname => 'PARAMETER10_VALUE'
33: ,avalue => p_forward_to_person_id);

Line 38: wf_engine.SetItemAttrText

34:
35: if (l_forward_to_username is null) then
36: p_result := 'NO_USER';
37: else
38: wf_engine.SetItemAttrText
39: (itemtype => p_itemtype
40: ,itemkey => p_itemkey
41: ,aname => 'ROUTE_TO_USER'
42: ,avalue => l_forward_to_username);

Line 65: p_txn_type := wf_engine.GetItemAttrText

61: l_proc constant varchar2(72):= g_package||'get_txn_type_info';
62: begin
63:
64: hr_utility.set_location('Entering:'||l_proc, 5);
65: p_txn_type := wf_engine.GetItemAttrText
66: (itemtype => p_item_type,
67: itemkey => p_item_key,
68: aname => 'PARAMETER2_VALUE' );
69:

Line 70: p_txn_app_id := wf_engine.GetItemAttrText

66: (itemtype => p_item_type,
67: itemkey => p_item_key,
68: aname => 'PARAMETER2_VALUE' );
69:
70: p_txn_app_id := wf_engine.GetItemAttrText
71: (itemtype => p_item_type,
72: itemkey => p_item_key,
73: aname => 'PARAMETER3_VALUE' );
74: hr_utility.set_location(' Leaving:'||l_proc, 10);

Line 107: l_forward_from_person_id := wf_engine.GetItemAttrText (

103:
104: if ( p_funmode = 'RUN' ) then
105: l_transaction_id := pqh_ss_workflow.get_transaction_id(p_itemType, p_itemKey);
106:
107: l_forward_from_person_id := wf_engine.GetItemAttrText (
108: itemtype => p_itemtype,
109: itemkey => p_itemkey,
110: aname => 'PARAMETER10_VALUE' );
111:

Line 148: wf_engine.SetItemAttrText (

144:
145: Exception
146: When Others Then
147: -- Set error attribute and complete activity with result error
148: wf_engine.SetItemAttrText (
149: itemtype => p_itemType
150: ,itemkey => p_ItemKey
151: ,aname => 'SYSTEM_ERROR'
152: ,avalue => sqlerrm);

Line 171: l_elctbl_chc_id := wf_engine.GetItemAttrText

167: BEGIN
168:
169: hr_utility.set_location('Entering:'||l_proc, 5);
170: -- Get The electable choice id from WF attribute
171: l_elctbl_chc_id := wf_engine.GetItemAttrText
172: (itemtype => p_itemtype,
173: itemkey => p_itemkey,
174: aname => 'PARAMETER1_VALUE' );
175:

Line 273: l_elctbl_chc_id := wf_engine.GetItemAttrText (

269: BEGIN
270: hr_utility.set_location('Entering:'||l_proc, 5);
271: --
272: if ( p_funmode = 'RUN' ) then
273: l_elctbl_chc_id := wf_engine.GetItemAttrText (
274: itemtype => p_itemtype,
275: itemkey => p_itemkey,
276: aname => 'PARAMETER1_VALUE' );
277: Select object_version_number

Line 324: wf_engine.SetItemAttrText (

320: hr_utility.set_location(' Leaving:'||l_proc, 10);
321: Exception
322: When Others Then
323: -- Set error attribute and complete activity with result error
324: wf_engine.SetItemAttrText (
325: itemtype => p_itemType
326: ,itemkey => p_ItemKey
327: ,aname => 'SYSTEM_ERROR'
328: ,avalue => sqlerrm);

Line 402: wf_engine.SetItemAttrText (

398:
399: hr_utility.set_location(' Leaving:'||l_proc, 10);
400: Exception
401: When Others Then
402: wf_engine.SetItemAttrText (
403: itemtype => p_itemType
404: ,itemkey => p_ItemKey
405: ,aname => 'SYSTEM_ERROR'
406: ,avalue => sqlerrm);