DBA Data[Home] [Help]

APPS.WMA_MOVE dependencies on WIP_MOVE_TXN_INTERFACE

Line 55: * WIP_MOVE_TXN_INTERFACE table.

51: );
52:
53: /**
54: * This is the record type for the record to be inserted into
55: * WIP_MOVE_TXN_INTERFACE table.
56: */
57: TYPE MoveTxnRec IS RECORD (row wip_move_txn_interface%ROWTYPE);
58:
59: PROCEDURE process(parameters IN OUT NOCOPY MoveParam,

Line 57: TYPE MoveTxnRec IS RECORD (row wip_move_txn_interface%ROWTYPE);

53: /**
54: * This is the record type for the record to be inserted into
55: * WIP_MOVE_TXN_INTERFACE table.
56: */
57: TYPE MoveTxnRec IS RECORD (row wip_move_txn_interface%ROWTYPE);
58:
59: PROCEDURE process(parameters IN OUT NOCOPY MoveParam,
60: status OUT NOCOPY NUMBER,
61: errMessage OUT NOCOPY VARCHAR2);

Line 183: * Inserts a populated MoveTxnRec into WIP_MOVE_TXN_INTERFACE

179: parameters IN MoveParam,
180: errMessage IN OUT NOCOPY VARCHAR2) RETURN BOOLEAN;
181:
182: /**
183: * Inserts a populated MoveTxnRec into WIP_MOVE_TXN_INTERFACE
184: */
185: FUNCTION put(moveRecord IN MoveTxnRec,
186: errMessage IN OUT NOCOPY VARCHAR2) RETURN BOOLEAN;
187: /**

Line 189: * selected from wip_move_txn_interface table

185: FUNCTION put(moveRecord IN MoveTxnRec,
186: errMessage IN OUT NOCOPY VARCHAR2) RETURN BOOLEAN;
187: /**
188: * This function inserts into the WIP_SERIAL_MOVE_INTERFACE table with values
189: * selected from wip_move_txn_interface table
190: *
191: * Parameters:
192: * groupID The group_id in wip_move_txn_interface table
193: * transactionID The transaction_id in wip_move_txn_interface table

Line 192: * groupID The group_id in wip_move_txn_interface table

188: * This function inserts into the WIP_SERIAL_MOVE_INTERFACE table with values
189: * selected from wip_move_txn_interface table
190: *
191: * Parameters:
192: * groupID The group_id in wip_move_txn_interface table
193: * transactionID The transaction_id in wip_move_txn_interface table
194: * serialNumber The serial number
195: * Return:
196: * boolean A flag indicating whether update successful or not.

Line 193: * transactionID The transaction_id in wip_move_txn_interface table

189: * selected from wip_move_txn_interface table
190: *
191: * Parameters:
192: * groupID The group_id in wip_move_txn_interface table
193: * transactionID The transaction_id in wip_move_txn_interface table
194: * serialNumber The serial number
195: * Return:
196: * boolean A flag indicating whether update successful or not.
197: */