DBA Data[Home] [Help]

APPS.RCV_SHIPMENT_HEADER_SV dependencies on RCV_SHIPMENT_OBJECT_SV

Line 5: (header_record rcv_shipment_object_sv.c1%rowtype,

1: PACKAGE RCV_SHIPMENT_HEADER_SV AUTHID CURRENT_USER as
2: /* $Header: RCVSHCS.pls 115.1 2002/11/23 01:00:20 sbull ship $ */
3:
4: TYPE headerrectype IS RECORD
5: (header_record rcv_shipment_object_sv.c1%rowtype,
6: error_record rcv_shipment_object_sv.errorrectype);
7:
8: TYPE VendorRecType IS RECORD (vendor_name po_vendors.vendor_name%type,
9: vendor_num po_vendors.segment1%type,

Line 6: error_record rcv_shipment_object_sv.errorrectype);

2: /* $Header: RCVSHCS.pls 115.1 2002/11/23 01:00:20 sbull ship $ */
3:
4: TYPE headerrectype IS RECORD
5: (header_record rcv_shipment_object_sv.c1%rowtype,
6: error_record rcv_shipment_object_sv.errorrectype);
7:
8: TYPE VendorRecType IS RECORD (vendor_name po_vendors.vendor_name%type,
9: vendor_num po_vendors.segment1%type,
10: vendor_id po_vendors.vendor_id%type,

Line 11: error_record rcv_shipment_object_sv.ErrorRecType);

7:
8: TYPE VendorRecType IS RECORD (vendor_name po_vendors.vendor_name%type,
9: vendor_num po_vendors.segment1%type,
10: vendor_id po_vendors.vendor_id%type,
11: error_record rcv_shipment_object_sv.ErrorRecType);
12:
13: TYPE VendorSiteRecType IS RECORD (vendor_site_code po_vendor_sites.vendor_site_code%type,
14: vendor_id po_vendors.vendor_id%type,
15: vendor_site_id po_vendor_sites.vendor_site_id%type,

Line 18: error_record rcv_shipment_object_sv.ErrorRecType);

14: vendor_id po_vendors.vendor_id%type,
15: vendor_site_id po_vendor_sites.vendor_site_id%type,
16: organization_id org_organization_definitions.organization_id%type,
17: document_type rcv_shipment_headers.asn_type%type,
18: error_record rcv_shipment_object_sv.ErrorRecType);
19:
20: TYPE PayRecType IS RECORD (payment_term_id ap_terms.term_id%type,
21: payment_term_name ap_terms.name%type,
22: error_record rcv_shipment_object_sv.ErrorRecType);

Line 22: error_record rcv_shipment_object_sv.ErrorRecType);

18: error_record rcv_shipment_object_sv.ErrorRecType);
19:
20: TYPE PayRecType IS RECORD (payment_term_id ap_terms.term_id%type,
21: payment_term_name ap_terms.name%type,
22: error_record rcv_shipment_object_sv.ErrorRecType);
23:
24: TYPE FreightRecType IS RECORD (freight_carrier_code org_freight.freight_code%type,
25: organization_id org_freight.organization_id%type,
26: error_record rcv_shipment_object_sv.ErrorRecType);

Line 26: error_record rcv_shipment_object_sv.ErrorRecType);

22: error_record rcv_shipment_object_sv.ErrorRecType);
23:
24: TYPE FreightRecType IS RECORD (freight_carrier_code org_freight.freight_code%type,
25: organization_id org_freight.organization_id%type,
26: error_record rcv_shipment_object_sv.ErrorRecType);
27:
28: TYPE LookupRecType IS RECORD (lookup_code po_lookup_codes.lookup_code%type,
29: lookup_type po_lookup_codes.lookup_type%type,
30: error_record rcv_shipment_object_sv.ErrorRecType);

Line 30: error_record rcv_shipment_object_sv.ErrorRecType);

26: error_record rcv_shipment_object_sv.ErrorRecType);
27:
28: TYPE LookupRecType IS RECORD (lookup_code po_lookup_codes.lookup_code%type,
29: lookup_type po_lookup_codes.lookup_type%type,
30: error_record rcv_shipment_object_sv.ErrorRecType);
31:
32: TYPE CurRecType IS RECORD (currency_code fnd_currencies.currency_code%type,
33: error_record rcv_shipment_object_sv.ErrorRecType);
34:

Line 33: error_record rcv_shipment_object_sv.ErrorRecType);

29: lookup_type po_lookup_codes.lookup_type%type,
30: error_record rcv_shipment_object_sv.ErrorRecType);
31:
32: TYPE CurRecType IS RECORD (currency_code fnd_currencies.currency_code%type,
33: error_record rcv_shipment_object_sv.ErrorRecType);
34:
35: TYPE InvRecType IS RECORD (
36: total_invoice_amount rcv_headers_interface.total_invoice_amount%type,
37: vendor_id po_vendors.vendor_id%type,

Line 39: error_record rcv_shipment_object_sv.ErrorRecType);

35: TYPE InvRecType IS RECORD (
36: total_invoice_amount rcv_headers_interface.total_invoice_amount%type,
37: vendor_id po_vendors.vendor_id%type,
38: vendor_site_id po_vendor_sites.vendor_site_id%type,
39: error_record rcv_shipment_object_sv.ErrorRecType);
40:
41: TYPE TaxRecType IS RECORD (
42: tax_name ap_tax_codes.name%type,
43: tax_amount rcv_headers_interface.tax_amount%type,

Line 44: error_record rcv_shipment_object_sv.ErrorRecType);

40:
41: TYPE TaxRecType IS RECORD (
42: tax_name ap_tax_codes.name%type,
43: tax_amount rcv_headers_interface.tax_amount%type,
44: error_record rcv_shipment_object_sv.ErrorRecType);
45:
46: /*===========================================================================+
47: | |
48: | PROCEDURE NAME: create_shipment_header() |