<?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: Error not found in LOG without OUTPUT in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Error-not-found-in-LOG-without-OUTPUT/m-p/22018#M4742</link>
    <description>Check your proc tabulate...you called the format with the wrong name, but I can't see that causing all that error....but thats why you check the log.</description>
    <pubDate>Mon, 25 Oct 2010 23:19:09 GMT</pubDate>
    <dc:creator>Reeza</dc:creator>
    <dc:date>2010-10-25T23:19:09Z</dc:date>
    <item>
      <title>Error not found in LOG without OUTPUT</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Error-not-found-in-LOG-without-OUTPUT/m-p/22015#M4739</link>
      <description>When I submit the SAS program as below, the log only shows the line numbers read successfully but no output displays in the OUTPUT.  I clear all the log and output and repeat the program several times, the same happens.  However, when I quit and invoke SAS again, the program runs and output is shown.  This problem happens frequently in running the program.  What is the problem ?&lt;BR /&gt;
&lt;BR /&gt;
e.g.&lt;BR /&gt;
options PS=90 LS=120 nodate nocenter nonumber;&lt;BR /&gt;
&lt;BR /&gt;
libname temp 'c:\work';&lt;BR /&gt;
&lt;BR /&gt;
data tt;&lt;BR /&gt;
infile 'c:\t.txt';&lt;BR /&gt;
input year 1-4 district 5-14 residence 15-24 travel 25-27 weight 28-42;&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
proc sql;&lt;BR /&gt;
     create table temp.work as&lt;BR /&gt;
            select year, district, travel, weight&lt;BR /&gt;
            from tt where year=2009;&lt;BR /&gt;
quit;&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
data test;&lt;BR /&gt;
       set temp.work;&lt;BR /&gt;
       if district in (1,2,3) then travel=99;&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
proc format;&lt;BR /&gt;
     value mode 1='Train'&lt;BR /&gt;
                2='Car'&lt;BR /&gt;
                3='Plane'&lt;BR /&gt;
                4='Ship'&lt;BR /&gt;
                5='On foot'&lt;BR /&gt;
               99='Others';&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
proc tabulate data=test F=comma12. noseps;&lt;BR /&gt;
     class year district travel;&lt;BR /&gt;
     var weight;&lt;BR /&gt;
     format travel mmode.;&lt;BR /&gt;
     table district=''*travel='' all='Overall', year=''*weight=''*sum='' /rts=25;&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Please advise.</description>
      <pubDate>Mon, 25 Oct 2010 03:13:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Error-not-found-in-LOG-without-OUTPUT/m-p/22015#M4739</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2010-10-25T03:13:07Z</dc:date>
    </item>
    <item>
      <title>Re: Error not found in LOG without OUTPUT</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Error-not-found-in-LOG-without-OUTPUT/m-p/22016#M4740</link>
      <description>Are you saying you don't see your statements (be that proc or data step statements) displayed on the log after the first (or first n) executions? That might indicate an open comment statement, a non terminated bracketed or quoted element. If this is the case then you might try what is sometimes referred to as "magic string", ie. the sequence&lt;BR /&gt;
[pre]&lt;BR /&gt;
*'; *"; *); */; %mend; run;&lt;BR /&gt;
[/pre]</description>
      <pubDate>Mon, 25 Oct 2010 10:26:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Error-not-found-in-LOG-without-OUTPUT/m-p/22016#M4740</guid>
      <dc:creator>Robert_Bardos</dc:creator>
      <dc:date>2010-10-25T10:26:08Z</dc:date>
    </item>
    <item>
      <title>Re: Error not found in LOG without OUTPUT</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Error-not-found-in-LOG-without-OUTPUT/m-p/22017#M4741</link>
      <description>Suggest you share with the forum "exact SAS generated log output" not a copy of your code-piece, in order to receive accurate and objective feedback (as well as can be handled through this forum).  Otherwise, suggest you contact SAS technical support, where you will likely need to do the same.&lt;BR /&gt;
&lt;BR /&gt;
And, add this command at the very beginning of your SAS program in order to generate the most complete output -- then desk-check the log yourself before re-posting, just in case you missed something.&lt;BR /&gt;
&lt;BR /&gt;
OPTIONS SOURCE SOURCE2 MACROGEN SYMBOLGEN MPRINT /* MLOGIC */;&lt;BR /&gt;
&lt;BR /&gt;
Scott Barry&lt;BR /&gt;
SBBWorks, Inc.</description>
      <pubDate>Mon, 25 Oct 2010 14:17:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Error-not-found-in-LOG-without-OUTPUT/m-p/22017#M4741</guid>
      <dc:creator>sbb</dc:creator>
      <dc:date>2010-10-25T14:17:16Z</dc:date>
    </item>
    <item>
      <title>Re: Error not found in LOG without OUTPUT</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Error-not-found-in-LOG-without-OUTPUT/m-p/22018#M4742</link>
      <description>Check your proc tabulate...you called the format with the wrong name, but I can't see that causing all that error....but thats why you check the log.</description>
      <pubDate>Mon, 25 Oct 2010 23:19:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Error-not-found-in-LOG-without-OUTPUT/m-p/22018#M4742</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2010-10-25T23:19:09Z</dc:date>
    </item>
    <item>
      <title>Re: Error not found in LOG without OUTPUT</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Error-not-found-in-LOG-without-OUTPUT/m-p/22019#M4743</link>
      <description>This is my SAS LOG with only the statements in line numbers without errors.  No output is generated.  I tried to submit CANCEL;END but same result happened.  Could any expert please advise.&lt;BR /&gt;
