DBA Data[Home] [Help]

APPS.RCV_ROI_HEADER dependencies on RCV_CORE_S

Line 268: --rcv_core_s.default_shipment_info (p_header_record);

264: IF (g_asn_debug = 'Y') THEN
265: asn_debug.put_line('Into default shipment info');
266: END IF;
267:
268: --rcv_core_s.default_shipment_info (p_header_record);
269: default_shipment_info(p_header_record);
270: END IF;
271:
272: IF (g_asn_debug = 'Y') THEN

Line 525: --rcv_core_s.derive_shipment_info(p_header_record);

521: IF (g_asn_debug = 'Y') THEN
522: asn_debug.put_line('Derive shipment info for CANCEL or Receive against an ASN');
523: END IF;
524:
525: --rcv_core_s.derive_shipment_info(p_header_record);
526: derive_shipment_info(p_header_record);
527: END IF;
528: END derive_shipment_header_id;
529:

Line 1261: -- rcv_core_s.validate_shipment_number(p_header_record);

1257: END IF; --}
1258:
1259: /* Validations on shipment number */
1260: IF p_header_record.error_record.error_status IN('S', 'W') THEN
1261: -- rcv_core_s.validate_shipment_number(p_header_record);
1262: validate_shipment_number(p_header_record);
1263:
1264: IF p_header_record.error_record.error_status = 'E' THEN --{
1265: IF p_header_record.error_record.error_message IN('RCV_NO_MATCHING_ASN', 'RCV_ASN_MISMATCH_SHIP_ID', 'RCV_ASN_QTY_RECEIVED') THEN --{

Line 1450: IF NOT rcv_core_s.val_unique_shipment_num(p_header_record.header_record.shipment_num, p_header_record.header_record.vendor_id) THEN

1446: Standard Receipts. Used the same logic of Enter Receipt form to check
1447: the uniqueness */
1448: IF p_header_record.header_record.transaction_type = 'NEW'
1449: AND p_header_record.header_record.asn_type IN('STD') THEN
1450: IF NOT rcv_core_s.val_unique_shipment_num(p_header_record.header_record.shipment_num, p_header_record.header_record.vendor_id) THEN
1451: p_header_record.error_record.error_status := 'E';
1452: p_header_record.error_record.error_message := 'RCV_DUP_SHIPMENT_NUM';
1453: RETURN;
1454: END IF;