DBA Data[Home] [Help]

APPS.WF_NTF_RULECRITERIA_PKG dependencies on WF_NTF_RULECRITERIA_PKG

Line 1: package body WF_NTF_RULECRITERIA_PKG as

1: package body WF_NTF_RULECRITERIA_PKG as
2: /* $Header: WFNTFRCB.pls 120.1 2005/07/02 03:16:11 appldev noship $ */
3:
4: procedure insert_row(x_rule_name in varchar2,
5: x_msg_type in varchar2)

Line 18: wf_core.context('Wf_ntf_rulecriteria_pkg', 'Insert_Row', x_rule_name, x_msg_type);

14: x_msg_type,
15: sysdate);
16: exception
17: when others then
18: wf_core.context('Wf_ntf_rulecriteria_pkg', 'Insert_Row', x_rule_name, x_msg_type);
19: raise;
20: end insert_row;
21:
22: procedure delete_row(x_rule_name in varchar2,

Line 35: wf_core.context('Wf_ntf_rulecriteria_pkg', 'Delete_Row', x_rule_name, x_msg_type);

31: raise no_data_found;
32: end if;
33: exception
34: when others then
35: wf_core.context('Wf_ntf_rulecriteria_pkg', 'Delete_Row', x_rule_name, x_msg_type);
36: raise;
37: end delete_row;
38:
39: procedure update_row(x_rule_name in varchar2,

Line 52: wf_core.context('Wf_ntf_rulecriteria_pkg', 'Update_Row', x_rule_name, x_msg_type);

48: raise no_data_found;
49: end if;
50: exception
51: when others then
52: wf_core.context('Wf_ntf_rulecriteria_pkg', 'Update_Row', x_rule_name, x_msg_type);
53: raise;
54: end update_row;
55:
56: procedure load_row(x_rule_name in varchar2,

Line 61: wf_ntf_rulecriteria_pkg.update_row(x_rule_name,

57: x_msg_type in varchar2)
58: is
59: begin
60: if wf_ntf_rules_pkg.g_mode = 'FORCE' then
61: wf_ntf_rulecriteria_pkg.update_row(x_rule_name,
62: x_msg_type);
63: end if;
64: exception
65: when others then

Line 66: wf_ntf_rulecriteria_pkg.insert_row(x_rule_name,

62: x_msg_type);
63: end if;
64: exception
65: when others then
66: wf_ntf_rulecriteria_pkg.insert_row(x_rule_name,
67: x_msg_type);
68: end load_row;
69:
70: end WF_NTF_RULECRITERIA_PKG;

Line 70: end WF_NTF_RULECRITERIA_PKG;

66: wf_ntf_rulecriteria_pkg.insert_row(x_rule_name,
67: x_msg_type);
68: end load_row;
69:
70: end WF_NTF_RULECRITERIA_PKG;
71: