Friday, January 29, 2010
Business event generation from backed
In the below, if you want you can provide additional informations by extending the v_parameter
declare
v_event_name VARCHAR2(100);
v_event_key VARCHAR2(100);
v_parameter wf_parameter_list_t:=wf_parameter_list_t();
begin
v_event_name:='oracle.apps.wsh.delivery.gen.shipconfirmed';
v_event_key:=51425;
wf_event.raise(p_event_name => v_event_name ,
p_event_key => v_event_key,
p_event_data => NULL,
p_parameters => v_parameter,
p_send_date => sysdate);
COMMIT;
end;
Do you think this Article is useful?
Subscribe to:
Post Comments (Atom)
Disclaimer
The ideas, thoughts and concepts expressed here are my own. They, in no way reflect those of my employer or any other organization/client that I am associated. The articles presented doesn't imply to any particular organization or client and are meant only for knowledge Sharing purpose. The articles can't be reproduced or copied without the Owner's knowledge or permission.
0 Responses to “Business event generation from backed”
Post a Comment