<?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: Add text lines / libnames in .sas file using data _null_ in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Add-text-lines-libnames-in-sas-file-using-data-null/m-p/783524#M249843</link>
    <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/294544"&gt;@RAVI2000&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;You are right! For the first I want to insert a line and I used PUT for it. For Second I just want to replace "data frmts." in that data step line. I tried using _infile_, but it's not working either.&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;What did you try?&lt;/P&gt;</description>
    <pubDate>Thu, 02 Dec 2021 03:16:04 GMT</pubDate>
    <dc:creator>Reeza</dc:creator>
    <dc:date>2021-12-02T03:16:04Z</dc:date>
    <item>
      <title>Add text lines / libnames in .sas file using data _null_</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Add-text-lines-libnames-in-sas-file-using-data-null/m-p/783494#M249826</link>
      <description>&lt;P&gt;Hello everyone,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have been trying to edit a .sas file using data _null_.&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;filename original '/data/studies/project1/ae1.sas';
filename fixed '/data/studies/project1/ae2.sas';

data _null_;
    infile fixed;
	file '/data/studies/project1/ae2.sas' ;
    input;
		
	if _n_ = 1 then 
		do;
			put @1 "libname frmts '/data/studies/project1/raw_dataset_20211025';" ;
		end;
	
	if left(upcase(_infile_))^=:'DATA WORK.' and left(upcase(_infile_))=:'DATA ' then put = "data frmts.";


put _infile_;
run;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp; I am trying to add a libname statement and give "frmts." permanent library in the last data set.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I tried the above code and am viewing it in notepad++.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;when I add "frmts." to the datastep in going into the other line as below.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="S_RAVI_0-1638406703663.png" style="width: 294px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/66320i1D9B0D89D1353B43/image-dimensions/294x164?v=v2" width="294" height="164" role="button" title="S_RAVI_0-1638406703663.png" alt="S_RAVI_0-1638406703663.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 02 Dec 2021 01:05:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Add-text-lines-libnames-in-sas-file-using-data-null/m-p/783494#M249826</guid>
      <dc:creator>RAVI2000</dc:creator>
      <dc:date>2021-12-02T01:05:51Z</dc:date>
    </item>
    <item>
      <title>Re: Add text lines / libnames in .sas file using data _null_</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Add-text-lines-libnames-in-sas-file-using-data-null/m-p/783497#M249829</link>
      <description>&lt;P&gt;Personally, I wouldn't recommend reading and writing to the same file at once. That's problematic and difficult to debug and test. I would write the program to a new file while testing and then replace it once complete using FCOPY/FDELETE/RENAME functions.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This example successfully adds the libname to the top of a program. Hopefully that helps you get started.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;filename original '/home/fkhurshed/Program 1.sas';
filename fixed '/home/fkhurshed/Program 1 V2.sas';

data _null_;
    infile original;
	file fixed ;
	
    input;

	
	if _n_ = 1 then do;
		put "libname frmts'/data/studies/project1/raw_dataset_20211025';";
	end;
	


put _infile_;
run;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/294544"&gt;@RAVI2000&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hello everyone,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have been trying to edit a .sas file using data _null_.&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;
filename fixed '/data/studies/project1/ae.sas';

data _null_;
    infile fixed;
	file fixed ;
    input;
	
	if _n_ = 1 then do;
		put @1 ' ';
	end;
	/*if _N_ &amp;lt;= 1 then _infile_= "libname frmts'/data/studies/project1/raw_dataset_20211025';" ; */

