create or replace package body pkg_nkw_dnt_drmies timestamp '2006-07-07:10:10:10' is ------------------------------------------------------------------ -- 2006 DataPRO Developers - m@urelio ------------------------------------------------------------------ -- Version: 2.0.2 ------------------------------------------------------------------ -- Collections, Records, Variables, Constants, Exceptions, Cursors ------------------------------------------------------------------ ------------------------------------------------------------------ ----------------------- Private Section -------------------------- ------------------------------------------------------------------ ------------------------------------------------------------------ ------------------------ Public Section -------------------------- ------------------------------------------------------------------ ------------------------------------------------------------------ -- PARSE_ACTION ------------------------------------------------------------------ procedure parse_action(ft_data in pkg_nkw_obj.gt_data%TYPE, fv_action in varchar2) is begin if (nvl(ft_data.count,0) > 0) then pkg_nkw_drm.init_drm(pkg_nkw_dnt.gv_object); pkg_nkw_drm.gt_data.delete; pkg_nkw_drm.gt_data := ft_data; pkg_nkw_drm.parse_drm(fv_action); end if; exception when others then raise; end parse_action; end pkg_nkw_dnt_drmies; / show errors