DBA Data[Home] [Help]

PACKAGE: APPS.PAY_LOAD_PARAMETERS

Source


1 PACKAGE PAY_LOAD_PARAMETERS AUTHID CURRENT_USER AS
2 /* $Header: pyprmtld.pkh 120.1.12020000.1 2013/03/22 08:08:12 nvankadh noship $ */
3 /*
4  ******************************************************************
5  *                                                                *
6  *  Copyright (C) 1993 Oracle Corporation UK Ltd.,                *
7  *                   Chertsey, England.                           *
8  *                                                                *
9  *  All rights reserved.                                          *
10  *                                                                *
11  *  This material has been provided pursuant to an agreement      *
12  *  containing restrictions on its use.  The material is also     *
13  *  protected by copyright law.  No part of this material may     *
14  *  be copied or distributed, transmitted or transcribed, in      *
15  *  any form or by any means, electronic, mechanical, magnetic,   *
16  *  manual, or otherwise, or disclosed to third parties without   *
17  *  the express written permission of Oracle Corporation UK Ltd,  *
18  *  Oracle Park, Bittams Lane, Guildford Road, Chertsey, Surrey,  *
19  *  England.                                                      *
20  *                                                                *
21  ******************************************************************
22 
23  ======================================================================
24 
25  Name        : PAY_LOAD_PARAMETERS
26  Description : Contains the procedures called from payparam.lct for upload
27                of data to parameter related tables.
28 
29  Change List
30  ===========
31 
32  Version Date       Author    ER/CR No. Description of Change
33  -------+---------+----------+---------+-------------------------------
34  115.0   03/03/08  ckesanap   6820127   Created the file.
35  ----------------------------------------------------------------------
36 */
37 
38 -- ----------------------------------------------------------------------------
39 -- |-----------------------< load_parameter_qualifiers >----------------------|
40 -- ----------------------------------------------------------------------------
41 --
42 -- Description:
43 -- Procedure used to upload seed data for the table PAY_PARAMETER_QUALIFIERS
44 --
45 -- ----------------------------------------------------------------------------
46 procedure load_parameter_qualifiers
47            ( p_qualifier        in varchar2
48 	    ,p_description      in varchar2
49 	    ,p_owner     IN varchar2
50 	   );
51 
52 -- ----------------------------------------------------------------------------
53 -- |-----------------------< load_parameters >----------------------|
54 -- ----------------------------------------------------------------------------
55 --
56 -- Description:
57 -- Procedure used to upload seed data for the table PAY_PARAMETERS
58 --
59 -- ----------------------------------------------------------------------------
60 procedure load_parameters
61            ( p_parameter_name     in varchar2
62             ,p_bg_name            in varchar2
63             ,p_leg_code           in varchar2
64 	    ,p_qualifier          in varchar2
65 	    ,p_override_allowed   in varchar2
66 	    ,p_owner     IN varchar2
67 	   );
68 
69 -- ----------------------------------------------------------------------------
70 -- |-----------------------< load_parameter_definitions >----------------------|
71 -- ----------------------------------------------------------------------------
72 --
73 -- Description:
74 -- Procedure used to upload seed data for the table PAY_PARAMETER_DEFINITIONS
75 --
76 -- ----------------------------------------------------------------------------
77 procedure load_parameter_definitions
78             ( p_parameter_name    in varchar2
79 	     ,p_description       in varchar2
80 	     ,p_owner     IN varchar2
81 	   );
82 
83 -- ----------------------------------------------------------------------------
84 -- |--------------------------------< translate_row >--------------------------|
85 -- ----------------------------------------------------------------------------
86 --
87 -- Description:
88 -- Procedure used to translate the seeded parameter definitions for the table
89 -- PAY_PARAMETER_DEFINITIONS_TL
90 --
91 -- ----------------------------------------------------------------------------
92 PROCEDURE translate_row
93            ( p_parameter_name   in VARCHAR2
94 	    ,p_trans_param_name IN varchar2
95 	    ,p_language         in varchar2
96 	    ,p_source_language  in varchar2
97 	    ,p_description      in varchar2
98 	    ,p_owner     IN varchar2
99 	   );
100 
101 
102 end PAY_LOAD_PARAMETERS;