fix: Avoiding LATIN1 unprintables in various UI locations

This commit is contained in:
Allan 2025-02-17 16:35:18 +00:00
parent 30d5e51d0b
commit bce1fd57ef
5 changed files with 5 additions and 5 deletions
sas/sasjs
services
targets/sas9/services_meta

@ -82,7 +82,7 @@ create table out1 (rename=(SUBMITTED_ON_DTTM1=SUBMITTED_ON_DTTM)) as
)
%webout(OPEN)
%webout(OBJ,fromSAS)
%webout(OBJ,fromSAS,missing=STRING)
%webout(CLOSE)

@ -45,6 +45,6 @@ create table work.fromsas (rename=(SUBMITTED_ON=SUBMITTED_ON_DTTM)) as
)
%webout(OPEN)
%webout(OBJ,fromSAS)
%webout(OBJ,fromSAS,missing=STRING)
%webout(CLOSE)

@ -136,7 +136,7 @@ run;
)
%webout(OPEN)
%webout(OBJ,saslibs)
%webout(OBJ,saslibs,missing=STRING)
%webout(CLOSE)
%mpeterm()

@ -341,7 +341,7 @@ proc sql;
create table ids as select distinct id from graphviz3;
%webout(OPEN)
%webout(OBJ,fromSAS)
%webout(OBJ,fromSAS,missing=STRING)
%webout(OBJ,ids,dslabel=clickableIDS)
%webout(OBJ,info)
%webout(OBJ,flatdata)

@ -26,6 +26,6 @@ options metarepository=&repo;
)
%webout(OPEN)
%webout(OBJ,objects)
%webout(OBJ,objects,missing=STRING)
%webout(CLOSE)
%mpeterm()