scarletAni
Programmer
I want to print some results in a procedure and check for the correctness of values...
REPLACE Procedure
A.proc1
(OUT dt1 varchar(10), OUT dt2 Varchar(18))
Begin
DECLARE maxdttm_crfh char(18);
DECLARE maxdttm_dsth char(18);
call A.pr_get_next_asof( 'Temp1', 'Depnd1', :maxdt_dsth, :maxdttm_dsth );
Print maxdt_dsth;
Print maxdttm_dsth;
End;
I did a help
Help procedure A.proc1 Attributes;
And found that the PrintMode is 'N'
Can this be set back to 'Y' for a procedure and the values be printed ?
REPLACE Procedure
A.proc1
(OUT dt1 varchar(10), OUT dt2 Varchar(18))
Begin
DECLARE maxdttm_crfh char(18);
DECLARE maxdttm_dsth char(18);
call A.pr_get_next_asof( 'Temp1', 'Depnd1', :maxdt_dsth, :maxdttm_dsth );
Print maxdt_dsth;
Print maxdttm_dsth;
End;
I did a help
Help procedure A.proc1 Attributes;
And found that the PrintMode is 'N'
Can this be set back to 'Y' for a procedure and the values be printed ?