<?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 in the given code in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Error-in-the-given-code/m-p/668593#M200447</link>
    <description>&lt;P&gt;When defining a macro variable,&amp;nbsp;&lt;EM&gt;everything up to the first (unmasked) semicolon&lt;/EM&gt; (excluding leading and trailing blanks) becomes part of the content of the macro variable. This includes any quotes. So your OUTFILE option becomes this after the macro variable is resolved:&lt;/P&gt;
&lt;PRE&gt;outfile = "/"/folders/myfolders/EPG194/output"/storm_final.csv"&lt;/PRE&gt;
&lt;P&gt;which can't be interpreted as valid code. Work out for yourself how you have to change the macro variable to create valid code.&lt;/P&gt;</description>
    <pubDate>Sat, 11 Jul 2020 19:26:36 GMT</pubDate>
    <dc:creator>Kurt_Bremser</dc:creator>
    <dc:date>2020-07-11T19:26:36Z</dc:date>
    <item>
      <title>Error in the given code</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Error-in-the-given-code/m-p/668587#M200445</link>
      <description>&lt;DIV&gt;&lt;DIV class="sasSource"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;1 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;72&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;73 ***********************************************************;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;74 * Activity 6.02 *;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;75 * 1) Complete the PROC EXPORT step to read the *;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;76 * PG1.STORM_FINAL SAS table and create a *;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;77 * comma-delimited file named STORM_FINAL.CSV. Use *;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;78 * &amp;amp;outpath to substitute the path of the output *;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;79 * folder. *;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;80 * 2) Run the program and view the text file: *;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;81 * *;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;82 * SAS Studio - Navigate to the output folder in the *;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;83 * Navigation pane, right-click on storm_final.csv, *;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;84 * and select View File as Text. *;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;85 * *;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;86 * Enterprise Guide - Select Open -&amp;gt; Other and *;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;87 * navigate to the output folder. Select *;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;88 * storm_final.csv and click Open. Click Cancel in *;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;89 * the Import Data window. *;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;90 ***********************************************************;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;91 * Syntax *;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;92 * *;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;93 * PROC EXPORT DATA=input-table *;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;94 * OUTFILE="output-file" *;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;95 * &amp;lt;DBMS=identifier&amp;gt; &amp;lt;REPLACE&amp;gt;; *;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;96 * RUN; *;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;97 ***********************************************************;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;98 %let outpath = "/folders/myfolders/EPG194/output";&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: PROCEDURE EXPORT used (Total process time):&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;real time 0.00 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;cpu time 0.00 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;99 proc export data = pg1.storm_final outfile = "/&amp;amp;outpath/storm_final.csv" dbms=csv replace;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Line generated by the macro variable "OUTPATH".&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;99 "/"/folders/myfolders/EPG194/output"&lt;/DIV&gt;&lt;DIV class="sasError"&gt;_&lt;/DIV&gt;&lt;DIV class="sasError"&gt;22&lt;/DIV&gt;&lt;DIV class="sasError"&gt;76&lt;/DIV&gt;&lt;DIV class="sasError"&gt;ERROR 22-322: Syntax error, expecting one of the following: ;, DATA, DBLABEL, DBMS, DEBUG, FILE, LABEL, OUTFILE, OUTTABLE, REPLACE,&lt;/DIV&gt;&lt;DIV class="sasError"&gt;TABLE, _DEBUG_.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasError"&gt;ERROR 76-322: Syntax error, statement will be ignored.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;100 run;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;101&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;102&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;103 OPTIONS NOTES NOSTIMER NO SOURCE NOSYNTAXCHECK;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;115&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;I am unable to find the error even though the syntax is correct. Please help me with this one.&lt;/P&gt;</description>
      <pubDate>Sat, 11 Jul 2020 19:00:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Error-in-the-given-code/m-p/668587#M200445</guid>
      <dc:creator>ksriram225</dc:creator>
      <dc:date>2020-07-11T19:00:34Z</dc:date>
    </item>
    <item>
      <title>Re: Error in the given code</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Error-in-the-given-code/m-p/668589#M200446</link>
      <description>&lt;PRE&gt;98 %let outpath = "/folders/myfolders/EPG194/output";&lt;/PRE&gt;
&lt;P&gt;Macro variables generally should not have quotes around their values, and in this particular case, is the cause of your error. Remove the quotes.&lt;/P&gt;</description>
      <pubDate>Sat, 11 Jul 2020 19:08:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Error-in-the-given-code/m-p/668589#M200446</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2020-07-11T19:08:14Z</dc:date>
    </item>
    <item>
      <title>Re: Error in the given code</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Error-in-the-given-code/m-p/668593#M200447</link>
      <description>&lt;P&gt;When defining a macro variable,&amp;nbsp;&lt;EM&gt;everything up to the first (unmasked) semicolon&lt;/EM&gt; (excluding leading and trailing blanks) becomes part of the content of the macro variable. This includes any quotes. So your OUTFILE option becomes this after the macro variable is resolved:&lt;/P&gt;
