DBA Data[Home] [Help]

APPS.FEM_BR_DATASET_GROUP_PVT dependencies on FEM_DS_INPUT_OUTPUT_DEFS

Line 140: -- in the FEM_DS_INPUT_OUTPUT_DEFS table.

136: -- DeleteDatasetGroup
137: --
138: -- DESCRIPTION
139: -- Deletes a Dataset Group Rule Definition by performing deletes on records
140: -- in the FEM_DS_INPUT_OUTPUT_DEFS table.
141: --
142: -- IN
143: -- p_obj_def_id - Object Definition ID.
144: --

Line 153: delete from fem_ds_input_output_defs

149: --------------------------------------------------------------------------------
150: IS
151: BEGIN
152:
153: delete from fem_ds_input_output_defs
154: where dataset_io_obj_def_id = p_obj_def_id;
155:
156: END DeleteDatasetGroup;
157:

Line 190: -- FEM_DS_INPUT_OUTPUT_DEFS table.

186: -- CopyDatasetGroup
187: --
188: -- DESCRIPTION
189: -- Creates a new Dataset Group Rule Definition by copying records in the
190: -- FEM_DS_INPUT_OUTPUT_DEFS 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_ds_input_output_defs(

205: --------------------------------------------------------------------------------
206: IS
207: BEGIN
208:
209: insert into fem_ds_input_output_defs(
210: dataset_io_obj_def_id
211: ,output_dataset_code
212: ,calendar_id
213: ,created_by

Line 229: from fem_ds_input_output_defs

225: ,FND_GLOBAL.user_id
226: ,sysdate
227: ,FND_GLOBAL.login_id
228: ,1
229: from fem_ds_input_output_defs
230: where dataset_io_obj_def_id = p_source_obj_def_id;
231:
232: END CopyDatasetGroup;
233: