DBA Data[Home] [Help]

VIEW: APPS.WIP_LINE_OPERATIONS_V

Source

View Text - Preformatted

SELECT WL.line_code ||':'|| bso.operation_code "NODE_LABEL", OOD.organization_code, OOD.organization_id, WL.line_code, WL.line_id, BSO.operation_code, BSO.standard_operation_id, bso.minimum_transfer_quantity, bso.operation_description, wl.description "LINE_DESCRIPTION" from bom_standard_operations BSO, org_organization_definitions OOD, wip_lines WL WHERE OOD.organization_id = WL.organization_id and BSO.line_id = WL.line_id and BSO.organization_id = WL.organization_id and BSO.operation_type = 3 /* line op */
View Text - HTML Formatted

SELECT WL.LINE_CODE ||':'|| BSO.OPERATION_CODE "NODE_LABEL"
, OOD.ORGANIZATION_CODE
, OOD.ORGANIZATION_ID
, WL.LINE_CODE
, WL.LINE_ID
, BSO.OPERATION_CODE
, BSO.STANDARD_OPERATION_ID
, BSO.MINIMUM_TRANSFER_QUANTITY
, BSO.OPERATION_DESCRIPTION
, WL.DESCRIPTION "LINE_DESCRIPTION"
FROM BOM_STANDARD_OPERATIONS BSO
, ORG_ORGANIZATION_DEFINITIONS OOD
, WIP_LINES WL
WHERE OOD.ORGANIZATION_ID = WL.ORGANIZATION_ID
AND BSO.LINE_ID = WL.LINE_ID
AND BSO.ORGANIZATION_ID = WL.ORGANIZATION_ID
AND BSO.OPERATION_TYPE = 3 /* LINE OP */