DBA Data[Home] [Help]

APPS.PO_COPYDOC_SUB dependencies on WIP_ENTITIES

Line 1766: from wip_entities

1762: IF x_wip_entity_id is NOT NULL and x_wip_line_id IS NULL THEN
1763: begin
1764: select entity_type
1765: into x_entity_type
1766: from wip_entities
1767: where wip_entity_id=x_wip_entity_id;
1768: exception
1769: when others then
1770: null;

Line 1775: from wip_entities we,

1771: end;
1772: if x_entity_type =6 then --6 stands for eAM work orders
1773: select count(*)
1774: into x_count
1775: from wip_entities we,
1776: wip_discrete_jobs wdj
1777: where we.wip_entity_id = wdj.wip_entity_id
1778: and we.entity_type = 6
1779: and wdj.status_type in (3,4,6);