<?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 getting input at runtime in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/getting-input-at-runtime/m-p/43838#M11494</link>
    <description>hi,&lt;BR /&gt;
 Im using &lt;B&gt;mainframe Z/OS&lt;/B&gt; for using SAS. so, can you say how to get input &lt;BR /&gt;
 at run time.&lt;BR /&gt;
like a program who can show "Enter X" and then in the output region we can &lt;BR /&gt;
write any number ,suppose giving '12' , then in the variable X 12 will be stored &lt;BR /&gt;
and then whatever the input taken can be shown as Print.&lt;BR /&gt;
&lt;BR /&gt;
as, "X=12"...&lt;BR /&gt;
pls help me by showing a program.&lt;BR /&gt;
as Iv seen a program but that's not working that was for Windows.&lt;BR /&gt;
thanks and best regards......&lt;BR /&gt;
                                   SWARUP</description>
    <pubDate>Fri, 12 Jun 2009 10:53:59 GMT</pubDate>
    <dc:creator>deleted_user</dc:creator>
    <dc:date>2009-06-12T10:53:59Z</dc:date>
    <item>
      <title>getting input at runtime</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/getting-input-at-runtime/m-p/43838#M11494</link>
      <description>hi,&lt;BR /&gt;
 Im using &lt;B&gt;mainframe Z/OS&lt;/B&gt; for using SAS. so, can you say how to get input &lt;BR /&gt;
 at run time.&lt;BR /&gt;
like a program who can show "Enter X" and then in the output region we can &lt;BR /&gt;
write any number ,suppose giving '12' , then in the variable X 12 will be stored &lt;BR /&gt;
and then whatever the input taken can be shown as Print.&lt;BR /&gt;
&lt;BR /&gt;
as, "X=12"...&lt;BR /&gt;
pls help me by showing a program.&lt;BR /&gt;
as Iv seen a program but that's not working that was for Windows.&lt;BR /&gt;
thanks and best regards......&lt;BR /&gt;
                                   SWARUP</description>
      <pubDate>Fri, 12 Jun 2009 10:53:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/getting-input-at-runtime/m-p/43838#M11494</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2009-06-12T10:53:59Z</dc:date>
    </item>
    <item>
      <title>Re: getting input at runtime</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/getting-input-at-runtime/m-p/43839#M11495</link>
      <description>Please clarify what you mean by "run time"?  Are you referring to an interactivre terminal session, most likely TSO/ISPF session, where an individual is supplying input to your program?&lt;BR /&gt;
&lt;BR /&gt;
With z/OS and SAS, it is possible to develop a SAS application and have that application work together with TSO/ISPF dialog services (or with native REXX language and CLIST), in the interactive mode.&lt;BR /&gt;
&lt;BR /&gt;
I recommend reading the SAS z/OS Companion discussion (reference links pasted below).  Also, you will find SAS technical and conference papers at the SAS support  &lt;A href="http://support.sas.com/" target="_blank"&gt;http://support.sas.com/&lt;/A&gt;  website for this topic.&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Scott Barry&lt;BR /&gt;
SBBWorks, Inc.&lt;BR /&gt;
&lt;BR /&gt;
SAS z/OS Companion - Windows and Commands in z/OS Environments&lt;BR /&gt;
&lt;A href="http://support.sas.com/documentation/cdl/en/hosto390/61886/HTML/default/a000165950.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/hosto390/61886/HTML/default/a000165950.htm&lt;/A&gt;&lt;BR /&gt;
&lt;BR /&gt;
SAS Interfaces to ISPF and REXX&lt;BR /&gt;
&lt;A href="http://support.sas.com/documentation/cdl/en/hosto390/61886/HTML/default/a000217153.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/hosto390/61886/HTML/default/a000217153.htm&lt;/A&gt;</description>
      <pubDate>Fri, 12 Jun 2009 11:15:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/getting-input-at-runtime/m-p/43839#M11495</guid>
      <dc:creator>sbb</dc:creator>
      <dc:date>2009-06-12T11:15:58Z</dc:date>
    </item>
    <item>
      <title>Re: getting input at runtime</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/getting-input-at-runtime/m-p/43840#M11496</link>
      <description>hi sbb,&lt;BR /&gt;
     thanks for replying.........&lt;BR /&gt;
     ya I was talking about interactive terminal session as TSO/ISPF, where &lt;BR /&gt;
     Im giving the commands like "prog" "sub" "log" .&lt;BR /&gt;
     I want to make the program in these way thus the program can take input&lt;BR /&gt;
     at the time of execution. not like the inputs taken from specific files &lt;BR /&gt;
     declared in INFILE statement.&lt;BR /&gt;
  &lt;BR /&gt;
