Killservice
Member²
Hallo,
I don't know if this Problem is only pld 14b5 Problem or other Versions to.
if you beautifie this code
I expect somthing like that
I don't know if this Problem is only pld 14b5 Problem or other Versions to.
if you beautifie this code
Code:
DECLARE
TYPE t_record IS RECORD(
var1 NUMBER(3)
,variable2 VARCHAR2(100)
,var_3 NUMBER(1)
,var_4_id VARCHAR2(5));
TYPE t_sa_33_tar IS TABLE OF t_record;
i_t_sa_33_tar t_sa_33_tar;
l_rec_ris t_record;
l_t_sa_10_ausl t_sa_33_tar;
BEGIN
stp_namen_bestimmen(i_t_sa_33_tar (1).var1
,i_t_sa_33_tar (1).variable2
,i_t_sa_33_tar (1).var_3
,l_t_sa_10_ausl
,l_rec_ris.variable2);
END;
I expect somthing like that
Code:
DECLARE
TYPE t_record IS RECORD(
var1 NUMBER(3)
,variable2 VARCHAR2(100)
,var_3 NUMBER(1)
,var_4_id VARCHAR2(5));
TYPE t_sa_33_tar IS TABLE OF t_record;
i_t_sa_33_tar t_sa_33_tar;
l_rec_ris t_record;
l_t_sa_10_ausl t_sa_33_tar;
BEGIN
stp_namen_bestimmen(i_t_sa_33_tar (1).var1
,i_t_sa_33_tar (1).variable2
,i_t_sa_33_tar (1).var_3
,l_t_sa_10_ausl
,l_rec_ris .variable2);
END;
Last edited: