<?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: How to remove the node'Table' out of pdf bookmark? in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-to-remove-the-node-Table-out-of-pdf-bookmark/m-p/334551#M17987</link>
    <description>Hi:&lt;BR /&gt;  It appears that you are using the technique outlined in this Tech Support note: &lt;A href="http://support.sas.com/kb/31/278.html" target="_blank"&gt;http://support.sas.com/kb/31/278.html&lt;/A&gt; -- if the solution provided in the note does not work for you, then my suggestion is that you open a track with Tech Support for more in-depth help.&lt;BR /&gt;&lt;BR /&gt;cynthia</description>
    <pubDate>Tue, 21 Feb 2017 04:00:38 GMT</pubDate>
    <dc:creator>Cynthia_sas</dc:creator>
    <dc:date>2017-02-21T04:00:38Z</dc:date>
    <item>
      <title>How to remove the node'Table' out of pdf bookmark?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-to-remove-the-node-Table-out-of-pdf-bookmark/m-p/334420#M17983</link>
      <description>&lt;P&gt;Hello all!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have the example code as below, from which I want to develop a table of contents on the left side of the pdf file without the node 'table1', then I applied the example code to my own code, however, it ends up having the node'table1', do you know what to do with it? Thanks!&lt;/P&gt;&lt;P&gt;Example Code:&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;ods proclabel 'Section 1';&lt;BR /&gt;data example;&lt;BR /&gt;set sashelp.class;&lt;BR /&gt;holder=1;&lt;BR /&gt;run;&lt;BR /&gt;ods document name=mydocrep(write);&lt;/P&gt;&lt;P&gt;proc report nowd data=example(obs=2) contents='Group 1';&lt;BR /&gt;define holder / noprint order;&lt;BR /&gt;break before holder / page contents='';&lt;BR /&gt;run;&lt;BR /&gt;ods proclabel=' ';&lt;/P&gt;&lt;P&gt;proc report nowd data=example(obs=4) contents='Group 2';&lt;BR /&gt;define holder / noprint order;&lt;BR /&gt;break before holder / page contents='';&lt;BR /&gt;run;&lt;BR /&gt;ods proclabel=' ';&lt;/P&gt;&lt;P&gt;proc report nowd data=example(obs=4) contents='Group 3';&lt;BR /&gt;define holder / noprint order;&lt;BR /&gt;break before holder / page contents='';&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;ods document close;&lt;BR /&gt;proc document name=mydocrep ;&lt;BR /&gt;move Report#2\Report#1 to report#1;&lt;BR /&gt;delete Report#2;&lt;BR /&gt;move Report#3\Report#1 to report#1;&lt;BR /&gt;delete Report#3;&lt;BR /&gt;run;&lt;BR /&gt;ods pdf file="/C:/Mtest293.pdf";&lt;BR /&gt;replay;&lt;BR /&gt;run;&lt;BR /&gt;ods pdf close;&lt;BR /&gt;quit;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My Own Code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;ods proclabel 'Section 1';&lt;/SPAN&gt;&lt;BR /&gt;%macro report(product ,title,content);&lt;/P&gt;&lt;P&gt;Proc report data=&amp;amp;product. contents=&amp;amp;content.&lt;BR /&gt;style(header)={color=black background=cornflowerblue fontweight=bold }&lt;BR /&gt;style(column)={just=center background=snow foreground=black fontweight=bold};&lt;BR /&gt;title3 j=c color=black HEIGHT=14pt BOLD &amp;amp;title.;&lt;BR /&gt;footnote3" ";&lt;BR /&gt;column _name_ year2017 year2016 Num_of_Variance mature2016 Num_of_Variance2 y2017 y2016 Variance ;&lt;/P&gt;&lt;P&gt;define _name_ / "Metrics" style(column)=data[ foreground=negfmt.];&lt;BR /&gt;define year2017/ "&amp;amp;dt_Mon." style=[foreground=negfmt.];&lt;BR /&gt;define year2016/ " &amp;amp;dt_Mon_pre." style=[foreground=negfmt.];&lt;BR /&gt;define Num_of_Variance/ "# of Variance" style=[foreground=negfmt. width=0.9in];&lt;BR /&gt;define mature2016/ "Mature &amp;amp;dt_Mon_pre." style=[foreground=negfmt.];&lt;BR /&gt;define Num_of_Variance2/ "# of Variance" style=[foreground=negfmt. width=0.9in];&lt;BR /&gt;define y2017/ "YTD17" style=[foreground=negfmt.];&lt;BR /&gt;define y2016/ " YTD16" style=[foreground=negfmt.];&lt;BR /&gt;define Variance/ "# of Variance" style=[foreground=negfmt. width=0.9in];&lt;/P&gt;&lt;P&gt;compute _name_ ;&lt;BR /&gt;if _name_= 'Avg Score' then call define(_row_,'style','style={background=gainsboro}');&lt;BR /&gt;if _name_= 'Avg ApScore' then call define(_row_,'style','style={background=gainsboro}');&lt;/P&gt;&lt;P&gt;endcomp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;%macro comp(arg);&lt;BR /&gt;compute &amp;amp;arg;&lt;BR /&gt;If _name_='App' then call define(_col_,'format','comma20.0');&lt;BR /&gt;If _name_='CreAR' then call define(_col_,'format','percent8.1');&lt;BR /&gt;if _name_= 'JuAR' then call define(_col_,'format','percent8.1');&lt;BR /&gt;if _name_= 'Ref % ' then call define(_col_,'format','percent8.1');&lt;BR /&gt;if _name_= 'Avg Score'&amp;nbsp;then call define(_col_,'format','comma8.0');&lt;BR /&gt;if _name_= 'Avg AppScore' then call define(_col_,'format','comma8.0');&lt;BR /&gt;if _name_= 'Cos %' then call define(_col_,'format','percent8.1');&lt;BR /&gt;if _name_= 'NF%' then call define(_col_,'format','percent8.1');&lt;BR /&gt;if _name_= 'Uppe %' then call define(_col_,'format','percent8.1');&lt;BR /&gt;if _name_= 'Grad%' then call define(_col_,'format','percent8.1');&lt;BR /&gt;if _name_='FIC%' then call define(_col_,'format','percent8.1');&lt;BR /&gt;if _name_='FI%' then call define(_col_,'format','percent8.1');&lt;BR /&gt;if _name_='Se %' then call define(_col_,'format','percent8.1');&lt;BR /&gt;endcomp;&lt;BR /&gt;%mend common_lines;&lt;/P&gt;&lt;P&gt;%comp(year2016);&lt;BR /&gt;%comp(year2017);&lt;BR /&gt;%comp( Num_of_Variance);&lt;BR /&gt;%comp(mature2016);&lt;BR /&gt;%comp( Num_of_Variance2);&lt;BR /&gt;%comp( y2017);&lt;BR /&gt;%comp(y2016);&lt;BR /&gt;%comp( Variance);&lt;BR /&gt;/* */&lt;BR /&gt;/* ods proclabel=' '; */&lt;BR /&gt;%mend;&lt;/P&gt;&lt;P&gt;ods pdf close;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;SPAN&gt;ods document name=mydocrep(write);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;%report (all_dqm, " All Products" ,'group1');&lt;BR /&gt;ods proclabel=' ';&lt;BR /&gt;%report (so_dqm, "SO " , 'group2');&lt;BR /&gt;ods proclabel=' ';&lt;BR /&gt;%report (pl_dqm, "PL " , 'group3');&lt;BR /&gt;ods proclabel=' ';&lt;BR /&gt;%report (ct_dqm, "CT " ,'group4');&lt;BR /&gt;ods proclabel=' ';&lt;BR /&gt;%report (bar_dqm, "BS " ,'group5');&lt;BR /&gt;ods proclabel=' ';&lt;BR /&gt;%report (mx_dqm, "MR",'group6');&lt;/P&gt;&lt;P&gt;ods document close;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;proc document name=mydocrep ;&lt;BR /&gt;&amp;nbsp;move Report#2\Report#1 to report#1;&lt;BR /&gt;delete Report#2;&lt;BR /&gt;move Report#3\Report#1 to report#1;&lt;BR /&gt;delete Report#3;&lt;BR /&gt;move Report#4\Report#1 to report#1;&lt;BR /&gt;delete Report#4;&lt;BR /&gt;move Report#5\Report#1 to report#1;&lt;BR /&gt;delete Report#5;&lt;BR /&gt;move Report#6\Report#1 to report#1;&lt;BR /&gt;delete Report#6;&lt;/P&gt;&lt;P&gt;run;&lt;BR /&gt;ods pdf file="/C:/Mtest28993.pdf";&lt;BR /&gt;replay;&lt;BR /&gt;run;&lt;BR /&gt;ods pdf close;&lt;BR /&gt;quit;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Feb 2017 18:47:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-to-remove-the-node-Table-out-of-pdf-bookmark/m-p/334420#M17983</guid>
      <dc:creator>zhangda</dc:creator>
      <dc:date>2017-02-20T18:47:29Z</dc:date>
    </item>
    <item>
      <title>Re: How to remove the node'Table' out of pdf bookmark?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-to-remove-the-node-Table-out-of-pdf-bookmark/m-p/334551#M17987</link>
      <description>Hi:&lt;BR /&gt;  It appears that you are using the technique outlined in this Tech Support note: &lt;A href="http://support.sas.com/kb/31/278.html" target="_blank"&gt;http://support.sas.com/kb/31/278.html&lt;/A&gt; -- if the solution provided in the note does not work for you, then my suggestion is that you open a track with Tech Support for more in-depth help.&lt;BR /&gt;&lt;BR /&gt;cynthia</description>
      <pubDate>Tue, 21 Feb 2017 04:00:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-to-remove-the-node-Table-out-of-pdf-bookmark/m-p/334551#M17987</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2017-02-21T04:00:38Z</dc:date>
    </item>
  </channel>
</rss>

