DBA Data[Home] [Help]

PACKAGE: APPS.INV_3PL_BILLING_PUB

Source


1 PACKAGE INV_3PL_BILLING_PUB AUTHID CURRENT_USER AS
2 /* $Header: INVPBLRS.pls 120.1 2010/05/25 11:03:22 damahaja noship $ */
3 
4     TYPE source_rec_type IS RECORD
5         (   client_code            mtl_client_parameters.client_code%TYPE,
6             client_id              mtl_client_parameters.client_id%TYPE,
7             client_number          mtl_client_parameters.client_number%TYPE,
8             client_name            hz_parties.party_name%TYPE,
9             operating_unit         org_organization_definitions.operating_unit%TYPE,
10             last_invoice_date      oks_level_elements.date_transaction%TYPE,
11             last_interface_date    oks_level_elements.date_to_interface%TYPE,
12             billing_uom            mtl_units_of_measure_vl.uom_code%TYPE,
13             last_reading           csi_counter_readings.net_reading%TYPE,
14             last_computation_Date  csi_counter_readings.value_timestamp%TYPE,
15             service_line_start_date okc_k_lines_b.start_date%TYPE,
16             source_to_date          DATE
17         );
18 
19     g_billing_source_rec source_rec_type;
20 
21     FUNCTION set_billing_source_rec
22             (
23                 p_billing_source_rec source_rec_type
24             ) RETURN BOOLEAN;
25 
26 END INV_3PL_BILLING_PUB;