&lt;BR /&gt;
    Iv seen one program,&lt;BR /&gt;
               &lt;I&gt;file stdout;&lt;BR /&gt;
               infile stdin;&lt;BR /&gt;
               put @5 `Enter X';&lt;BR /&gt;
               input x @;&lt;/I&gt;    &lt;BR /&gt;
all these are under a data statement like &lt;BR /&gt;
                                    &lt;I&gt;data xyz;&lt;/I&gt;&lt;BR /&gt;
and also finishing with run;&lt;BR /&gt;
but there showing that Iv to create WORK.stdout dataset &lt;BR /&gt;
but thats not possible in that environment,showing&lt;B&gt; ACF2 violation&lt;/B&gt;.&lt;BR /&gt;
&lt;BR /&gt;
for stdin showing "&lt;B&gt;no logical assignment of stdin&lt;/B&gt;"</description>
      <pubDate>Fri, 12 Jun 2009 11:41:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/getting-input-at-runtime/m-p/43840#M11496</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2009-06-12T11:41:03Z</dc:date>
    </item>
    <item>
      <title>Re: getting input at runtime</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/getting-input-at-runtime/m-p/43841#M11497</link>
      <description>If you license the SAS/AF product or the simpler SAS/FSP product, look into those alternatives.&lt;BR /&gt;
If neither are available then look in SAS help and documentation at statements WINDOW and DISPLAY in a data step, or with % prefix for use in the macro environment. &lt;BR /&gt;
 &lt;BR /&gt;
good luck&lt;BR /&gt;
 &lt;BR /&gt;
PeterC</description>
      <pubDate>Fri, 12 Jun 2009 13:03:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/getting-input-at-runtime/m-p/43841#M11497</guid>
      <dc:creator>Peter_C</dc:creator>
      <dc:date>2009-06-12T13:03:10Z</dc:date>
    </item>
    <item>
      <title>Re: getting input at runtime</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/getting-input-at-runtime/m-p/43842#M11498</link>
      <description>Hi:&lt;BR /&gt;
  In a previous life, as a mainframe programmer, we used to use TSO CLISTS or REXX EXECS to prompt users for run time information on the mainframe. Sadly, that was a LONG time ago and I no longer have access to any of those examples, but I'm sure that someone at your mainframe shop will have heard of CLISTS or REXX -- almost every mainframe shop uses them.&lt;BR /&gt;
&lt;A href="http://publib.boulder.ibm.com/infocenter/zos/basics/index.jsp?topic=/com.ibm.zos.zconcepts/zconc_tsoclistsrexx.htm" target="_blank"&gt;http://publib.boulder.ibm.com/infocenter/zos/basics/index.jsp?topic=/com.ibm.zos.zconcepts/zconc_tsoclistsrexx.htm&lt;/A&gt; &lt;BR /&gt;
&lt;A href="http://publib.boulder.ibm.com/infocenter/zos/basics/index.jsp?topic=/com.ibm.zos.zappldev/zappldev_75.htm" target="_blank"&gt;http://publib.boulder.ibm.com/infocenter/zos/basics/index.jsp?topic=/com.ibm.zos.zappldev/zappldev_75.htm&lt;/A&gt;&lt;BR /&gt;
&lt;A href="http://publib.boulder.ibm.com/infocenter/zos/basics/index.jsp?topic=/com.ibm.zos.zappldev/zappldev_82.htm" target="_blank"&gt;http://publib.boulder.ibm.com/infocenter/zos/basics/index.jsp?topic=/com.ibm.zos.zappldev/zappldev_82.htm&lt;/A&gt;&lt;BR /&gt;
 &lt;BR /&gt;
cynthia</description>
      <pubDate>Fri, 12 Jun 2009 17:00:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/getting-input-at-runtime/m-p/43842#M11498</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2009-06-12T17:00:48Z</dc:date>
    </item>
  </channel>
</rss>

