1
0
mirror of https://github.com/sasjs/core.git synced 2026-01-05 08:30:06 +00:00

fix: avoiding append warning: syswarningtext=Variable processed_dttm has format DATETIME19. on the BASE data set and format E8601DT26. on the DATA data set.

This commit is contained in:
munja
2021-12-26 16:27:04 +00:00
parent 98b1c44283
commit 9b1f0d7bcb
2 changed files with 6 additions and 6 deletions

View File

@@ -5323,10 +5323,10 @@ run;
data &ds2;
if 0 then set &filter_detail;
set &queryds;
format filter_hash $hex32. filter_line 8. processed_dttm E8601DT26.6;
format filter_hash $hex32. filter_line 8.;
filter_hash="&filter_hash";
filter_line=_n_;
PROCESSED_DTTM="%sysfunc(datetime(),E8601DT26.6)"dt;
PROCESSED_DTTM=%sysfunc(datetime());
run;
%mp_lockanytable(LOCK,
lib=%scan(&filter_detail,1,.)
@@ -5350,7 +5350,7 @@ run;
if 0 then set &filter_summary;
filter_table=symget('libds');
filter_hash="&filter_hash";
PROCESSED_DTTM="%sysfunc(datetime(),E8601DT26.6)"dt;
PROCESSED_DTTM=%sysfunc(datetime());
output;
stop;
run;

View File

@@ -133,10 +133,10 @@ run;
data &ds2;
if 0 then set &filter_detail;
set &queryds;
format filter_hash $hex32. filter_line 8. processed_dttm E8601DT26.6;
format filter_hash $hex32. filter_line 8.;
filter_hash="&filter_hash";
filter_line=_n_;
PROCESSED_DTTM="%sysfunc(datetime(),E8601DT26.6)"dt;
PROCESSED_DTTM=%sysfunc(datetime());
run;
%mp_lockanytable(LOCK,
lib=%scan(&filter_detail,1,.)
@@ -160,7 +160,7 @@ run;
if 0 then set &filter_summary;
filter_table=symget('libds');
filter_hash="&filter_hash";
PROCESSED_DTTM="%sysfunc(datetime(),E8601DT26.6)"dt;
PROCESSED_DTTM=%sysfunc(datetime());
output;
stop;
run;