DBA Data[Home] [Help]

APPS.FEM_BR_DATA_INSPECTOR_PVT dependencies on FEM_DATA_INSPECTORS

Line 140: -- in the FEM_DATA_INSPECTORS table.

136: -- DeleteDataInspector
137: --
138: -- DESCRIPTION
139: -- Deletes a Data Inspector Rule Definition by performing deletes on records
140: -- in the FEM_DATA_INSPECTORS table.
141: --
142: -- IN
143: -- p_obj_def_id - Object Definition ID.
144: --

Line 153: delete from fem_data_inspectors

149: --------------------------------------------------------------------------------
150: IS
151: BEGIN
152:
153: delete from fem_data_inspectors
154: where data_inspector_obj_def_id = p_obj_def_id;
155:
156: END DeleteDataInspector;
157:

Line 190: -- FEM_DATA_INSPECTORS table.

186: -- CopyDataInspector
187: --
188: -- DESCRIPTION
189: -- Creates a new Data Inspector Rule Definition by copying records in the
190: -- FEM_DATA_INSPECTORS table.
191: --
192: -- IN
193: -- p_source_obj_def_id - Source Object Definition ID.
194: -- p_target_obj_def_id - Target Object Definition ID.

Line 209: insert into fem_data_inspectors(

205: --------------------------------------------------------------------------------
206: IS
207: BEGIN
208:
209: insert into fem_data_inspectors(
210: data_inspector_obj_def_id
211: ,table_name
212: ,num_rows
213: ,condition_obj_id

Line 231: from fem_data_inspectors

227: ,FND_GLOBAL.user_id
228: ,sysdate
229: ,FND_GLOBAL.login_id
230: ,1
231: from fem_data_inspectors
232: where data_inspector_obj_def_id = p_source_obj_def_id;
233:
234: END CopyDataInspector;
235: