DBA Data[Home] [Help]

APPS.IGC_CC_WF_ACCOUNTS_PKG dependencies on WF_ENGINE

Line 37: cc_encumbrance_flag := wf_engine.GetItemAttrText ( itemtype => itemtype,

33: end if;
34:
35: if (funcmode = 'RUN') then
36:
37: cc_encumbrance_flag := wf_engine.GetItemAttrText ( itemtype => itemtype,
38: itemkey => itemkey,
39: aname => 'CC_ENCUMBRANCE_FLAG');
40:
41: if (cc_encumbrance_flag = 'Y' ) then

Line 99: cc_project_id := wf_engine.GetItemAttrNumber ( itemtype => itemtype,

95: end if;
96:
97: if (funcmode = 'RUN') then
98:
99: cc_project_id := wf_engine.GetItemAttrNumber ( itemtype => itemtype,
100: itemkey => itemkey,
101: aname => 'PROJECT_ID');
102: If (cc_project_id IS NOT NULL ) Then
103:

Line 130: l_ccid := wf_engine.GetItemAttrNumber ( itemtype => itemtype,

126: begin
127:
128: -- get code_combination_id from item attribute
129:
130: l_ccid := wf_engine.GetItemAttrNumber ( itemtype => itemtype,
131: itemkey => itemkey,
132: aname => 'CHARGE_ACCOUNT_ID');
133:
134: if (l_ccid IS NOT NULL) then

Line 136: wf_engine.SetItemAttrNumber ( itemtype=>itemtype,

132: aname => 'CHARGE_ACCOUNT_ID');
133:
134: if (l_ccid IS NOT NULL) then
135:
136: wf_engine.SetItemAttrNumber ( itemtype=>itemtype,
137: itemkey=>itemkey,
138: aname=>'TEMP_ACCOUNT_ID',
139: avalue=>l_ccid );
140:

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

178:
179: fnd_message.set_name('IGC', 'IGC_NO_AG_PROCESS_DEFINED') ;
180: l_error_msg := fnd_message.get_encoded ;
181:
182: wf_engine.SetItemAttrText( itemtype => itemtype,
183: itemkey => itemkey,
184: aname => 'ERROR_MESSAGE',
185: avalue => l_error_msg
186: );