DBA Data[Home] [Help]

PACKAGE: APPS.RCV_SHIPMENT_HEADER_SV

Source


1 PACKAGE RCV_SHIPMENT_HEADER_SV AUTHID CURRENT_USER as
2 /* $Header: RCVSHCS.pls 120.0.12010000.1 2008/07/24 14:36:53 appldev 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,
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,
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);
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);
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,
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,
44          error_record rcv_shipment_object_sv.ErrorRecType);
45 
46 /*===========================================================================+
47  |                                                                           |
48  | PROCEDURE NAME:          create_shipment_header()                         |
49  |                                                                           |
50  +===========================================================================*/
51 
52  procedure create_shipment_header (x_header_record in out NOCOPY rcv_shipment_header_sv.Headerrectype);
53 
54 /*===========================================================================+
55  |                                                                           |
56  | PROCEDURE NAME:          cancel_shipment()                                |
57  |                                                                           |
58  | Created by Raj Bhakta 07/09/97                                            |
59  +===========================================================================*/
60 
61  procedure cancel_shipment (x_header_record in out NOCOPY rcv_shipment_header_sv.Headerrectype);
62 
63 END RCV_SHIPMENT_HEADER_SV;