DBA Data[Home] [Help]

PACKAGE: APPS.WF_REPLACE_MODPLSQL_UTILITY

Source


1 package wf_replace_modplsql_utility AUTHID CURRENT_USER as
2 /* $Header: WFMPLRMS.pls 120.2 2005/10/17 12:03:02 sramani noship $: */
3 
4 TYPE rowid_varray is VARRAY(2000) of ROWID;
5 
6 TYPE t_matches is record(
7     id   rowid_varray,
8     url  dbms_sql.varchar2_table
9   );
10 
11 procedure update_item_attr_vals(p_matches t_matches);
12 
13 procedure update_ntf_attrs(p_matches t_matches);
14 
15 procedure update_wf_attrs
16 (
17   errbuf out NOCOPY varchar2,
18   retcode out NOCOPY varchar2
19 );
20 
21 end;