DBA Data[Home] [Help]

APPS.FEM_BR_DATA_INSPECTOR_PVT dependencies on FEM_DATA_INSPECTOR_COLS

Line 165: -- in the FEM_DATA_INSPECTOR_COLS table.

161: -- DeleteDataInspectorCols
162: --
163: -- DESCRIPTION
164: -- Deletes a Data Inspector Rule Definition by performing deletes on records
165: -- in the FEM_DATA_INSPECTOR_COLS table.
166: --
167: -- IN
168: -- p_obj_def_id - Object Definition ID.
169: --

Line 178: delete from fem_data_inspector_cols

174: --------------------------------------------------------------------------------
175: IS
176: BEGIN
177:
178: delete from fem_data_inspector_cols
179: where data_inspector_obj_def_id = p_obj_def_id;
180:
181: END DeleteDataInspectorCols;
182:

Line 244: -- FEM_DATA_INSPECTOR_COLS table.

240: -- CopyDataInspectorCols
241: --
242: -- DESCRIPTION
243: -- Creates a new Data Inspector Rule Definition by copying records in the
244: -- FEM_DATA_INSPECTOR_COLS table.
245: --
246: -- IN
247: -- p_source_obj_def_id - Source Object Definition ID.
248: -- p_target_obj_def_id - Target Object Definition ID.

Line 263: insert into fem_data_inspector_cols(

259: --------------------------------------------------------------------------------
260: IS
261: BEGIN
262:
263: insert into fem_data_inspector_cols(
264: data_inspector_obj_def_id
265: ,table_name
266: ,column_name
267: ,display_sequence

Line 291: from fem_data_inspector_cols

287: ,FND_GLOBAL.user_id
288: ,sysdate
289: ,FND_GLOBAL.login_id
290: ,1
291: from fem_data_inspector_cols
292: where data_inspector_obj_def_id = p_source_obj_def_id;
293:
294: END CopyDataInspectorCols;
295: