diff --git a/viya/mv_createfile.sas b/viya/mv_createfile.sas index 6e795a5..7806e63 100644 --- a/viya/mv_createfile.sas +++ b/viya/mv_createfile.sas @@ -262,7 +262,7 @@ run; %let fileuri=%trim(%mfv_getpathuri(&path/&name)); /* If properties were found then patch the file to include them */ -%if not %mf_isBlank(&viyaProperties) %then %do; +%if not %mf_isBlank(%superq(viyaProperties)) %then %do; /* Wrap the properties object in a root object also containing the file name */ %local viyapatch; %let viyapatch = %sysfunc(pathname(work))/%mf_getuniquename(prefix=patch_json_); diff --git a/viya/mv_getviyafileextparms.sas b/viya/mv_getviyafileextparms.sas index f7f40ab..50baa38 100644 --- a/viya/mv_getviyafileextparms.sas +++ b/viya/mv_getviyafileextparms.sas @@ -4,7 +4,7 @@ values in SAS macro variables @details Content is derived from the following endpoint: - "https:///types/types?filter=contains(extensions,'')" + "https://${serverUrl}/types/types?limit=999999" @param [in] ext File extension to retrieve property info for. @param [out] propertiesVar= SAS macro variable name that will contain @@ -27,6 +27,7 @@ @li mf_getvalue.sas @li mf_getvarlist.sas @li mf_getvartype.sas + @li mf_nobs.sas @li mp_abort.sas */