<?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: ODSOUT Data Step Object and PDF Bookmarks in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODSOUT-Data-Step-Object-and-PDF-Bookmarks/m-p/35173#M5084</link>
    <description>Hi, Randy:&lt;BR /&gt;
  The use of the "object dot" syntax is experimental. I suspect that the only folks who might be able to find out an answer to this are the ones in Tech Support. I do know that with regular data step and ODS (current) syntax, there is a way to CHANGE the object label.&lt;BR /&gt;
  On the FILE PRINT ODS statement, you use the OBJECTLABEL option:&lt;BR /&gt;
&lt;A href="http://support.sas.com/kb/23/425.html" target="_blank"&gt;http://support.sas.com/kb/23/425.html&lt;/A&gt;&lt;BR /&gt;
&lt;BR /&gt;
I'm guessing that, in your syntax, there is some default for LABEL: when you declare the object -- even if you don't give one explicitly, then probably the NAME: is used. There's got to be something to indicate the object in the SAS Results Window. However, short of looking in the information on the topic&lt;BR /&gt;
&lt;A href="http://support.sas.com/rnd/base/datastep/dsobject/#new" target="_blank"&gt;http://support.sas.com/rnd/base/datastep/dsobject/#new&lt;/A&gt;&lt;BR /&gt;
&lt;BR /&gt;
or contacting Tech Support, I don't know many folks who are using this yet. I don't know whether the usual SAS tricks will work here:&lt;BR /&gt;
label: '00'x or label: ' ' -- there's a distinct chance that if you blank out the label the name will be used anyway.&lt;BR /&gt;
 &lt;BR /&gt;
cynthia</description>
    <pubDate>Thu, 31 Jul 2008 13:38:01 GMT</pubDate>
    <dc:creator>Cynthia_sas</dc:creator>
    <dc:date>2008-07-31T13:38:01Z</dc:date>
    <item>
      <title>ODSOUT Data Step Object and PDF Bookmarks</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODSOUT-Data-Step-Object-and-PDF-Bookmarks/m-p/35172#M5083</link>
      <description>Hi,&lt;BR /&gt;
&lt;BR /&gt;
The code below will generate 2 PDF bookmarks for each observation (1 for each table).  Is it possible  to suppress the bookmark generated for the 2nd table?  If so, how?&lt;BR /&gt;
&lt;BR /&gt;
Thanks,&lt;BR /&gt;
Randy&lt;BR /&gt;
&lt;BR /&gt;
ods listing close;&lt;BR /&gt;
ods pdf file="C:\TEMP\test.pdf";&lt;BR /&gt;
&lt;BR /&gt;
data _null_;&lt;BR /&gt;
set sashelp.class;&lt;BR /&gt;
if _n_=1 then dcl odsout ods();&lt;BR /&gt;
&lt;BR /&gt;
ods.table_start(name: name, label: name, overrides: "just=left borderWidth=0");&lt;BR /&gt;
  ods.row_start();&lt;BR /&gt;
    ods.format_cell(text: name);&lt;BR /&gt;
    ods.format_cell(text: put(age,best.));&lt;BR /&gt;
  ods.row_end();&lt;BR /&gt;
ods.table_end();&lt;BR /&gt;
&lt;BR /&gt;
ods.table_start(overrides: "just=left");&lt;BR /&gt;
  ods.row_start();&lt;BR /&gt;
    ods.format_cell(text: 'Height');&lt;BR /&gt;
    ods.format_cell(text: 'Weight');&lt;BR /&gt;
  ods.row_end();&lt;BR /&gt;
  ods.row_start();&lt;BR /&gt;
    ods.format_cell(text: put(height,best.));&lt;BR /&gt;
    ods.format_cell(text: put(weight,best.));&lt;BR /&gt;
  ods.row_end();&lt;BR /&gt;
ods.table_end();&lt;BR /&gt;
run;&lt;BR /&gt;
ods listing;&lt;BR /&gt;
ods pdf close;</description>
      <pubDate>Wed, 30 Jul 2008 20:45:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODSOUT-Data-Step-Object-and-PDF-Bookmarks/m-p/35172#M5083</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2008-07-30T20:45:20Z</dc:date>
    </item>
    <item>
      <title>Re: ODSOUT Data Step Object and PDF Bookmarks</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODSOUT-Data-Step-Object-and-PDF-Bookmarks/m-p/35173#M5084</link>
      <description>Hi, Randy:&lt;BR /&gt;
  The use of the "object dot" syntax is experimental. I suspect that the only folks who might be able to find out an answer to this are the ones in Tech Support. I do know that with regular data step and ODS (current) syntax, there is a way to CHANGE the object label.&lt;BR /&gt;
  On the FILE PRINT ODS statement, you use the OBJECTLABEL option:&lt;BR /&gt;
&lt;A href="http://support.sas.com/kb/23/425.html" target="_blank"&gt;http://support.sas.com/kb/23/425.html&lt;/A&gt;&lt;BR /&gt;
&lt;BR /&gt;
I'm guessing that, in your syntax, there is some default for LABEL: when you declare the object -- even if you don't give one explicitly, then probably the NAME: is used. There's got to be something to indicate the object in the SAS Results Window. However, short of looking in the information on the topic&lt;BR /&gt;
&lt;A href="http://support.sas.com/rnd/base/datastep/dsobject/#new" target="_blank"&gt;http://support.sas.com/rnd/base/datastep/dsobject/#new&lt;/A&gt;&lt;BR /&gt;
&lt;BR /&gt;
or contacting Tech Support, I don't know many folks who are using this yet. I don't know whether the usual SAS tricks will work here:&lt;BR /&gt;
label: '00'x or label: ' ' -- there's a distinct chance that if you blank out the label the name will be used anyway.&lt;BR /&gt;
 &lt;BR /&gt;
cynthia</description>
      <pubDate>Thu, 31 Jul 2008 13:38:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODSOUT-Data-Step-Object-and-PDF-Bookmarks/m-p/35173#M5084</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2008-07-31T13:38:01Z</dc:date>
    </item>
    <item>
      <title>Re: ODSOUT Data Step Object and PDF Bookmarks</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODSOUT-Data-Step-Object-and-PDF-Bookmarks/m-p/35174#M5085</link>
      <description>Randy, &lt;BR /&gt;
&lt;BR /&gt;
At this point there a way to manipulate the bookmarks.  However I think your suggestion is a very good one.   I will enter a defect to suggest adding an option to the table_start method.   A new bookmark will be created every time you do a table_start().   &lt;BR /&gt;
&lt;BR /&gt;
Thanks, &lt;BR /&gt;
Dan</description>
      <pubDate>Thu, 31 Jul 2008 15:11:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODSOUT-Data-Step-Object-and-PDF-Bookmarks/m-p/35174#M5085</guid>
      <dc:creator>DanO_sas_com</dc:creator>
      <dc:date>2008-07-31T15:11:57Z</dc:date>
    </item>
    <item>
      <title>Re: ODSOUT Data Step Object and PDF Bookmarks</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODSOUT-Data-Step-Object-and-PDF-Bookmarks/m-p/35175#M5086</link>
      <description>I ended up using a gridded layout instead of the 2nd table.  That eliminated the unwanted bookmark.&lt;BR /&gt;
&lt;BR /&gt;
-Randy</description>
      <pubDate>Thu, 14 Aug 2008 17:52:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODSOUT-Data-Step-Object-and-PDF-Bookmarks/m-p/35175#M5086</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2008-08-14T17:52:49Z</dc:date>
    </item>
  </channel>
</rss>

