DBA Data[Home] [Help]

APPS.ARI_SELF_REG_CONFIG dependencies on FUN_RULE_OBJECTS_PUB

Line 60: 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

56: FROM hz_cust_site_uses
57: WHERE site_use_id = p_customer_site_use_id ;
58: else
59: --check if rule exist for the default org id.
60: 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
61: cust_site_org_id := mo_utils.get_default_org_id;
62: else
63: --if rule does not exist for the cust_site_org or default org, then search thru all org setup at the security profile
64: FOR cust_site_rec IN cust_site_cur LOOP

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

61: cust_site_org_id := mo_utils.get_default_org_id;
62: else
63: --if rule does not exist for the cust_site_org or default org, then search thru all org setup at the security profile
64: FOR cust_site_rec IN cust_site_cur LOOP
65: if(FUN_RULE_OBJECTS_PUB.rule_object_instance_exists(222,'ARI_VALIDATE_SITE_ACCESS', NULL,cust_site_rec.org_id)) then
66: --site access question is set at the org id in secuirty profile, then set that org as cust_site_org_id
67: cust_site_org_id := cust_site_rec.org_id;
68: EXIT;
69: end if;

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

70: END LOOP;
71: end if;
72: end if;
73:
74: IF(FUN_RULE_OBJECTS_PUB.rule_object_instance_exists(222,'ARI_VALIDATE_SITE_ACCESS', NULL,cust_site_org_id)) THEN
75:
76: FUN_RULE_PUB.SET_INSTANCE_CONTEXT('ARI_VALIDATE_SITE_ACCESS', 'AR', NULL, cust_site_org_id );
77: FUN_RULE_PUB.init_parameter_list;
78: FUN_RULE_PUB.add_parameter('ARI_CUSTOMER_ID', p_customer_id);