<?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 in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Proc-Report/m-p/266487#M15730</link>
    <description>Hi:&lt;BR /&gt;  Is this a stored process question or a PROC REPORT question? IT looks like you are building your own HTML page with your own links to a SAS stored process. I seem to remember that if you want to pop an HTML file into a new window that you might have to add _target to the URL. The challenge is that with a stored process, the client application has to respect the use of _target. I am not sure that all the client applications where you run your stored process will respect/use _target. This is a question for Tech Support.&lt;BR /&gt;&lt;BR /&gt;We also have a separate forum for SAS Stored Processes and this question would more appropriately be asked there if you are not going to open a track with Tech Support.&lt;BR /&gt;&lt;BR /&gt;Here's the link to the other Forum for Stored Processes.&lt;BR /&gt;&lt;A href="https://communities.sas.com/t5/SAS-Stored-Processes/bd-p/sas_stored_processes" target="_blank"&gt;https://communities.sas.com/t5/SAS-Stored-Processes/bd-p/sas_stored_processes&lt;/A&gt; &lt;BR /&gt;&lt;BR /&gt;cynthia</description>
    <pubDate>Tue, 26 Apr 2016 18:38:22 GMT</pubDate>
    <dc:creator>Cynthia_sas</dc:creator>
    <dc:date>2016-04-26T18:38:22Z</dc:date>
    <item>
      <title>Proc Report</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Proc-Report/m-p/266423#M15727</link>
      <description>&lt;P&gt;I have the following code.&lt;/P&gt;
