DBA Data[Home] [Help]

APPS.PO_COPYDOC_S1 dependencies on PO_HEADERS

Line 12: x_to_doc_subtype IN po_headers.type_lookup_code%TYPE,

8: /* Functionality for PA->RFQ Copy : dreddy
9: new parameter copy_price is added */
10: PROCEDURE copy_document(
11: x_action_code IN VARCHAR2,
12: x_to_doc_subtype IN po_headers.type_lookup_code%TYPE,
13: x_to_global_flag IN PO_HEADERS_ALL.global_agreement_flag%TYPE, -- GA
14: x_copy_attachments IN BOOLEAN,
15: x_copy_price IN BOOLEAN,
16: x_from_po_header_id IN po_headers.po_header_id%TYPE,

Line 13: x_to_global_flag IN PO_HEADERS_ALL.global_agreement_flag%TYPE, -- GA

9: new parameter copy_price is added */
10: PROCEDURE copy_document(
11: x_action_code IN VARCHAR2,
12: x_to_doc_subtype IN po_headers.type_lookup_code%TYPE,
13: x_to_global_flag IN PO_HEADERS_ALL.global_agreement_flag%TYPE, -- GA
14: x_copy_attachments IN BOOLEAN,
15: x_copy_price IN BOOLEAN,
16: x_from_po_header_id IN po_headers.po_header_id%TYPE,
17: x_to_po_header_id OUT NOCOPY po_headers.po_header_id%TYPE,

Line 16: x_from_po_header_id IN po_headers.po_header_id%TYPE,

12: x_to_doc_subtype IN po_headers.type_lookup_code%TYPE,
13: x_to_global_flag IN PO_HEADERS_ALL.global_agreement_flag%TYPE, -- GA
14: x_copy_attachments IN BOOLEAN,
15: x_copy_price IN BOOLEAN,
16: x_from_po_header_id IN po_headers.po_header_id%TYPE,
17: x_to_po_header_id OUT NOCOPY po_headers.po_header_id%TYPE,
18: x_online_report_id OUT NOCOPY po_online_report_text.online_report_id%TYPE,
19: x_to_segment1 IN OUT NOCOPY po_headers.segment1%TYPE,
20: x_agent_id IN po_headers.agent_id%TYPE,

Line 17: x_to_po_header_id OUT NOCOPY po_headers.po_header_id%TYPE,

13: x_to_global_flag IN PO_HEADERS_ALL.global_agreement_flag%TYPE, -- GA
14: x_copy_attachments IN BOOLEAN,
15: x_copy_price IN BOOLEAN,
16: x_from_po_header_id IN po_headers.po_header_id%TYPE,
17: x_to_po_header_id OUT NOCOPY po_headers.po_header_id%TYPE,
18: x_online_report_id OUT NOCOPY po_online_report_text.online_report_id%TYPE,
19: x_to_segment1 IN OUT NOCOPY po_headers.segment1%TYPE,
20: x_agent_id IN po_headers.agent_id%TYPE,
21: x_sob_id IN financials_system_parameters.set_of_books_id%TYPE,

Line 19: x_to_segment1 IN OUT NOCOPY po_headers.segment1%TYPE,

15: x_copy_price IN BOOLEAN,
16: x_from_po_header_id IN po_headers.po_header_id%TYPE,
17: x_to_po_header_id OUT NOCOPY po_headers.po_header_id%TYPE,
18: x_online_report_id OUT NOCOPY po_online_report_text.online_report_id%TYPE,
19: x_to_segment1 IN OUT NOCOPY po_headers.segment1%TYPE,
20: x_agent_id IN po_headers.agent_id%TYPE,
21: x_sob_id IN financials_system_parameters.set_of_books_id%TYPE,
22: x_inv_org_id IN financials_system_parameters.inventory_organization_id%TYPE,
23: x_wip_install_status IN VARCHAR2,

Line 20: x_agent_id IN po_headers.agent_id%TYPE,

16: x_from_po_header_id IN po_headers.po_header_id%TYPE,
17: x_to_po_header_id OUT NOCOPY po_headers.po_header_id%TYPE,
18: x_online_report_id OUT NOCOPY po_online_report_text.online_report_id%TYPE,
19: x_to_segment1 IN OUT NOCOPY po_headers.segment1%TYPE,
20: x_agent_id IN po_headers.agent_id%TYPE,
21: x_sob_id IN financials_system_parameters.set_of_books_id%TYPE,
22: x_inv_org_id IN financials_system_parameters.inventory_organization_id%TYPE,
23: x_wip_install_status IN VARCHAR2,
24: x_return_code OUT NOCOPY NUMBER,

Line 60: p_po_header_id PO_HEADERS_ALL.po_header_id%TYPE

56: /**
57: * Returns TRUE if the given PO has any drop shipments, FALSE otherwise.
58: **/
59: FUNCTION po_is_dropship (
60: p_po_header_id PO_HEADERS_ALL.po_header_id%TYPE
61: ) RETURN BOOLEAN;
62:
63:
64:

Line 68: p_po_header_id IN PO_HEADERS_ALL.po_header_id%TYPE

64:
65: --
66:
67: FUNCTION po_has_config_id(
68: p_po_header_id IN PO_HEADERS_ALL.po_header_id%TYPE
69: ) RETURN BOOLEAN;
70:
71: FUNCTION req_has_config_id(
72: p_requisition_header_id IN PO_REQUISITION_HEADERS_ALL.requisition_header_id%TYPE

Line 100: ,x_po_header_record IN OUT NOCOPY PO_HEADERS%ROWTYPE

96: p_level IN VARCHAR2
97: ,p_from_po_header_id IN NUMBER
98: ,p_from_pk_value IN NUMBER
99: ,p_to_pk_value IN NUMBER
100: ,x_po_header_record IN OUT NOCOPY PO_HEADERS%ROWTYPE
101: ,x_po_line_record IN OUT NOCOPY po_lines%ROWTYPE
102: ,x_po_shipment_record IN OUT NOCOPY PO_LINE_LOCATIONS%ROWTYPE
103: ,x_po_distribution_rec IN OUT NOCOPY PO_DISTRIBUTIONS%ROWTYPE
104: ,x_return_status OUT NOCOPY VARCHAR2