DBA Data[Home] [Help]

APPS.EAM_OTL_TIMECARD_PUB dependencies on WIP_OPERATION_RESOURCES

Line 276: -- Besides the process will also insert or delete data from WIP_OPERATION_RESOURCES and

272:
273:
274: -- Procedure for performing Resource Transaction
275: -- This procedure will insert data into WIP_COST_TXN_INTERFACE table for Cost Manager to process
276: -- Besides the process will also insert or delete data from WIP_OPERATION_RESOURCES and
277: -- WIP_OPERATION_RES_INSTANCES, in case we are trying to reverse certain transactions
278:
279: PROCEDURE perform_res_txn (p_wip_entity_id IN NUMBER,
280: p_operation_seq_num IN NUMBER,

Line 372: from wip_operation_resources

368: if (l_workorder is not null AND l_operation is not null) then
369:
370: select nvl((max(resource_seq_num) + 10),10)
371: into l_resource_seq_num
372: from wip_operation_resources
373: where wip_entity_id = l_workorder
374: and operation_seq_num = l_operation;
375:
376: end if;