DBA Data[Home] [Help]

APPS.ARI_SELF_REG_CONFIG dependencies on FUN_RULE_OBJECTS_PUB

Line 68: if(mo_utils.get_default_org_id is NOT NULL and FUN_RULE_OBJECTS_PUB.rule_object_instance_exists(222,'ARI_VALIDATE_SITE_ACCESS', NULL,mo_utils.get_default_org_id)) then

64: mo_global.init('AR');
65: mo_global.set_policy_context('M',null);
66:
67: --check if rule exist for the default org id.
68: if(mo_utils.get_default_org_id is NOT NULL and FUN_RULE_OBJECTS_PUB.rule_object_instance_exists(222,'ARI_VALIDATE_SITE_ACCESS', NULL,mo_utils.get_default_org_id)) then
69: cust_site_org_id := mo_utils.get_default_org_id;
70: else
71: --if rule does not exist for the cust_site_org or default org, then search thru all org setup at the security profile
72: FOR cust_site_rec IN cust_site_cur LOOP

Line 73: if(FUN_RULE_OBJECTS_PUB.rule_object_instance_exists(222,'ARI_VALIDATE_SITE_ACCESS', NULL,cust_site_rec.org_id)) then

69: cust_site_org_id := mo_utils.get_default_org_id;
70: else
71: --if rule does not exist for the cust_site_org or default org, then search thru all org setup at the security profile
72: FOR cust_site_rec IN cust_site_cur LOOP
73: if(FUN_RULE_OBJECTS_PUB.rule_object_instance_exists(222,'ARI_VALIDATE_SITE_ACCESS', NULL,cust_site_rec.org_id)) then
74: --site access question is set at the org id in secuirty profile, then set that org as cust_site_org_id
75: cust_site_org_id := cust_site_rec.org_id;
76: EXIT;
77: end if;

Line 82: IF(FUN_RULE_OBJECTS_PUB.rule_object_instance_exists(222,'ARI_VALIDATE_SITE_ACCESS', NULL,cust_site_org_id)) THEN

78: END LOOP;
79: end if;
80: end if;
81:
82: IF(FUN_RULE_OBJECTS_PUB.rule_object_instance_exists(222,'ARI_VALIDATE_SITE_ACCESS', NULL,cust_site_org_id)) THEN
83:
84: FUN_RULE_PUB.SET_INSTANCE_CONTEXT('ARI_VALIDATE_SITE_ACCESS', 'AR', NULL, cust_site_org_id );
85: FUN_RULE_PUB.init_parameter_list;
86: FUN_RULE_PUB.add_parameter('ARI_CUSTOMER_ID', p_customer_id);