DBA Data[Home] [Help]

APPS.FUN_RULE_OBJECTS_PUB_W dependencies on FUN_RULE_OBJECTS_PUB

Line 1: package body fun_rule_objects_pub_w as

1: package body fun_rule_objects_pub_w as
2: /* $Header: FUNXTMRULROBRWB.pls 120.3 2006/01/10 14:35:35 ammishra noship $ */
3: procedure create_rule_object(p_init_msg_list VARCHAR2
4: , p1_a0 NUMBER
5: , p1_a1 NUMBER

Line 35: ddp_rule_object_rec fun_rule_objects_pub.rule_objects_rec_type;

31: , x_msg_data out nocopy VARCHAR2
32: )
33:
34: as
35: ddp_rule_object_rec fun_rule_objects_pub.rule_objects_rec_type;
36: ddindx binary_integer; indx binary_integer;
37: begin
38:
39: -- copy data to the local IN or IN-OUT args, if any

Line 71: fun_rule_objects_pub.create_rule_object(p_init_msg_list,

67:
68:
69:
70: -- here's the delegated call to the old PL/SQL routine
71: fun_rule_objects_pub.create_rule_object(p_init_msg_list,
72: ddp_rule_object_rec,
73: x_rule_object_id,
74: x_return_status,
75: x_msg_count,

Line 118: ddp_rule_object_rec fun_rule_objects_pub.rule_objects_rec_type;

114: , x_msg_data out nocopy VARCHAR2
115: )
116:
117: as
118: ddp_rule_object_rec fun_rule_objects_pub.rule_objects_rec_type;
119: ddindx binary_integer; indx binary_integer;
120: begin
121:
122: -- copy data to the local IN or IN-OUT args, if any

Line 154: fun_rule_objects_pub.update_rule_object(p_init_msg_list,

150:
151:
152:
153: -- here's the delegated call to the old PL/SQL routine
154: fun_rule_objects_pub.update_rule_object(p_init_msg_list,
155: ddp_rule_object_rec,
156: p_object_version_number,
157: x_return_status,
158: x_msg_count,

Line 204: ddx_rule_object_rec fun_rule_objects_pub.rule_objects_rec_type;

200: , x_msg_data out nocopy VARCHAR2
201: )
202:
203: as
204: ddx_rule_object_rec fun_rule_objects_pub.rule_objects_rec_type;
205: ddindx binary_integer; indx binary_integer;
206: begin
207:
208: -- copy data to the local IN or IN-OUT args, if any

Line 219: fun_rule_objects_pub.get_rule_object_rec(p_init_msg_list,

215:
216:
217:
218: -- here's the delegated call to the old PL/SQL routine
219: fun_rule_objects_pub.get_rule_object_rec(p_init_msg_list,
220: p_rule_object_name,
221: p_application_id,
222: p_instance_label,
223: p_org_id,

Line 296: ddx_rule_object_rec fun_rule_objects_pub.rule_objects_rec_type;

292: , x_msg_data out nocopy VARCHAR2
293: )
294:
295: as
296: ddx_rule_object_rec fun_rule_objects_pub.rule_objects_rec_type;
297: ddindx binary_integer; indx binary_integer;
298: begin
299:
300: -- copy data to the local IN or IN-OUT args, if any

Line 308: fun_rule_objects_pub.get_rule_object_rec(p_init_msg_list,

304:
305:
306:
307: -- here's the delegated call to the old PL/SQL routine
308: fun_rule_objects_pub.get_rule_object_rec(p_init_msg_list,
309: p_rule_object_id,
310: ddx_rule_object_rec,
311: x_return_status,
312: x_msg_count,

Line 365: ddrosetta_retval := fun_rule_objects_pub.rule_object_instance_exists(p_application_id,

361:
362:
363:
364: -- here's the delegated call to the old PL/SQL routine
365: ddrosetta_retval := fun_rule_objects_pub.rule_object_instance_exists(p_application_id,
366: p_rule_object_name,
367: p_instance_label,
368: p_org_id);
369:

Line 396: ddrosetta_retval := fun_rule_objects_pub.rule_object_uses_parameter(p_rule_object_name,

392: -- copy data to the local IN or IN-OUT args, if any
393:
394:
395: -- here's the delegated call to the old PL/SQL routine
396: ddrosetta_retval := fun_rule_objects_pub.rule_object_uses_parameter(p_rule_object_name,
397: p_parameter_name);
398:
399: -- copy data back from the local variables to OUT or IN-OUT args, if any
400: if ddrosetta_retval is null

Line 409: end fun_rule_objects_pub_w;

405: end if;
406:
407: end;
408:
409: end fun_rule_objects_pub_w;