put _infile_;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp; I am trying to add a libname statement and change a back slash(\) to forward slash(/) in the infile statement and give frmts. permanent library in the last data set.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I tried the above code and am viewing it in notepad++.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 02 Dec 2021 00:55:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Add-text-lines-libnames-in-sas-file-using-data-null/m-p/783497#M249829</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2021-12-02T00:55:38Z</dc:date>
    </item>
    <item>
      <title>Re: Add text lines / libnames in .sas file using data _null_</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Add-text-lines-libnames-in-sas-file-using-data-null/m-p/783501#M249832</link>
      <description>Yes, you are right &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt;. I tried what you said. The libname statement works. I have edited my post. Could you please take a look over again. I tried giving the same for "frmts." permanent library libname. Seems like it's going over to the other line.</description>
      <pubDate>Thu, 02 Dec 2021 01:04:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Add-text-lines-libnames-in-sas-file-using-data-null/m-p/783501#M249832</guid>
      <dc:creator>RAVI2000</dc:creator>
      <dc:date>2021-12-02T01:04:35Z</dc:date>
    </item>
    <item>
      <title>Re: Add text lines / libnames in .sas file using data _null_</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Add-text-lines-libnames-in-sas-file-using-data-null/m-p/783502#M249833</link>
      <description>&lt;P&gt;Seems like your intent in that one is to replace the line, whereas the first was more of an insert type function. You cannot use the same type of logic there.&lt;BR /&gt;&lt;BR /&gt;FYI - edits are not shown in the forum, which is why I append posts and if you want to add new information, it's preferable if you add it as a new entry/reply not as Edit to your original question.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/294544"&gt;@RAVI2000&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;Yes, you are right &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt;. I tried what you said. The libname statement works. I have edited my post. Could you please take a look over again. I tried giving the same for "frmts." permanent library libname. Seems like it's going over to the other line.&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 02 Dec 2021 01:12:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Add-text-lines-libnames-in-sas-file-using-data-null/m-p/783502#M249833</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2021-12-02T01:12:28Z</dc:date>
    </item>
    <item>
      <title>Re: Add text lines / libnames in .sas file using data _null_</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Add-text-lines-libnames-in-sas-file-using-data-null/m-p/783503#M249834</link>
      <description>And is there a reason to have a FILENAME statement for ae2 but then use the full filepath in the code as well?</description>
      <pubDate>Thu, 02 Dec 2021 01:13:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Add-text-lines-libnames-in-sas-file-using-data-null/m-p/783503#M249834</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2021-12-02T01:13:40Z</dc:date>
    </item>
    <item>
      <title>Re: Add text lines / libnames in .sas file using data _null_</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Add-text-lines-libnames-in-sas-file-using-data-null/m-p/783519#M249840</link>
      <description>&lt;P&gt;Thank you Reeza.&lt;/P&gt;
&lt;P&gt;I tried, the method you said by giving two different filename and it worked for libname statement line.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;filename original '/data/studies/project1/ae1.sas';
filename fixed '/data/studies/project1/ae2.sas';

data _null_;
    infile fixed;
	file '/data/studies/project1/ae2.sas' ;
    input;
		
	if _n_ = 1 then 
		do;
			put @1 "libname frmts '/data/studies/project1/raw_dataset_20211025';" ;
		end;
	
	if left(upcase(_infile_))^=:'DATA WORK.' and left(upcase(_infile_))=:'DATA ' then put = "data frmts.";


