<?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: The quoted string currently being processed has become more than 262 characters long. in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/The-quoted-string-currently-being-processed-has-become-more-than/m-p/599251#M172938</link>
    <description>&lt;P&gt;You have unbalanced quotes in code you ran before that. The coloring of the Enhanced Editor should assist you in finding that.&lt;/P&gt;</description>
    <pubDate>Fri, 25 Oct 2019 07:31:51 GMT</pubDate>
    <dc:creator>Kurt_Bremser</dc:creator>
    <dc:date>2019-10-25T07:31:51Z</dc:date>
    <item>
      <title>The quoted string currently being processed has become more than 262 characters long.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/The-quoted-string-currently-being-processed-has-become-more-than/m-p/599183#M172908</link>
      <description>&lt;P&gt;1 The SAS System 15:40 Thursday, October 24, 2019&lt;/P&gt;&lt;P&gt;1 ;*';*";*/;quit;run;&lt;/P&gt;&lt;P&gt;2 OPTIONS PAGENO=MIN;&lt;/P&gt;&lt;P&gt;3 %LET _CLIENTTASKLABEL='importRawData';&lt;/P&gt;&lt;P&gt;4 %LET _CLIENTPROCESSFLOWNAME='Process Flow';&lt;/P&gt;&lt;P&gt;5 %LET _CLIENTPROJECTPATH='C:\Users\3684003\OneDrive - MyEEEE\ModularPMCode.egp';&lt;/P&gt;&lt;P&gt;6 %LET _CLIENTPROJECTPATHHOST='WHQ-3684003';&lt;/P&gt;&lt;P&gt;7 %LET _CLIENTPROJECTNAME='ModularPMCode.egp';&lt;/P&gt;&lt;P&gt;8 %LET _SASPROGRAMFILE='';&lt;/P&gt;&lt;P&gt;9 %LET _SASPROGRAMFILEHOST='';&lt;/P&gt;&lt;P&gt;10&lt;/P&gt;&lt;P&gt;11 ODS _ALL_ CLOSE;&lt;/P&gt;&lt;P&gt;12 OPTIONS DEV=PNG;&lt;/P&gt;&lt;P&gt;_________________________________&lt;/P&gt;&lt;P&gt;49&lt;/P&gt;&lt;P&gt;NOTE 49-169: The meaning of an identifier after a quoted string might change in a future SAS release. Inserting white space&lt;/P&gt;&lt;P&gt;between a quoted string and the succeeding identifier is recommended.&lt;/P&gt;&lt;P&gt;13 GOPTIONS XPIXELS=0 YPIXELS=0;&lt;/P&gt;&lt;P&gt;14 FILENAME EGSR TEMP;&lt;/P&gt;&lt;P&gt;15 ODS tagsets.sasreport13(ID=EGSR) FILE=EGSR&lt;/P&gt;&lt;P&gt;16 STYLE=HTMLBlue&lt;/P&gt;&lt;P&gt;17 STYLESHEET=(URL="file:///C:/Program%20Files/SASHome/SASEnterpriseGuide/7.1/Styles/HTMLBlue.css")&lt;/P&gt;&lt;P&gt;17 STYLESHEET=(URL="file:///C:/Program%20Files/SASHome/SASEnterpriseGuide/7.1/Styles/HTMLBlue.css"&lt;/P&gt;&lt;P&gt;___________________________________________________________________________________________&lt;/P&gt;&lt;P&gt;49&lt;/P&gt;&lt;P&gt;17 ! )&lt;/P&gt;&lt;P&gt;NOTE 49-169: The meaning of an identifier after a quoted string might change in a future SAS release. Inserting white space&lt;/P&gt;&lt;P&gt;between a quoted string and the succeeding identifier is recommended.&lt;/P&gt;&lt;P&gt;18 NOGTITLE&lt;/P&gt;&lt;P&gt;19 NOGFOOTNOTE&lt;/P&gt;&lt;P&gt;20 GPATH=&amp;amp;sasworklocation&lt;/P&gt;&lt;P&gt;21 ENCODING=UTF8&lt;/P&gt;&lt;P&gt;22 options(rolap="on")&lt;/P&gt;&lt;P&gt;23 ;&lt;/P&gt;&lt;P&gt;24&lt;/P&gt;&lt;P&gt;25 GOPTIONS ACCESSIBLE;&lt;/P&gt;&lt;P&gt;26&lt;/P&gt;&lt;P&gt;27&lt;/P&gt;&lt;P&gt;28 %macro importRawData(&lt;/P&gt;&lt;P&gt;29 forecast_input_table = ,&lt;/P&gt;&lt;P&gt;30 equipment_code_table = ,&lt;/P&gt;&lt;P&gt;31 uld_standards_table = ,&lt;/P&gt;&lt;P&gt;32 aircraft_standards_table = ,&lt;/P&gt;&lt;P&gt;33 outlib=&lt;/P&gt;&lt;P&gt;34 );&lt;/P&gt;&lt;P&gt;35&lt;/P&gt;&lt;P&gt;36&lt;/P&gt;&lt;P&gt;37 /* Import Equipment Code. */&lt;/P&gt;&lt;P&gt;38&lt;/P&gt;&lt;P&gt;39 proc sql;&lt;/P&gt;&lt;P&gt;40 create table &amp;amp;outlib..equip_code as&lt;/P&gt;&lt;P&gt;41 select equip_cd, brief_equip_desc&lt;/P&gt;&lt;P&gt;NOTE: The quoted string currently being processed has become more than 262 characters long. You might have unbalanced quotation&lt;/P&gt;&lt;P&gt;marks.&lt;/P&gt;&lt;P&gt;42 from &amp;amp;equipment_code_table.;&lt;/P&gt;&lt;P&gt;2 The SAS System 15:40 Thursday, October 24, 2019&lt;/P&gt;&lt;P&gt;43&lt;/P&gt;&lt;P&gt;44&lt;/P&gt;&lt;P&gt;45&lt;/P&gt;&lt;P&gt;46 /* Import ULD Standards. */&lt;/P&gt;&lt;P&gt;47 proc sql;&lt;/P&gt;&lt;P&gt;48 create table &amp;amp;outlib..uld_stndrds as&lt;/P&gt;&lt;P&gt;49 select *&lt;/P&gt;&lt;P&gt;50 from &amp;amp;uld_standards_table.;&lt;/P&gt;&lt;P&gt;51&lt;/P&gt;&lt;P&gt;52 /* Import Aircraft Offload Standards. */&lt;/P&gt;&lt;P&gt;53 proc sql;&lt;/P&gt;&lt;P&gt;54 create table &amp;amp;outlib..ac_stndrds as&lt;/P&gt;&lt;P&gt;55 select *&lt;/P&gt;&lt;P&gt;56 from &amp;amp;aircraft_standards_table.;&lt;/P&gt;&lt;P&gt;57&lt;/P&gt;&lt;P&gt;58&lt;/P&gt;&lt;P&gt;59&lt;/P&gt;&lt;P&gt;60 /*Import Forecast Data*/&lt;/P&gt;&lt;P&gt;61&lt;/P&gt;&lt;P&gt;62 proc sql;&lt;/P&gt;&lt;P&gt;63 create table &amp;amp;outlib..in_forecast as&lt;/P&gt;&lt;P&gt;64 select *,&lt;/P&gt;&lt;P&gt;65 1 as counter,&lt;/P&gt;&lt;P&gt;66 t2.brief_equip_desc as equip_type&lt;/P&gt;&lt;P&gt;67 from &amp;amp;forecast_input_table. t1&lt;/P&gt;&lt;P&gt;68&lt;/P&gt;&lt;P&gt;69 left outer join&lt;/P&gt;&lt;P&gt;70 (select equip_cd, brief_equip_desc from &amp;amp;outlib..equip_code) as t2&lt;/P&gt;&lt;P&gt;71 on t1.equip_cd = t2.equip_cd&lt;/P&gt;&lt;P&gt;72&lt;/P&gt;&lt;P&gt;73 order by sched_local;&lt;/P&gt;&lt;P&gt;74&lt;/P&gt;&lt;P&gt;75&lt;/P&gt;&lt;P&gt;76&lt;/P&gt;&lt;P&gt;77 %mend importRawData;&lt;/P&gt;&lt;P&gt;78&lt;/P&gt;&lt;P&gt;79&lt;/P&gt;&lt;P&gt;80&lt;/P&gt;&lt;P&gt;81&lt;/P&gt;&lt;P&gt;82&lt;/P&gt;&lt;P&gt;83&lt;/P&gt;&lt;P&gt;84&lt;/P&gt;&lt;P&gt;85&lt;/P&gt;&lt;P&gt;86&lt;/P&gt;&lt;P&gt;87&lt;/P&gt;&lt;P&gt;88&lt;/P&gt;&lt;P&gt;89 GOPTIONS NOACCESSIBLE;&lt;/P&gt;&lt;P&gt;90 %LET _CLIENTTASKLABEL=;&lt;/P&gt;&lt;P&gt;91 %LET _CLIENTPROCESSFLOWNAME=;&lt;/P&gt;&lt;P&gt;92 %LET _CLIENTPROJECTPATH=;&lt;/P&gt;&lt;P&gt;93 %LET _CLIENTPROJECTPATHHOST=;&lt;/P&gt;&lt;P&gt;94 %LET _CLIENTPROJECTNAME=;&lt;/P&gt;&lt;P&gt;95 %LET _SASPROGRAMFILE=;&lt;/P&gt;&lt;P&gt;96 %LET _SASPROGRAMFILEHOST=;&lt;/P&gt;&lt;P&gt;97&lt;/P&gt;&lt;P&gt;98 ;*';*";*/;quit;run;&lt;/P&gt;&lt;P&gt;99 ODS _ALL_ CLOSE;&lt;/P&gt;&lt;P&gt;100&lt;/P&gt;&lt;P&gt;3 The SAS System 15:40 Thursday, October 24, 2019&lt;/P&gt;&lt;P&gt;101&lt;/P&gt;&lt;P&gt;102 QUIT; RUN;&lt;/P&gt;&lt;P&gt;103&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This error keeps popping up. The code works sometimes, and sometimes it doesn't work! Very irritating.&lt;/P&gt;</description>
      <pubDate>Thu, 24 Oct 2019 21:52:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/The-quoted-string-currently-being-processed-has-become-more-than/m-p/599183#M172908</guid>
      <dc:creator>Anirudh9</dc:creator>
      <dc:date>2019-10-24T21:52:02Z</dc:date>
    </item>
    <item>
      <title>Re: The quoted string currently being processed has become more than 262 characters long.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/The-quoted-string-currently-being-processed-has-become-more-than/m-p/599203#M172913</link>
      <description>&lt;P&gt;Its a SAS NOTE, not an error and it shouldn't affect the running of your program. To suppress it specify this option:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;options noquotelenmax;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;,&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 24 Oct 2019 22:34:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/The-quoted-string-currently-being-processed-has-become-more-than/m-p/599203#M172913</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2019-10-24T22:34:20Z</dc:date>
    </item>
    <item>
      <title>Re: The quoted string currently being processed has become more than 262 characters long.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/The-quoted-string-currently-being-processed-has-become-more-than/m-p/599214#M172919</link>
      <description>&lt;P&gt;Unless you know your code is generating long quoted strings (in which case just ignore the message) then most likley you have unbalanced quotes.&amp;nbsp; Fix that.&amp;nbsp; Restart your SAS session and try again.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Note it looks like you are using SAS/studio or Enterprise Guide or some other tool that inserting all of those lines before/after your code.&amp;nbsp; Hopefully the unbalanced quotes are not in that code.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 25 Oct 2019 02:33:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/The-quoted-string-currently-being-processed-has-become-more-than/m-p/599214#M172919</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2019-10-25T02:33:58Z</dc:date>
    </item>
    <item>
      <title>Re: The quoted string currently being processed has become more than 262 characters long.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/The-quoted-string-currently-being-processed-has-become-more-than/m-p/599251#M172938</link>
      <description>&lt;P&gt;You have unbalanced quotes in code you ran before that. The coloring of the Enhanced Editor should assist you in finding that.&lt;/P&gt;</description>
      <pubDate>Fri, 25 Oct 2019 07:31:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/The-quoted-string-currently-being-processed-has-become-more-than/m-p/599251#M172938</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2019-10-25T07:31:51Z</dc:date>
    </item>
  </channel>
</rss>

