DBA Data[Home] [Help]

APPS.BOM_RTG_GLOBALS dependencies on BOM_OPERATIONAL_ROUTINGS

Line 1673: l_pend_from_ecn BOM_OPERATIONAL_ROUTINGS.pending_from_ecn%TYPE;

1669: ****************************************************************************/
1670: FUNCTION Get_Routing_Header_ECN
1671: ( p_routing_seq_id IN NUMBER ) RETURN VARCHAR2
1672: IS
1673: l_pend_from_ecn BOM_OPERATIONAL_ROUTINGS.pending_from_ecn%TYPE;
1674: BEGIN
1675: SELECT pending_from_ecn
1676: INTO l_pend_from_ecn
1677: FROM bom_operational_routings

Line 1677: FROM bom_operational_routings

1673: l_pend_from_ecn BOM_OPERATIONAL_ROUTINGS.pending_from_ecn%TYPE;
1674: BEGIN
1675: SELECT pending_from_ecn
1676: INTO l_pend_from_ecn
1677: FROM bom_operational_routings
1678: WHERE routing_sequence_id = p_routing_seq_id;
1679: IF l_pend_from_ecn IS NOT NULL THEN
1680: RETURN l_pend_from_ecn;
1681: ELSE