put _infile_;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But when I tried to give the "frmts" libref in my last datastep it is going over to the next line as in the below picture.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="S_RAVI_1-1638414087099.png" style="width: 317px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/66324i296531AD4F002BC3/image-dimensions/317x177?v=v2" width="317" height="177" role="button" title="S_RAVI_1-1638414087099.png" alt="S_RAVI_1-1638414087099.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 02 Dec 2021 03:02:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Add-text-lines-libnames-in-sas-file-using-data-null/m-p/783519#M249840</guid>
      <dc:creator>RAVI2000</dc:creator>
      <dc:date>2021-12-02T03:02:56Z</dc:date>
    </item>
    <item>
      <title>Re: Add text lines / libnames in .sas file using data _null_</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Add-text-lines-libnames-in-sas-file-using-data-null/m-p/783520#M249841</link>
      <description>You are right! For the first I want to insert a line and I used PUT for it. For Second I just want to replace "data frmts." in that data step line. I tried using _infile_, but it's not working either.</description>
      <pubDate>Thu, 02 Dec 2021 03:05:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Add-text-lines-libnames-in-sas-file-using-data-null/m-p/783520#M249841</guid>
      <dc:creator>RAVI2000</dc:creator>
      <dc:date>2021-12-02T03:05:31Z</dc:date>
    </item>
    <item>
      <title>Re: Add text lines / libnames in .sas file using data _null_</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Add-text-lines-libnames-in-sas-file-using-data-null/m-p/783521#M249842</link>
      <description>There is a typo in my above reply. &lt;BR /&gt;&lt;BR /&gt;For infile statement I used "original" and for file I used "fixed".</description>
      <pubDate>Thu, 02 Dec 2021 03:07:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Add-text-lines-libnames-in-sas-file-using-data-null/m-p/783521#M249842</guid>
      <dc:creator>RAVI2000</dc:creator>
      <dc:date>2021-12-02T03:07:39Z</dc:date>
    </item>
    <item>
      <title>Re: Add text lines / libnames in .sas file using data _null_</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Add-text-lines-libnames-in-sas-file-using-data-null/m-p/783524#M249843</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/294544"&gt;@RAVI2000&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;You are right! For the first I want to insert a line and I used PUT for it. For Second I just want to replace "data frmts." in that data step line. I tried using _infile_, but it's not working either.&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;What did you try?&lt;/P&gt;</description>
      <pubDate>Thu, 02 Dec 2021 03:16:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Add-text-lines-libnames-in-sas-file-using-data-null/m-p/783524#M249843</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2021-12-02T03:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Add text lines / libnames in .sas file using data _null_</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Add-text-lines-libnames-in-sas-file-using-data-null/m-p/783526#M249844</link>
      <description>filename original '/data/studies/project1/ae1.sas';&lt;BR /&gt;filename fixed '/data/studies/project1/ae2.sas';&lt;BR /&gt;&lt;BR /&gt;data _null_;&lt;BR /&gt;    infile fixed;&lt;BR /&gt;	file '/data/studies/project1/ae2.sas' ;&lt;BR /&gt;    input;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;	if left(upcase(_infile_))^=:'DATA WORK.' and left(upcase(_infile_))=:'DATA ' then put = "data frmts.";&lt;BR /&gt;&lt;BR /&gt;/*or*/&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;if left(upcase(_infile_))^=:'DATA WORK.' and left(upcase(_infile_))=:'DATA ' then _infile_ =  "data frmts." ;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;put _infile_;&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;One with PUT and another with _infile_ options</description>
      <pubDate>Thu, 02 Dec 2021 03:22:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Add-text-lines-libnames-in-sas-file-using-data-null/m-p/783526#M249844</guid>
      <dc:creator>RAVI2000</dc:creator>
      <dc:date>2021-12-02T03:22:17Z</dc:date>
    </item>
    <item>
      <title>Re: Add text lines / libnames in .sas file using data _null_</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Add-text-lines-libnames-in-sas-file-using-data-null/m-p/783530#M249847</link>
      <description>Ok and what happened and what did you want to happen instead?&lt;BR /&gt;&lt;BR /&gt;If you comment every line with what you think is happening that'll help clarify things. Please include your code in a code box as well to avoid formatting issues. &lt;BR /&gt;&lt;BR /&gt;FYI - In general, its helpful if you state what you're trying to achieve (insert a libname and add a library reference for your code), what you've tried, how it didn't work (what did you get versus what you expect) you can make this a much faster process.</description>
      <pubDate>Thu, 02 Dec 2021 03:52:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Add-text-lines-libnames-in-sas-file-using-data-null/m-p/783530#M249847</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2021-12-02T03:52:40Z</dc:date>
    </item>
    <item>
      <title>Re: Add text lines / libnames in .sas file using data _null_</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Add-text-lines-libnames-in-sas-file-using-data-null/m-p/783538#M249855</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;filename original '/data/studies/project1/ae1.sas';
filename fixed '/data/studies/project1/ae2.sas';

data _null_;
    infile fixed;
	file '/data/studies/project1/ae2.sas' ;
    input;
		
	if _n_ = 1 then 
		do;
			put @1 "libname frmts '/data/studies/project1/raw_dataset_20211025';" ;
		end;
	
	if left(upcase(_infile_))^=:'DATA WORK.' and left(upcase(_infile_))=:'DATA ' then put = "data frmts.";

put _infile_;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;I have tried the above code to insert libname and my libref in the last datastep. It worked for the libname. I am able to insert the libname statement in the .sas file. But I am unable to place libref "frmts" in the last datastep.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It come as below.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;LOG: (PUT _infile_)

