DBA Data[Home] [Help]

APPS.WF_NTF_RULEMAPS_PKG dependencies on WF_NTF_RULE_MAPS

Line 9: insert into wf_ntf_rule_maps (

5: x_attribute_name in varchar2,
6: x_column_name in varchar2)
7: is
8: begin
9: insert into wf_ntf_rule_maps (
10: rule_name,
11: attribute_name,
12: column_name,
13: creation_date

Line 29: delete from wf_ntf_rule_maps

25: procedure delete_row(x_rule_name in varchar2,
26: x_attribute_name in varchar2)
27: is
28: begin
29: delete from wf_ntf_rule_maps
30: where rule_name = x_rule_name
31: and attribute_name = x_attribute_name;
32:
33: if (sql%notfound) then

Line 47: update wf_ntf_rule_maps

43: x_attribute_name in varchar2,
44: x_column_name in varchar2)
45: is
46: begin
47: update wf_ntf_rule_maps
48: set column_name = x_column_name
49: where rule_name = x_rule_name
50: and attribute_name = x_attribute_name;
51: