<?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: Remove bookmarks when output results of multiple procedure by ods pdf in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Remove-bookmarks-when-output-results-of-multiple-procedure-by/m-p/49802#M6396</link>
    <description>Hi Cynthia,&lt;BR /&gt;
&lt;BR /&gt;
Thank you very much for your reply. &lt;BR /&gt;
&lt;BR /&gt;
You are correct. Now I can suppress the first and second heading of proc print procedure. However, the bookmarks disappeared, but the first node is still there. How to get rid of the node as well? The reason I want to completely eliminate the bookmarks for proc print is since the pie chart and the table are in the same page, clicking on one bookmark (proc gchart generated) could direct to it. &lt;BR /&gt;
&lt;BR /&gt;
Thanks,&lt;BR /&gt;
Lu</description>
    <pubDate>Wed, 15 Dec 2010 13:52:12 GMT</pubDate>
    <dc:creator>lueryy2000</dc:creator>
    <dc:date>2010-12-15T13:52:12Z</dc:date>
    <item>
      <title>Remove bookmarks when output results of multiple procedure by ods pdf</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Remove-bookmarks-when-output-results-of-multiple-procedure-by/m-p/49797#M6391</link>
      <description>Hi,&lt;BR /&gt;
&lt;BR /&gt;
I read some threads in the forum but no luck finding the right answer for my problem. I wanted to output a pie chart( proc gchart) and a table (proc print) using ods pdf. SAS generated a main heading and a sub-heading for each procedure. It there a way to get rid of both main and sub-headings? If that is impossible, is sas able to suppress the sub-heading? I tried adding content="" option in the proc print and it suppressed the second node, but I don't know how to do it for the pie chart? Below is my data and code.&lt;BR /&gt;
&lt;BR /&gt;
data mydata;&lt;BR /&gt;
   input group $ count percent;&lt;BR /&gt;
datalines;&lt;BR /&gt;
A 20 .2&lt;BR /&gt;
B 30 .3&lt;BR /&gt;
C 50 .5&lt;BR /&gt;
;&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
GOPTIONS RESET=ALL DEV=SASPRTC;&lt;BR /&gt;
ODS LISTING CLOSE;&lt;BR /&gt;
ODS PDF FILE="H:\report.pdf";&lt;BR /&gt;
&lt;BR /&gt;
    ODS LAYOUT START WIDTH=11in HEIGHT=8.5in;;&lt;BR /&gt;
&lt;BR /&gt;
    ODS REGION X=0.5in Y=1.8in HEIGHT=4.5in WIDTH=4.5in;&lt;BR /&gt;
&lt;BR /&gt;
    PROC GCHART DATA=mydata;&lt;BR /&gt;
        PIE group / sumvar=count ;&lt;BR /&gt;
    RUN;&lt;BR /&gt;
    QUIT;&lt;BR /&gt;
&lt;BR /&gt;
    ODS REGION X=4.5in Y=2.2in HEIGHT=5in WIDTH=7in;&lt;BR /&gt;
&lt;BR /&gt;
    PROC PRINT DATA=mydata ;&lt;BR /&gt;
    RUN;&lt;BR /&gt;
&lt;BR /&gt;
ODS LAYOUT END;&lt;BR /&gt;
&lt;BR /&gt;
ODS PDF CLOSE;&lt;BR /&gt;
GOPTIONS RESET=ALL;&lt;BR /&gt;
ODS LISTING;&lt;BR /&gt;
&lt;BR /&gt;
Thanks in advance,&lt;BR /&gt;
Lu</description>
      <pubDate>Tue, 14 Dec 2010 20:37:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Remove-bookmarks-when-output-results-of-multiple-procedure-by/m-p/49797#M6391</guid>
      <dc:creator>lueryy2000</dc:creator>
      <dc:date>2010-12-14T20:37:40Z</dc:date>
    </item>
    <item>
      <title>Re: Remove bookmarks when output results of multiple procedure by ods pdf</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Remove-bookmarks-when-output-results-of-multiple-procedure-by/m-p/49798#M6392</link>
      <description>Hi:&lt;BR /&gt;
  If you look up ODS PROCLABEL -- that is what you use to rename or suppress the information for the TOP level node in the Results Window or the Table of Contents.&lt;BR /&gt;
