DBA Data[Home] [Help]

APPS.FND_ACCESS_CONTROL_UTIL dependencies on DBMS_RLS

Line 99: -- This is a wrapper for the DBMS_RLS.Add_Policy procedure

95: --
96: -- Name
97: -- Add_Policy
98: -- Purpose
99: -- This is a wrapper for the DBMS_RLS.Add_Policy procedure
100: -- This procedure will check if a policy exists before
101: -- adding a policy
102: -- The add_policy procedure should be executed in the en phase
103: -- during AutoInstall processing

Line 146: -- This is a wrapper for the DBMS_RLS.Drop_Policy procedure

142: --
143: -- Name
144: -- Drop_Policy
145: -- Purpose
146: -- This is a wrapper for the DBMS_RLS.Drop_Policy procedure
147: -- This procedure will check if a policy exists before
148: -- droping a policy
149: -- The drop_policy procedure should be executed in the con phase
150: -- during AutoInstall processing

Line 168: DBMS_RLS.DROP_POLICY(

164: IF policy_exists( p_object_schema
165: , p_object_name
166: , p_policy_name ) = 'TRUE'
167: THEN
168: DBMS_RLS.DROP_POLICY(
169: p_object_schema
170: , p_object_name
171: , p_policy_name
172: );

Line 181: -- This is a wrapper for the DBMS_RLS.Add_Policy procedure

177: --
178: -- Name
179: -- Add_Policy
180: -- Purpose
181: -- This is a wrapper for the DBMS_RLS.Add_Policy procedure
182: -- This procedure will check if a policy exists before
183: -- adding a policy
184: -- The add_policy procedure should be executed in the en phase
185: -- during AutoInstall processing

Line 216: DBMS_RLS.DROP_POLICY(

212: IF policy_exists( p_object_schema
213: , p_object_name
214: , p_policy_name ) = 'TRUE'
215: THEN
216: DBMS_RLS.DROP_POLICY(
217: p_object_schema
218: , p_object_name
219: , p_policy_name
220: );

Line 223: DBMS_RLS.ADD_POLICY(

219: , p_policy_name
220: );
221: END IF;
222:
223: DBMS_RLS.ADD_POLICY(
224: p_object_schema
225: , p_object_name
226: , p_policy_name
227: , p_function_schema