1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
| OWNER NAME TYPE LINE TEXT
1 OP COMPUTE_VALO PACKAGE 1 PACKAGE compute_valo AS
2 OP COMPUTE_VALO PACKAGE 2 FUNCTION compute_valo_ct (
3 OP COMPUTE_VALO PACKAGE 3 v_num_ope int ,
4 OP COMPUTE_VALO PACKAGE 4 v_date_val date ,
5 OP COMPUTE_VALO PACKAGE 5 v_hypothesis varchar2,
6 OP COMPUTE_VALO PACKAGE 6 v_taux1 IN OUT number,
7 OP COMPUTE_VALO PACKAGE 7 v_taux2 IN OUT number,
8 OP COMPUTE_VALO PACKAGE 8 v_cours_spot IN OUT number,
9 OP COMPUTE_VALO PACKAGE 9 v_cours_terme IN OUT number)
10 OP COMPUTE_VALO PACKAGE 10 RETURN number ;
11 OP COMPUTE_VALO PACKAGE 11 PRAGMA RESTRICT_REFERENCES (compute_valo_ct, wnds, wnps) ;
12 OP COMPUTE_VALO PACKAGE 12
13 OP COMPUTE_VALO PACKAGE 13 FUNCTION compute_valo_fra (
14 OP COMPUTE_VALO PACKAGE 14 v_num_ope int ,
15 OP COMPUTE_VALO PACKAGE 15 v_date_val date ,
16 OP COMPUTE_VALO PACKAGE 16 v_hypothesis varchar2)
17 OP COMPUTE_VALO PACKAGE 17 RETURN histo_operation.nominal_1%TYPE;
18 OP COMPUTE_VALO PACKAGE 18 PRAGMA RESTRICT_REFERENCES (compute_valo_fra , wnds, wnps);
19 OP COMPUTE_VALO PACKAGE 19 END;
20 OP COMPUTE_VALO_FCT PACKAGE 1 PACKAGE compute_valo_fct AS
21 OP COMPUTE_VALO_FCT PACKAGE 2 FUNCTION compute_valo_ct_fct (
22 OP COMPUTE_VALO_FCT PACKAGE 3 v_num_ope int ,
23 OP COMPUTE_VALO_FCT PACKAGE 4 v_date_val date ,
24 OP COMPUTE_VALO_FCT PACKAGE 5 v_hypothesis varchar2)
25 OP COMPUTE_VALO_FCT PACKAGE 6 RETURN number ;
26 OP COMPUTE_VALO_FCT PACKAGE 7 PRAGMA RESTRICT_REFERENCES (compute_valo_ct_fct, wnds, wnps) ;
27 OP COMPUTE_VALO_FCT PACKAGE 8 FUNCTION compute_valo_fra_fct (
28 OP COMPUTE_VALO_FCT PACKAGE 9 v_num_ope int ,
29 OP COMPUTE_VALO_FCT PACKAGE 10 v_date_val date ,
30 OP COMPUTE_VALO_FCT PACKAGE 11 v_hypothesis varchar2)
31 OP COMPUTE_VALO_FCT PACKAGE 12 RETURN histo_operation.nominal_1%TYPE;
32 OP COMPUTE_VALO_FCT PACKAGE 13 PRAGMA RESTRICT_REFERENCES (compute_valo_fra_fct , wnds);
33 OP COMPUTE_VALO_FCT PACKAGE 14 END; |
Partager