DBA Data[Home] [Help]

APPS.RCV_TRANSACTIONS_SV dependencies on STANDARD

Line 15: 4. Standard receipts will be created for the ship-to location

11: receiving controls.
12: 2. Controls are only checked if the exception level is 'REJECT'
13: 3. Quantity tolerances are not checked. It is not possible to
14: over-receive an express receipt.
15: 4. Standard receipts will be created for the ship-to location
16: specified on the PO so the 'enforce ship-to location' control
17: is not tested.
18: 5. Routing controls are checked for both Vendor sourced and
19: intransit receipts.

Line 228: ** standard receipt or inspection required

224: transaction_ok := 0;
225:
226: /*
227: ** You can only do express receipt if routing is set to
228: ** standard receipt or inspection required
229: */
230: ELSIF (X_transaction_type = 'RECEIVE' AND
231: X_auto_transact_code = 'RECEIVE' AND
232: (X_routing_header_id IN (1, 2, 0))) THEN

Line 234: ** standard receipt is allowed

230: ELSIF (X_transaction_type = 'RECEIVE' AND
231: X_auto_transact_code = 'RECEIVE' AND
232: (X_routing_header_id IN (1, 2, 0))) THEN
233: /*
234: ** standard receipt is allowed
235: */
236: transaction_ok := 0;
237:
238: ELSE