DBA Data[Home] [Help]

APPS.RCV_ROI_HEADER dependencies on RCV_CORE_S

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

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

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

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

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

1283: END IF; --}
1284:
1285: /* Validations on shipment number */
1286: IF p_header_record.error_record.error_status IN('S', 'W') THEN
1287: -- rcv_core_s.validate_shipment_number(p_header_record);
1288: validate_shipment_number(p_header_record);
1289:
1290: IF p_header_record.error_record.error_status = 'E' THEN --{
1291: IF p_header_record.error_record.error_message IN('RCV_NO_MATCHING_ASN', 'RCV_ASN_MISMATCH_SHIP_ID', 'RCV_ASN_QTY_RECEIVED') THEN --{

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

1472: Standard Receipts. Used the same logic of Enter Receipt form to check
1473: the uniqueness */
1474: IF p_header_record.header_record.transaction_type = 'NEW'
1475: AND p_header_record.header_record.asn_type IN('STD') THEN
1476: IF NOT rcv_core_s.val_unique_shipment_num(p_header_record.header_record.shipment_num, p_header_record.header_record.vendor_id) THEN
1477: p_header_record.error_record.error_status := 'E';
1478: p_header_record.error_record.error_message := 'RCV_DUP_SHIPMENT_NUM';
1479: RETURN;
1480: END IF;