<?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: ODS Data Step Object in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Data-Step-Object/m-p/198#M55</link>
    <description>Sorry if I jump in like this, but how do I access documentation on the ODS data step object? I searched for it at the SAS 9.1 Online documentation at &lt;A href="http://support.sas.com/onlinedoc/913" target="_blank"&gt;http://support.sas.com/onlinedoc/913&lt;/A&gt;, but couldn't find anything.&lt;BR /&gt;
Furthermore, under the path Base SAS -&amp;gt; SAS Language Concepts -&amp;gt; Data Step Concepts -&amp;gt; Using DATA Step Component Objects, the only objects listed as available in a data step are the Hash object and the Hash Iterator object.&lt;BR /&gt;
Thanks&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Message was edited by: DanielMastropietro at Mar 22, 2006 4:40 PM

&lt;BR /&gt;
Message was edited by: DanielMastropietro at Mar 22, 2006 6:44 PM&lt;BR /&gt;</description>
    <pubDate>Wed, 22 Mar 2006 21:39:36 GMT</pubDate>
    <dc:creator>deleted_user</dc:creator>
    <dc:date>2006-03-22T21:39:36Z</dc:date>
    <item>
      <title>ODS Data Step Object</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Data-Step-Object/m-p/191#M48</link>
      <description>I wonder how many people use the ODS data step object.  I know it's experimental, but lots of people use experimental features.&lt;BR /&gt;
&lt;BR /&gt;
An enhancement I'd like: the ability to directly address table cells, instead of having to figure out where everything is going to go, and then writing it sequentially.&lt;BR /&gt;
&lt;BR /&gt;
One way to specify it:  add ROWS and COLUMNS parameters to TABLE_START, then ROW and COLUMN to FORMAT_CELL and CELL_START.&lt;BR /&gt;
&lt;BR /&gt;
Hmm, what if I want to get to a nested table from the outer table, or to the outer table from a nested table?  I guess htat would be hard.&lt;BR /&gt;
&lt;BR /&gt;
I guess I could set up a big mess of arrays, write my data there, and then at the end go through the arrays and make the ODS calls, but I'd prefer something a bit more built in.&lt;BR /&gt;
&lt;BR /&gt;
The specific application I'm thinking about is the ability to build a spreadsheet, filling out cells one at a time.</description>
      <pubDate>Wed, 15 Mar 2006 18:17:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Data-Step-Object/m-p/191#M48</guid>
      <dc:creator>JackHamilton</dc:creator>
      <dc:date>2006-03-15T18:17:23Z</dc:date>
    </item>
    <item>
      <title>Re: ODS Data Step Object</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Data-Step-Object/m-p/192#M49</link>
      <description>Jack,&lt;BR /&gt;
&lt;BR /&gt;
  The data step object integrates the DATA step with ODS' document model,&lt;BR /&gt;
which includes a table model.  ODS' table model is based on the HTML table &lt;BR /&gt;
model, which is a table-row-cell model.  ODS' table model implementation &lt;BR /&gt;
doesn't support the kind of random access you're describing.  &lt;BR /&gt;
&lt;BR /&gt;
  Tables and spreadsheets are fundamentally different things.  &lt;BR /&gt;
&lt;BR /&gt;
  Thanks for experimenting with the data step object.&lt;BR /&gt;
&lt;BR /&gt;
  -- David Kelley, SAS</description>
      <pubDate>Wed, 15 Mar 2006 20:07:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Data-Step-Object/m-p/192#M49</guid>
      <dc:creator>David_SAS</dc:creator>
      <dc:date>2006-03-15T20:07:10Z</dc:date>
    </item>
    <item>
      <title>Re: ODS Data Step Object</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Data-Step-Object/m-p/193#M50</link>
      <description>I appreciate the elegance of the HTML-like cell-addressable approach to building table reports provided by the ODS Data Step Object. As I can do in HTML, I am trying to stack 2 cells in column 2 to complete a ROW_SPAN. Here is a picture of my intent.&lt;BR /&gt;
&lt;BR /&gt;
row1:col1 row1:col2 row1:col3&lt;BR /&gt;
&lt;ROWSPAN&gt; row2:col2 &lt;ROWSPAN&gt;&lt;BR /&gt;
&lt;BR /&gt;
In the following code, I want util2 to stack under util1.&lt;BR /&gt;
&lt;BR /&gt;
obj.ROW_START();&lt;BR /&gt;
  obj.FORMAT_CELL(TEXT: utilgrp,ROW_SPAN : 2);&lt;BR /&gt;
  obj.FORMAT_CELL(TEXT: util1);&lt;BR /&gt;
  obj.FORMAT_CELL(TEXT: cpmpm,ROW_SPAN : 2);&lt;BR /&gt;
