<?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: job execution with form and sgplot within VA works, but how to include a go-back button? in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/job-execution-with-form-and-sgplot-within-VA-works-but-how-to/m-p/765781#M242584</link>
    <description>&lt;P&gt;What happens if you put this data step as the very first step?&lt;/P&gt;</description>
    <pubDate>Fri, 03 Sep 2021 01:18:13 GMT</pubDate>
    <dc:creator>ChrisNZ</dc:creator>
    <dc:date>2021-09-03T01:18:13Z</dc:date>
    <item>
      <title>job execution with form and sgplot within VA works, but how to include a go-back button?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/job-execution-with-form-and-sgplot-within-VA-works-but-how-to/m-p/765673#M242534</link>
      <description>&lt;P&gt;Within VA I use a web content object to run job execution.&lt;/P&gt;
&lt;P&gt;Everything works fine except that the final graph freezes. I'd like to have a go-back button to return to the form again.&lt;/P&gt;
&lt;P&gt;I thought that running a data _null_ after the proc sgplot would add the button, but I does nothing.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;/* end of the code */

proc sgplot data=sashelp.class; 
where age gt &amp;amp;age_min;
hbar age / tip=(AGE) ; 
run; 
quit;

data _null_;
    length line $32767.;

    file _webout; 
    /* _webout will display HTML to the user since the parameter _output_type=html */
    input;        /* Read the HTML from the datalines4 statement */
   
    line = resolve(_INFILE_); /* Treat all &amp;amp;-prefixed data as macro variables */
   
    put line;     /* Write to _webout */
   
    datalines4;
&amp;lt;html lang="en"&amp;gt;
    &amp;lt;head&amp;gt;
        &amp;lt;style type="text/css"&amp;gt;
            @font-face {
              font-family:AvenirNext;
              src:url("/SASJobExecution/images/AvenirNextforSAS.woff") format("woff");
            }
           
            body {
              font-family: AvenirNext,Helvetica,Arial,sans-serif;
              text-rendering: optimizeLegibility;
              -webkit-tap-highlight-color: rgba(0,0,0,0);
              text-align: center
            }
        &amp;lt;/style&amp;gt;
    &amp;lt;/head&amp;gt;
   
    &amp;lt;body&amp;gt;
        &amp;lt;p&amp;gt;return to the form&amp;lt;/p&amp;gt;
        &amp;lt;br/&amp;gt;
        &amp;lt;a href="/SASJobExecution/?_program=/Public/renato/labor/test2"&amp;gt;Go back&amp;lt;/a&amp;gt;
    &amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;
;;;;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="combo1.png" style="width: 999px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/63245iF537B3CE34EA174B/image-size/large?v=v2&amp;amp;px=999" role="button" title="combo1.png" alt="combo1.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="graph.png" style="width: 999px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/63246iD4DE7774578577D5/image-size/large?v=v2&amp;amp;px=999" role="button" title="graph.png" alt="graph.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 02 Sep 2021 16:29:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/job-execution-with-form-and-sgplot-within-VA-works-but-how-to/m-p/765673#M242534</guid>
      <dc:creator>acordes</dc:creator>
      <dc:date>2021-09-02T16:29:53Z</dc:date>
    </item>
    <item>
      <title>Re: job execution with form and sgplot within VA works, but how to include a go-back button?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/job-execution-with-form-and-sgplot-within-VA-works-but-how-to/m-p/765781#M242584</link>
      <description>&lt;P&gt;What happens if you put this data step as the very first step?&lt;/P&gt;</description>
      <pubDate>Fri, 03 Sep 2021 01:18:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/job-execution-with-form-and-sgplot-within-VA-works-but-how-to/m-p/765781#M242584</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2021-09-03T01:18:13Z</dc:date>
    </item>
    <item>
      <title>Re: job execution with form and sgplot within VA works, but how to include a go-back button?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/job-execution-with-form-and-sgplot-within-VA-works-but-how-to/m-p/765806#M242597</link>
      <description>&lt;P&gt;thanks, but that doesn't solve it.&lt;/P&gt;
&lt;P&gt;Perhaps I could add the job's url as a hyperlink to the graph output. That should make the job restart with the form.&lt;/P&gt;</description>
      <pubDate>Fri, 03 Sep 2021 08:08:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/job-execution-with-form-and-sgplot-within-VA-works-but-how-to/m-p/765806#M242597</guid>
      <dc:creator>acordes</dc:creator>
      <dc:date>2021-09-03T08:08:41Z</dc:date>
    </item>
  </channel>
</rss>

