DBA Data[Home] [Help]

APPS.PA_WF_FB_SAMPLE_PKG dependencies on WF_ENGINE

Line 60: l_expenditure_org_id := wf_engine.GetItemAttrNumber

56: -- First retrieve the values of these attributes into local
57: -- variables.
58: -------------------------------------------------------------
59:
60: l_expenditure_org_id := wf_engine.GetItemAttrNumber
61: ( itemtype => p_itemtype,
62: itemkey => p_itemkey,
63: aname => 'EXPENDITURE_ORGANIZATION_ID');
64:

Line 65: l_project_org_id := wf_engine.GetItemAttrNumber

61: ( itemtype => p_itemtype,
62: itemkey => p_itemkey,
63: aname => 'EXPENDITURE_ORGANIZATION_ID');
64:
65: l_project_org_id := wf_engine.GetItemAttrNumber
66: ( itemtype => p_itemtype,
67: itemkey => p_itemkey,
68: aname => 'PROJECT_ORGANIZATION_ID');
69:

Line 70: l_project_number := wf_engine.GetItemAttrText

66: ( itemtype => p_itemtype,
67: itemkey => p_itemkey,
68: aname => 'PROJECT_ORGANIZATION_ID');
69:
70: l_project_number := wf_engine.GetItemAttrText
71: ( itemtype => p_itemtype,
72: itemkey => p_itemkey,
73: aname => 'PROJECT_NUMBER');
74:

Line 75: l_expenditure_type := wf_engine.GetItemAttrText

71: ( itemtype => p_itemtype,
72: itemkey => p_itemkey,
73: aname => 'PROJECT_NUMBER');
74:
75: l_expenditure_type := wf_engine.GetItemAttrText
76: ( itemtype => p_itemtype,
77: itemkey => p_itemkey,
78: aname => 'EXPENDITURE_TYPE');
79:

Line 129: wf_engine.SetItemAttrText

125: -- displayed on the form. The error message name is defined in
126: -- Applications and the name is set here. The form should read this
127: -- error message and decode it to get the original message text.
128:
129: wf_engine.SetItemAttrText
130: ( itemtype=> p_itemtype,
131: itemkey => p_itemkey,
132: aname => 'ERROR_MESSAGE',
133: avalue => 'SUP_INV_ACC_ORG_ID_LOOKUP FAIL');

Line 171: wf_engine.SetItemAttrText

167:
168: -- Error requires an error message to be set so that it can be displayed
169: -- on the form
170:
171: wf_engine.SetItemAttrText
172: ( itemtype=> p_itemtype,
173: itemkey=> p_itemkey,
174: aname => 'ERROR_MSG',
175: avalue=> 'Org and Expenditure type lookup failed ' ||

Line 195: wf_engine.SetItemAttrText ( itemtype => p_itemtype,

191: -- the same that is used in the lookup set value (LOOKUP_SET_VALUE).
192: -- It is desirable that you define and use your own item attributes
193: -- e.g. SAMPLE_SEGMENT_1.
194:
195: wf_engine.SetItemAttrText ( itemtype => p_itemtype,
196: itemkey => p_itemkey,
197: aname => 'LOOKUP_SET_VALUE',
198: avalue => l_segment_value);
199: