Why return string format for FINFO function in SAS EG and SAS DI is different

157 Views Asked by At

I am trying to get file "modeified" datetime with

datetimeString = finfo(fid,'Last Modified');``

In SAS EG the return string looks like 12Jan2023:11:03:53

But in SAS DI the return string looks like 12 January 2023 11:03:28

I am trying to convert a string to a datetime like below and obviously it doesn't work for EG and throw invalid argument error. moddate=input(finfo(fid,'Last Modified'),datetime20.);

I can fix this by writing bit of extra code in DI but would like to know why finfo(fid,'Last Modified'); return different string format?

I am working in data step.

2

There are 2 best solutions below

1
On BEST ANSWER

Check the setting of the LOCALE option in the two different SAS sessions.

You can use the NLDATM informat to read the string generated by FINFO()

SAS Documentation on NLDATM informat

Example program that uses NLDATM informat to get datetime from FINFO() function.

1
On

Use a different in-format

37         data _null_;
38            x = '12 January 2023 11:03:28';
39            moddate=input(x,datetime20.);
40            moddate2=input(x,anydtdtm30.);
41            put 'NOTE: ' (mod:)(=datetime.);
42            run;

NOTE: Invalid argument to function INPUT at line 39 column 12.
NOTE: moddate=. moddate2=12JAN23:11:03:28