&lt;BR /&gt;
184&lt;BR /&gt;
185  options ps=90 ls=200 nonumber nocenter;&lt;BR /&gt;
186&lt;BR /&gt;
187  data temp1;&lt;BR /&gt;
188    infile 'c:\temp\f10.txt';&lt;BR /&gt;
189    input period $1-7 trans $9 control $11-55 code $57-59 overall 61-70 status $72 mode $74 type $76;&lt;BR /&gt;
190  run;&lt;BR /&gt;
191&lt;BR /&gt;
192  proc sort data=temp1 out=temp2;&lt;BR /&gt;
193  by period trans;&lt;BR /&gt;
194  run;&lt;BR /&gt;
195&lt;BR /&gt;
196  proc format;&lt;BR /&gt;
197    value $mtrans 'A'=' Region'&lt;BR /&gt;
198                  'D'=' District';&lt;BR /&gt;
199    value $mtype  '1'=' Local'&lt;BR /&gt;
200                  '2'=' Overseas'&lt;BR /&gt;
201                  '3'=' Foreign'&lt;BR /&gt;
202                  '4'=' Resident'&lt;BR /&gt;
203                  '5'=' Others';&lt;BR /&gt;
204  run;&lt;BR /&gt;
205&lt;BR /&gt;
206  data temp3;&lt;BR /&gt;
207    set temp2;&lt;BR /&gt;
208  run;&lt;BR /&gt;
209&lt;BR /&gt;
210  proc tabulate f=comma12.;&lt;BR /&gt;
211    class period trans type;&lt;BR /&gt;
212    var overall;&lt;BR /&gt;
213    format trans $mtrans. type $mtype.;&lt;BR /&gt;
214    table (trans=''*type='' all=''*type=''), period='calendar period'*overall=''*sum='' /rts=25;&lt;BR /&gt;
215  run;&lt;BR /&gt;
216&lt;BR /&gt;
217  title;&lt;BR /&gt;
218  run;</description>
      <pubDate>Wed, 27 Oct 2010 00:26:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Error-not-found-in-LOG-without-OUTPUT/m-p/22019#M4743</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2010-10-27T00:26:09Z</dc:date>
    </item>
    <item>
      <title>Re: Error not found in LOG without OUTPUT</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Error-not-found-in-LOG-without-OUTPUT/m-p/22020#M4744</link>
      <description>Your TABLE statement has a mismatched quote after the SUM=&lt;BR /&gt;
&lt;BR /&gt;
table district=''*travel='' all='Overall', year=''*weight=''*sum='' /rts=25;&lt;BR /&gt;
&lt;BR /&gt;
Unclosed quotes tend to cause all sorts of havoc.</description>
      <pubDate>Wed, 27 Oct 2010 05:27:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Error-not-found-in-LOG-without-OUTPUT/m-p/22020#M4744</guid>
      <dc:creator>ArtC</dc:creator>
      <dc:date>2010-10-27T05:27:38Z</dc:date>
    </item>
    <item>
      <title>Re: Error not found in LOG without OUTPUT</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Error-not-found-in-LOG-without-OUTPUT/m-p/22021#M4745</link>
      <description>Thanks.  But I could not find any unbalanced quote in my statement.  Please explain.&lt;BR /&gt;
&lt;BR /&gt;
table (trans=''*type='' all=''*type=''), period='calendar period'*overall=''*sum='' /rts=25;</description>
      <pubDate>Wed, 27 Oct 2010 15:30:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Error-not-found-in-LOG-without-OUTPUT/m-p/22021#M4745</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2010-10-27T15:30:38Z</dc:date>
    </item>
    <item>
      <title>Re: Error not found in LOG without OUTPUT</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Error-not-found-in-LOG-without-OUTPUT/m-p/22022#M4746</link>
      <description>So, where are SAS code lines 1 through 183?  Your log starts at line 184, which is exactly what seems suspicious.  Share the entire SAS Log with SAS generated messages included.&lt;BR /&gt;
