Web Template Enhancement

Hi,
When i executed a query in 0ANALYSIS_PATTREN remplate on far right hand side i can see 2 option Filters & Settings like a url
My requirment is to replace these with a buttons
What commands i need to use
Thanks

Mti,
In WAD, when I open this template, under the "view selection" web item ->Dataprovider, I see only one query/view assigned to it.
However, when I execute this template, under the "view selection", I  have a list of view to select.
Why in WAD, I only see one view/query assign to it in the "view selection"?
Why when I execute the template, I see a list of view for selection under the "view selection"?
Please advise, thanks.

Similar Messages

  • Java Script for enhancing Web Template

    Hi
    I had a Java Script Error when trying to customize WEB Template
    I had a Sales Fore Cast report in 3 different versions
    Weekly View
    Monthly View and
    Quarterly View.
    The Rows and Free Chars for all the 3 reports are same only the calculactions in the coulmns changes accordingly.
    My requirment is when user selects the query in portal.The first screen would be 3 Radio Buttons
    (User has to choose either Weekly r Monthly r Quarterly radio button) which takes to the revelevant results
    As mention in the below How to do Doc
    www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/d0e11be0-b925-2c10-7991-daf9122a9918
    could you please update me the required JAVA Script
    Thanks

    please update

  • 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?

  • BI 7 Web template - HIERARCHICAL_FILTER_ITEM

    Can I show hierarchies which are defined in a Web Template using HIERARCHICAL_FILTER_ITEM as collapsed and also like a drop down box? Thanks

    Hi,
    check these posts
    Re: Freeze a Column in WAD (Web Application Designer)
    Re: **Urgent** Freeze Columns on the Web Template on BI 7.0
    See these docs
    Web template creation for beginners
    Advanced Web Reporting with SAP BW
    Web Application and Query Design FAQ
    Tips and Tricks for SAP BIusiness Intelligence Web Applications
    How to Enhance SAP BEx Web Analyzer (0ANALYSIS_PATTERN)

  • How to make keyfigure columns in-/visible dynamically in a web template

    Hello,
    I want to implement a button into my web template, making a first key figure column invisible, a second key figure column visible. Clicking the button again shall make the first column visible, the second invisible.
    How can I achieve this?
    1) Using the filter_pane_item it is possible to choose the key figure structure and the a key figure for the analysis_item. Can this action be encoded behind a button?
    If this would be clear, create a first button to choose the first key figure, then a second button to choose the second key figure. Finally enhance both buttons making one another visible and we are done.
    2) An idea was to define two query views, one with the first key figure visible, one with the second key figure visible. Then again two buttons assigning the analysis item these two data providers. Finally again the trick, making one another invisible.
    But this has the drawback, that after navigation, drill down, etc. in one view, then switching to the other cleary looses the navigation status.
    Thank you + regards,
    Ingo

    Problem has been solved

  • Web-services enhancement for MS Word

    Hi,
    I have done all the steps described in the blog /people/community.user/blog/2008/11/18/web-services-enhancement-for-ms-word-integration-in-crm-2007 about Web-services enhancement for MS Word,  but the last step I did not complete successfully.
    When I start the template designer no offer structure OUTPUT of web service, the template is blank.
    The funny thing is that when I delete the APPEND structure with fields Z, and I press Check button and activate the web service again I have no problem, I start the template designer and reappear standard fields.
    Anyone have any idea what happens?
    Thanks and regards

    Hi,
    You may have to upgrade your MS word 2003 to MS Word 2007.
    Before you do that please opening View > toolbars > Task Pane and check if you can get XML Schema from the web service.
    Regards,
    Sandeep Chavan

  • Parallel execution in a web template

    We have a web template with several queries. It is possible execute our queries with parallel execution?
    Thanks !!

    Hi Dani,
    currently all DP's are executed sequentially, because in general it would be possible that the dataproviders have influence on each other.
    i heard that sap is building a prototyp to allow parallelization in BEX web 7.0. But currently there is no release date known, May this will come with some enhancement package.
    You should consider the Functional enhancement schedule on http://service.sap.com/bi. If this feature will be released sometime, it will be listed there.
    best regards,
    Kai

  • Web Template - Executing Queries in Parallel

    I'm looking to find out if there is a way to execute queries in Parallel for a web template.  I think in 3.5 this was not possible, but I would think that with the new 2004s they would overcome this.
    Anyone have any details on this?
    Thanks,
    Ken Murray

    Kenneth,
    From my testing it looks like it works the same way as BW 3.X web run time.
    I have not seen any template settings or RSADMIN settings which will make the Data providers in a template run parallel, this will be great feature. Not sure whether this will be enhancement, will see what SAP has  to say on this.
    Let us know if you find more info on this.
    Thanks.

  • XML scheme and Web services enhancement for MS Word integration in CRM 2007

    Hi,
    I am trying to use the Template designer and the web services tool in order to create a MS Word template for the quotation.
    We have created a new web service, using the Web Service Tool
    (transaction BSP_WD_CMPWB, type WS_DESIGN_TOOL). I can use this web service when creating a quotation word template and everything works fine.
    I need to enhance the web service with some custom fields and logic. I found the blog:
    Web-services enhancement for MS Word integration in CRM 2007
    /people/community.user/blog/2008/11/18/web-services-enhancement-for-ms-word-integration-in-crm-2007
    The blog describe how to enhance the web service, extend the output
    structure etc.
    We have done all the steps in the blog, and everything looks fine. When
    we test the web service, using the Web Service Navigator, all the new
    fields we added to the output structure are displayed. The WSDL
    document also looks fine, displayed from the Web Service
    Administration.
    The problem occur when try to create the word template using the
    Template Designer. The XML scheme is not displayed in the word
    document. This only happens if we use an enhanced web service.
    Anyone familiar with this issue?
    Kind regards,
    Johan Wigert

    Hi,
    You may have to upgrade your MS word 2003 to MS Word 2007.
    Before you do that please opening View > toolbars > Task Pane and check if you can get XML Schema from the web service.
    Regards,
    Sandeep Chavan

  • How to define a standard web template for a specific group of queries?

    Hello experts,
    I had to enhance the standard web template 0ADHOC and saved it as ZADHOC.
    Then in SPRO t-code I defined it as the standard web template. The problem is: it started to be the standard web template for all the company queries.
    Is there a way to define it as standard only for the queries of my project? Like adding some parameter in the web link only for my project queries?
    Thanks in advance,
    Helder

    I have figured out how to  slice it up myself,  however it appears as though I have to do it all  manually, drawing  each box myself.
    Yes, that's how it will have to be. There is no pertinent slicing in the PSD.
    This will result in either ALLOT of  work making sure  that each box is perfectly aligned with the one before  it, or uneven  slices.
    I am obviously doing something wrong.
    Yes, you are not using guides. You know, those cute turqoise lines of which the document already has a few when opening it...
    As for everything else - the template is simply rubbish. It's poorly organized and mostly unsuitable for building a website template right off the bat. Your work needs to start there by properly grouping items to mimic button states and then exporting them in two passes. And then there's things like this large dummy text etc. that simply don't make sense. Anyway, even if it sounds liek the same record over again: The biggest failure of any such work is to assume that PS could even spit out a working web page. All a web designer would use it for is to extract the graphical elements, but teh rest would stil lbe designed properly with standards compliance in mind in a web design app...
    Mylenium

  • Call custom web templates in Solman_workcenter?

    Hello,
    in the solman_workcenter you can call a couple of web templates in the test evaluation; e.g. Status Report -> for selected test plans opens the web template 0TWB_TESTPLAN_STATUS as seen at the parameter TEMPLATE_ID in the url. The template contains a query, also called 0TWB_TESTPLAN_STATUS, which shows a couple of values for the selected test plans.
    I would like to call a custom web template instead of the standard template.
    Is there any way to do this without an enhancement of the web dynpro?
    Edit:
    I can switch the called standard query inside the web template for a custom query in the web application dasigner. But I'm afraid that these changed settings will be overwritten after an update of the BI content.

    hi, robert, i just like to know why the cubes are still empty after the activation of the BI content ?

  • Read mode - Web template Vs Characteristics

    Hello,
    I am using a web template in version 3.1. I have some navigation attributes. To try to enhance the display of filters value for some characteristics I changed in the web template the read mode from Q (posted values) to M (master data).
    Unfortunately I see that the filter is still using read mode method Q. I have seen that this customizing exists also in RSA1 at the charcateristics level. If they are different, do you know which settings is used in the end ? Characteristics or web template ?
    Thanks for your help,
    Manuel

    Hello,
    I've found the solution, in fact web template is taking the lead but there is a correction to apply in version 3.1 :
    Note 946661 - BOOKED_VALUES does not work correctly in Navigation Block
    Thanks for your help,
    Manuel

  • Web Template: "Back" & "Back to start"

    Hi,
    When designing web templates I'm using the 2004S item 'Context Menu' to enhance the default context menu.
    But even though I've switched on the 'Navigate back' and 'Navigate back to start' options, these entries never show up in the context menu. 
    Does anyone have a clue how to show these 'Back' options?
    Side question: In 3.X you were able to display attributes of an object using the 'Properties' option for characteristics.  Has this functionality disappeared or is there an alternative way to deploy this feature?
    Thx a lot for your feedback.
    Best Regards,
    Kurt

    Hi,
    Did you manage to resolve this, we are having the same problem, somehow the
    Navigate back & Back to start option is not visible on the context menu at runtime
    although I see these options are checked in 0Analysis_pattern.
    Please advise.
    Thanks
    Gk

  • WAD- to create web template

    hai experts,
    i am using
    BW 3.5                    Support Package 12
    BI Content 3.53     Support Package 5
    SEM 4.0                  Support Package 8
    FinBasis 3.0          Support Package 8
    WAD-3500.1.312 .final release-3.50
    here i am trying to enhance the standard web template ,but i am not able to find out..
    can any one help me to enhance / create  the template .
    if u have any doc regarding the creation of templates plz send me..with step by step process
    thanks in advance ..
    Suri

    Hi Surri,
    check this links:
    http://help.sap.com/saphelp_nw04/helpdata/en/44/b26a3b74a4fc31e10000000a114084/content.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/11/a8fccb4dd2b34d9c894a9ddce92cc9/content.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/11/a8fccb4dd2b34d9c894a9ddce92cc9/content.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/9f/281a3c9c004866e10000000a11402f/content.htm
    regards
    Marc
    assign points if helpful

  • Use web template to open a report from a menu

    Hi all,
    I have created one web template where I have a role menu that shows all reports that are available to the user. When the user clicks on one of these reports, the report displays in a new window. So far everything is working fine.
    But, I have also created another web template and I want the report that is displayed in a new window to use this template. How do I do this? I have been looking at the settings for the Role menu, but can't find anywhere to put the template name...
    Anyone have any ideas?
    Thanks and regards,
    Tove-Mette

    Hello,
    yes you can use the publish function, but only to add new entries.
    In Transaction pfcg (not in WAD or BEx) in SAP GUI and then select your role at the tab "Menu" you can add/remove/maintain/organize your menu.
    just click on a menu entry and take sth.like edit.
    Then you will see a link if you didn#t find the string &template_id= the system will take the standard template (Tranaction spro), and you can easily add or change this parameter.
    Hope that helps, please ask if you need further explanation.
    Regards
    Marcus

Maybe you are looking for