DBA Data[Home] [Help]

APPS.WMA_MOVE dependencies on WIP_SERIAL_MOVE_INTERFACE

Line 117: -- serial txns, so need to insert record into WIP_SERIAL_MOVE_INTERFACE too

113: END IF;
114:
115: -- Only call the API's below for serial txns
116: IF(parameters.isFromSerializedPage = WIP_CONSTANTS.YES) THEN
117: -- serial txns, so need to insert record into WIP_SERIAL_MOVE_INTERFACE too
118: IF(insertSerial(groupID => moveRecord.row.group_id,
119: transactionID => moveRecord.row.transaction_id,
120: serialNumber => parameters.serial,
121: errMessage => error) = FALSE) THEN

Line 1517: * This function inserts into the WIP_SERIAL_MOVE_INTERFACE table with values

1513: return false;
1514: END put;
1515:
1516: /**
1517: * This function inserts into the WIP_SERIAL_MOVE_INTERFACE table with values
1518: * selected from wip_move_txn_interface table
1519: *
1520: * Parameters:
1521: * transactionID The transaction_id in wip_move_txn_interface table

Line 1532: insert into wip_serial_move_interface

1528: serialNumber IN VARCHAR2,
1529: errMessage IN OUT NOCOPY VARCHAR2)
1530: return boolean IS
1531: BEGIN
1532: insert into wip_serial_move_interface
1533: (transaction_id,
1534: assembly_serial_number,
1535: creation_date,
1536: created_by,