<?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 Create Process flow from legacy Code in EG in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Create-Process-flow-from-legacy-Code-in-EG/m-p/247280#M17539</link>
    <description>&lt;P&gt;Hi Every one,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to document to crour process flow, and to do that I am using EG 5.1 to create the process flow. Ideally I want to see the join sign (task ) for joining two datasets that are created earlier in the ocde, but EG just show that Dataset1, Dataset2 and now data set3 is created.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;The view that would help me is to have the join sign that would show that Datasset3 is teh result of the joining of Dataset1 and Dataset2.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Is this possible ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So many thanks,&lt;BR /&gt;&lt;BR /&gt;Araz&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;data Scores(label='Recorded Scores at Visits' drop=j c);&lt;BR /&gt;length Subject_ID $8 Visit 8 A1-A10 8 B1-B10 $20 ; /* B fields made intentionally */&lt;BR /&gt;array A[10]; array B[10]; /* longer than they needed to be */&lt;BR /&gt;do c=1 to 3000;&lt;BR /&gt;if c le 1500 then subject_id=compress('100-'||put(c,z4.));&lt;BR /&gt;else subject_id=compress('200-'||put(c, z4.));&lt;BR /&gt;do Visit=1 to 20;&lt;BR /&gt;do j=1 to 10;&lt;BR /&gt;a[j]=j*ranuni(j);&lt;BR /&gt;b[j]=left(put(.5+j**2*ranuni(j),7.3));&lt;BR /&gt;end;&lt;BR /&gt;output;&lt;BR /&gt;end;&lt;BR /&gt;end;&lt;BR /&gt;format a: 5.2;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;data Surgery;&lt;BR /&gt;length SID $8 Visit 8 case 8;&lt;BR /&gt;do k=5 to 3000 by 197;&lt;BR /&gt;if k lt 1500 then SID=compress('100-'||put(k,z4.));&lt;BR /&gt;else SID=compress('200-'||put(k, z4.));&lt;BR /&gt;Visit=10+int(10*ranuni(971156)); /* only one visit per subject */&lt;BR /&gt;case+1;&lt;BR /&gt;drop k;&lt;BR /&gt;output;&lt;BR /&gt;end;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;proc sql /*feedback _method*/;&lt;BR /&gt;create table Scores_Surg1 as&lt;BR /&gt;select *&lt;BR /&gt;from Scores T1, Surgery T2&lt;BR /&gt;where T1.subject_id=T2.sid and&lt;BR /&gt;T1.visit=T2.visit;&lt;BR /&gt;quit;&lt;/P&gt;</description>
    <pubDate>Mon, 01 Feb 2016 19:05:39 GMT</pubDate>
    <dc:creator>araz</dc:creator>
    <dc:date>2016-02-01T19:05:39Z</dc:date>
    <item>
      <title>Create Process flow from legacy Code in EG</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Create-Process-flow-from-legacy-Code-in-EG/m-p/247280#M17539</link>
      <description>&lt;P&gt;Hi Every one,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to document to crour process flow, and to do that I am using EG 5.1 to create the process flow. Ideally I want to see the join sign (task ) for joining two datasets that are created earlier in the ocde, but EG just show that Dataset1, Dataset2 and now data set3 is created.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;The view that would help me is to have the join sign that would show that Datasset3 is teh result of the joining of Dataset1 and Dataset2.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Is this possible ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So many thanks,&lt;BR /&gt;&lt;BR /&gt;Araz&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;data Scores(label='Recorded Scores at Visits' drop=j c);&lt;BR /&gt;length Subject_ID $8 Visit 8 A1-A10 8 B1-B10 $20 ; /* B fields made intentionally */&lt;BR /&gt;array A[10]; array B[10]; /* longer than they needed to be */&lt;BR /&gt;do c=1 to 3000;&lt;BR /&gt;if c le 1500 then subject_id=compress('100-'||put(c,z4.));&lt;BR /&gt;else subject_id=compress('200-'||put(c, z4.));&lt;BR /&gt;do Visit=1 to 20;&lt;BR /&gt;do j=1 to 10;&lt;BR /&gt;a[j]=j*ranuni(j);&lt;BR /&gt;b[j]=left(put(.5+j**2*ranuni(j),7.3));&lt;BR /&gt;end;&lt;BR /&gt;output;&lt;BR /&gt;end;&lt;BR /&gt;end;&lt;BR /&gt;format a: 5.2;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;data Surgery;&lt;BR /&gt;length SID $8 Visit 8 case 8;&lt;BR /&gt;do k=5 to 3000 by 197;&lt;BR /&gt;if k lt 1500 then SID=compress('100-'||put(k,z4.));&lt;BR /&gt;else SID=compress('200-'||put(k, z4.));&lt;BR /&gt;Visit=10+int(10*ranuni(971156)); /* only one visit per subject */&lt;BR /&gt;case+1;&lt;BR /&gt;drop k;&lt;BR /&gt;output;&lt;BR /&gt;end;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;proc sql /*feedback _method*/;&lt;BR /&gt;create table Scores_Surg1 as&lt;BR /&gt;select *&lt;BR /&gt;from Scores T1, Surgery T2&lt;BR /&gt;where T1.subject_id=T2.sid and&lt;BR /&gt;T1.visit=T2.visit;&lt;BR /&gt;quit;&lt;/P&gt;</description>
      <pubDate>Mon, 01 Feb 2016 19:05:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Create-Process-flow-from-legacy-Code-in-EG/m-p/247280#M17539</guid>
      <dc:creator>araz</dc:creator>
      <dc:date>2016-02-01T19:05:39Z</dc:date>
    </item>
    <item>
      <title>Re: Create Process flow from legacy Code in EG</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Create-Process-flow-from-legacy-Code-in-EG/m-p/247378#M17541</link>
      <description>Not sure if you can.&lt;BR /&gt;If you have the need to document and maintain jobs/programs over time, I wonder if you are using the "wrong" tool. DI Studio is developed for such cases.</description>
      <pubDate>Tue, 02 Feb 2016 07:07:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Create-Process-flow-from-legacy-Code-in-EG/m-p/247378#M17541</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2016-02-02T07:07:51Z</dc:date>
    </item>
    <item>
      <title>Re: Create Process flow from legacy Code in EG</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Create-Process-flow-from-legacy-Code-in-EG/m-p/247538#M17547</link>
      <description>&lt;P&gt;Thanks for reply. We don't have DI Studio License. We only have SAS/Base and SAS EG.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Feb 2016 17:14:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Create-Process-flow-from-legacy-Code-in-EG/m-p/247538#M17547</guid>
      <dc:creator>araz</dc:creator>
      <dc:date>2016-02-02T17:14:04Z</dc:date>
    </item>
  </channel>
</rss>