&lt;BR /&gt;
Scott Barry&lt;BR /&gt;
SBBWorks, Inc.</description>
      <pubDate>Wed, 27 Oct 2010 16:48:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Error-not-found-in-LOG-without-OUTPUT/m-p/22022#M4746</guid>
      <dc:creator>sbb</dc:creator>
      <dc:date>2010-10-27T16:48:57Z</dc:date>
    </item>
    <item>
      <title>Re: Error not found in LOG without OUTPUT</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Error-not-found-in-LOG-without-OUTPUT/m-p/22023#M4747</link>
      <description>And your code supplied(orig post) is different to the code seen in the Log supplied</description>
      <pubDate>Wed, 27 Oct 2010 18:51:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Error-not-found-in-LOG-without-OUTPUT/m-p/22023#M4747</guid>
      <dc:creator>twocanbazza</dc:creator>
      <dc:date>2010-10-27T18:51:53Z</dc:date>
    </item>
    <item>
      <title>Re: Error not found in LOG without OUTPUT</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Error-not-found-in-LOG-without-OUTPUT/m-p/22024#M4748</link>
      <description>Thanks.  I am referring to the my previous post on Oct-26-2010 8:26pm.  Regarding the message lines in the LOG, they are automatically generated each time.  So, the generation from from lines 184 in the LOG is the new result.  No NOTE messages and TABULATION are displayed.  Please help.</description>
      <pubDate>Wed, 27 Oct 2010 23:59:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Error-not-found-in-LOG-without-OUTPUT/m-p/22024#M4748</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2010-10-27T23:59:06Z</dc:date>
    </item>
    <item>
      <title>Re: Error not found in LOG without OUTPUT</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Error-not-found-in-LOG-without-OUTPUT/m-p/22025#M4749</link>
      <description>Honestly, from previous experience...I doubt the SAS code/log not shown reveals information.  Share the entire SAS log so you can get the most productive feedback from individuals who troll this forum.&lt;BR /&gt;
&lt;BR /&gt;
Scott Barry&lt;BR /&gt;
SBBWorks, Inc.</description>
      <pubDate>Thu, 28 Oct 2010 02:16:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Error-not-found-in-LOG-without-OUTPUT/m-p/22025#M4749</guid>
      <dc:creator>sbb</dc:creator>
      <dc:date>2010-10-28T02:16:35Z</dc:date>
    </item>
    <item>
      <title>Re: Error not found in LOG without OUTPUT</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Error-not-found-in-LOG-without-OUTPUT/m-p/22026#M4750</link>
      <description>Thanks to those experts in the reply.&lt;BR /&gt;
&lt;BR /&gt;
May I make it clear that the previous post on Oct-26-2010 8:26pm already contained the entire LOG results.  No NOTES/WARNINGS/ERRORS in the LOG as shown are revealed and no further tabulation as displayed in the OUTPUT window although PROC TABULATE in the SAS statement is added.  Please help.</description>
      <pubDate>Thu, 28 Oct 2010 04:35:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Error-not-found-in-LOG-without-OUTPUT/m-p/22026#M4750</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2010-10-28T04:35:46Z</dc:date>
    </item>
    <item>
      <title>Re: Error not found in LOG without OUTPUT</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Error-not-found-in-LOG-without-OUTPUT/m-p/22027#M4751</link>
      <description>Hi: &lt;BR /&gt;
  If you close down your SAS session and restart SAS and resubmit this code and ONLY this code -- so that your log starts at line #1 instead of line #184, do you see the same issue?? Can you replicate this behavior -- reliably, every single time you submit this code and ONLY this code????&lt;BR /&gt;
&lt;BR /&gt;
  In my experience, when you get a log without any messages, it is usually because you are either so deep into "bad quote" land or "nested and unclosed macro definition" land -- that the SAS compiler ceases to pass code to be executed. I suspect that you had errors (mismatched quotes, or unclosed macro definitions) prior to log line #184. Usually, when you close and reopen SAS you force a "reset" of the unclosed macro definition or clear the bad quotes.&lt;BR /&gt;
 &lt;BR /&gt;
  It is entirely possible that there is -nothing- wrong with the code you posted -- and that THIS code was merely suffering from previously uncorrected errors/issues.&lt;BR /&gt;
&lt;BR /&gt;
(Although, as an aside, it is hard to see whether you have single quote-space-single quote (' ') or single quote-single quote ('') or an unmatched double quote (") in your Tabulate code.)&lt;BR /&gt;
&lt;BR /&gt;
 Without seeing the code you submitted BEFORE the log you posted on Oct 26, any suggestions offered are sheer speculation.&lt;BR /&gt;
 &lt;BR /&gt;
cynthia</description>
      <pubDate>Thu, 28 Oct 2010 05:14:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Error-not-found-in-LOG-without-OUTPUT/m-p/22027#M4751</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2010-10-28T05:14:49Z</dc:date>
    </item>
    <item>
      <title>Re: Error not found in LOG without OUTPUT</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Error-not-found-in-LOG-without-OUTPUT/m-p/22028#M4752</link>
      <description>Hi.&lt;BR /&gt;
I meet the same problem before.&lt;BR /&gt;
You can click 'break' button to cancel the code you submited,then SAS can work.</description>
      <pubDate>Thu, 28 Oct 2010 09:19:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Error-not-found-in-LOG-without-OUTPUT/m-p/22028#M4752</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2010-10-28T09:19:48Z</dc:date>
    </item>
  </channel>
</rss>

