Problem Note 57403: SAS® Clinical Standards Toolkit 1.6 - Syntax error in the example ODM driver program
There is a syntax error in the example ODM driver program that is bundled with the SAS® Clinical Standards Toolkit 1.6. The program extract_domaindata_all.sas line number 153 is:
   if missing(_cstOutputName) then _cstOutputName=cats(compress(Name, 'adk'));
If _cstOutputName is missing, the SASDataset attribute is not set in the source XML file. The _cstOutputName should be set to the value of the Name variable - containing only ASCII characters and digits, so compress statement should be compress(Name, , 'adk'):
   if missing(_cstOutputName) then _cstOutputName=cats(compress(Name, ,'adk'));
Operating System and Release Information
SAS System | SAS Clinical Standards Toolkit | Linux for x64 | 1.6 | 1.6.1 | 9.4 TS1M1 | 9.4 TS1M3 |
Microsoft® Windows® for x64 | 1.6 | 1.6.1 | 9.4 TS1M1 | 9.4 TS1M3 |
*
For software releases that are not yet generally available, the Fixed
Release is the software release in which the problem is planned to be
fixed.
Type: | Problem Note |
Priority: | low |
Date Modified: | 2016-10-05 13:22:00 |
Date Created: | 2016-01-11 12:58:01 |