BookmarkSubscribeRSS Feed
Asmam
Fluorite | Level 6

I am trying to create infomap using SAS Information Map Studio , 

I create a variable that took a period as "201605" and turn it to date like 2016-05-31 , I used this code 

(put((intnx('month', input(cats(<<DM_DATE.MOIS_ET_ANNEE_YYYYMM>>,'01'),yymmdd10.),0,'ending')),yymmdd10.))

the problem is when I am trying to validate the expression I got this error 

Capture.PNG

 

however when I copy the query used by Infomap on SAS Entreprise Guide it worked 

PROC SQL Outobs=100;
Create table WORK.A44 as
SELECT  DISTINCT 
	 ( (put((intnx('month', input(cats(table0.MOIS_ET_ANNEE_YYYYMM,'01'),yymmdd10.),0,'ending')),yymmdd10.)) )  AS DIR_7 LABEL='Datetest' 
FROM
	abb.DM_DATE table0 
 GROUP BY
	1;
quit;
4 REPLIES 4
Asmam
Fluorite | Level 6

thanks @Kurt_Bremser for your answer but The << and >> cames automatically when I select the variable from the data source ! even when removed it nothing change 

LinusH
Tourmaline | Level 20
@Kurt_Bremser the <<>> are mandatory when referring to relational data, so that part should be ok.
According to the documentation 'ending' is not a valid alignment option, 'end' is.
Then I would solve this kind data manipulation in the data at rest, rather than in the virtual layer.
Data never sleeps
Kurt_Bremser
Super User

What kind of server are you using in Enterprise Guide? The same pooled workspace server, with user asma@saspw, or with a valid operating system account and a standard (non-pooled) workspace server?

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

Creating Custom Steps in SAS Studio

Check out this tutorial series to learn how to build your own steps in SAS Studio.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 4 replies
  • 2081 views
  • 0 likes
  • 3 in conversation