<?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: MSOFFICE2K template and inherited MSOFFICE2K templated behaving differently in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/MSOFFICE2K-template-and-inherited-MSOFFICE2K-templated-behaving/m-p/4390#M1798</link>
    <description>Suren:&lt;BR /&gt;
 The ACTXIMG driver was new in SAS 9. ActiveX was the only "ActiveX" device driver available in SAS 8. Anyway, if you change the ACTXIMG to ACTIVEX or JAVA you should still be able to test your code. But the fundamental issue, I think, is what's happening inside the changed tagset and not the device driver.&lt;BR /&gt;
 &lt;BR /&gt;
In my opinion,  it's still a good idea to contact Tech Support for more help. They have a UNIX system that they can test on and they can help you if it IS a device driver issue AND they can help you if it's a tagset issue.&lt;BR /&gt;
 &lt;BR /&gt;
cynthia</description>
    <pubDate>Wed, 29 Aug 2007 22:39:10 GMT</pubDate>
    <dc:creator>Cynthia_sas</dc:creator>
    <dc:date>2007-08-29T22:39:10Z</dc:date>
    <item>
      <title>MSOFFICE2K template and inherited MSOFFICE2K templated behaving differently</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/MSOFFICE2K-template-and-inherited-MSOFFICE2K-templated-behaving/m-p/4386#M1794</link>
      <description>Hi &lt;BR /&gt;
Does the MSOFFICE2K and a inheritd MSOFFICE2k templatd behave differently for charts.&lt;BR /&gt;
&lt;BR /&gt;
I tried the follwing first&lt;BR /&gt;
&lt;BR /&gt;
ODS TAGSETS.MSOFFICE2K FILE = "F:\ct.xls" ;&lt;BR /&gt;
GOPTIONS 	xpixels=600	ypixels=400 device=activex;&lt;BR /&gt;
proc gplot data=sashelp.class ;&lt;BR /&gt;
plot weight*age height*age;&lt;BR /&gt;
run;&lt;BR /&gt;
quit;&lt;BR /&gt;
ODS TAGSETS.MSOFFICE2K CLOSE;&lt;BR /&gt;
&lt;BR /&gt;
it gave me nice charts in excel file.&lt;BR /&gt;
&lt;BR /&gt;
But when I try the following (ofcourse I added extra stuff to the new template. But here I am showing just the basic template with just the inheritence)&lt;BR /&gt;
PROC TEMPLATE;&lt;BR /&gt;
	DEFINE TAGSET TAGSETS.TEST3;&lt;BR /&gt;
		PARENT=TAGSETS.MSOFFICE2K;&lt;BR /&gt;
	END;&lt;BR /&gt;
run;&lt;BR /&gt;
ODS TAGSETS.TEST3 FILE = "F:\ct.xls" ;&lt;BR /&gt;
GOPTIONS 	xpixels=600	ypixels=400 device=activex;&lt;BR /&gt;
proc gplot data=sashelp.class ;&lt;BR /&gt;
plot weight*age height*age;&lt;BR /&gt;
run;&lt;BR /&gt;
quit;&lt;BR /&gt;
ODS TAGSETS.TEST3 CLOSE;&lt;BR /&gt;
&lt;BR /&gt;
When I opened the file in excel , I saw 2 very small distored charts.&lt;BR /&gt;
&lt;BR /&gt;
I was under the impression when we create a new template using the existing template, both should produce the same results except the new features added to the new template. Any Idea why it's behaving like this.&lt;BR /&gt;
&lt;BR /&gt;
Thanks for the feedback&lt;BR /&gt;
Suren</description>
      <pubDate>Wed, 29 Aug 2007 12:31:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/MSOFFICE2K-template-and-inherited-MSOFFICE2K-templated-behaving/m-p/4386#M1794</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2007-08-29T12:31:59Z</dc:date>
    </item>
    <item>
      <title>Re: MSOFFICE2K template and inherited MSOFFICE2K templated behaving differently</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/MSOFFICE2K-template-and-inherited-MSOFFICE2K-templated-behaving/m-p/4387#M1795</link>
      <description>Hi:&lt;BR /&gt;
  When I do this:&lt;BR /&gt;
