DBA Data[Home] [Help]

PACKAGE: APPS.PO_COPYDOC_S3

Source


1 PACKAGE po_copydoc_s3 AS
2 /* $Header: POXCPO3S.pls 120.1 2005/09/13 17:57:16 spangulu noship $*/
3 /*  Functionality for PA->RFQ Copy : dreddy
4     new parameter copy_price is passed */
5 PROCEDURE validate_line(
6   x_action_code         IN      VARCHAR2,
7   x_to_doc_subtype      IN      po_headers.type_lookup_code%TYPE,
8   x_po_line_record      IN OUT NOCOPY  po_lines%ROWTYPE,
9   x_orig_po_line_id     IN      po_lines.po_line_id%TYPE,
10   x_wip_install_status  IN      VARCHAR2,
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   x_po_header_id        IN      po_lines.po_header_id%TYPE,
14   x_online_report_id    IN      po_online_report_text.online_report_id%TYPE,
15   x_sequence            IN OUT NOCOPY  po_online_report_text.sequence%TYPE,
16   x_copy_price          IN      BOOLEAN,
17   x_return_code         OUT NOCOPY     NUMBER,
18   p_is_complex_work_po  IN      BOOLEAN    -- <Complex Work R12>
19 );
20 
21 END po_copydoc_s3;