REM dbdrv: none
--- =========================================================================+
---      Copyright (c) 1999, 2004 Oracle Corporation  Redwood Shores, CA, USA
---                       All Rights Reserved
--- =========================================================================+
--- FILENAME
---     ECXERRB.pls
---
--- DESCRIPTION
---     SQL script to create ECX_ERRORLOG Package Body
---
--- ARGUMENTS
---
--- NOTES
---   Stub version of package body for Workflow Standalone.
---  
--- =========================================================================+
SET VERIFY OFF
WHENEVER SQLERROR EXIT FAILURE ROLLBACK
WHENEVER OSERROR EXIT FAILURE ROLLBACK

create or replace package body ecx_errorlog as
/* $Header: ECXERRB.pls 26.1 2004/04/22 13:54:37 kchoudha noship $*/



procedure outbound_log (
  p_event    in  wf_event_t) IS

begin
  -- Null implementation for Workflow Standalone since this is referenced from
  -- WF_ENGINE_UTIL
  null;
end outbound_log;

end ecx_errorlog;
/
--sho err
commit; 
exit;