&lt;P&gt;data ListOfFiles;&lt;BR /&gt;set sqlSTL.Upload_Master;&lt;BR /&gt;if Meta_User="&amp;amp;user.";&lt;BR /&gt;length FileName_Desc FileName_Select FileName_Delete Button_Select $900 UploadDate UploadTime 8.;&lt;BR /&gt;format UploadDate mmddyy10. UploadTime hhmm.;&lt;BR /&gt;/*FileName_Desc="&amp;lt;A HREF=/SASStoredProcess/do?_program=%2FShared+Data%2FStudent+Listings%2FStudentFileUpload_Selection_2&amp;amp;_action=properties,execute,newwindow&amp;amp;amp"||'&amp;amp;filename_p='||strip(FileName)||"&amp;gt;&amp;lt;b&amp;gt;Select&amp;lt;/b&amp;gt;&amp;lt;/A&amp;gt;";*/&lt;BR /&gt;/*FileName_Desc="&amp;lt;A HREF=/SASStoredProcess/do?_program=%2FShared+Data%2FStudent+Listings%2FStudentFileUpload_Selection_2&amp;amp;_action=properties,execute,newwindow&amp;amp;amp"||'&amp;amp;filename_p='||strip(FileName)||"&amp;gt;"||strip(FileName)||"&amp;lt;/A&amp;gt;";*/&lt;BR /&gt;/*FileName_Select="&amp;lt;A HREF=/SASStoredProcess/do?_program=%2FShared+Data%2FStudent+Listings%2FStudentFileUpload_Selection_2&amp;amp;_action=properties,execute,newwindow&amp;amp;amp"||'&amp;amp;filename_p='||strip(FileName)||"&amp;gt;"||strip(FileName)||"&amp;lt;/A&amp;gt;";*/&lt;BR /&gt;FileName_Select="&amp;lt;A HREF=/SASStoredProcess/do?_program=%2FShared+Data%2FStudent+Listings%2FStudentFileUpload_Selection_2&amp;amp;_action=properties,execute,newwindow&amp;amp;amp"||'&amp;amp;filename_p='||strip(FileName)||"&amp;gt;Select This File&amp;lt;/A&amp;gt;";&lt;BR /&gt;FileName_Delete="&amp;lt;A HREF=/SASStoredProcess/do?_program=%2FShared+Data%2FStudent+Listings%2FConfirm_File_Deletion_1&amp;amp;_action=execute"||'&amp;amp;filename_p='||strip(FileName)||"&amp;gt;Delete This File&amp;lt;/A&amp;gt;";&lt;BR /&gt;UploadDate=Datepart(UploadDateTime);&lt;BR /&gt;UploadTime=Timepart(UploadDateTime);&lt;BR /&gt;/*Button_Select="&amp;lt;a href=/SASStoredProcess/do?_program=%2FShared+Data%2FStudent+Listings%2FStudentFileUpload_Selection_2&amp;amp;_action=properties,newwindow class='btn btn-primary btn-lg active' role='button'&amp;gt;Primary link&amp;lt;/a&amp;gt;";*/&lt;BR /&gt;/*&amp;lt;a href="#"&amp;gt;&amp;lt;button&amp;gt;Text&amp;lt;/button&amp;gt;&amp;lt;/a&amp;gt;*/&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;What I intended to do is when the user select the link it should open the different stored process in a new window.&lt;/P&gt;
&lt;P&gt;For some reason the new stored process keeps opening in the same windows.&lt;/P&gt;
&lt;P&gt;Couls anybody look at the above code and suggest me. Thanks.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Apr 2016 15:38:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Proc-Report/m-p/266423#M15727</guid>
      <dc:creator>Lokraj</dc:creator>
      <dc:date>2016-04-26T15:38:29Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Report</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Proc-Report/m-p/266487#M15730</link>
      <description>Hi:&lt;BR /&gt;  Is this a stored process question or a PROC REPORT question? IT looks like you are building your own HTML page with your own links to a SAS stored process. I seem to remember that if you want to pop an HTML file into a new window that you might have to add _target to the URL. The challenge is that with a stored process, the client application has to respect the use of _target. I am not sure that all the client applications where you run your stored process will respect/use _target. This is a question for Tech Support.&lt;BR /&gt;&lt;BR /&gt;We also have a separate forum for SAS Stored Processes and this question would more appropriately be asked there if you are not going to open a track with Tech Support.&lt;BR /&gt;&lt;BR /&gt;Here's the link to the other Forum for Stored Processes.&lt;BR /&gt;&lt;A href="https://communities.sas.com/t5/SAS-Stored-Processes/bd-p/sas_stored_processes" target="_blank"&gt;https://communities.sas.com/t5/SAS-Stored-Processes/bd-p/sas_stored_processes&lt;/A&gt; &lt;BR /&gt;&lt;BR /&gt;cynthia</description>
      <pubDate>Tue, 26 Apr 2016 18:38:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Proc-Report/m-p/266487#M15730</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2016-04-26T18:38:22Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Report</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Proc-Report/m-p/267083#M15766</link>
      <description>&lt;P&gt;Hello Cynthia,&lt;/P&gt;
&lt;P&gt;Thanks for your prompt reply. This is a stored process question.&lt;/P&gt;
&lt;P&gt;I made some changes and it works now.&lt;/P&gt;
&lt;P&gt;I put target="_bank" at the end of href tag.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;data ListOfFiles;&lt;BR /&gt;set Upload_Master;&lt;BR /&gt;length FileName_Desc FileName_Select FileName_Delete Button_Select $900 UploadDate UploadTime 8.;&lt;/P&gt;
&lt;P&gt;FileName_Select="&amp;lt;A HREF=/SASStoredProcess/do?_program=%2FShared+Data%2FStudent+Listings%2FStudentFileUpload_Selection_2&amp;amp;_action=properties,execute,newwindow&amp;amp;amp"||'&amp;amp;filename_p='||strip(FileName)||" target=_blank&amp;gt;Select This File&amp;lt;/A&amp;gt;";&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Lokraj&lt;/P&gt;</description>
      <pubDate>Thu, 28 Apr 2016 19:33:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Proc-Report/m-p/267083#M15766</guid>
      <dc:creator>Lokraj</dc:creator>
      <dc:date>2016-04-28T19:33:34Z</dc:date>
    </item>
  </channel>
</rss>

