DBA Data[Home] [Help]

APPS.CE_P2P_UTIL_PKG dependencies on WF_ENGINE

Line 208: WF_ENGINE.CreateProcess(c_item_type,l_item_key, c_process);

204: c_item_type := 'CEEXPTWF';
205: c_process := 'CEEXPTWF_P';
206: END IF;
207:
208: WF_ENGINE.CreateProcess(c_item_type,l_item_key, c_process);
209:
210: --
211: -- Initializing attributes
212: --

Line 214: WF_ENGINE.setItemAttrText(c_item_type,l_item_key, 'WFROLE',p_wf_role);

210: --
211: -- Initializing attributes
212: --
213:
214: WF_ENGINE.setItemAttrText(c_item_type,l_item_key, 'WFROLE',p_wf_role);
215: WF_ENGINE.setItemAttrText(c_item_type,l_item_key, 'FILENAME',p_file_name);
216: WF_ENGINE.setItemAttrText(c_item_type,l_item_key, 'TRANCODE',p_transmission_code);
217: WF_ENGINE.setItemAttrText(c_item_type,l_item_key, 'TRANSMISSION_TYPE',p_transmission_type);
218: --WF_ENGINE.setItemAttrText(c_item_type,l_item_key, 'ADHOCROLE',l_role);

Line 215: WF_ENGINE.setItemAttrText(c_item_type,l_item_key, 'FILENAME',p_file_name);

211: -- Initializing attributes
212: --
213:
214: WF_ENGINE.setItemAttrText(c_item_type,l_item_key, 'WFROLE',p_wf_role);
215: WF_ENGINE.setItemAttrText(c_item_type,l_item_key, 'FILENAME',p_file_name);
216: WF_ENGINE.setItemAttrText(c_item_type,l_item_key, 'TRANCODE',p_transmission_code);
217: WF_ENGINE.setItemAttrText(c_item_type,l_item_key, 'TRANSMISSION_TYPE',p_transmission_type);
218: --WF_ENGINE.setItemAttrText(c_item_type,l_item_key, 'ADHOCROLE',l_role);
219:

Line 216: WF_ENGINE.setItemAttrText(c_item_type,l_item_key, 'TRANCODE',p_transmission_code);

212: --
213:
214: WF_ENGINE.setItemAttrText(c_item_type,l_item_key, 'WFROLE',p_wf_role);
215: WF_ENGINE.setItemAttrText(c_item_type,l_item_key, 'FILENAME',p_file_name);
216: WF_ENGINE.setItemAttrText(c_item_type,l_item_key, 'TRANCODE',p_transmission_code);
217: WF_ENGINE.setItemAttrText(c_item_type,l_item_key, 'TRANSMISSION_TYPE',p_transmission_type);
218: --WF_ENGINE.setItemAttrText(c_item_type,l_item_key, 'ADHOCROLE',l_role);
219:
220: --

Line 217: WF_ENGINE.setItemAttrText(c_item_type,l_item_key, 'TRANSMISSION_TYPE',p_transmission_type);

213:
214: WF_ENGINE.setItemAttrText(c_item_type,l_item_key, 'WFROLE',p_wf_role);
215: WF_ENGINE.setItemAttrText(c_item_type,l_item_key, 'FILENAME',p_file_name);
216: WF_ENGINE.setItemAttrText(c_item_type,l_item_key, 'TRANCODE',p_transmission_code);
217: WF_ENGINE.setItemAttrText(c_item_type,l_item_key, 'TRANSMISSION_TYPE',p_transmission_type);
218: --WF_ENGINE.setItemAttrText(c_item_type,l_item_key, 'ADHOCROLE',l_role);
219:
220: --
221: -- Starting the process

Line 218: --WF_ENGINE.setItemAttrText(c_item_type,l_item_key, 'ADHOCROLE',l_role);

214: WF_ENGINE.setItemAttrText(c_item_type,l_item_key, 'WFROLE',p_wf_role);
215: WF_ENGINE.setItemAttrText(c_item_type,l_item_key, 'FILENAME',p_file_name);
216: WF_ENGINE.setItemAttrText(c_item_type,l_item_key, 'TRANCODE',p_transmission_code);
217: WF_ENGINE.setItemAttrText(c_item_type,l_item_key, 'TRANSMISSION_TYPE',p_transmission_type);
218: --WF_ENGINE.setItemAttrText(c_item_type,l_item_key, 'ADHOCROLE',l_role);
219:
220: --
221: -- Starting the process
222: --

Line 224: WF_ENGINE.startProcess(c_item_type, l_item_key);

220: --
221: -- Starting the process
222: --
223:
224: WF_ENGINE.startProcess(c_item_type, l_item_key);
225: commit;
226: end;
227:
228: