DBA Data[Home] [Help]

PACKAGE: APPS.IBY_FORMULA_PKG_WRAP

Source


1 PACKAGE iby_formula_pkg_wrap AUTHID CURRENT_USER AS
2 /*$Header: ibywfors.pls 115.9 2002/11/19 00:25:41 jleybovi ship $*/
3 
4 /*
5 ** Wrapper Package generated by rosette for iby_formula_pkg.
6 */
7 
8   /*
9   ** Name getPayeeFormulas
10   ** Purpose: Calls the actual getPayeeFormulas method in iby_formula_pkg.
11   **          This procedure is a wrapper generated by Rosette
12   **          to the actual procedure in iby_formula_pkg for Java
13   **          programs to be able to call it.
14   */
15   procedure getpayeeformulas(i_payeeid  varchar2,
16     o_riskformula_id out nocopy JTF_NUMBER_TABLE,
17     o_riskformula_name out nocopy JTF_VARCHAR2_TABLE_100,
18     o_riskformula_description out nocopy JTF_VARCHAR2_TABLE_300,
19     o_riskformula_flag out nocopy JTF_NUMBER_TABLE);
20 
21   /*
22   ** Name createFormula
23   ** Purpose: Calls the actual createFormula method in iby_formula_pkg.
24   **          This procedure is a wrapper generated by Rosette
25   **          to the actual procedure in iby_formula_pkg for Java
26   **          programs to be able to call it.
27   */
28   procedure createformula(i_payeeid varchar2,
29     i_name  varchar2,
30     i_description  varchar2,
31     i_flag integer,
32     i_count integer,
33     i_factors_name JTF_VARCHAR2_TABLE_100,
34     i_factors_weight JTF_NUMBER_TABLE,
35     o_id out nocopy  number);
36 
37   /*
38   ** Name modifyFormula
39   ** Purpose: Calls the actual modifyFormula method in iby_formula_pkg.
40   **          This procedure is a wrapper generated by Rosette
41   **          to the actual procedure in iby_formula_pkg for Java
42   **          programs to be able to call it.
43   */
44   procedure modifyformula(i_id  number,
45     i_name  varchar2,
46     i_description  varchar2,
47     i_flag integer,
48     i_count integer,
49     i_factors_name JTF_VARCHAR2_TABLE_100,
50     i_factors_weight JTF_NUMBER_TABLE);
51 
52   /*
53   ** Name loadFormula
54   ** Purpose: Calls the actual loadFormula method in iby_formula_pkg.
55   **          This procedure is a wrapper generated by Rosette
56   **          to the actual procedure in iby_formula_pkg for Java
57   **          programs to be able to call it.
58   */
59   procedure loadformula(i_factorid  number,
60     o_name out nocopy varchar2,
61     o_description out nocopy varchar2,
62     o_flag out nocopy integer,
63     o_factors_name out nocopy JTF_VARCHAR2_TABLE_100,
64     o_factors_weight out nocopy JTF_NUMBER_TABLE);
65 
66 end iby_formula_pkg_wrap;
67