obj.ROW_END();&lt;BR /&gt;
&lt;BR /&gt;
obj.ROW_START();&lt;BR /&gt;
  obj.FORMAT_CELL(TEXT: util2);&lt;BR /&gt;
obj.ROW_END();&lt;BR /&gt;
&lt;BR /&gt;
Here is what I get.&lt;BR /&gt;
&lt;BR /&gt;
row1:col1 row1:col2 row1:col3&lt;BR /&gt;
row2:col1   null      null&lt;/ROWSPAN&gt;&lt;/ROWSPAN&gt;</description>
      <pubDate>Wed, 22 Mar 2006 16:46:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Data-Step-Object/m-p/193#M50</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2006-03-22T16:46:47Z</dc:date>
    </item>
    <item>
      <title>Re: ODS Data Step Object</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Data-Step-Object/m-p/194#M51</link>
      <description>ods pdf file="test.pdf";&lt;BR /&gt;
data _null_;&lt;BR /&gt;
dcl odsout obj();&lt;BR /&gt;
&lt;BR /&gt;
obj.table_start();&lt;BR /&gt;
obj.row_start();&lt;BR /&gt;
obj.format_cell( text:  "utilgrp",&lt;BR /&gt;
                 row_span: 2 );&lt;BR /&gt;
obj.format_cell( text: "util1" ); &lt;BR /&gt;
obj.format_cell( text: "cmppm", &lt;BR /&gt;
                 row_span: 2 ); &lt;BR /&gt;
obj.row_end();&lt;BR /&gt;
&lt;BR /&gt;
obj.row_start();&lt;BR /&gt;
obj.format_cell( text: "util2" ); &lt;BR /&gt;
obj.row_end();&lt;BR /&gt;
obj.table_end();&lt;BR /&gt;
&lt;BR /&gt;
obj.delete();&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
ods pdf close;&lt;BR /&gt;
&lt;BR /&gt;
The above pgm produced something similar to the following diagram at v9.2 and v9.1.3sp4. &lt;BR /&gt;
&lt;BR /&gt;
Forgive the formating it does not want to retain my spacing. &lt;BR /&gt;
&lt;BR /&gt;
----------------------------&lt;BR /&gt;
| utilgrp | util1 | cmppm  |&lt;BR /&gt;
| &lt;BLANK&gt; | util2 | &lt;BLANK&gt;| &lt;BR /&gt;
----------------------------&lt;BR /&gt;
&lt;BR /&gt;
Is this what you want?&lt;BR /&gt;
What release are you using?&lt;/BLANK&gt;&lt;/BLANK&gt;</description>
      <pubDate>Wed, 22 Mar 2006 17:53:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Data-Step-Object/m-p/194#M51</guid>
      <dc:creator>DanO_sas_com</dc:creator>
      <dc:date>2006-03-22T17:53:36Z</dc:date>
    </item>
    <item>
      <title>Re: ODS Data Step Object</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Data-Step-Object/m-p/195#M52</link>
      <description>Although it doesn't appear to be documented in the Help, the forum software supports preformatted text.  All you have to do is enclose the text in bracketed &lt;B&gt;pre&lt;/B&gt; and &lt;B&gt;/pre&lt;/B&gt; tags.    Here's what I think Dan wished to express:&lt;BR /&gt;
[pre]&lt;BR /&gt;
----------------------------&lt;BR /&gt;
| utilgrp | util1 | cmppm  |&lt;BR /&gt;
| &lt;BLANK&gt; | util2 | &lt;BLANK&gt;|&lt;BR /&gt;
----------------------------&lt;BR /&gt;
[/pre]&lt;BR /&gt;
-- David Kelley, SAS&lt;/BLANK&gt;&lt;/BLANK&gt;</description>
      <pubDate>Wed, 22 Mar 2006 18:22:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Data-Step-Object/m-p/195#M52</guid>
      <dc:creator>David_SAS</dc:creator>
      <dc:date>2006-03-22T18:22:41Z</dc:date>
    </item>
    <item>
      <title>Re: ODS Data Step Object</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Data-Step-Object/m-p/196#M53</link>
      <description>Dan,&lt;BR /&gt;