[pre]&lt;BR /&gt;
ods path sashelp.tmplmst(read);&lt;BR /&gt;
    &lt;BR /&gt;
ods tagsets.msoffice2k path='c:\temp' (url=none)&lt;BR /&gt;
                       gpath='c:\temp' (url=none)&lt;BR /&gt;
                       file='use_original.xls';&lt;BR /&gt;
  &lt;BR /&gt;
title 'The Table';&lt;BR /&gt;
     &lt;BR /&gt;
proc print data=sashelp.class;&lt;BR /&gt;
run;&lt;BR /&gt;
    &lt;BR /&gt;
title 'The Graph';&lt;BR /&gt;
goptions device=actximg;&lt;BR /&gt;
    &lt;BR /&gt;
PROC GCHART DATA=sashelp.class;&lt;BR /&gt;
     VBAR3D Sex / SUMVAR=Height TYPE=MEAN;&lt;BR /&gt;
RUN; &lt;BR /&gt;
QUIT;&lt;BR /&gt;
    &lt;BR /&gt;
ods tagsets.msoffice2k close;&lt;BR /&gt;
[/pre]&lt;BR /&gt;
 &lt;BR /&gt;
And then compare it to the output from this code:&lt;BR /&gt;
[pre]&lt;BR /&gt;
&lt;BR /&gt;
ods path work.testmso(update)&lt;BR /&gt;
         sashelp.tmplmst(read);&lt;BR /&gt;
    &lt;BR /&gt;
proc template;&lt;BR /&gt;
  define tagset tagsets.test3;&lt;BR /&gt;
    parent=tagsets.msoffice2k;&lt;BR /&gt;
  end;&lt;BR /&gt;
run;&lt;BR /&gt;
    &lt;BR /&gt;
ods tagsets.test3 path='c:\temp' (url=none)&lt;BR /&gt;
                       gpath='c:\temp' (url=none)&lt;BR /&gt;
                       file='use_inherit.xls';&lt;BR /&gt;
&lt;BR /&gt;
title 'The Table';&lt;BR /&gt;
   &lt;BR /&gt;
proc print data=sashelp.class;&lt;BR /&gt;
run;&lt;BR /&gt;
   &lt;BR /&gt;
title 'The Graph';&lt;BR /&gt;
goptions device=actximg;&lt;BR /&gt;
   &lt;BR /&gt;
PROC GCHART DATA=sashelp.class;&lt;BR /&gt;
     VBAR3D Sex / SUMVAR=Height TYPE=MEAN;&lt;BR /&gt;
RUN; &lt;BR /&gt;
QUIT;&lt;BR /&gt;
   &lt;BR /&gt;
ods tagsets.test3 close;&lt;BR /&gt;
[/pre]&lt;BR /&gt;
 &lt;BR /&gt;
I get EXACTLY the same output in both output files -- when opened in the Browser or opened in Excel. So my only conclusion is that somehow, something in your tagset code for TAGSETS.TEST3 is broken.&lt;BR /&gt;
 &lt;BR /&gt;
Your best bet for help with tagset syntax and debugging is Tech Support.&lt;BR /&gt;
 &lt;BR /&gt;
cynthia</description>
      <pubDate>Wed, 29 Aug 2007 15:28:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/MSOFFICE2K-template-and-inherited-MSOFFICE2K-templated-behaving/m-p/4387#M1795</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2007-08-29T15:28:53Z</dc:date>
    </item>
    <item>
      <title>Re: MSOFFICE2K template and inherited MSOFFICE2K templated behaving differently</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/MSOFFICE2K-template-and-inherited-MSOFFICE2K-templated-behaving/m-p/4388#M1796</link>
      <description>Thanks Cynthia.&lt;BR /&gt;