[pre]&lt;BR /&gt;
ods proclabel 'top level node xxxx procedure ';&lt;BR /&gt;
OR&lt;BR /&gt;
ods proclabel ' ';&lt;BR /&gt;
[/pre]&lt;BR /&gt;
                                &lt;BR /&gt;
  For the lower level nodes, PROC GCHART does not have CONTENTS=, like PROC PRINT, PROC REPORT and PROC TABULATE. But you can use the DESCRIPTION= option to change the name of what you see for the GCHART output. However, DESCRIPTION=' ' will NOT suppress the TOC link for ODS PDF. If you use DESCRIPTION=' ' then you will still see GCHART in the Table of Contents.&lt;BR /&gt;
 &lt;BR /&gt;
  I believe there have been some previous forum postings on using ODS DOCUMENT to rearrange and reorder objects in the result hierarchy, so the Table of Contents is different. Otherwise, (and you might want to check with Tech Support on this) I do not think there is a way to suppress the lower level node for classic SAS/GRAPH procedures.&lt;BR /&gt;
 &lt;BR /&gt;
cynthia</description>
      <pubDate>Tue, 14 Dec 2010 22:20:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Remove-bookmarks-when-output-results-of-multiple-procedure-by/m-p/49798#M6392</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2010-12-14T22:20:48Z</dc:date>
    </item>
    <item>
      <title>Re: Remove bookmarks when output results of multiple procedure by ods pdf</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Remove-bookmarks-when-output-results-of-multiple-procedure-by/m-p/49799#M6393</link>
      <description>Hi.&lt;BR /&gt;
There is a option ,But I am not sure whether it is what you need.&lt;BR /&gt;
&lt;BR /&gt;
[pre]&lt;BR /&gt;
ODS PDF FILE="c:\report.pdf" bookmark='no';&lt;BR /&gt;
[/pre]&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Ksharp</description>
      <pubDate>Wed, 15 Dec 2010 03:40:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Remove-bookmarks-when-output-results-of-multiple-procedure-by/m-p/49799#M6393</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2010-12-15T03:40:41Z</dc:date>
    </item>
    <item>
      <title>Re: Remove bookmarks when output results of multiple procedure by ods pdf</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Remove-bookmarks-when-output-results-of-multiple-procedure-by/m-p/49800#M6394</link>
      <description>Hi:&lt;BR /&gt;
  If the OP wants to eliminate ALL the bookmarks completely, then these will work:&lt;BR /&gt;
[pre]&lt;BR /&gt;
ods pdf file='c:\temp\report1.pdf' bookmarkgen=no;&lt;BR /&gt;
or &lt;BR /&gt;
ods pdf file='c:\temp\report2.pdf' notoc;&lt;BR /&gt;
[/pre]&lt;BR /&gt;
                                                            &lt;BR /&gt;
However, while bookmark='no' did not give an error (which surprised me); it also did NOT suppress the PDF Table of Contents. In SAS 9.2 with your syntax, I still got a bookmark list in the PDF bookmark area.&lt;BR /&gt;
 &lt;BR /&gt;
cynthia</description>
      <pubDate>Wed, 15 Dec 2010 03:52:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Remove-bookmarks-when-output-results-of-multiple-procedure-by/m-p/49800#M6394</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2010-12-15T03:52:11Z</dc:date>
    </item>
    <item>
      <title>Re: Remove bookmarks when output results of multiple procedure by ods pdf</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Remove-bookmarks-when-output-results-of-multiple-procedure-by/m-p/49801#M6395</link>
      <description>Hi.Cynthia.&lt;BR /&gt;
I guess view this PDF under SAS explorer.&lt;BR /&gt;
If you open this PDF from disk by pdf-reader,then bookmarks will disappear.</description>
      <pubDate>Wed, 15 Dec 2010 08:12:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Remove-bookmarks-when-output-results-of-multiple-procedure-by/m-p/49801#M6395</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2010-12-15T08:12:43Z</dc:date>
    </item>
    <item>
      <title>Re: Remove bookmarks when output results of multiple procedure by ods pdf</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Remove-bookmarks-when-output-results-of-multiple-procedure-by/m-p/49802#M6396</link>
      <description>Hi Cynthia,&lt;BR /&gt;
