DBA Data[Home] [Help]

PACKAGE: APPS.JG_ZZ_VAT_REP_ENTITIES_PKG

Source


1 package jg_zz_vat_rep_entities_pkg as
2 /*$Header: jgzzvres.pls 120.2 2006/06/23 12:24:35 brathod ship $*/
3 /* CHANGE HISTORY ------------------------------------------------------------------------------------------
4 DATE            AUTHOR       VERSION       BUG NO.         DESCRIPTION
5 (DD/MM/YYYY)    (UID)
6 ------------------------------------------------------------------------------------------------------------
7 23/6/2006       BRATHOD      120.2         5166688         Modified the signature of INSERT_ROW procedure in
8                                                            to return rowid to caller of API by adding out
9                                                            parameter in the call. Refer bug# 5166688 for details
10 -----------------------------------------------------------------------------------------------------------*/
11 
12   procedure insert_row
13             ( x_record                   in          jg_zz_vat_rep_entities%rowtype
14             , x_vat_reporting_entity_id  out nocopy  jg_zz_vat_rep_entities.vat_reporting_entity_id%type
15             , x_row_id                   out nocopy  rowid
16             );
17   procedure lock_row
18             ( x_row_id                    in   rowid
19             , x_record                    in   jg_zz_vat_rep_entities%rowtype
20             );
21   procedure update_row
22             ( x_record                    in   jg_zz_vat_rep_entities%rowtype
23             );
24   procedure delete_row
25             ( x_vat_reporting_entity_id   in   jg_zz_vat_rep_entities.vat_reporting_entity_id%type
26             );
27   procedure update_entity_identifier
28             (  pn_vat_reporting_entity_id  in  jg_zz_vat_rep_entities.vat_reporting_entity_id%type
29              , pv_entity_level_code        in  jg_zz_vat_rep_entities.entity_level_code%type       default null
30              , pn_ledger_id                in  jg_zz_vat_rep_entities.ledger_id%type               default null
31              , pv_balancing_segment_value  in  jg_zz_vat_rep_entities.balancing_segment_value%type default null
32              , pv_called_from              in  varchar2
33             );
34 
35 end jg_zz_vat_rep_entities_pkg;