&lt;PRE&gt;outfile = "/"/folders/myfolders/EPG194/output"/storm_final.csv"&lt;/PRE&gt;
&lt;P&gt;which can't be interpreted as valid code. Work out for yourself how you have to change the macro variable to create valid code.&lt;/P&gt;</description>
      <pubDate>Sat, 11 Jul 2020 19:26:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Error-in-the-given-code/m-p/668593#M200447</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2020-07-11T19:26:36Z</dc:date>
    </item>
    <item>
      <title>Re: Error in the given code</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Error-in-the-given-code/m-p/874145#M345346</link>
      <description>problem has not solved</description>
      <pubDate>Fri, 05 May 2023 14:32:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Error-in-the-given-code/m-p/874145#M345346</guid>
      <dc:creator>vishnukumaroff</dc:creator>
      <dc:date>2023-05-05T14:32:39Z</dc:date>
    </item>
    <item>
      <title>Re: Error in the given code</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Error-in-the-given-code/m-p/874149#M345347</link>
      <description>&lt;P&gt;in coursera answer is 3092 worked and got it. use the file path correctly u will get it&lt;/P&gt;</description>
      <pubDate>Fri, 05 May 2023 14:46:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Error-in-the-given-code/m-p/874149#M345347</guid>
      <dc:creator>vishnukumaroff</dc:creator>
      <dc:date>2023-05-05T14:46:18Z</dc:date>
    </item>
    <item>
      <title>Re: Error in the given code</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Error-in-the-given-code/m-p/892483#M352481</link>
      <description>&lt;P&gt;Hi Vishnu,&lt;/P&gt;&lt;P&gt;It will be of great help if you can please provide the code. Your answer is right.&lt;/P&gt;</description>
      <pubDate>Sun, 03 Sep 2023 12:49:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Error-in-the-given-code/m-p/892483#M352481</guid>
      <dc:creator>YashaswiniBS</dc:creator>
      <dc:date>2023-09-03T12:49:33Z</dc:date>
    </item>
    <item>
      <title>Re: Error in the given code</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Error-in-the-given-code/m-p/892497#M352491</link>
      <description>&lt;P&gt;Hi:&lt;BR /&gt;&amp;nbsp; The path that starts /folders/myfolders is an older path so you are looking at code that is an example of solving this problem on our old SAS University Edition product, which has now been retired.&lt;BR /&gt;&amp;nbsp; If you are using SAS OnDemand for Academics, then the path to your output folder should be something like&lt;BR /&gt;%let outpath=/home/userID/EPG1V2/output;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;So if your userID was u1234567, then your path location for the output file would be something like:&lt;BR /&gt;%let outpath=/home/u1234567/EPG1V2/output;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;To find the correct path, as explained many times before Lesson 6, open the Server Files and Folders panel and right click on the output subfolder under the EPG1V2 class folder. In the popup window when you right click, choose Properties and the path that you see in the Properties window for the output folder is the path you should use WITHOUT quotes (as already noted) in the %LET statement to make the &amp;amp;outpath helper macro variable.&lt;BR /&gt;Cynthia&lt;/P&gt;</description>
      <pubDate>Sun, 03 Sep 2023 23:32:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Error-in-the-given-code/m-p/892497#M352491</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2023-09-03T23:32:25Z</dc:date>
    </item>
    <item>
      <title>Re: Error in the given code</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Error-in-the-given-code/m-p/892504#M352494</link>
      <description>Thanks for your time Ms.Cynthia</description>
      <pubDate>Mon, 04 Sep 2023 02:21:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Error-in-the-given-code/m-p/892504#M352494</guid>
      <dc:creator>YashaswiniBS</dc:creator>
      <dc:date>2023-09-04T02:21:13Z</dc:date>
    </item>
    <item>
      <title>Re: Error in the given code</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Error-in-the-given-code/m-p/893470#M352972</link>
      <description>1 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;&lt;BR /&gt;68&lt;BR /&gt;69 %let outpath=/home/u44636833/EPG1V2/output;&lt;BR /&gt;70&lt;BR /&gt;71 proc export data=np.storm_final outfile="&amp;amp;outpath.csv" dbms=csv&lt;BR /&gt;72 replace;&lt;BR /&gt;73 run;&lt;BR /&gt;&lt;BR /&gt;NOTE: Unable to open parameter catalog: SASUSER.PARMS.PARMS.SLIST in update mode. Temporary parameter values will be saved to&lt;BR /&gt;WORK.PARMS.PARMS.SLIST.&lt;BR /&gt;74 /**********************************************************************&lt;BR /&gt;75 * PRODUCT: SAS&lt;BR /&gt;76 * VERSION: 9.4&lt;BR /&gt;77 * CREATOR: External File Interface&lt;BR /&gt;78 * DATE: 10SEP23&lt;BR /&gt;79 * DESC: Generated SAS Datastep Code&lt;BR /&gt;80 * TEMPLATE SOURCE: (None Specified.)&lt;BR /&gt;81 ***********************************************************************/&lt;BR /&gt;82 data _null_;&lt;BR /&gt;83 %let _EFIERR_ = 0; /* set the ERROR detection macro variable */&lt;BR /&gt;84 %let _EFIREC_ = 0; /* clear export record count macro variable */&lt;BR /&gt;85 file '/home/u44636833/EPG1V2/outputcsv' delimiter=',' DSD DROPOVER lrecl=32767;&lt;BR /&gt;86 if _n_ = 1 then /* write column names or labels */&lt;BR /&gt;87 do;&lt;BR /&gt;88 put&lt;BR /&gt;89 "Season"&lt;BR /&gt;90 ','&lt;BR /&gt;91 "Name"&lt;BR /&gt;92 ','&lt;BR /&gt;93 "Basin"&lt;BR /&gt;94 ','&lt;BR /&gt;95 "BasinName"&lt;BR /&gt;96 ','&lt;BR /&gt;97 "OceanCode"&lt;BR /&gt;98 ','&lt;BR /&gt;99 "Ocean"&lt;BR /&gt;100 ','&lt;BR /&gt;101 "StormType"&lt;BR /&gt;102 ','&lt;BR /&gt;103 "MaxWindMPH"&lt;BR /&gt;104 ','&lt;BR /&gt;105 "MaxWindKM"&lt;BR /&gt;106 ','&lt;BR /&gt;107 "MinPressure"&lt;BR /&gt;108 ','&lt;BR /&gt;109 "StartDate"&lt;BR /&gt;110 ','&lt;BR /&gt;111 "EndDate"&lt;BR /&gt;112 ','&lt;BR /&gt;113 "StormLength"&lt;BR /&gt;114 ','&lt;BR /&gt;115 "Lat"&lt;BR /&gt;116 ','&lt;BR /&gt;117 "Lon"&lt;BR /&gt;118 ;&lt;BR /&gt;119 end;&lt;BR /&gt;120 set NP.STORM_FINAL end=EFIEOD;&lt;BR /&gt;121 format Season best4. ;&lt;BR /&gt;122 format Name $char57. ;&lt;BR /&gt;123 format Basin $char2. ;&lt;BR /&gt;124 format BasinName $14. ;&lt;BR /&gt;125 format OceanCode $2. ;&lt;BR /&gt;126 format Ocean $8. ;&lt;BR /&gt;127 format StormType $13. ;&lt;BR /&gt;128 format MaxWindMPH best12. ;&lt;BR /&gt;129 format MaxWindKM 3. ;&lt;BR /&gt;130 format MinPressure best12. ;&lt;BR /&gt;131 format StartDate date9. ;&lt;BR /&gt;132 format EndDate date9. ;&lt;BR /&gt;133 format StormLength best12. ;&lt;BR /&gt;134 format Lat best12. ;&lt;BR /&gt;135 format Lon best12. ;&lt;BR /&gt;136 do;&lt;BR /&gt;137 EFIOUT + 1;&lt;BR /&gt;138 put Season @;&lt;BR /&gt;139 put Name $ @;&lt;BR /&gt;140 put Basin $ @;&lt;BR /&gt;141 put BasinName $ @;&lt;BR /&gt;142 put OceanCode $ @;&lt;BR /&gt;143 put Ocean $ @;&lt;BR /&gt;144 put StormType $ @;&lt;BR /&gt;145 put MaxWindMPH @;&lt;BR /&gt;146 put MaxWindKM @;&lt;BR /&gt;147 put MinPressure @;&lt;BR /&gt;148 put StartDate @;&lt;BR /&gt;149 put EndDate @;&lt;BR /&gt;150 put StormLength @;&lt;BR /&gt;151 put Lat @;&lt;BR /&gt;152 put Lon ;&lt;BR /&gt;153 ;&lt;BR /&gt;154 end;&lt;BR /&gt;155 if _ERROR_ then call symputx('_EFIERR_',1); /* set ERROR detection macro variable */&lt;BR /&gt;156 if EFIEOD then call symputx('_EFIREC_',EFIOUT);&lt;BR /&gt;157 run;&lt;BR /&gt;&lt;BR /&gt;NOTE: The file '/home/u44636833/EPG1V2/outputcsv' is:&lt;BR /&gt;Filename=/home/u44636833/EPG1V2/outputcsv,&lt;BR /&gt;Owner Name=u44636833,Group Name=oda,&lt;BR /&gt;Access Permission=-rw-r--r--,&lt;BR /&gt;Last Modified=10Sep2023:11:43:26&lt;BR /&gt;&lt;BR /&gt;NOTE: 31 records were written to the file '/home/u44636833/EPG1V2/outputcsv'.&lt;BR /&gt;The minimum record length was 76.&lt;BR /&gt;The maximum record length was 124.&lt;BR /&gt;NOTE: There were 30 observations read from the data set NP.STORM_FINAL.&lt;BR /&gt;NOTE: DATA statement used (Total process time):&lt;BR /&gt;real time 0.00 seconds&lt;BR /&gt;user cpu time 0.00 seconds&lt;BR /&gt;system cpu time 0.00 seconds&lt;BR /&gt;memory 10839.37k&lt;BR /&gt;OS Memory 28960.00k&lt;BR /&gt;Timestamp 09/10/2023 06:13:26 AM&lt;BR /&gt;Step Count 18 Switch Count 0&lt;BR /&gt;Page Faults 0&lt;BR /&gt;Page Reclaims 220&lt;BR /&gt;Page Swaps 0&lt;BR /&gt;Voluntary Context Switches 6&lt;BR /&gt;Involuntary Context Switches 0&lt;BR /&gt;Block Input Operations 0&lt;BR /&gt;Block Output Operations 16&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;30 records created in /home/u44636833/EPG1V2/outputcsv from NP.STORM_FINAL.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;NOTE: "/home/u44636833/EPG1V2/outputcsv" file was successfully created.&lt;BR /&gt;NOTE: PROCEDURE EXPORT used (Total process time):&lt;BR /&gt;real time 0.04 seconds&lt;BR /&gt;user cpu time 0.03 seconds&lt;BR /&gt;system cpu time 0.02 seconds&lt;BR /&gt;memory 10839.37k&lt;BR /&gt;OS Memory 29220.00k&lt;BR /&gt;Timestamp 09/10/2023 06:13:26 AM&lt;BR /&gt;Step Count 18 Switch Count 8&lt;BR /&gt;Page Faults 0&lt;BR /&gt;Page Reclaims 3876&lt;BR /&gt;Page Swaps 0&lt;BR /&gt;Voluntary Context Switches 86&lt;BR /&gt;Involuntary Context Switches 0&lt;BR /&gt;Block Input Operations 0&lt;BR /&gt;Block Output Operations 112&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;158&lt;BR /&gt;159&lt;BR /&gt;160 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;&lt;BR /&gt;170</description>
      <pubDate>Sun, 10 Sep 2023 06:14:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Error-in-the-given-code/m-p/893470#M352972</guid>
      <dc:creator>YashaswiniBS</dc:creator>
      <dc:date>2023-09-10T06:14:40Z</dc:date>
    </item>
    <item>
      <title>Re: Error in the given code</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Error-in-the-given-code/m-p/893471#M352973</link>
      <description>No errors found.&lt;BR /&gt;But not getting the solution, please have a look at the code.&lt;BR /&gt;kindly guide</description>
      <pubDate>Sun, 10 Sep 2023 06:16:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Error-in-the-given-code/m-p/893471#M352973</guid>
      <dc:creator>YashaswiniBS</dc:creator>
      <dc:date>2023-09-10T06:16:36Z</dc:date>
    </item>
    <item>
      <title>Re: Error in the given code</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Error-in-the-given-code/m-p/893472#M352974</link>
      <description>&lt;P&gt;A dot terminates a macro variable reference. It vanishes when the macro variable is resolved.&lt;/P&gt;
&lt;P&gt;If you need the contents of a macro variable&amp;nbsp;&lt;EM&gt;followed by a dot&lt;/EM&gt; in a string, you must use two dots: one to terminate the macro variable reference, the other to end up in the string.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I also suspect that your macro variable &amp;amp;outpath contains the path to a &lt;EM&gt;directory&lt;/EM&gt;, so you must add a file name:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc export
  data=np.storm_final
  outfile="&amp;amp;outpath./storm_final.csv"
  dbms=csv
  replace
;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 10 Sep 2023 06:24:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Error-in-the-given-code/m-p/893472#M352974</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2023-09-10T06:24:48Z</dc:date>
    </item>
    <item>
      <title>Re: Error in the given code</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Error-in-the-given-code/m-p/893474#M352976</link>
      <description>Thank you Sir.&lt;BR /&gt;I will follow your instructions.</description>
      <pubDate>Sun, 10 Sep 2023 08:18:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Error-in-the-given-code/m-p/893474#M352976</guid>
      <dc:creator>YashaswiniBS</dc:creator>
      <dc:date>2023-09-10T08:18:16Z</dc:date>
    </item>
  </channel>
</rss>