&lt;BR /&gt;
Yes, this is what I want. We are running  SAS 9.1.3 Service Pack 3. Do I need SP4 to make this work?&lt;BR /&gt;
&lt;BR /&gt;
Regards,&lt;BR /&gt;
&lt;BR /&gt;
Dwight</description>
      <pubDate>Wed, 22 Mar 2006 19:31:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Data-Step-Object/m-p/196#M53</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2006-03-22T19:31:52Z</dc:date>
    </item>
    <item>
      <title>Re: ODS Data Step Object</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Data-Step-Object/m-p/197#M54</link>
      <description>I expect that SP3 works the same as SP4.&lt;BR /&gt;
&lt;BR /&gt;
 -- David Kelley, SAS</description>
      <pubDate>Wed, 22 Mar 2006 19:48:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Data-Step-Object/m-p/197#M54</guid>
      <dc:creator>David_SAS</dc:creator>
      <dc:date>2006-03-22T19:48:54Z</dc:date>
    </item>
    <item>
      <title>Re: ODS Data Step Object</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Data-Step-Object/m-p/198#M55</link>
      <description>Sorry if I jump in like this, but how do I access documentation on the ODS data step object? I searched for it at the SAS 9.1 Online documentation at &lt;A href="http://support.sas.com/onlinedoc/913" target="_blank"&gt;http://support.sas.com/onlinedoc/913&lt;/A&gt;, but couldn't find anything.&lt;BR /&gt;
Furthermore, under the path Base SAS -&amp;gt; SAS Language Concepts -&amp;gt; Data Step Concepts -&amp;gt; Using DATA Step Component Objects, the only objects listed as available in a data step are the Hash object and the Hash Iterator object.&lt;BR /&gt;
Thanks&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Message was edited by: DanielMastropietro at Mar 22, 2006 4:40 PM

&lt;BR /&gt;
Message was edited by: DanielMastropietro at Mar 22, 2006 6:44 PM&lt;BR /&gt;</description>
      <pubDate>Wed, 22 Mar 2006 21:39:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Data-Step-Object/m-p/198#M55</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2006-03-22T21:39:36Z</dc:date>
    </item>
    <item>
      <title>Re: ODS Data Step Object</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Data-Step-Object/m-p/199#M56</link>
      <description>Daniel,&lt;BR /&gt;
&lt;BR /&gt;
  Here is some documentation:&lt;BR /&gt;
&lt;BR /&gt;
  &lt;A href="http://support.sas.com/rnd/base/topics/datastep/dsobject/" target="_blank"&gt;http://support.sas.com/rnd/base/topics/datastep/dsobject/&lt;/A&gt;&lt;BR /&gt;
&lt;BR /&gt;
 -- David Kelley, SAS</description>
      <pubDate>Thu, 23 Mar 2006 02:40:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Data-Step-Object/m-p/199#M56</guid>
      <dc:creator>David_SAS</dc:creator>
      <dc:date>2006-03-23T02:40:37Z</dc:date>
    </item>
    <item>
      <title>Re: ODS Data Step Object</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Data-Step-Object/m-p/200#M57</link>
      <description>Dwight, &lt;BR /&gt;
&lt;BR /&gt;
It appears to work at Service Pack 3 for me as well. &lt;BR /&gt;
Can you confirm with the test pgm that I provided? &lt;BR /&gt;
&lt;BR /&gt;
thanks, &lt;BR /&gt;
Dan</description>
      <pubDate>Thu, 23 Mar 2006 14:09:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Data-Step-Object/m-p/200#M57</guid>
      <dc:creator>DanO_sas_com</dc:creator>
      <dc:date>2006-03-23T14:09:25Z</dc:date>
    </item>
    <item>
      <title>Re: ODS Data Step Object</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Data-Step-Object/m-p/201#M58</link>
      <description>Dan,&lt;BR /&gt;
&lt;BR /&gt;
Your example works as you expected on our SP3. I will retry this approach on my code and let you know.</description>
      <pubDate>Thu, 30 Mar 2006 21:05:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Data-Step-Object/m-p/201#M58</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2006-03-30T21:05:56Z</dc:date>
    </item>
    <item>
      <title>Re: ODS Data Step Object</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Data-Step-Object/m-p/202#M59</link>
      <description>This code joins the 2 FORMAT_TEXT strings above the table.&lt;BR /&gt;
How can I get the strings on separate lines?&lt;BR /&gt;
&lt;BR /&gt;
  IF FIRST.type THEN DO;&lt;BR /&gt;
    obj.FORMAT_TEXT(TEXT: CATX(' ','Normative Comparison Summary for',type));&lt;BR /&gt;
  END;&lt;BR /&gt;
&lt;BR /&gt;
  IF FIRST.frstincr THEN DO;&lt;BR /&gt;
    obj.FORMAT_TEXT(TEXT: time);&lt;BR /&gt;
  END;&lt;BR /&gt;
&lt;BR /&gt;
  obj.TABLE_START();&lt;BR /&gt;
    obj.ROW_START(TYPE: 'HEADER');&lt;BR /&gt;
      obj.FORMAT_CELL(TEXT: ' ');&lt;BR /&gt;
      obj.FORMAT_CELL(TEXT: 'Avg. LOS');&lt;BR /&gt;
      obj.FORMAT_CELL(TEXT: 'Admits/1,000');&lt;BR /&gt;
      obj.FORMAT_CELL(TEXT: 'Scripts/Member');&lt;BR /&gt;
    obj.ROW_END();&lt;BR /&gt;
&lt;BR /&gt;
    obj.ROW_START();&lt;BR /&gt;
      obj.FORMAT_CELL(TEXT: 'Account');&lt;BR /&gt;
      obj.FORMAT_CELL(TEXT: PUT(avglos ,7.2));&lt;BR /&gt;
      obj.FORMAT_CELL(TEXT: PUT(admthou,7.2));&lt;BR /&gt;
      obj.FORMAT_CELL(TEXT: PUT(rx_util,7.2));&lt;BR /&gt;
    obj.ROW_END();&lt;BR /&gt;
  obj.TABLE_END();</description>
      <pubDate>Thu, 30 Mar 2006 21:19:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Data-Step-Object/m-p/202#M59</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2006-03-30T21:19:00Z</dc:date>
    </item>
    <item>
      <title>Re: ODS Data Step Object</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Data-Step-Object/m-p/203#M60</link>
      <description>I think I discovered my problem with ROWSPAN: I was using a character argument instead of numeric. Whoops! Thanks for your assistance.</description>
      <pubDate>Tue, 04 Apr 2006 15:31:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Data-Step-Object/m-p/203#M60</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2006-04-04T15:31:54Z</dc:date>
    </item>
    <item>
      <title>Re: ODS Data Step Object</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Data-Step-Object/m-p/204#M61</link>
      <description>How can I replicate the behavior of the following 2-part TITLE statement using the TITLE() method?&lt;BR /&gt;
&lt;BR /&gt;
title j=c 'Main Title' j=r "DATE: %SYSFUNC(TODAY(),MMDDYY10.)";&lt;BR /&gt;
proc print data=sashelp.class;&lt;BR /&gt;
run;</description>
      <pubDate>Tue, 04 Apr 2006 19:47:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Data-Step-Object/m-p/204#M61</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2006-04-04T19:47:19Z</dc:date>
    </item>
    <item>
      <title>Re: ODS Data Step Object</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Data-Step-Object/m-p/205#M62</link>
      <description>ods listing close; &lt;BR /&gt;
&lt;BR /&gt;
/* Try pdf &amp;amp; rtf as well */&lt;BR /&gt;
%let dest =html;&lt;BR /&gt;
options nodate nonumber; &lt;BR /&gt;
ods &amp;amp;dest file="test.&amp;amp;dest";&lt;BR /&gt;
&lt;BR /&gt;
title j=c 'Main Title' j=r "DATE: %SYSFUNC(TODAY(),MMDDYY10.)";&lt;BR /&gt;
proc print data=sashelp.class;&lt;BR /&gt;
run; &lt;BR /&gt;
&lt;BR /&gt;
title; &lt;BR /&gt;
data _null_;&lt;BR /&gt;
set sashelp.class end=eof;&lt;BR /&gt;
if _n_ = 1 then do; &lt;BR /&gt;
  dcl odsout obj();&lt;BR /&gt;
  obj.title(text: "Main Title", &lt;BR /&gt;
                  overrides: "width=5.5in just=right", &lt;BR /&gt;
				  text: "Date %SYSFUNC(TODAY(), MMDDYY10.)", &lt;BR /&gt;
				  overrides: "width=4.5in just=right");&lt;BR /&gt;
