DBA Data[Home] [Help]

APPS.WSH_DD_TXNS_PVT dependencies on WSH_DELIVERY_DETAILS

Line 134: -- Description: This procedure will copy the attributes of a delivery detail in wsh_delivery_details

130:
131: -- Procedure: Get_DD_Snapshot
132: -- Parameters: x_dd_txn_info: A record of all attributes of a DD Txn Record
133: -- p_delivery_detail_id : Delivery detail id for which the record to be populated.
134: -- Description: This procedure will copy the attributes of a delivery detail in wsh_delivery_details
135: -- and copy it to a dd transaction record.
136:
137: PROCEDURE Get_DD_Snapshot (p_delivery_detail_id IN NUMBER,
138: x_dd_txn_info OUT NOCOPY DD_Txn_Rec_Type,

Line 151: wsh_delivery_details

147: REQUESTED_QUANTITY_UOM2,
148: PICKED_QUANTITY,
149: PICKED_QUANTITY2
150: FROM
151: wsh_delivery_details
152: WHERE delivery_detail_id = p_delivery_detail_id;
153:
154:
155: