- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Posted 11-26-2024 02:17 PM
(537 views)
Hi,
The french CIM-10 from ATIH is diffused in CLaML format:
- https://www.atih.sante.fr/sites/default/files/public/content/4674/cim10fr2024syst_claml_20231215.zip
However, I dont know the way to load this XML file into SAS. There is a second file "CLaML.dtd" wich is the definition in my mind.
I hope a solution and thanks you for you proposition.
The french CIM-10 from ATIH is diffused in CLaML format:
- https://www.atih.sante.fr/sites/default/files/public/content/4674/cim10fr2024syst_claml_20231215.zip
However, I dont know the way to load this XML file into SAS. There is a second file "CLaML.dtd" wich is the definition in my mind.
I hope a solution and thanks you for you proposition.
1 REPLY 1
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Try something like this to get you started:
filename CLAML "s:/workshop/cim10fr2024syst_claml_20231215.xml";
filename CLAMAP "s:/workshop/cim10fr2024syst_claml_20231215.map";
libname CLAML XMLv2 automap=reuse xmlmap=CLAMAP;
After you run this code, file cim10fr2024syst_claml_20231215.map will contain the generated XML map. You can edit with that to change how the mapping works if you want. If you do modify the map file, remove the AUTMAP=REUSE option from the LIBNAME statement to prevent overwriting the MAP file when the code is run again.
Check out my Jedi SAS Tricks for SAS Users