DBA Data[Home] [Help]

APPS.FEM_BR_DATASET_GROUP_PVT dependencies on FEM_DS_INPUT_LISTS

Line 165: -- in the FEM_DS_INPUT_LISTS table.

161: -- DeleteInputDatasets
162: --
163: -- DESCRIPTION
164: -- Deletes a Dataset Group Rule Definition by performing deletes on records
165: -- in the FEM_DS_INPUT_LISTS table.
166: --
167: -- IN
168: -- p_obj_def_id - Object Definition ID.
169: --

Line 178: delete from fem_ds_input_lists

174: --------------------------------------------------------------------------------
175: IS
176: BEGIN
177:
178: delete from fem_ds_input_lists
179: where dataset_io_obj_def_id = p_obj_def_id;
180:
181: END DeleteInputDatasets;
182:

Line 242: -- FEM_DS_INPUT_LISTS table.

238: -- CopyInputDatasets
239: --
240: -- DESCRIPTION
241: -- Creates a new Dataset Group Rule Definition by copying records in the
242: -- FEM_DS_INPUT_LISTS table.
243: --
244: -- IN
245: -- p_source_obj_def_id - Source Object Definition ID.
246: -- p_target_obj_def_id - Target Object Definition ID.

Line 261: insert into fem_ds_input_lists(

257: --------------------------------------------------------------------------------
258: IS
259: BEGIN
260:
261: insert into fem_ds_input_lists(
262: dataset_io_obj_def_id
263: ,input_list_item_num
264: ,input_dataset_code
265: ,absolute_cal_period_flag

Line 291: from fem_ds_input_lists

287: ,FND_GLOBAL.user_id
288: ,sysdate
289: ,FND_GLOBAL.login_id
290: ,1
291: from fem_ds_input_lists
292: where dataset_io_obj_def_id = p_source_obj_def_id;
293:
294: END CopyInputDatasets;
295: