Web Template - Stylesheet ?

Hi,
We just migrated from 3.5 to BI 7.0
In Web Application Designer 3.5 a stylesheet could be applied the the web template.
Does anybody know what happend to it in WAD 7.0?
Br Rasmus

Hi Li,
According to SAP Documentation, there is a change in how to apply stylescheets.
http://help.sap.com/saphelp_nw04s/helpdata/en/44/317d1f955e3f0ae10000000a114a6b/frameset.htm
If you know how to change the stylesheet, please let me know.

Similar Messages

  • How to use stylesheet from web-template in portal

    Hello all,
    I want to integrate a web application consisting of several web-templates (BW 3.5) into a portal (EP 6.0) via iviews.
    When called from the portal the web-templates stylesheets are replaced by portal stylesheets.
    How do I force the portal to use the web-templates stylesheets.
    Thanks in advance,
    Denis

    You can define the styles you want in a *.css file then put a link in your jsp to use these styles.  You can also just put the styles directly in your jsp.  Either should work
    I have another post with some examples feel free to look there
    Hope this helps

  • Different stylesheets in the one web template

    does anyone know the best way to use different stylesheets for different tables in the one web template?

    Andrew,
    Welcome to SDN....
    I am not sure if you can use different stylesheets but then if it is a query table , you can change the background styles using the table modifier class and achieve the same.
    Arun

  • Use Stylesheet in Web Template

    Hi All,
    is it possible to use my own stylesheet in my Web Template? if yes, how?
    Thanks, Johannes

    Are you using 3.5 or Netweaver?
    You could do it in the old version (3.5), but in Netweaver you need to change the portal theme through portal administration - even if you point to a custom CSS through your template, the portal theme will overwrite it
    Regards,
    Pavel

  • Web template migration (3.5 - 7.0) & stylesheet is not found/used

    Hey,
    we just made some web template migrations from 3.5 to 7.0. After the migration was done successfully, the migrated stylesheet link is not working anymore. This came apparent by opening the web template in the browser where the standard colours and fonts of the sap css files are shown.
    Does anybody know, how to add a own stylesheet within the WAD 7.0? The problem is, that obviously after migrating a template the link is not good anymore.
    Thanks a lot for your help.

    Hi Andreas,
    I am on BI 7.0 and tring to change the look and feel of the web template by changing the Portal theme.
    When I go to Portal themes I see an option for BI 3.0 reports and not BI 7.0 reports and when I make the changes to BI 3.0 reports they do not affect in 7.0 templates.
    Can you please let me know how did you solve your problem, because changing Portal theme does not seem to help for BI 7.0 reports.
    Thanks,
    Vivek

  • How to reference variable values in a BW Web Template

    Hi All,
    I'm having a problem which I hope someone can help me with.
    OVERVIEW
    I've developed a BW Web template with (among other things) a TEXTELEMENTS Web Item and a TABLE Web Item. I've enhanced the context menu so that when a user selects a row within the TABLE, they can start a SEM-BPS Web interface (which displays a manual planning layout). I've used the 'How to call a BPS Web Interface with Predefined Selections' document to get the basic mechanism working. The JavaScript function I've written successfully passes the variable (DFCOST_PL) value to the planning layout.
    THE PROBLEM
    The problem is twofold....
    1. I need to pass the value for a variable (FEPCVERS) to the layout. However I do not know how to make reference to the variable in JavaScript. The variable is available within the TEXTELEMENTS_1 object but how do I address it?
    2. On a similar vein, I need to pass the value for a field within the table row to the planning layout. The TABLE_2 object contains the fields (DFCOST_PL and DFGROUPS). When the user selects a line the value for DFCOST_PL is available to the JavaScript function (ZAJT_JS_Maintain_Rules) in the 'parameter1' field. However, how do I make the DFGROUPS field available?
    Below is the HTML code for my Web Template. Any help would be greatly appreciated.....
    <!-- BW data source object tags -->
    <object>
             <param name="OWNER" value="SAP_BW">
             <param name="CMD" value="SET_DATA_PROVIDER">
             <param name="NAME" value="DATAPROVIDER_2">
             <param name="QUERY" value="ZAJT3_COST_BASE_BY_COST_POOL">
             <param name="INFOCUBE" value="Z_FEPC_CB">
             DATA_PROVIDER:             DATAPROVIDER_2
    </object>
    <!--BW HTML data source object tags: -->
    <object>
             <param name="OWNER" value="SAP_BW">
             <param name="CMD" value="SET_PROPERTIES">
             <param name="TEMPLATE_ID" value="ZAJT_RULES_ENTRY">
             <param name="VARIABLE_SCREEN" value="X">
             <param name="CMENU_LABEL_1" value="ZAJT Maintain Rules">
             <param name="CMENU_FUNCTION_1" value="ZAJT_JS_Maintain_Rules">
             <param name="CMENU_PARAMETER_1" value="1">
             <param name="CMENU_CELL_TYPE_1" value="CHARACTERISTIC_VALUE">
             <param name="CMENU_FILTER_1" value="DFCOST_PL">
             <param name="CMENU_VISIBILITY_1" value="X">
             <param name="CMENU_POSITION_1" value="TOP">
             TEMPLATE PROPERTIES
    </object>
    <object>
             <param name="OWNER" value="SAP_BW">
             <param name="CMD" value="SET_DATA_PROVIDER">
             <param name="NAME" value="DATAPROVIDER_1">
             <param name="QUERY" value="ZAJT3_COST_BASE_BY_PC_NODE">
             <param name="INFOCUBE" value="Z_FEPC_CB">
             DATA_PROVIDER:             DATAPROVIDER_1
    </object>
    <html>
      <head>
        <title>BW Web Application</title>
        <link href= "/sap/bw/mime/BEx/StyleSheets/BWReports.css" type=text/css rel=stylesheet>
      </head>
    <!--ZAJT Test code start -->
    <SCRIPT language="JavaScript">
    function ZAJT_JS_Maintain_Rules(parameter,cell_type,filter,parameter1,parameter2,item,dataprovider,x,y)
      var url;
      var cpool=parameter1;
      switch (parameter)
        case "1":
          url="http://dknborisdev.dcb.defence.gov.au:3280/sap/bc/bsp/sap/zbps_var_set/zbps_var_set.htm?area=ZFERULES&bps-appl=ZAJT_RULES3&var1=ZWEBCP&value1_1=" + cpool;
         SAPBWOpenWindow(url ,"MaintainRules" ,600,400);
         break;
    </SCRIPT>
    <!--ZAJT Test code end -->
      <body>
    <object>
             <param name="OWNER" value="SAP_BW">
             <param name="CMD" value="GET_ITEM">
             <param name="NAME" value="TEXTELEMENTS_1">
             <param name="ITEM_CLASS" value="CL_RSR_WWW_ITEM_TEXT_ELEMENTS">
             <param name="DATA_PROVIDER" value="DATAPROVIDER_1">
             <param name="CLOSED" value="X">
             <param name="SHOW_COMMON_ELEMENTS" value="">
             <param name="SHOW_FILTERS" value="">
             <param name="ELEMENT_TYPE_1" value="VARIABLE_K">
             <param name="ELEMENT_NAME_1" value="FEPCVERS">
             <param name="ELEMENT_TYPE_2" value="VARIABLE_K">
             <param name="ELEMENT_NAME_2" value="DF_GRP">
             <param name="ELEMENT_TYPE_3" value="VARIABLE_K">
             <param name="ELEMENT_NAME_3" value="ZCSTCNTR">
             ITEM:            TEXTELEMENTS_1
    </object>
    <object>
             <param name="OWNER" value="SAP_BW">
             <param name="CMD" value="GET_ITEM">
             <param name="NAME" value="NAVIGATIONBLOCK_2">
             <param name="ITEM_CLASS" value="CL_RSR_WWW_ITEM_NAV_BLOCK">
             <param name="DATA_PROVIDER" value="DATAPROVIDER_2">
             <param name="CLOSED" value="X">
             <param name="TARGET_DATA_PROVIDER_1" value="DATAPROVIDER_1">
             <param name="TARGET_DATA_PROVIDER_2" value="DATAPROVIDER_2">
             ITEM:            NAVIGATIONBLOCK_2
    </object>
    <object>
             <param name="OWNER" value="SAP_BW">
             <param name="CMD" value="GET_ITEM">
             <param name="NAME" value="PC_HIERARCHY">
             <param name="ITEM_CLASS" value="CL_RSR_WWW_ITEM_FILTER_HIERDD">
             <param name="DATA_PROVIDER" value="DATAPROVIDER_1">
             <param name="CLOSED" value="X">
             <param name="CAPTION" value="Profit Centre Hierarchy">
             <param name="BORDER_STYLE" value="BORDER">
             <param name="IOBJNM" value="0PROFIT_CTR">
             <param name="HIERARCHY_NAME" value="PROFIT_CTR_ZFEPCBP05">
             <param name="TARGET_DATA_PROVIDER_1" value="DATAPROVIDER_2">
             <param name="TARGET_DATA_PROVIDER_2" value="DATAPROVIDER_1">
             ITEM:            PC_HIERARCHY
    </object>
    <object>
             <param name="OWNER" value="SAP_BW">
             <param name="CMD" value="GET_ITEM">
             <param name="NAME" value="TABLE_1">
             <param name="ITEM_CLASS" value="CL_RSR_WWW_ITEM_GRID">
             <param name="DATA_PROVIDER" value="DATAPROVIDER_1">
             <param name="TARGET_DATA_PROVIDER_1" value="DATAPROVIDER_1">
             <param name="TARGET_DATA_PROVIDER_2" value="DATAPROVIDER_2">
             ITEM:            TABLE_1
    </object>
    <object>
             <param name="OWNER" value="SAP_BW">
             <param name="CMD" value="GET_ITEM">
             <param name="NAME" value="TABLE_2">
             <param name="ITEM_CLASS" value="CL_RSR_WWW_ITEM_GRID">
             <param name="DATA_PROVIDER" value="DATAPROVIDER_2">
             ITEM:            TABLE_2
    </object>
      </body>
    </html>

    Hi Heike,
    Thanks for your response. The example you gave me works nicely. I've tried to use the same concept on a FILTER object, but it does not seem to work. I declared the object as below:
    </span>
    <span style="display:none;visibility:hidden" id="0PROFIT_CTR_value">
    <object>
             <param name="OWNER" value="SAP_BW">
             <param name="CMD" value="GET_ITEM">
             <param name="NAME" value="FILTER_1">
             <param name="ITEM_CLASS" value="CL_RSR_WWW_ITEM_FILTER">
             <param name="DATA_PROVIDER" value="DATAPROVIDER_1">
             <param name="HIDDEN" value="X">
             <param name="GENERATE_CAPTION" value="">
             <param name="PRESENTATION" value="KEY">
             <param name="ITEM_FILTER_IOBJNM_1" value="0PROFIT_CTR">
             <param name="PRESENTATION_1" value="KEY">
             <param name="ONLY_VALUES" value="X">
             ITEM:            FILTER_1
    </object>
    </span>
    and then use
    document.getElementById('0PROFIT_CTR_value').innerHTML.
    However, the value returned is blank. Is there a different method required for filters?
    Also, you mentioned that to access the second variable I will need to use the table interface. Is this difficult to do? I'm booked on the NET050 (Developing Web Applications) course, but it's not until late November. Do you think that this course would cover this kind of processing?

  • How to use a query in Web template

    Hello i have really a very silly question.
    How can i use a Query that is already defined by BEX into a Web template so that i can set up simple properties like changing colours of Row as well as avoid Tab pages.
    I logged into a Web template.
    Can any provide step by steps.
    Please help

    No questions is silly, doubt is always a doubt and clarifying the same is the best way to deal with that.
    Anyway philosophy apart and coming to business.
    1) created the query in Query designer, say Zquery1
    2) logon to WAD.
    3) for assigning Zquery1 to WAD template, you haev to decide how you are going to use Zquery1 in WAD.
    4) for ex: you want to display the query result and also a graph based on that result.
    5) So we have to drag drop Chart and table in WAD.
    6) create dataprovider and assign zquery1 to this dataprovider.
    7) save and execute.
    For chanding the colors, under properties, we will have many stylesheets delivered by SAP. Yiou can choose anyone on this which suits to your requirement. If not, then edit the stylesheet and code it as per your need.
    Hope this helps. If yes, please assgin points.
    Regards
    Pankaj

  • How to make Row and Column headings bold in 2004s Web template

    Hi!
    I have created a web template which has 3 queries.
    I would like to achieve the following
    1> Bold the column heading and row headings.
    2> Delete the space between the three reports(right now there is some space)
    3> Align the columns on top of each other so that it looks like a continuous report.
    (I know how to suppress the column headers on the 2 reports which are at the bottom)
    Is this possible in 2004s???
    With Table interface class gone in 2004s--is stylesheet modification the only way to go????
    Please provide me with steps to achieve the above.
    Helpers will be rewarded.

    Hi Zhu,
    Thanks for the link.This really helps.
    However I was only able to see the modules for Column Width, Negative number and Document Content.
    Is there any other module as well to change Column heading ?Its not mentioned in the documentation.
    Can you please let me know.
    Thanks,
    Vivek

  • Link in a Web Template as a Jump Target?

    Hi,
    I have a requirement to jump from a web template to a query using a link on the page. We're currently migrating from v3.5 to v7.
    In 3.5, we used javascript to build the link as follows:
    function openJumpTarget() {
        url = SAP_BW_URL_Get();
        url += "&DATA_PROVIDER=DATAPROVIDER_3&CMD=RRI&RRI_RECEIVER=CUBE0003&Stylesheet=/sap/bw/Mime/BEx/StyleSheets/Streamline_BWReports.css";
        window.open(url,"_blank");
    I'm using the Link web item, implementing the SCRIPT above, yet it doesn't seem to work. Any ideas what the issue is, or if there is a better way to build the link?
    Thanks
    Wayne

    Hi,
    Well one options is creating another web template for the target query. Use a Link item in the sender template or a button group, set commands for SET_WEBTEMPLATE under commands for Web Templates. Change Web Temp will ony change the Template and not the Analysis item.
    But using SET_WEBTEMPLATE, i dont think the desire result would be obtained, because it sets a new template. So, the Analysis item in the new template will be displayed as a whole and the concept of RRI would be missing. It will not work as RRI.
    You can use RSBBS. Give the sender as your Web Template and the Receiver as Query. So when you right click on the required field in Sender (Web Temp o/p), it would open up a window with the Receiver output(Query o/p).
    Pls try this. It might help.

  • BEx Web - Inserting Tabs with multiple Web Templates

    I encounter much difficulty to find consistent information on how to create a Web cockpit (BW3.5) by making use of embedded Web Templates (using web template web item).
    In particular,
    - How to define tab pages?
    - How to insert an HTML document in one of these tab pages or in the body of a single Web template?
    I would be glad if you could give me links to helpful documentation or share your own experience.
    Best regards.
    Laurent Querella
    BI Consultant
    ALTI Belgium

    Hi,
    I can`t find the BW Expert coding, too.
    But try out following coding.
    This example template contains 4 tabs
    1) Query (assign a Query to DP1)
    2) Query View (assign a view to DP2)
    3) Template (assign a template ID)
    4) Template (0ANALYZER)
    rgds Jens
    <object>
             <param name="OWNER" value="SAP_BW"/>
             <param name="CMD" value="SET_PROPERTIES"/>
             <param name="TEMPLATE_ID" value=""/>
             TEMPLATE PROPERTIES
    </object>
    <HTML>
    <!-- BW data source object tags -->
    <object>
             <param name="OWNER" value="SAP_BW"/>
             <param name="CMD" value="SET_DATA_PROVIDER"/>
             <param name="NAME" value="DATAPROVIDER_2"/>
             <param name="DATA_PROVIDER_ID" value=""/>
             DATA_PROVIDER:             DATAPROVIDER_2
    </object>
    <object>
             <param name="OWNER" value="SAP_BW"/>
             <param name="CMD" value="SET_DATA_PROVIDER"/>
             <param name="NAME" value="DATAPROVIDER_1"/>
             <param name="DATA_PROVIDER_ID" value=""/>
             DATA_PROVIDER:             DATAPROVIDER_1
    </object>
    <HEAD>
    <TITLE>BW Web Application</TITLE>
          <link href="/sap/bw/Mime/BEx/StyleSheets/BWReports.css" type="text/css" rel="stylesheet"/>
          <script type="text/javascript">
          <!--
    /*  function goto_tab: Show all items, starting with tabname, Hide all other items */
              function goto_tab(tabname) {
                  SAPBWOpenURL(SAP_BW_URL_Get()'&item=TAB*&multi=X&hidden=X&cmd_1=item%3d'tabname+'*%26hidden%3d %26multi%3dX');
    /* DHTML function to set correct span-Tag visible
        For each Tab in Tab-Header (head_TAB) check, if item TABx is visible
        If Item is visible set Header as selected
        Otherwise set corresponding span-Tag to not visible */
              function set_actual_tab() {
                i=0;
                do {
                     i++;
                     if  (document.getElementById('head_TAB'+i) != null) {
                        /* Check if Object tag is hidden */
                        var prop = SAPBWGetItemProp('TAB'+i);
                        var hidden=true;
                        if (prop != null){
                                     for(j=1;j<prop.length;j++){
                                              if (prop[j][0] == "HIDDEN") hidden = (prop[j][1]=='X');
                        if (hidden) {
                                    document.getElementById("TAB"+i).setAttribute('style', 'display:none;visibility:false;',false);
                       else {
                                   document.getElementById("head_TAB"+i).setAttribute('className', 'SAPBEXTbsTABsel',false);
              } while (document.getElementById('head_TAB'+i) != null)
           -->
          </script>
    </HEAD>
    <BODY>
    <table cellspacing="0" cellpadding="5" border="0" id="tabheader">
                <tr>
    <td class="SAPBEXTbsTab" id="head_TAB1"><A href="javascript:goto_tab('TAB1')">Query</A>
    </td>
    <td class="SAPBEXTbsTab" id="head_TAB2"><A href="javascript:goto_tab('TAB2')">Query View</A>
    </td>
    <td class="SAPBEXTbsTab" id="head_TAB3"><A href="javascript:goto_tab('TAB3')">Template</A>
    </td>
    <td class="SAPBEXTbsTab" id="head_TAB4"><A href="javascript:goto_tab('TAB4')">BEx Web Analyzer</A>
    </td>
    </tr>
        </table>
    <table width="100%"  class="SAPBEXTbsBdyEdg" cellspacing="0" cellpadding="5" border="0">
                            <tr>
                    <td valign="top" >
          <P>
    <span id="TAB1">
    <object>
             <param name="OWNER" value="SAP_BW"/>
             <param name="CMD" value="GET_ITEM"/>
             <param name="NAME" value="TAB1"/>
             <param name="ITEM_CLASS" value="CL_RSR_WWW_ITEM_GRID"/>
             <param name="DATA_PROVIDER" value="DATAPROVIDER_1"/>
             <param name="GENERATE_CAPTION" value=""/>
             <param name="BORDER_STYLE" value="NO_BORDER"/>
             ITEM:            TAB1
    </object>
    </span>
    <span id="TAB2" ><object>
             <param name="OWNER" value="SAP_BW"/>
             <param name="CMD" value="GET_ITEM"/>
             <param name="NAME" value="TAB2"/>
             <param name="ITEM_CLASS" value="CL_RSR_WWW_ITEM_GRID"/>
             <param name="DATA_PROVIDER" value="DATAPROVIDER_2"/>
             <param name="HIDDEN" value="X"/>
             <param name="GENERATE_CAPTION" value=""/>
             <param name="BORDER_STYLE" value="NO_BORDER"/>
             ITEM:            TAB2
    </object>                                                
    </span></P>
          <P><SPAN id="TAB3"><object>
             <param name="OWNER" value="SAP_BW"/>
             <param name="CMD" value="GET_ITEM"/>
             <param name="NAME" value="TAB3"/>
             <param name="ITEM_CLASS" value="CL_RSR_WWW_ITEM_TEMPLATE"/>
             <param name="HIDDEN" value="X"/>
             <param name="GENERATE_CAPTION" value=""/>
             <param name="TEMPLATE_ID" value="myTemplateID"/>
             <param name="USE_ONLY_BODY" value=""/>
             <param name="NAME_PREFIX" value="TAB3"/>
             ITEM:            TAB3
    </object>
    </SPAN></P>
          <P><SPAN id="TAB4"><object>
             <param name="OWNER" value="SAP_BW"/>
             <param name="CMD" value="GET_ITEM"/>
             <param name="NAME" value="TAB4"/>
             <param name="ITEM_CLASS" value="CL_RSR_WWW_ITEM_TEMPLATE"/>
             <param name="HIDDEN" value="X"/>
             <param name="GENERATE_CAPTION" value=""/>
             <param name="USE_ONLY_BODY" value=""/>
             <param name="TEMPLATE_ID" value="0ANALYZER"/>
             <param name="NAME_PREFIX" value=""/>
             <param name="BORDER_STYLE" value="NO_BORDER"/>
             ITEM:            TAB4
    </object></SPAN></P>
    </td>
    </tr>
    </table>
    <script type="text/javascript">
    <!--
    /* This function call is needed to set the correct state */
       set_actual_tab();
    -->
    </script>
    </BODY>
    </HTML>

  • Cell Style / Web template

    Hi,
    I have a web template in which there are 6 tables( 6 Queries).I want to have the first column width fixed for all Queries and same cell style. Where can I specify the same?
    I am able to achieve same cell style by forcing SAPBEXstditem2 a copy of SAPBEXstditem with the required changes in stylesheet.
    For this I wrote the following code in method STRUCTURE_CELL.
    IF L_DATA_PROVIDER = 'SPRDP10'.
    CASE I_X.
    WHEN 1.
    C_CELL_STYLE = 'SAPBEXstdItem2'.
    ENDCASE.
    ENDIF.
    Can someone help How to achieve same width for the first column in all tables. Is there any possiblities to specify cell width also in stylesheet?
    Thanks in advance
    Regards
    Rajooooooooo

    Hi Soniya,
    You can use a style sheet for displaying the report in the web and a separate one for print settings ans styles. In the WAD, when you open a template, see the Properties window > generic tab > Here you can see an entry in the StyleSheet field. If you click on the button next to this then you can select from the list of available stylesheets.
    To view the HTML for the web template simply click the HTML tab at the bottom of the screen. Or you can also view this in the BW system  SE38 > RS_TEMPLATE_MAINTAIN.
    Hope this helps...

  • Customize Aperture 3.4.4 Web Template

    I modified the "Stock Black" web template the way that I want to add the possiblity to get the next picture by simply clicking on the "big" detail picture,
    not only by clicking on the "next" arrow icon.
    But I fail at the last picture.
    1) If I add removeonlastpage="yes" the last picture is not displayed
          <table rkid="pictureblock">
            <tbody>
              <tr>
                   <td>
                        <a href="_NextPageURL_" removeonlastpage="yes">
                        <img name="img" rkid="image" src="_ThumbImageURL_" alt="" height="450" width="675" />
                   </td>
              </tr>
            </tbody>
          </table>
    2) If I add removeonlastpage="no" I get an out of range "page"
          <table rkid="pictureblock">
            <tbody>
              <tr>
                   <td>
                        <a href="_NextPageURL_" >
                        <img name="img" rkid="image" src="_ThumbImageURL_" alt="" height="450" width="675" />
                   </td>
              </tr>
            </tbody>
          </table>
    Is there any solution for my problem?
    detail.html:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"><head>
    <!-- STOCK BOOK DETAIL HTML -->
      <title>_PageTitle_</title>
      <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
      <link href="assets/css/global.css" rel="stylesheet" type="text/css" />
      <meta name="description" localizable="true" content="Created by Apple Aperture" />
    </head><body class="detail">
    <div id="header">
    <h1 contenteditable="true" textid="header1" localizable="true" common="true">TITEL DER WEB-SITE</h1>
    <ul id="nav" rkid="navbar">
    <!-- The list items below need to be smashed together for IE on Windows -->
      <li class="index"><a href="_IndexPageURL_" localizable="true">Index</a></li>
      <li class="previous"> <a href="_PreviousPageURL_" removeonfirstpage="yes"><em class="previous_text" localizable="true">Zurück</em></a> </li>
      <li class="pageNumber">_PageNumber_ von _PageCount_</li>
      <li class="next"> <a href="_NextPageURL_" removeonlastpage="yes"><em class="next_text" localizable="true">Weiter</em> </a> </li>
    </ul>
    <div style="clear: both;">
    </div>
    <table>
      <tbody>
        <tr>
          <td style="width: 100%;">
          <div id="photo" rkid="content"><!-- Photo img, must be in a table -->
          <table rkid="pictureblock">
            <tbody>
              <tr>
                <td><img name="img" rkid="image" src="_ThumbImageURL_" alt="" height="450" width="675" /></td>
              </tr>
            </tbody>
          </table>
    <!-- End Photo Table --> </div>
          </td>
        </tr>
      </tbody>
    </table>
    <div id="footer">
    <h2>_ImageName_</h2>
    <ul id="metadata" metalayout="paragraph" rkid="metadata">
      <li>_metaname_: _metavalue_ </li>
      <li><br />
      </li>
    </ul>
    <p contenteditable="true" textid="copyright" common="true" localizable="true">© Copyright-Informationen hier</p>
    </div>
    </div>
    </body></html>

    For most posters here it helped to remove the Aperture application from the Applications folder and to reinstall Aperture from the original installation media.
    Did you originally install from a DVD/CD? Then use that to reinstall, or download from the AppStore again, if you bought it there.
    If you installed from a Trial version download, use the trial to reinstall.
    Download trial version from here Aperture 3.1 Trial
    If reinstalling should not help, post the first 60 lines of the crash log.
    Regards
    Léonie

  • Web template not working

    Hi,
    when I try to open a Webtemplate via
    the Internet Explorer it is not working.
    Please assist.
    Regards,
    Anita

    You can determine the properties of the Web template both in an object tag (see Object Tag for the Properties of Web Templates) and or with command Call Web Template.
    CMD
    LDOC
    Parameter
    Description
    TEMPLATE_ID
    Name of the Web template
    Name under which you stored the Web template in the Web Application Designer.
    STATELESS (optional)
    ‘X’ = Yes, ‘ ’ = No
    End the connection to the server as soon as possible
    For Web templates that are used almost exclusively for display without further navigation, it is more useful to set the attribute STATELESS. The session on the application server is terminated when the Web template is created. This saves resources on the application server.
    If this attribute is not specified, it is assumed that the page is still needed for navigating.
    USE_PERSONALIZATION (optional)
    ‘X’ = Yes, ‘ ’ = No
    Use personalized Web template
    If the parameter is set to ‘X’, the personalized Web template for the current user is used. If personalization does not exist for the Web template or the parameter is not set, the Web template is executed without personalization.
    STYLE_SHEET (optional)
    Path for a stylesheet that you want to use to display the Web template.
    This overwrites any stylesheet that you may have already assigned.
    TRACE (optional)
    ’X’ = switch on, ‘ ’ = do not switch on
    Switch on OLAP trace
    To analyze problems with SAP, you usually need a trace. You can activate the trace with the help of note 112458 or by using the TRACE parameter.
    JAVASCRIPT (optional)
    ’X’ = switch on, ‘ ’ = do not switch on
    Use of JavaScript
    Using this parameter, you ensure that Web applications are created using JavaScript (extensive interaction options) or suppress the use of JavaScript (restricted interaction).
    If this parameter is not transferred, JavaScript is activated automatically in Web browsers of version >=4.0.
    SNIPPET_OPERATIONS (optional)
    ’X’ = switch on, ‘ ’ = do not switch on
    Reload changed components of the page
    You use this parameter to control whether only changed objects are loaded in navigation. This function has higher Web browser requirements. For this reason, this function is only supported by MS Internet Explorer version >=.
    If this parameter is not transferred, loading is activated automatically for the suitable Web browsers.
    ENABLE_OPEN_WINDOW (optional)
    ’X’ = switch on, ‘ ’ = do not switch on
    Open new window
    Using this parameter, you can control whether a new browser window is opened, for example, for the properties dialog box or for filtering. If this parameter is not specified, new windows are opened (if supported by the Web browser).
    VARIABLE_SCREEN (optional)
    ‘X’ = display variable screen, ‘ ’ = do not display, if possible
    Display variable screen
    If you call up a Web template that has query views containing variables that are ready for input, you can use these parameters to display the variable screen. Is you do not set this parameter, or set it to ‘ ’, the variable screen is hidden, whenever possible. However, it will still be shown if, for example, the required variables that are ready for input have not yet been filled.
    MELT_VARIABLES (optional)
    ‘X’ = merge, ‘ ’ = display each query individually
    Merge variables
    If you call up a Web template containing several query views that have variables that are ready for input and you go to the variable screen display, you can determine, through these parameters, whether variables, which are used in all query views and in the same context (same InfoProvider, same compounding), are to be provided for input only once.
    VARIABLES_CLEAR (optional)
    ‘X’ = reset variable, ‘ ’ = do not reset
    Reset default variables
    If you call up a Web template that contains one or several query views that have variables that are ready for input, you can specify this parameter to reset the default variables through the query view. The variables then contain the defaults from the variable definition.
    SUPPRESS_WARNINGS (optional)
    ‘X’ = do not display warnings, ‘ ’ = display warnings
    Suppress warnings
    With this parameter, warnings are not displayed. With this parameter, warnings are not displayed.
    SUPPRESS_SYSTEM_MESSAGES (optional)
    'X' = Do not display system messages
    ' ' = Display system messages
    Suppress system messages
    With this parameter, system messages are not displayed.
    DATA_MODE (optional)
    ‘NEW’ = use current data
    ‘STORED’ = Use precalculated data
    ‘HYBRID’ = use precalculated data, request current data if this is missing.
    ‘STATIC’ = use precalculated HTML pages
    ‘STATIC_HYBRID’ = use precalculated HTML pages, if there are none, search by precalculated data and when there is none, request current data
    Data mode
    This parameter is optional. If you do not specify one of the options for this parameter, a request is always sent to the OLAP processor and current data is read.
    For the modi ‘STORED’ and ‘HYBRID’, data has to be precalculated using the Reporting Agent.
    See Defining the Web Templates Setting
    The parameters PAGEID and WBID that are used in BW 2.x are supported for the Web templates created under BW 2.x. We recommend, however, that you no longer use these.
    Calling up the Web template without navigating
    http://yourAppServer:yourPort/SAP/BW/BEx?CMD=LDOC&TEMPLATE_ID=yourTemplate&STATELESS=X
    Calling up the Web template with trace switched on
    http://yourAppServer:yourPort/SAP/BW/BEx?CMD=LDOC&TEMPLATE_ID=yourTemplate&TRACE=X
    Calling up the Web template with reset variables and active variable screen
    http://yourAppServer:yourPort/SAP/BW/BEx?CMD=LDOC&TEMPLATE_ID=yourTemplate&VARIABLE_SCREEN=X&VARIABLES_CLEAR=X
    Thank
    Bhima

  • WAD Using Frameset html tag in a web template

    I try to create a web template with 3 frames (Header, Navigation and body) with <frameset> tag and when i try to upload the html file to the server I get the error:
    Run time error:
    Invalid Colunm name or number

    Here is a sample of our BW HomePage HTML which is a frameset with 4 frames: Banner, Role Menu(report tree), Body (text), Links.
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
    <meta name="GENERATOR" content="Microsoft FrontPage 5.0">
    <meta name="ProgId" content="FrontPage.Editor.Document">
    <title>New Page 2</title>
    <link rel="stylesheet" href="Mime/BEx/StyleSheets/BWReports.css" type="text/css">
    </head>
    <frameset rows="53,*" framespacing="4" border="0" frameborder="0">
      <frame name="banner" scrolling="no" noresize target="contents" src="http://p40-ci.eh.pweh.com:3850/sap/bw/BEx?sap-language=EN&cmd=ldoc&TEMPLATE_ID=ZP_BW_ROLE_MENU_BANNER" marginheight="0" marginwidth="0">
      <frameset cols="31%,*,25%">
        <frame name="contents" target="main" src="http://p40-ci.eh.pweh.com:3850/sap/bw/BEx?sap-language=EN&cmd=ldoc&TEMPLATE_ID=ZP_BW_ROLE_MENU_CONTENTS" scrolling="auto" style="border: 3px solid #C0C0C0">
        <frame name="main" src="http://p40-ci.eh.pweh.com:3850/sap/bw/BEx?sap-language=EN&cmd=ldoc&TEMPLATE_ID=ZP_BW_ROLE_MENU_BODY" scrolling="auto" style="border-right: 3px solid #C0C0C0; border-top: 3px solid #C0C0C0; border-bottom: 3px solid #C0C0C0">
        <frame name="links" src="http://p40-ci.eh.pweh.com:3850/sap/bw/BEx?sap-language=EN&bsplanguage=EN&CMD=LDOC&TEMPLATE_ID=ZP_BW_ROLE_MENU_LINKS" scrolling="auto" noresize style="border-right: 3px solid #C0C0C0; border-top: 3px solid #C0C0C0; border-bottom: 3px solid #C0C0C0" marginwidth="5" marginheight="15">
      </frameset>
      <noframes>
      <body>
      <p>This page uses frames, but your browser doesn't support them.</p>
      </body>
      </noframes>
    </frameset>
    </html>
    ***NOTE:  You cannot edit this HTML in WAD in Layout Mode, ONLY HTML MODE.  Another way to maintain template HTML code is via Report RS_TEMPLATE_MAINTAIN.
    Hope that helps,
    Don May

  • Help with Web Template background color

    Hi,
    i'm trying to change by HTML code the background color of a template but it behaves incosistently.
    when putting:
    <body bgcolor=#000000 ...
    the template is white in the background, but with:
    <br>
    <body bgcolor=#000000 ...
    the template is black.
    Plus when i see the final code generated in the web result, it seems that the server adds a bgcolor by his own, the code look like:
    <body bgcolor=#ffffff bgcolor=#000000...
    i think this could be what is causing the incosistence, but i can't find where is this property the server is adding to the template.
    thanks for any help.
    JP

    Hi Juan,
    This could be because of the style sheet you are using. If you want to make a chnage to the colors etc, try doing that in your stylesheet. You can find the style sheets in SE80 in the BW system. You can find out the one being used from your web template properties.
    Hope this helps...

Maybe you are looking for