&lt;BR /&gt;
Thank you very much for your reply. &lt;BR /&gt;
&lt;BR /&gt;
You are correct. Now I can suppress the first and second heading of proc print procedure. However, the bookmarks disappeared, but the first node is still there. How to get rid of the node as well? The reason I want to completely eliminate the bookmarks for proc print is since the pie chart and the table are in the same page, clicking on one bookmark (proc gchart generated) could direct to it. &lt;BR /&gt;
&lt;BR /&gt;
Thanks,&lt;BR /&gt;
Lu</description>
      <pubDate>Wed, 15 Dec 2010 13:52:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Remove-bookmarks-when-output-results-of-multiple-procedure-by/m-p/49802#M6396</guid>
      <dc:creator>lueryy2000</dc:creator>
      <dc:date>2010-12-15T13:52:12Z</dc:date>
    </item>
    <item>
      <title>Re: Remove bookmarks when output results of multiple procedure by ods pdf</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Remove-bookmarks-when-output-results-of-multiple-procedure-by/m-p/49803#M6397</link>
      <description>Hi Ksharp,&lt;BR /&gt;
&lt;BR /&gt;
Thank you for you reply. I tried but I still get bookmarks even I opened it in adobe reader.&lt;BR /&gt;
&lt;BR /&gt;
Lu</description>
      <pubDate>Wed, 15 Dec 2010 13:54:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Remove-bookmarks-when-output-results-of-multiple-procedure-by/m-p/49803#M6397</guid>
      <dc:creator>lueryy2000</dc:creator>
      <dc:date>2010-12-15T13:54:49Z</dc:date>
    </item>
    <item>
      <title>Re: Remove bookmarks when output results of multiple procedure by ods pdf</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Remove-bookmarks-when-output-results-of-multiple-procedure-by/m-p/49804#M6398</link>
      <description>It is so easy to delete those marks one by one&lt;BR /&gt;
under Foxit reader  (free edition)  if you are obliged to avoid a paying Acrobat&lt;BR /&gt;
0f course your pdf must be in a  not protected state (or before applying protection).&lt;BR /&gt;
&lt;BR /&gt;
HTH &lt;BR /&gt;
Andre</description>
      <pubDate>Wed, 15 Dec 2010 14:20:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Remove-bookmarks-when-output-results-of-multiple-procedure-by/m-p/49804#M6398</guid>
      <dc:creator>Andre</dc:creator>
      <dc:date>2010-12-15T14:20:00Z</dc:date>
    </item>
    <item>
      <title>Re: Remove bookmarks when output results of multiple procedure by ods pdf</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Remove-bookmarks-when-output-results-of-multiple-procedure-by/m-p/49805#M6399</link>
      <description>Hi.Or maybe you need this.BTW 'bookmark=no' is worked for me ,It is weird.&lt;BR /&gt;
Cynthia is right.&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
[pre]&lt;BR /&gt;
ODS PDF FILE="c:\report.pdf" nobookmarklist nobookmarkgen;&lt;BR /&gt;
[/pre]&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Ksharp

Message was edited by: Ksharp</description>
      <pubDate>Thu, 16 Dec 2010 03:42:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Remove-bookmarks-when-output-results-of-multiple-procedure-by/m-p/49805#M6399</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2010-12-16T03:42:59Z</dc:date>
    </item>
    <item>
      <title>Re: Remove bookmarks when output results of multiple procedure by ods pdf</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Remove-bookmarks-when-output-results-of-multiple-procedure-by/m-p/49806#M6400</link>
      <description>Thanks.</description>
      <pubDate>Thu, 16 Dec 2010 18:07:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Remove-bookmarks-when-output-results-of-multiple-procedure-by/m-p/49806#M6400</guid>
      <dc:creator>lueryy2000</dc:creator>
      <dc:date>2010-12-16T18:07:48Z</dc:date>
    </item>
    <item>
      <title>Re: Remove bookmarks when output results of multiple procedure by ods pdf</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Remove-bookmarks-when-output-results-of-multiple-procedure-by/m-p/49807#M6401</link>
      <description>Thank you.</description>
      <pubDate>Thu, 16 Dec 2010 18:08:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Remove-bookmarks-when-output-results-of-multiple-procedure-by/m-p/49807#M6401</guid>
      <dc:creator>lueryy2000</dc:creator>
      <dc:date>2010-12-16T18:08:06Z</dc:date>
    </item>
  </channel>
</rss>

