DBA Data[Home] [Help]

APPS.OKE_DTS_INTEGRATION_PKG dependencies on WSH_INTERFACE

Line 927: WSH_interface_pub.create_shipment_lines(l_ship_rec, l_id, l_return_status);

923: END IF;
924: /* Bug 6011322 end */
925:
926: -- call api
927: WSH_interface_pub.create_shipment_lines(l_ship_rec, l_id, l_return_status);
928:
929: if l_return_status = oke_api.g_ret_sts_success then
930: -- update deliverable table
931: update oke_k_deliverables_b

Line 2523: l_changed_attributes WSH_INTERFACE.ChangedAttributeTabType;

2519: ) IS
2520: l_header_id NUMBER;
2521: l_shipping_request_id NUMBER;
2522: l_uom_code VARCHAR2(3);
2523: l_changed_attributes WSH_INTERFACE.ChangedAttributeTabType;
2524:
2525: CURSOR dlvbl_c IS
2526: SELECT k_header_id, uom_code, shipping_request_id
2527: FROM oke_k_deliverables_b

Line 2549: WSH_INTERFACE.Update_Shipping_Attributes (

2545: l_changed_attributes(1).order_quantity_uom := l_uom_code;
2546: l_changed_attributes(1).source_code := 'OKE';
2547: l_changed_attributes(1).action_flag := 'U';
2548: l_changed_attributes(1).ordered_quantity := 0;
2549: WSH_INTERFACE.Update_Shipping_Attributes (
2550: p_source_code => 'OKE',
2551: p_changed_attributes => l_changed_attributes,
2552: x_return_status => X_RETURN_STATUS
2553: );