DBA Data[Home] [Help]

APPS.OE_WF_UPGRADE_UTIL dependencies on OE_LINE_STATUS_PUB

Line 309: OE_Line_Status_Pub.Get_Ship_Status(to_number(itemkey), l_ship_status);

305: if (funcmode = 'RUN') then
306:
307: IF OE_STANDARD_WF.G_UPGRADE_MODE THEN -- Upgrade in progress. Check if Order is already shipped.
308:
309: OE_Line_Status_Pub.Get_Ship_Status(to_number(itemkey), l_ship_status);
310:
311: IF (l_ship_status = 'Y') THEN
312: resultout := 'COMPLETE:Y';
313: update oe_order_lines_all

Line 475: OE_LINE_STATUS_PUB.GET_RECEIVED_STATUS(to_number(itemkey), l_received_status);

471: if (funcmode = 'RUN') then
472:
473: IF OE_STANDARD_WF.G_UPGRADE_MODE THEN -- Upgrade in progress. Check if return already shipped
474:
475: OE_LINE_STATUS_PUB.GET_RECEIVED_STATUS(to_number(itemkey), l_received_status);
476:
477: IF (l_received_status = 'Y') THEN
478: resultout := 'COMPLETE:Y';
479: update oe_order_lines_all

Line 825: OE_LINE_STATUS_PUB.GET_CLOSED_STATUS(to_number(itemkey), l_closed_status);

821: if (funcmode = 'RUN') then
822:
823: IF OE_STANDARD_WF.G_UPGRADE_MODE THEN -- Upgrade in progress. Check if Order Line is already closed.
824:
825: OE_LINE_STATUS_PUB.GET_CLOSED_STATUS(to_number(itemkey), l_closed_status);
826:
827: IF (l_closed_status = 'Y') THEN
828: resultout := 'COMPLETE:Y';
829: ELSE