DBA Data[Home] [Help]

APPS.IGI_IAC_WF_PKG dependencies on WF_ENGINE

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

55: 'IGIIACWF'
56: );
57:
58: /* Initialize the workflow item attributes */
59: wf_engine.SetItemAttrText(itemtype => itemtype,
60: Itemkey => itemkey,
61: aname =>'IAC_BOOK_TYPE_CODE',
62: avalue =>X_book_type_code);
63: wf_engine.SetItemAttrText(itemtype => itemtype,

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

59: wf_engine.SetItemAttrText(itemtype => itemtype,
60: Itemkey => itemkey,
61: aname =>'IAC_BOOK_TYPE_CODE',
62: avalue =>X_book_type_code);
63: wf_engine.SetItemAttrText(itemtype => itemtype,
64: itemkey => itemkey,
65: aname =>'IAC_ACCOUNT_TYPE',
66: avalue =>X_flex_account_type);
67: wf_engine.SetItemAttrNumber(itemtype => itemtype,

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

63: wf_engine.SetItemAttrText(itemtype => itemtype,
64: itemkey => itemkey,
65: aname =>'IAC_ACCOUNT_TYPE',
66: avalue =>X_flex_account_type);
67: wf_engine.SetItemAttrNumber(itemtype => itemtype,
68: itemkey => itemkey,
69: aname =>'IAC_CHART_OF_ACCOUNTS_ID',
70: avalue =>X_chart_of_accounts_id);
71:

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

68: itemkey => itemkey,
69: aname =>'IAC_CHART_OF_ACCOUNTS_ID',
70: avalue =>X_chart_of_accounts_id);
71:
72: wf_engine.SetItemAttrNumber(itemtype => itemtype,
73: itemkey => itemkey,
74: aname => 'IAC_DISTRIBUTION_CCID',
75: avalue => X_dist_ccid );
76:

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

73: itemkey => itemkey,
74: aname => 'IAC_DISTRIBUTION_CCID',
75: avalue => X_dist_ccid );
76:
77: wf_engine.SetItemAttrText(itemtype => itemtype,
78: itemkey => itemkey,
79: aname => 'IAC_ACCT_SEG_VAL',
80: avalue => X_acct_segval);
81:

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

78: itemkey => itemkey,
79: aname => 'IAC_ACCT_SEG_VAL',
80: avalue => X_acct_segval);
81:
82: wf_engine.SetItemAttrNumber(itemtype => itemtype,
83: itemkey => itemkey,
84: aname => 'IAC_DEFAULT_CCID',
85: avalue => X_default_ccid);
86:

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

84: aname => 'IAC_DEFAULT_CCID',
85: avalue => X_default_ccid);
86:
87:
88: wf_engine.SetItemAttrNumber(itemtype => itemtype,
89: itemkey => itemkey,
90: aname => 'IAC_ACCOUNT_CCID',
91: avalue => X_account_ccid);
92:

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

89: itemkey => itemkey,
90: aname => 'IAC_ACCOUNT_CCID',
91: avalue => X_account_ccid);
92:
93: wf_engine.SetItemAttrNumber(itemtype => itemtype,
94: itemkey => itemkey,
95: aname => 'IAC_DISTRIBUTION_ID',
96: avalue => X_distribution_id);
97: l_result := FND_FLEX_WORKFLOW.GENERATE(

Line 184: l_account_type := wf_engine.GetItemAttrText(itemtype,itemkey,'IAC_ACCOUNT_TYPE');

180: BEGIN << CHECK_ACCT>>
181:
182: --Based on the run mode return the values.
183: IF (funcmode = 'RUN') THEN
184: l_account_type := wf_engine.GetItemAttrText(itemtype,itemkey,'IAC_ACCOUNT_TYPE');
185: result := 'COMPLETE:' || l_account_type;
186: RETURN;
187: ELSIF (funcmode = 'CANCEL') THEN
188: result := 'COMPLETE:';

Line 225: l_account_type := wf_engine.GetItemAttrText(itemtype,itemkey,'IAC_ACCOUNT_TYPE');

221: /* determine the account group based on the account type passed */
222: /* All accounts expect the DEPRN_EXP falls to category levelaccount*/
223: /* Need to know which account falls into which account type */
224:
225: l_account_type := wf_engine.GetItemAttrText(itemtype,itemkey,'IAC_ACCOUNT_TYPE');
226: IF (l_account_type in ( 'BACKLOG_DEPRN_RSV_ACCT',
227: 'OPERATING_EXPENSE_ACCT',
228: 'GENERAL_FUND_ACCT',
229: 'REVAL_RESERVE_ACCT',