Macro 4.3.11 , I got a warning message. Please resolve this issue

13 views
Skip to first unread message

Thirumagal manivannan

unread,
Oct 23, 2014, 10:47:08 AM10/23/14
to anova...@googlegroups.com
Hi,
Macro 4.3.11 , I got a warning message. Please resolve this issue

code

%macro attend(opts,start=01jan2001,stop=31dec2001);
%let start=%upcase(&start);
%let stop=%upcase(&stop);

proc freq data=sasuser.all;
where begin_date between "&start"d and "&stop"d;
table location / &opts;
title1 "Enrollment from &start to &stop";
run;
%mend;
options mprint;
%attend()

log

1 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;
2 OPTIONS LOCALE=en_US DFLANG=LOCALE;
WARNING: The quoted string currently being processed has become more than 262 bytes long. You might have unbalanced quotation
marks.
44 %let dsname=%scan(&syspbuff,&num,',()');
___
49
NOTE 49-169: The meaning of an identifier after a quoted string might change in a future SAS release. Inserting white space
between a quoted string and the succeeding identifier is recommended.
3 FILENAME _WEBOUT TEMP;
4 FILENAME _RTFOUT TEMP ENCODING='UTF-8';
5 FILENAME _PDFOUT TEMP ;
6 OPTIONS PRINTERPATH=PDF;
7 FILENAME _GSFNAME TEMP;
8 FILENAME _DATAOUT TEMP;
9 %LET SYSCC=0;
10 %LET _CLIENTAPP=SAS Studio;
11 %LET _CLIENTAPPVERSION=3.1;
12 %LET _SASPROGRAMFILE = %BQUOTE();
13 DATA _NULL_;
14 CALL SYMPUT("GRAPHINIT","");
15 CALL SYMPUT("GRAPHTERM","");
WARNING: The quoted string currently being processed has become more than 262 bytes long. You might have unbalanced quotation
marks.
4 FILENAME _RTFOUT TEMP ENCODING='UTF-8';
__
49
NOTE 49-169: The meaning of an identifier after a quoted string might change in a future SAS release. Inserting white space
between a quoted string and the succeeding identifier is recommended.
16 RC=TSLVL('GEOCODE');
17 _ERROR_=0;
18 IF (RC^=' ' ) THEN DO;
19 CALL SYMPUT("GRAPHINIT","GOPTIONS RESET=ALL GSFNAME=_GSFNAME;");
20 CALL SYMPUT("GRAPHTERM","GOPTIONS NOACCESSIBLE;");
21 END;
22 RUN;
23 %LET _DATAOUT_MIME_TYPE=;
24 %LET _DATAOUT_NAME=;
25 %LET _DATAOUT_TABLE=;
26 %LET _DATAOUT_URL=;
27 %SYMDEL _DATAOUT_MIME_TYPE _DATAOUT_NAME _DATAOUT_URL _DATAOUT_TABLE;
WARNING: The quoted string currently being processed has become more than 262 bytes long. You might have unbalanced quotation
marks.
28 %LET _SASWS_ = %BQUOTE(/folders/myfolders);
29 %LET _SASWSTEMP_=%BQUOTE(/folders/myfolders/.images/42cfc569-3dd9-44de-8096-b3ad150c98e5);
18 IF (RC^=' ' ) THEN DO;
____________
49
NOTE 49-169: The meaning of an identifier after a quoted string might change in a future SAS release. Inserting white space
between a quoted string and the succeeding identifier is recommended.
30 ODS LISTING CLOSE;
31 ODS LISTING GPATH="&_SASWSTEMP_";
32 ODS AUTONAVIGATE OFF;
33 ODS GRAPHICS ON;
34 ODS HTML5 (ID=WEB) DEVICE=PNG GPATH="&_SASWSTEMP_" ENCODING=utf8 FILE=_WEBOUT (TITLE='Results: Program
34 ! 1') STYLE=Htmlblue OPTIONS(BITMAP_MODE='INLINE' SVG_MODE='INLINE' CSS_PREFIX='#ods_42cfc569-3dd9-44de-8096-b3ad150c98e5'
_______________________________________ ____________
49 49
34 ! BODY_ID='div_42cfc569-3dd9-44de-8096-b3ad150c98e5' );
NOTE 49-169: The meaning of an identifier after a quoted string might change in a future SAS release. Inserting white space
between a quoted string and the succeeding identifier is recommended.
35 ODS RTF (ID=WEB) STYLE=Rtf FILE=_RTFOUT
36 ;ODS PDF (ID=WEB) STYLE=Pearl FILE=_PDFOUT
37 ;&GRAPHINIT;
38 OPTIONS FIRSTOBS=1;
39 OPTIONS OBS=MAX;
40 OPTIONS DTRESET DATE NUMBER NOTES;
41 OPTIONS NOTES STIMER SOURCE NOSYNTAXCHECK;
42 ;
43 options mprint;
44 %attend()
45 ;
46 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;
WARNING: The quoted string currently being processed has become more than 262 bytes long. You might have unbalanced quotation
marks.
47 ODS HTML CLOSE;
48 &GRAPHTERM;
49 ;*';*";*/;QUIT;RUN;
50 QUIT;RUN;
51 ODS HTML5 (ID=WEB) CLOSE;
52 ODS RTF (ID=WEB) CLOSE;
53 ODS PDF (ID=WEB) CLOSE;
54 FILENAME _GSFNAME;
55 OPTIONS NOTES STIMER SOURCE SYNTAXCHECK;
56 ;

Anova Groups

unread,
Oct 24, 2014, 10:10:13 AM10/24/14
to anova...@googlegroups.com
Code works fine on my end. Restart your Studio.
Reply all
Reply to author
Forward
0 new messages