&lt;BR /&gt;
  obj.table_start();&lt;BR /&gt;
  obj.row_start(type: "header");&lt;BR /&gt;
  obj.format_cell(text: "Name");&lt;BR /&gt;
  obj.format_cell(text: "Sex" );&lt;BR /&gt;
  obj.row_end();&lt;BR /&gt;
end;&lt;BR /&gt;
&lt;BR /&gt;
  obj.row_start();&lt;BR /&gt;
  obj.format_cell(text: name);&lt;BR /&gt;
  obj.format_cell(text: sex);&lt;BR /&gt;
  obj.row_end();&lt;BR /&gt;
&lt;BR /&gt;
put eof=; &lt;BR /&gt;
&lt;BR /&gt;
if eof = 1 then do;&lt;BR /&gt;
  obj.table_end();&lt;BR /&gt;
  obj.delete();&lt;BR /&gt;
end;&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
ods &amp;amp;dest close;</description>
      <pubDate>Tue, 04 Apr 2006 20:26:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Data-Step-Object/m-p/205#M62</guid>
      <dc:creator>DanO_sas_com</dc:creator>
      <dc:date>2006-04-04T20:26:20Z</dc:date>
    </item>
    <item>
      <title>Re: ODS Data Step Object</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Data-Step-Object/m-p/206#M63</link>
      <description>Dan,&lt;BR /&gt;
&lt;BR /&gt;
Thanks for the rapid response. Unfortunately, running your code on my SAS SP3 fails to show the "Main Title" and centers the date above the body table. DO I have to wait for SP4+ or is there a way with SP3?&lt;BR /&gt;
&lt;BR /&gt;
Thanks,&lt;BR /&gt;
&lt;BR /&gt;
Dwight</description>
      <pubDate>Tue, 04 Apr 2006 21:07:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Data-Step-Object/m-p/206#M63</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2006-04-04T21:07:53Z</dc:date>
    </item>
    <item>
      <title>Re: ODS Data Step Object</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Data-Step-Object/m-p/207#M64</link>
      <description>Dwight, &lt;BR /&gt;
&lt;BR /&gt;
You are correct.  It does work at v9.2, but that does not help you at all. I tried a couple of other approaches, and could not get it to work in V9.13sp*.  &lt;BR /&gt;
&lt;BR /&gt;
Sorry, &lt;BR /&gt;
Dan</description>
      <pubDate>Wed, 05 Apr 2006 20:31:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Data-Step-Object/m-p/207#M64</guid>
      <dc:creator>DanO_sas_com</dc:creator>
      <dc:date>2006-04-05T20:31:02Z</dc:date>
    </item>
    <item>
      <title>Re: ODS Data Step Object</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Data-Step-Object/m-p/208#M65</link>
      <description>Dan,&lt;BR /&gt;
&lt;BR /&gt;
I really appreciate the ODS Data Step Object approach to report writing. It promises a high degree of layout control while providing significant layout intelligence to handle minutae automagically. When can we expect it to go production?&lt;BR /&gt;
&lt;BR /&gt;
Dwight</description>
      <pubDate>Wed, 07 Jun 2006 18:26:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Data-Step-Object/m-p/208#M65</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2006-06-07T18:26:22Z</dc:date>
    </item>
    <item>
      <title>Re: ODS Data Step Object</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Data-Step-Object/m-p/209#M66</link>
      <description>Dwight, &lt;BR /&gt;
&lt;BR /&gt;
We expect that the ODS Data Step Object code will be production in the v9.2 timeframe with one minor limitation.  The LAYOUT/REGION methods will still remain experimental. Despite the fact that these 2 methods will remain experimental a significant amount of work has been done to stabalize our Layout capabilities throughout ODS. We hope to have some very exciting LAYOUT capabilities for you to experiment with in v9.2, and as always will look forward to your valuable insight to further enhance our offerings. &lt;BR /&gt;
&lt;BR /&gt;
thanks, &lt;BR /&gt;
Dan</description>
      <pubDate>Wed, 07 Jun 2006 19:02:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Data-Step-Object/m-p/209#M66</guid>
      <dc:creator>DanO_sas_com</dc:creator>
      <dc:date>2006-06-07T19:02:12Z</dc:date>
    </item>
  </channel>
</rss>