&lt;BR /&gt;
When I run your code in unix box( I changed the output path to unix )&lt;BR /&gt;
I got the following error message&lt;BR /&gt;
&lt;BR /&gt;
18         title 'The Graph';&lt;BR /&gt;
19         goptions device=actximg;&lt;BR /&gt;
20         PROC GCHART DATA=sashelp.class;&lt;BR /&gt;
21         VBAR3D Sex / SUMVAR=Height TYPE=MEAN;&lt;BR /&gt;
22         RUN;&lt;BR /&gt;
&lt;BR /&gt;
NOTE: ActiveX Control not available, defaulting to JAVA.&lt;BR /&gt;
ERROR: Java class generated an exception.&lt;BR /&gt;
22       !      QUIT;&lt;BR /&gt;
&lt;BR /&gt;
***********&lt;BR /&gt;
I know I can create the images with device=activex  in unix.. Can the actximg device  in unique to windows OS only? This may be a question for Support .. but just checking to see &lt;BR /&gt;
&lt;BR /&gt;
Thanks again&lt;BR /&gt;
Suren</description>
      <pubDate>Wed, 29 Aug 2007 22:17:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/MSOFFICE2K-template-and-inherited-MSOFFICE2K-templated-behaving/m-p/4388#M1796</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2007-08-29T22:17:58Z</dc:date>
    </item>
    <item>
      <title>Re: MSOFFICE2K template and inherited MSOFFICE2K templated behaving differently</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/MSOFFICE2K-template-and-inherited-MSOFFICE2K-templated-behaving/m-p/4389#M1797</link>
      <description>just to add few more line to my previous email , I am running the code in EG4, connected to UNIX&lt;BR /&gt;
&lt;BR /&gt;
suren</description>
      <pubDate>Wed, 29 Aug 2007 22:21:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/MSOFFICE2K-template-and-inherited-MSOFFICE2K-templated-behaving/m-p/4389#M1797</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2007-08-29T22:21:09Z</dc:date>
    </item>
    <item>
      <title>Re: MSOFFICE2K template and inherited MSOFFICE2K templated behaving differently</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/MSOFFICE2K-template-and-inherited-MSOFFICE2K-templated-behaving/m-p/4390#M1798</link>
      <description>Suren:&lt;BR /&gt;
 The ACTXIMG driver was new in SAS 9. ActiveX was the only "ActiveX" device driver available in SAS 8. Anyway, if you change the ACTXIMG to ACTIVEX or JAVA you should still be able to test your code. But the fundamental issue, I think, is what's happening inside the changed tagset and not the device driver.&lt;BR /&gt;
 &lt;BR /&gt;
In my opinion,  it's still a good idea to contact Tech Support for more help. They have a UNIX system that they can test on and they can help you if it IS a device driver issue AND they can help you if it's a tagset issue.&lt;BR /&gt;
 &lt;BR /&gt;
cynthia</description>
      <pubDate>Wed, 29 Aug 2007 22:39:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/MSOFFICE2K-template-and-inherited-MSOFFICE2K-templated-behaving/m-p/4390#M1798</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2007-08-29T22:39:10Z</dc:date>
    </item>
    <item>
      <title>Re: MSOFFICE2K template and inherited MSOFFICE2K templated behaving differently</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/MSOFFICE2K-template-and-inherited-MSOFFICE2K-templated-behaving/m-p/4391#M1799</link>
      <description>Thanks Cynthia. I have fired a ticket to Support.&lt;BR /&gt;
&lt;BR /&gt;
Cheers&lt;BR /&gt;
Suren</description>
      <pubDate>Wed, 29 Aug 2007 22:59:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/MSOFFICE2K-template-and-inherited-MSOFFICE2K-templated-behaving/m-p/4391#M1799</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2007-08-29T22:59:14Z</dc:date>
    </item>
  </channel>
</rss>