data work.AE_V2;
  %let _EFIERR_ = 0;
  infile './AE V2.txt' delimiter='09'x MISSOVER DSD lrecl=32767 firstobs=2 termstr=CRLF;
  format SEQ $25.;
  format INITIALS $2.;
  format FORM $142.;
  format TOXICITY 12.;
  format TOXICITY_CATEGORY 12.;
  INPUT SEQUENCE_NO_  INITIALS  FORM TOXICITY TOXICITY_CATEGORY;
LABEL
SEQUENCE_NO_ = "Sequence No."
INITIALS = "Initials"
FORM = "Form"
TOXICITY = "Toxicity Code"
TOXICITY_CATEGORY = "Toxicity Category";

if _ERROR_ then call symput('_EFIERR_',1);
run;

data frmts.
data AE_FM;
set AE_V2;
format TOXICITY TOXICITY.;
format TOXICITY_CATEGORY TOXICITY_GROUP.;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;If you see in the last datastep, I tried adding/ replacing the "DATA FRMTS."&amp;nbsp; &amp;nbsp;in the last datastep line "data AE_FM". But, it was going in the upper line instead of replacing it. I want "DATA FRMTS.AE_FM" in the last datastep.&lt;/P&gt;</description>
      <pubDate>Thu, 02 Dec 2021 04:34:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Add-text-lines-libnames-in-sas-file-using-data-null/m-p/783538#M249855</guid>
      <dc:creator>RAVI2000</dc:creator>
      <dc:date>2021-12-02T04:34:46Z</dc:date>
    </item>
    <item>
      <title>Re: Add text lines / libnames in .sas file using data _null_</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Add-text-lines-libnames-in-sas-file-using-data-null/m-p/783539#M249856</link>
      <description>Look at TRANWRD to replace parts of a string. You're still adding data not modifying it. &lt;BR /&gt;&lt;BR /&gt;This fails to factor in the code already there. It replaces your data and you need to explicitly control the fact that you then don't output it again with the next PUT statement. &lt;BR /&gt;if left(upcase(_infile_))^=:'DATA WORK.' and left(upcase(_infile_))=:'DATA ' then put = "data frmts.";&lt;BR /&gt;&lt;BR /&gt;ADD COMMENTS TO YOUR CODE.</description>
      <pubDate>Thu, 02 Dec 2021 04:38:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Add-text-lines-libnames-in-sas-file-using-data-null/m-p/783539#M249856</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2021-12-02T04:38:42Z</dc:date>
    </item>
    <item>
      <title>Re: Add text lines / libnames in .sas file using data _null_</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Add-text-lines-libnames-in-sas-file-using-data-null/m-p/783639#M249931</link>
      <description>One last thing - you don't need to add the libname reference to your data steps to these if you call the library USER. &lt;BR /&gt;SAS has a 'feature' where if you have a library called user, everything goes there instead of WORK. So if you want to modify a program to use a library you can add a LIBNAME at the top called USER to the same location and another LIBNAME to the bottom of the program to clear the USER library reference and anything in between gets saved to the library.</description>
      <pubDate>Thu, 02 Dec 2021 15:03:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Add-text-lines-libnames-in-sas-file-using-data-null/m-p/783639#M249931</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2021-12-02T15:03:49Z</dc:date>
    </item>
    <item>
      <title>Re: Add text lines / libnames in .sas file using data _null_</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Add-text-lines-libnames-in-sas-file-using-data-null/m-p/783665#M249944</link>
      <description>What path does USER library go to ? I open my sas datasets using universal viewer. I should be able to open them.</description>
      <pubDate>Thu, 02 Dec 2021 15:32:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Add-text-lines-libnames-in-sas-file-using-data-null/m-p/783665#M249944</guid>
      <dc:creator>RAVI2000</dc:creator>
      <dc:date>2021-12-02T15:32:19Z</dc:date>
    </item>
    <item>
      <title>Re: Add text lines / libnames in .sas file using data _null_</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Add-text-lines-libnames-in-sas-file-using-data-null/m-p/783672#M249948</link>
      <description>You assign the library so you control where it goes it.</description>
      <pubDate>Thu, 02 Dec 2021 15:39:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Add-text-lines-libnames-in-sas-file-using-data-null/m-p/783672#M249948</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2021-12-02T15:39:13Z</dc:date>
    </item>
  </channel>
</rss>

