DBA Data[Home] [Help]

PACKAGE: APPS.PO_COPYDOC_S2

Source


1 PACKAGE po_copydoc_s2 AUTHID CURRENT_USER AS
2 /* $Header: POXCPO2S.pls 115.2 2002/11/25 23:36:08 sbull ship $*/
3 
4 PROCEDURE validate_header(
5   x_action_code             IN      VARCHAR2,
6   x_to_doc_subtype          IN      po_headers.type_lookup_code%TYPE,
7   x_to_global_flag	    IN	    po_headers_all.global_agreement_flag%TYPE,	-- GA
8   x_po_header_record        IN OUT NOCOPY  PO_HEADERS%ROWTYPE,
9   x_to_segment1             IN      po_headers.segment1%TYPE,
10   x_agent_id                IN      po_headers.agent_id%TYPE,
11   x_sob_id                  IN      financials_system_parameters.set_of_books_id%TYPE,
12   x_inv_org_id              IN      financials_system_parameters.inventory_organization_id%TYPE,
13 -- xkan  x_currency_code           IN      po_headers.currency_code%TYPE,
14 -- xkan  x_rate_type               IN      po_headers.rate_type%TYPE,
15 -- xkan  x_rate_date               IN      po_headers.rate_date%TYPE,
16 -- xkan  x_rate                    IN      po_headers.rate%TYPE,
17 -- xkan  x_vendor_id               IN      po_headers.vendor_id%TYPE,
18 -- xkan  x_vendor_site_id          IN      po_headers.vendor_site_id%TYPE,
19 -- xkan  x_vendor_contact_id       IN      po_headers.vendor_contact_id%TYPE,
20   x_online_report_id        IN      po_online_report_text.online_report_id%TYPE,
21   x_sequence                IN OUT NOCOPY  po_online_report_text.sequence%TYPE,
22   x_return_code             OUT NOCOPY     NUMBER
23 );
24 
25 END po_copydoc_s2;