DBA Data[Home] [Help]

APPS.WF_NTF_RULEMAPS_PKG dependencies on WF_NTF_RULEMAPS_PKG

Line 1: package body WF_NTF_RULEMAPS_PKG as

1: package body WF_NTF_RULEMAPS_PKG as
2: /* $Header: WFNTFRMB.pls 120.1 2005/07/02 03:16:26 appldev noship $ */
3:
4: procedure insert_row(x_rule_name in varchar2,
5: x_attribute_name in varchar2,

Line 21: wf_core.context('Wf_ntf_rulemaps_pkg', 'Insert_Row', x_rule_name, x_attribute_name);

17: x_column_name,
18: sysdate);
19: exception
20: when others then
21: wf_core.context('Wf_ntf_rulemaps_pkg', 'Insert_Row', x_rule_name, x_attribute_name);
22: raise;
23: end insert_row;
24:
25: procedure delete_row(x_rule_name in varchar2,

Line 38: wf_core.context('Wf_ntf_rulemaps_pkg', 'Delete_Row', x_rule_name, x_attribute_name);

34: raise no_data_found;
35: end if;
36: exception
37: when others then
38: wf_core.context('Wf_ntf_rulemaps_pkg', 'Delete_Row', x_rule_name, x_attribute_name);
39: raise;
40: end delete_row;
41:
42: procedure update_row(x_rule_name in varchar2,

Line 57: wf_core.context('Wf_ntf_rulemaps_pkg', 'Update_Row', x_rule_name, x_attribute_name);

53: raise no_data_found;
54: end if;
55: exception
56: when others then
57: wf_core.context('Wf_ntf_rulemaps_pkg', 'Update_Row', x_rule_name, x_attribute_name);
58: raise;
59: end update_row;
60:
61: procedure load_row(x_rule_name in varchar2,

Line 68: Wf_ntf_rulemaps_pkg.update_row(x_rule_name,

64: is
65: begin
66:
67: if wf_ntf_rules_pkg.g_mode = 'FORCE' then
68: Wf_ntf_rulemaps_pkg.update_row(x_rule_name,
69: x_attribute_name,
70: x_column_name);
71: end if;
72: exception

Line 74: Wf_ntf_rulemaps_pkg.insert_row(x_rule_name,

70: x_column_name);
71: end if;
72: exception
73: when others then
74: Wf_ntf_rulemaps_pkg.insert_row(x_rule_name,
75: x_attribute_name,
76: x_column_name);
77: end load_row;
78:

Line 79: end WF_NTF_RULEMAPS_PKG;

75: x_attribute_name,
76: x_column_name);
77: end load_row;
78:
79: end WF_NTF_RULEMAPS_PKG;
80: