DBA Data[Home] [Help]

APPS.CE_XML_BS_LOADER dependencies on WF_ENGINE

Line 59: WF_ENGINE.createProcess('CEXMLBSL', l_item_key, 'CE_XML_BSL');

55:
56: DELETE ce_xml_statement_list
57: WHERE item_key = l_item_key;
58:
59: WF_ENGINE.createProcess('CEXMLBSL', l_item_key, 'CE_XML_BSL');
60:
61: if (l_trading_partner is null) then
62: SELECT count(1)
63: INTO l_cnt

Line 78: WF_ENGINE.SetItemAttrNumber(itemtype => 'CEXMLBSL',

74:
75: if (l_cnt = 0) then
76:
77: /* no bank account id found */
78: WF_ENGINE.SetItemAttrNumber(itemtype => 'CEXMLBSL',
79: itemkey => l_item_key,
80: aname => 'CE_IMPORT',
81: avalue => -1);
82:

Line 86: WF_ENGINE.SetItemAttrNumber(itemtype => 'CEXMLBSL',

82:
83: elsif (l_cnt > 1) then
84:
85: /* multiple bank account id found */
86: WF_ENGINE.SetItemAttrNumber(itemtype => 'CEXMLBSL',
87: itemkey => l_item_key,
88: aname => 'CE_IMPORT',
89: avalue => -2);
90:

Line 150: WF_ENGINE.SetItemAttrNumber(itemtype => 'CEXMLBSL',

146:
147: if (l_bs_count = 0 AND l_bs_count2 = 1) then
148:
149: /* no error (or just warning) during import */
150: WF_ENGINE.SetItemAttrNumber(itemtype => 'CEXMLBSL',
151: itemkey => l_item_key,
152: aname => 'CE_IMPORT',
153: avalue => 0);
154:

Line 158: WF_ENGINE.SetItemAttrNumber(itemtype => 'CEXMLBSL',

154:
155: else
156:
157: /* has error during import */
158: WF_ENGINE.SetItemAttrNumber(itemtype => 'CEXMLBSL',
159: itemkey => l_item_key,
160: aname => 'CE_IMPORT',
161: avalue => -3);
162:

Line 172: WF_ENGINE.SetItemAttrText(itemtype => 'CEXMLBSL',

168: if (l_trading_partner is null) then
169: l_trading_partner := 'unidentified FSP';
170: end if;
171:
172: WF_ENGINE.SetItemAttrText(itemtype => 'CEXMLBSL',
173: itemkey => l_item_key,
174: aname => 'CE_TRADING_PARTNER',
175: avalue => l_trading_partner);
176:

Line 177: WF_ENGINE.SetItemAttrText(itemtype => 'CEXMLBSL',

173: itemkey => l_item_key,
174: aname => 'CE_TRADING_PARTNER',
175: avalue => l_trading_partner);
176:
177: WF_ENGINE.SetItemAttrText(itemtype => 'CEXMLBSL',
178: itemkey => l_item_key,
179: aname => 'STATEMENT_NUMBER',
180: avalue => l_statement_number);
181:

Line 182: WF_ENGINE.SetItemAttrText(itemtype => 'CEXMLBSL',

178: itemkey => l_item_key,
179: aname => 'STATEMENT_NUMBER',
180: avalue => l_statement_number);
181:
182: WF_ENGINE.SetItemAttrText(itemtype => 'CEXMLBSL',
183: itemkey => l_item_key,
184: aname => 'CE_NOTIFICATION_ROLE',
185: avalue => 'Cash Management Notifications');
186:

Line 187: WF_ENGINE.startProcess('CEXMLBSL', l_item_key);

183: itemkey => l_item_key,
184: aname => 'CE_NOTIFICATION_ROLE',
185: avalue => 'Cash Management Notifications');
186:
187: WF_ENGINE.startProcess('CEXMLBSL', l_item_key);
188:
189: END LOOP;
190: CLOSE get_statements_cursor;
191: