<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Proc report not working in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Proc-report-not-working/m-p/586321#M76093</link>
    <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/106991"&gt;@anirudhs&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;Hi Kurt actually we cannot get rid of the variable names as its the requirement of the client as they are in habbitual of these names as per the indian banking names.&lt;BR /&gt;Any other way out&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;IMO that's a non-argument. Fancy names can be stored in labels and retrieved from there when you export to other formats (csv, Excel).&lt;/P&gt;
&lt;P&gt;They are not needed within SAS and only cause trouble.&lt;/P&gt;
&lt;P&gt;As a consultant, it is also your job to show your client where they do not work efficiently.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But if you still want to keep hurting yourself, use&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;options validvarname=any;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;before running this code.&lt;/P&gt;</description>
    <pubDate>Thu, 05 Sep 2019 07:25:51 GMT</pubDate>
    <dc:creator>Kurt_Bremser</dc:creator>
    <dc:date>2019-09-05T07:25:51Z</dc:date>
    <item>
      <title>Proc report not working</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Proc-report-not-working/m-p/585781#M76086</link>
      <description>Team following code is not giving any output on sas viya but the code is working is working in sas 9.4 but when executed on viya its showing only note as you may have missed a quoted string or its 256 char long no error :&lt;BR /&gt;PROC REPORT DATA=demo.Rural_Sales_MASTER_CORE_ZONE MISSING&lt;BR /&gt;&lt;BR /&gt;style(report) = {just=center borderwidth=0.5 font = ('zurich BT',12PT) bordercolor = black}&lt;BR /&gt;&lt;BR /&gt;style(header) = {foreground = WHITE background =maroon font = ('zurich BT',12PT) fontweight = bold bordercolor =black}&lt;BR /&gt;&lt;BR /&gt;style(column) = {just=left foreground = black borderwidth = 0.5 borderstyle=solid bordercolor = black};&lt;BR /&gt;&lt;BR /&gt;/*WHERE ZONE IN ('Zone SW','Zone NE');*/&lt;BR /&gt;&lt;BR /&gt;COLUMN ZONE 'FTD(#)'n 'MTD(#)'n 'Target Accounts'n 'SDLM(#)'n 'FTD(Cr.)'n 'MTD(Cr.)'n 'Target Amount'n 'SDLM(Cr.)'n ;&lt;BR /&gt;&lt;BR /&gt;DEFINE ZONE/GROUP;&lt;BR /&gt;&lt;BR /&gt;define 'Target Accounts'n/"Plan(#)";&lt;BR /&gt;&lt;BR /&gt;define 'Target Amount'n/"Plan (Cr.)";&lt;BR /&gt;&lt;BR /&gt;RBREAK AFTER / SUMMARIZE ;&lt;BR /&gt;&lt;BR /&gt;COMPUTE ZONE;&lt;BR /&gt;&lt;BR /&gt;IF _BREAK_ ="_RBREAK_" THEN DO ZONE ='Total' ;&lt;BR /&gt;&lt;BR /&gt;CALL DEFINE(_ROW_,"STYLE","STYLE={FOREGROUND = WHITE BACKGROUND = MAROON FONT = ('ZURICH BT',12PT) FONTWEIGHT = BOLD}");&lt;BR /&gt;&lt;BR /&gt;END;&lt;BR /&gt;&lt;BR /&gt;ENDCOMP;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;RUN;</description>
      <pubDate>Tue, 03 Sep 2019 11:44:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Proc-report-not-working/m-p/585781#M76086</guid>
      <dc:creator>anirudhs</dc:creator>
      <dc:date>2019-09-03T11:44:03Z</dc:date>
    </item>
    <item>
      <title>Re: Proc report not working</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Proc-report-not-working/m-p/585782#M76087</link>
      <description>&lt;P&gt;Please post the whole log of the proc report into a window opened with the {i} button.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;BTW, I recommend to get rid of these stupid variable names three years before yesterday. Such fancy strings belong in labels, that's why labels exist.&lt;/P&gt;</description>
      <pubDate>Tue, 03 Sep 2019 11:50:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Proc-report-not-working/m-p/585782#M76087</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2019-09-03T11:50:23Z</dc:date>
    </item>
    <item>
      <title>Re: Proc report not working</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Proc-report-not-working/m-p/585848#M76088</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/106991"&gt;@anirudhs&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;Team following code is not giving any output on sas viya but the code is working is working in sas 9.4 but when executed on viya its showing only note as you may have missed a quoted string or its 256 char long no error :&lt;BR /&gt;PROC REPORT DATA=demo.Rural_Sales_MASTER_CORE_ZONE MISSING&lt;BR /&gt;&lt;BR /&gt;style(report) = {just=center borderwidth=0.5 font = ('zurich BT',12PT) bordercolor = black}&lt;BR /&gt;&lt;BR /&gt;style(header) = {foreground = WHITE background =maroon font = ('zurich BT',12PT) fontweight = bold bordercolor =black}&lt;BR /&gt;&lt;BR /&gt;style(column) = {just=left foreground = black borderwidth = 0.5 borderstyle=solid bordercolor = black};&lt;BR /&gt;&lt;BR /&gt;/*WHERE ZONE IN ('Zone SW','Zone NE');*/&lt;BR /&gt;&lt;BR /&gt;COLUMN ZONE 'FTD(#)'n 'MTD(#)'n 'Target Accounts'n 'SDLM(#)'n 'FTD(Cr.)'n 'MTD(Cr.)'n 'Target Amount'n 'SDLM(Cr.)'n ;&lt;BR /&gt;&lt;BR /&gt;DEFINE ZONE/GROUP;&lt;BR /&gt;&lt;BR /&gt;define 'Target Accounts'n/"Plan(#)";&lt;BR /&gt;&lt;BR /&gt;define 'Target Amount'n/"Plan (Cr.)";&lt;BR /&gt;&lt;BR /&gt;RBREAK AFTER / SUMMARIZE ;&lt;BR /&gt;&lt;BR /&gt;COMPUTE ZONE;&lt;BR /&gt;&lt;BR /&gt;IF _BREAK_ ="_RBREAK_" THEN DO ZONE ='Total' ;&lt;BR /&gt;&lt;BR /&gt;CALL DEFINE(_ROW_,"STYLE","STYLE={FOREGROUND = WHITE BACKGROUND = MAROON FONT = ('ZURICH BT',12PT) FONTWEIGHT = BOLD}");&lt;BR /&gt;&lt;BR /&gt;END;&lt;BR /&gt;&lt;BR /&gt;ENDCOMP;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;RUN;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Doesn't work is awful vague.&lt;BR /&gt;&lt;BR /&gt;Are there errors in the log?: Post the code and log in a code box opened with the {i} to maintain formatting of error messages.&lt;BR /&gt;&lt;BR /&gt;No output? Post any log in a code box.&lt;BR /&gt;&lt;BR /&gt;Unexpected output? Provide input data in the form of data step code pasted into a code box, the actual results and the expected results. Instructions here: &lt;A href="https://communities.sas.com/t5/SAS-Communities-Library/How-to-create-a-data-step-version-of-your-dat" target="_blank"&gt;https://communities.sas.com/t5/SAS-Communities-Library/How-to-create-a-data-step-version-of-your-dat&lt;/A&gt;... will show how to turn an existing SAS data set into data step code that can be pasted into a forum code box using the {i} icon or attached as text to show exactly what you have and that we can test code against.&lt;/P&gt;</description>
      <pubDate>Tue, 03 Sep 2019 14:47:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Proc-report-not-working/m-p/585848#M76088</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2019-09-03T14:47:53Z</dc:date>
    </item>
    <item>
      <title>Re: Proc report not working</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Proc-report-not-working/m-p/586306#M76089</link>
      <description>Log {&lt;BR /&gt;&lt;BR /&gt;1 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;&lt;BR /&gt;NOTE: ODS statements in the SAS Studio environment may disable some output features.&lt;BR /&gt;76&lt;BR /&gt;77 libname demo '/IT/Rural_Portfolio_Summary/Branch_Summary';&lt;BR /&gt;NOTE: Libref DEMO was successfully assigned as follows:&lt;BR /&gt;Engine: V9&lt;BR /&gt;Physical Name: /IT/Rural_Portfolio_Summary/Branch_Summary&lt;BR /&gt;78&lt;BR /&gt;79 proc sort data=demo.Rural_Sales_MASTER_COmbo out=demo.Rural_Sales_MASTER_CORE_ZONE;&lt;BR /&gt;80 by Zone;&lt;BR /&gt;81 run;&lt;BR /&gt;NOTE: There were 919 observations read from the data set DEMO.RURAL_SALES_MASTER_COMBO.&lt;BR /&gt;NOTE: The data set DEMO.RURAL_SALES_MASTER_CORE_ZONE has 919 observations and 25 variables.&lt;BR /&gt;NOTE: PROCEDURE SORT used (Total process time):&lt;BR /&gt;real time 0.07 seconds&lt;BR /&gt;cpu time 0.00 seconds&lt;BR /&gt;&lt;BR /&gt;82 /*----------------ZONE WISE -------------------------------*/&lt;BR /&gt;83&lt;BR /&gt;84 DATA _NULL_;&lt;BR /&gt;85 Call SymputX('Datetime',put(datetime(),datetime.));&lt;BR /&gt;86 run;&lt;BR /&gt;NOTE: DATA statement used (Total process time):&lt;BR /&gt;real time 0.00 seconds&lt;BR /&gt;cpu time 0.00 seconds&lt;BR /&gt;&lt;BR /&gt;87&lt;BR /&gt;88 options emailsys=SMTP;&lt;BR /&gt;89 options emailhost=CFLMUMCASHUB02.kiac.in;&lt;BR /&gt;90 options emailport=25;&lt;BR /&gt;91&lt;BR /&gt;92 ODS _ALL_ CLOSE;&lt;BR /&gt;93 filename mailbox email&lt;BR /&gt;94&lt;BR /&gt;95 TO=&lt;BR /&gt;96 (&lt;BR /&gt;97 'anirudh.saawaant@idfcfirstbank.com',&lt;BR /&gt;98 'sachin.thakur@idfcfirstbank.com'&lt;BR /&gt;99 )&lt;BR /&gt;100 type='text/html'&lt;BR /&gt;101 subject="Rural Sales Summary Zone Wise";&lt;BR /&gt;102 ods html file=mailbox rs=none ;&lt;BR /&gt;NOTE: Writing HTML Body file: MAILBOX&lt;BR /&gt;103 OPTIONS MISSING=0;&lt;BR /&gt;104 PROC ODSTEXT;&lt;BR /&gt;105 P "Dear All,";&lt;BR /&gt;106 p " ";&lt;BR /&gt;107 P "Please find Rural Sales Summary Zone Wise As on &amp;amp;Datetime" ;&lt;BR /&gt;108 RUN;&lt;BR /&gt;NOTE: PROCEDURE ODSTEXT used (Total process time):&lt;BR /&gt;real time 0.05 seconds&lt;BR /&gt;cpu time 0.02 seconds&lt;BR /&gt;&lt;BR /&gt;109 ODS LAYOUT START COLUMNS=1 WIDTH=14.0IN HEIGHT=4.0IN;&lt;BR /&gt;110 ODS REGION;&lt;BR /&gt;111&lt;BR /&gt;112 /*------- CONSOLIDATE ZONE WISE REPORT ----------*/&lt;BR /&gt;113&lt;BR /&gt;114 PROC REPORT DATA=demo.Rural_Sales_MASTER_CORE_ZONE MISSING&lt;BR /&gt;115 style(report) = {just=center borderwidth=0.5 font = ('zurich BT',12PT) bordercolor = black}&lt;BR /&gt;116 style(header) = {foreground = WHITE background =maroon font = ('zurich BT',12PT) fontweight = bold bordercolor =black}&lt;BR /&gt;117 style(column) = {just=left foreground = black borderwidth = 0.5 borderstyle=solid bordercolor = black};&lt;BR /&gt;118 /*WHERE ZONE IN ('Zone SW','Zone NE');*/&lt;BR /&gt;119 COLUMN ZONE 'FTD(#)'n 'MTD(#)'n 'Target Accounts'n 'SDLM(#)'n 'FTD(Cr.)'n 'MTD(Cr.)'n 'Target Amount'n 'SDLM(Cr.)'n ;&lt;BR /&gt;120 DEFINE ZONE/GROUP;&lt;BR /&gt;121 /* define 'FTD(#)'n/"FTD_#"; */&lt;BR /&gt;122 define 'Target Accounts'n/"Plan(#)";&lt;BR /&gt;123 define 'Target Amount'n/"Plan (Cr.)";&lt;BR /&gt;124 RBREAK AFTER / SUMMARIZE ;&lt;BR /&gt;125 COMPUTE ZONE;&lt;BR /&gt;126 IF _BREAK_ ="_RBREAK_" THEN DO ZONE ='Total' ;&lt;BR /&gt;127 CALL DEFINE(_ROW_,"STYLE","STYLE={FOREGROUND = WHITE BACKGROUND = MAROON FONT = ('ZURICH BT',12PT) FONTWEIGHT = BOLD}");&lt;BR /&gt;128 END;&lt;BR /&gt;129 ENDCOMP;&lt;BR /&gt;130&lt;BR /&gt;131 RUN;&lt;BR /&gt;NOTE: There were 919 observations read from the data set DEMO.RURAL_SALES_MASTER_CORE_ZONE.&lt;BR /&gt;NOTE: PROCEDURE REPORT used (Total process time):&lt;BR /&gt;real time 0.07 seconds&lt;BR /&gt;cpu time 0.05 seconds&lt;BR /&gt;&lt;BR /&gt;132&lt;BR /&gt;133 PROC REPORT DATA=demo.Rural_Sales_MASTER_CORE_ZONE&lt;BR /&gt;134 style(report) = {just=center borderwidth=0.5 font = ('zurich BT',12PT) bordercolor = black}&lt;BR /&gt;135 style(header) = {foreground = white background = maroon font = ('zurich BT',12PT) fontweight = bold bordercolor =black}&lt;BR /&gt;136 style(column) = {just=left foreground = black borderwidth = 0.5 borderstyle=solid bordercolor = black};&lt;BR /&gt;137 /*col _all_;*/&lt;BR /&gt;138 COLUMN ZONE STATE 'FTD(#)'n 'MTD(#)'n 'Target Accounts'n 'SDLM(#)'n 'FTD(Cr.)'n 'MTD(Cr.)'n 'Target Amount'n 'SDLM(Cr.)'n ;&lt;BR /&gt;139 DEFINE ZONE/GROUP;&lt;BR /&gt;140 define 'Target Accounts'n/"Plan(#)";&lt;BR /&gt;141 define 'Target Amount'n/"Plan (Cr.)";&lt;BR /&gt;142 define state/group;&lt;BR /&gt;143&lt;BR /&gt;144 RBREAK AFTER / SUMMARIZE ;&lt;BR /&gt;145 COMPUTE STATE;&lt;BR /&gt;146 IF _BREAK_ ="_RBREAK_" THEN DO STATE ='Total' ;&lt;BR /&gt;147 CALL DEFINE(_ROW_,"STYLE","STYLE={FOREGROUND = WHITE BACKGROUND = MAROON FONT = ('ZURICH BT',12PT) FONTWEIGHT = BOLD}");&lt;BR /&gt;148 END;&lt;BR /&gt;149 ENDCOMP;&lt;BR /&gt;150 run;&lt;BR /&gt;NOTE: There were 919 observations read from the data set DEMO.RURAL_SALES_MASTER_CORE_ZONE.&lt;BR /&gt;NOTE: PROCEDURE REPORT used (Total process time):&lt;BR /&gt;real time 0.03 seconds&lt;BR /&gt;cpu time 0.03 seconds&lt;BR /&gt;&lt;BR /&gt;151&lt;BR /&gt;152 /*ZONE WISE PRODUCT BIFERCATION */&lt;BR /&gt;153 PROC REPORT DATA=demo.Rural_Sales_MASTER_CORE_ZONE&lt;BR /&gt;154 style(report) = {just=center borderwidth=0.5 font = ('zurich BT',12PT) bordercolor = black}&lt;BR /&gt;155 style(header) = {foreground = white background = maroon font = ('zurich BT',12PT) fontweight = bold bordercolor =black}&lt;BR /&gt;156 style(column) = {just=left foreground = black borderwidth = 0.5 borderstyle=solid bordercolor = black};&lt;BR /&gt;157 /*col _all_;*/&lt;BR /&gt;158 COLUMN ZONE PRODUCT 'FTD(#)'n 'MTD(#)'n 'Target Accounts'n 'SDLM(#)'n 'FTD(Cr.)'n 'MTD(Cr.)'n 'Target Amount'n 'SDLM(Cr.)'n ;&lt;BR /&gt;159 define ZONE/group;&lt;BR /&gt;160 define 'Target Accounts'n/'Plan(#)';&lt;BR /&gt;161 define 'Target Amount'n/'Plan (Cr.)';&lt;BR /&gt;162 define product/group;&lt;BR /&gt;163 BY ZONE;&lt;BR /&gt;164&lt;BR /&gt;165 RBREAK AFTER / SUMMARIZE ;&lt;BR /&gt;166 COMPUTE PRODUCT;&lt;BR /&gt;167 IF _BREAK_ ="_RBREAK_" THEN DO PRODUCT ='Total' ;&lt;BR /&gt;168 CALL DEFINE(_ROW_,"STYLE","STYLE={FOREGROUND = WHITE BACKGROUND = MAROON FONT = ('ZURICH BT',12PT) FONTWEIGHT = BOLD}");&lt;BR /&gt;169 END;&lt;BR /&gt;170 ENDCOMP;&lt;BR /&gt;171 RUN;&lt;BR /&gt;NOTE: There were 919 observations read from the data set DEMO.RURAL_SALES_MASTER_CORE_ZONE.&lt;BR /&gt;NOTE: PROCEDURE REPORT used (Total process time):&lt;BR /&gt;real time 0.10 seconds&lt;BR /&gt;cpu time 0.11 seconds&lt;BR /&gt;&lt;BR /&gt;172&lt;BR /&gt;173 ODS LAYOUT END;&lt;BR /&gt;174 ODS HTML CLOSE;&lt;BR /&gt;ERROR: Email server did not respond.&lt;BR /&gt;175 FILENAME MAILBOX CLEAR;&lt;BR /&gt;NOTE: Fileref MAILBOX has been deassigned.&lt;BR /&gt;176 ODS _ALL_ CLOSE;&lt;BR /&gt;177&lt;BR /&gt;178 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;&lt;BR /&gt;191&lt;BR /&gt;&lt;BR /&gt;}</description>
      <pubDate>Thu, 05 Sep 2019 06:08:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Proc-report-not-working/m-p/586306#M76089</guid>
      <dc:creator>anirudhs</dc:creator>
      <dc:date>2019-09-05T06:08:56Z</dc:date>
    </item>
    <item>
      <title>Re: Proc report not working</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Proc-report-not-working/m-p/586307#M76090</link>
      <description>When manually run it send the mail with the report in it, but when scheduled it give an error of FTD(#) not a valid name.&lt;BR /&gt;&lt;BR /&gt;As the above log attached is of the code when manually run.&lt;BR /&gt;Please ignore the error of Email server not responding</description>
      <pubDate>Thu, 05 Sep 2019 06:10:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Proc-report-not-working/m-p/586307#M76090</guid>
      <dc:creator>anirudhs</dc:creator>
      <dc:date>2019-09-05T06:10:49Z</dc:date>
    </item>
    <item>
      <title>Re: Proc report not working</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Proc-report-not-working/m-p/586308#M76091</link>
      <description>&lt;P&gt;Your batch job is running with SAS system option validvarname=v7 (which makes a lot of sense IMO).&lt;/P&gt;
&lt;P&gt;As I already said, get rid of those stupid variable names three years before yesterday.&lt;/P&gt;</description>
      <pubDate>Thu, 05 Sep 2019 06:13:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Proc-report-not-working/m-p/586308#M76091</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2019-09-05T06:13:09Z</dc:date>
    </item>
    <item>
      <title>Re: Proc report not working</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Proc-report-not-working/m-p/586315#M76092</link>
      <description>Hi Kurt actually we cannot get rid of the variable names as its the requirement of the client as they are in habbitual of these names as per the indian banking names.&lt;BR /&gt;Any other way out</description>
      <pubDate>Thu, 05 Sep 2019 06:48:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Proc-report-not-working/m-p/586315#M76092</guid>
      <dc:creator>anirudhs</dc:creator>
      <dc:date>2019-09-05T06:48:06Z</dc:date>
    </item>
    <item>
      <title>Re: Proc report not working</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Proc-report-not-working/m-p/586321#M76093</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/106991"&gt;@anirudhs&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;Hi Kurt actually we cannot get rid of the variable names as its the requirement of the client as they are in habbitual of these names as per the indian banking names.&lt;BR /&gt;Any other way out&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;IMO that's a non-argument. Fancy names can be stored in labels and retrieved from there when you export to other formats (csv, Excel).&lt;/P&gt;
&lt;P&gt;They are not needed within SAS and only cause trouble.&lt;/P&gt;
&lt;P&gt;As a consultant, it is also your job to show your client where they do not work efficiently.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But if you still want to keep hurting yourself, use&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;options validvarname=any;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;before running this code.&lt;/P&gt;</description>
      <pubDate>Thu, 05 Sep 2019 07:25:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Proc-report-not-working/m-p/586321#M76093</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2019-09-05T07:25:51Z</dc:date>
    </item>
    <item>
      <title>Re: Proc report not working</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Proc-report-not-working/m-p/586620#M76094</link>
      <description>Hi Kurt , the issue is that when submitting the code manually its working perfectly but tis not resolving when in scheduler and the options command is also not working in scheduler</description>
      <pubDate>Fri, 06 Sep 2019 05:16:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Proc-report-not-working/m-p/586620#M76094</guid>
      <dc:creator>anirudhs</dc:creator>
      <dc:date>2019-09-06T05:16:59Z</dc:date>
    </item>
    <item>
      <title>Re: Proc report not working</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Proc-report-not-working/m-p/586641#M76095</link>
      <description>&lt;P&gt;Please post the log you get from the scheduled run, from the options validvarname to the proc report.&lt;/P&gt;</description>
      <pubDate>Fri, 06 Sep 2019 07:09:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Proc-report-not-working/m-p/586641#M76095</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2019-09-06T07:09:24Z</dc:date>
    </item>
    <item>
      <title>Re: Proc report not working</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Proc-report-not-working/m-p/594917#M76106</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/106991"&gt;@anirudhs&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;Hi Kurt , the issue is that when submitting the code manually its working perfectly but tis not resolving when in scheduler and the options command is also not working in scheduler&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;That doesn't make sense. Code issued manually and via batch might get a different environment (different config and autoexec files) which could explain what you observe. But any option set directly in your program code will overwrite what's set in the environment config as default.&lt;/P&gt;
&lt;P&gt;If this is about variable names then add&amp;nbsp;&lt;A href="https://documentation.sas.com/?cdcId=pgmsascdc&amp;amp;cdcVersion=9.4_3.4&amp;amp;docsetId=lesysoptsref&amp;amp;docsetTarget=p124dqdk8zoqu3n1r4nsfqu5vx52.htm&amp;amp;locale=en" target="_self"&gt;options VALIDVARNAME=ANY;&lt;/A&gt;&amp;nbsp;at the beginning of your code.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 08 Oct 2019 22:54:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Proc-report-not-working/m-p/594917#M76106</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2019-10-08T22:54:10Z</dc:date>
    </item>
  </channel>
</rss>

