BI 7 properties of web item to change background,...

Hi,
I try to find how to change the background color or no backgoround color of web item (for example text element) in BI 7
I don't find any properties as in previous version like background color,...
Do you know how can i manage it except in CSS style.
Thanks
Cyril

Hi,
You can always write HTML tags for a web item and assign properties to that object within that tag.
For example if you have put your web items in a table structure. You can change the background of the cell in which the item is placed.
For eg:
<html>
<body>
<table>
</table>
<tr>
<td bgcolor="#30688" width="80%">
Place your web item here
</td>
</tr>
</body>
</html>
Regards,
Kishore

Similar Messages

  • Hiding a web item through the command line URL

    We use the Web API and command line processing heavily to pass in different filter values, variable values, data providers, etc. to our web reports.  I had a requirement within a given area to launch our web reports with the Navigation block visible on the web template.  In our commonly used 'default' web template, we currently allow the users to switch this item on/off once they are in the report, but we always have it come up Hidden initially.
    My question is this: is there some trick to getting a web item property changed dynamically at execution time from Hidden=X to Hidden= ?  I have tried numerous attempts to format a URL to change this behavior, but have been unsuccessful.  A sample would be: &ITEM=GR6&MULTI=X&HIDDEN=  --> this is intended to make all items with 'GR6' in the name unhidden.  But in my case, it ends up making more web items visible than I want.  Even specifying the Item name directly does not help.
    I have also tried applying it in conjunction with a command sequence from the Web API docs. Is there a particular command that this has to go with (i.e. LDOC? RESET_WEB_ITEM? etc.)?  We have a button on the web template that issues the command <SAP_BW_URL ITEM='GR6' MULTI='X' HIDDEN=''> when clicked -- this works fine.  How do I apply the same type of logic to the initial URL within the command processing?
    Any help would be appreciated.  I know that I can resolve this by just creating a copy template with this web item set to Visible instead of Hidden at the launch.  I was just thinking I could reuse the main web template and control it through the URL.
    Thanks...
    Jody Chassereau

    Heike,
    maybe you can help me out on this one:
    I'm trying to implement Tobias Kaufmann's How To Paper <i>Web Printing with Excel</i>.
    Before calling the respective Abap classes from my web template, I want to hide the web item <i>Hierarchical Filter Selection</i> as this one comes out ugly when downloaded to Excel. So what I'm doing is, I first hide the Filter Selection and then call the Abap classes.
    Here is the coding that I am using:
    <!-- Web Print with Excel-->
    <td class="SAPBEXNavLine"><A href="<SAP_BW_URL
    CMD_1='Item=HIERCONTEXTMENU_1&HIDDEN=X'
    CMD_2='CMD=PROCESS_HELP_WINDOW&HELP_SERVICE=HELP_SERVICE_PRINT&ITEM=Table_1&SUBCMD=PRINT_EXCEL'>">
    <IMG  alt="Web Print with Excel" src="/sap/bw/Mime/bex/icons/print.gif" border=0></A></td>
    This coding is working fine.
    The problem is however, that the <i>Hierarchical Filter Selection</i> is now hidden in my web template. To unhide it, I thought I'd use the coding as above, but add a third command (CMD_3) to make that item visible again.
    Here is the coding:
    <!-- Web Print with Excel-->
    <td class="SAPBEXNavLine"><A href="<SAP_BW_URL CMD_1='Item=HIERCONTEXTMENU_1&HIDDEN=X'
    CMD_2='CMD=PROCESS_HELP_WINDOW&HELP_SERVICE=HELP_SERVICE_PRINT&ITEM=Table_1&SUBCMD=PRINT_EXCEL'
    CMD_3='Item=HIERCONTEXTMENU_1&HIDDEN='>">
    <IMG  alt="Web Print with Excel" src="/sap/bw/Mime/bex/icons/print.gif" border=0></A></td>
    Unfortunately, only the commands CMD_1 and CMD_3 are being executed (which is kind of useless), the main command CMD_2 however is not.
    Do you have any idea why this is happening and how to avoid this?
    Really appreciating your help,
    Regards,
    Yogen

  • User manipulation of web item properties

    Hi everyone,
    I have a requirement from a client where they want to be able to dynamically manipulate web item properties, more specifally they want to change the number of columns of a report displayed on the web.
    For instance, lets say I have a web template that has a query assigned to it and displays a report. In the bex web designer, you can set the number of columns displayed in the properties section of the web item. I want to be able to change this property directly from the web with the help of a drop down box.
    Is it possible to do this, and if so, how?
    I have tried to search the forums for a similar questions but with no luck.
    Thanks!!
    best regards,
    Dionisios

    Hi,
    Are you referring to the Table item property named DATA_COLUMN_TO? Aren't you able to change it by adding it at the end of your url with the desired value?
    If you need to add a button or a new context menu entry then you will need to add some javascript to your web template.
    Please, check how to guide about adding a new context menu entry (How to enhance context menu).
    Hope it helps,
    David.

  • Can I change the standard text for web item 'INFO_FIELD_ITEM'?

    Hello experts.
    I made a WAD template using web item 'INFO_FIELD_ITEM'.  In data binding, I used the 'Last refresh' of general text elements.   As a result, in the web browser I can see the last update date & time. (e.g. 'Last refresh: 2007.01.17 17:34:44') Then our customer want to change the default text "Last refresh" as "Working time".
    How can I change this?
    I tried to change the text symbols for program SAPLRRSV. But it worked only in Bex Analyzer not in the web.
    Our server version is Netweaver 2004s and SP10.
    Best regards.
    JY Park.

    Hello,
    I had the same problem - just wanted to display the values of a variable in an info-field, but not the caption.
    I found out, that there's a tag for Info-Field Item called ONLY_VALUES (it's the checkbox under the headers visible checkbox in the properties dialog of the Info-Field Item; in my WAD version, there's no label assigned to this checkbox, so it was not easy to find out what it should be),
    You have to set it to 'X' (check it) ; then you get the unformatted value of the variable (no caption anymore).
    <bi:INFO_FIELD_ITEM name="INFO_FIELD_ITEM_1" designheight="500" designwidth="350" >  <bi:WIDTH value="350" />
    <bi:HEIGHT value="500" />
    <bi:DATA_PROVIDER_REF value="DP_1" />
    <bi:HEADERS_VISIBLE value="" />
    <bi:ONLY_VALUES value="X" />
    You have to insert the info-field item between span tags so that you can define your own formatting values.
    The ONLY_VALUES tag works the same as the tag 'RENDER_AS_TEXT' you have with the text item , see
    http://help.sap.com/saphelp_nw70/helpdata/en/e3/e60138fede083de10000009b38f8cf/frameset.htm
    There's only one disadvantage: If you have chosen a lot of variable values (multiple selection), the variable string gets very long and no line break is performed, because all blanks in the string are replaced by nbsp's. I solved this with a little Java Script, replacing the appropriate nbsp-s with br tags.
    Hope it helps
    Beate

  • Web Item Properties cannot be displayed in WAD

    Hi,
    I cannot see the web item or template properties in the WAD. I have ticked the flag for the web item properties to be displayed.
    This seems to be user specific, if I login as another user, the properties work area is visible and as well can be selected or deselected for display.
    I am new to Web reporting so am not sure where to change the parameters to get back the properties work area for me.
    Thanks and regards,
    AW

    Thanks a Lot guys,
    Its really strange that the issue seems fixed on itself. Today I  have logged into the system and found everything in order.
    Now I can see the properties pane in WAD and as well select/deselect it from the toolbar.
    It seems to be one more SAP mystery!!!!
    Once again thanks a lot for your contributions. Have assigned points each one of them.

  • How to change the size of the web item text in WAD 7.0

    Dear All
    I am quite new to WAD and I am having a problem with changing the font size of a web text item
    I have searched already and someone suggested changing the Design property to  HEADER1 or HEADER2 etc and then I should be able to change the font / size.
    I have done this but to no avail
    I want to have large heading across the top of the web template
    am I using the wrong web item ?
    I know I can key the text directly into the web template and change the font from the menu bar  but I need it in an item as I want to export them through to PDF later
    Would be grateful of any help
    thanks
    Sandra

    Thank you all for your quick responses (I will award points once this is sorted)
    On the information you have supplied this has opened up yet another new part of WAD that I have not experienced ...TAGs
    Shubhranshu - I have done what you said but as I have never used tags I have just had a look around and found that I can insert Any Tag but not sure if I should be doing that.  If it is inert any tag , I chose FONT from the drop down and cbmAttributes defaulted into the custom tab for the class name but not sure what it wants in the Attributes and CSS Style tab, it won't accept what I am putting which is leading me to believe that I shouldn't be doing it that way.
    Venkat - thanks for the links they will prove very useful.  I've had a look and although they talk alot about the XHTML code for tags they don't actually say how you do it in the editor - I would like to produce one that way first and then see the code it generates for it.  I'm a bit apprehensive with changing the code direct as I don't want to mess anything up.
    Thanks again for your help

  • Change colors in the Analysis web item

    Hi
    How and where can I change them ?
    Thanks
    Steffen

    Hi Steffen,
    You can use different stylesheets to change the color in a web item or hard code it in your HTML.
    Regards,
    Kishore

  • WAD : Changing Web Item Property

    Hi
    I have a requirement to change the Web item Info Field in WAD 7.0 (earlier Text Element in BW 3.5). Presentlt there are two property that is Width in Pixel & Height in Pixel i want to have Width in Pixel , Full Width , Height in Pixel & Full Height as present in Analysis  Web Item .
    How to achieve this is it possible for us to do this or not?
    Thanks & Regards
    Rajesh Kumar

    Hi gurus,
    I have found a way to update my title via Javascript using url command :
    I add this line in my url : &item=Table_1&caption=NewTitle
    But it works only if I use this line alone ... if I try to do this with another cmd (merge the two cmd together)
    &DATA_PROVIDER=DATAPROVIDER_1&CMD=CURRENCY_CONVERSION&CUR_CONV_METHOD=ACAVCTRT&CUR_CONV_TYPE=2&DATA_PROVIDER=DATAPROVIDER_1&TARGET_CURRENCY=EUR<b>&item=Table_1&caption=NewTitle</b>
    it doesn't work (only the first cmd is executed) ! Anybody knows something about that ???
    Thanks in advance
    Aleksi

  • Retrieving web item properties

    Hi All,
       I'm trying to use BW 3.5 JavaScript functions like SAP_BW_Get_url and SAPBWGetItemProp(itemName) on BI 7.0 environment in my custom JavaScript functions(using new JavaScript web item) but nothing seems to work, Do we have new set of JavaScript functions to perform these similar things in the new 04s environment?
    Any help is appreciated.

    I have the same problem too. I have tried to work with "currentState.getParameter( PARAM_KEY ).getValue();".
    However it never works!
    Can you tell me something about your set javascript functions?
    For example, how does it work?
    Thank You
       Luca

  • Attributes of an InfoObject in a Filter Pane web item.

    Hi All.
      I need the some wisdom
      I have a Web template developed in WAD. 7.0. In this template, we have a filter pane web item for selecting values of the characteristic 0MATERIAL. It works properly but when I open the filter pane the 0material values appear with ALL ITS ATTRIBUTES (around 70) and that is very annoying.
      So, the question: is there any way to restrict the number of the attibutes displayed in the window? I only want to show the material number and its description.
      Thanks in advance
    Gdm

    Hi Montero,
    I also had similar problem earlier , i had solved by making changes in the properties of that particular characterstic.
    That is click on particular characteristic and in properties pane goto advanced tab there you can see Query Execution for filter value selection here try changing to "only posted values for navigation" .
    Hope this helps you.
    Thanks
    Tulsi
    Edited by: thulasi ram on May 20, 2008 9:25 AM

  • Silently modifiy the properties of an item

    Is it possible to modify the properties of an item or document without changing modified date/by or triggering any other automated activities that may go along with it, like the ForceCheckout check, workflows, etc.?

    Hi,
      Yes it is possible but only programmatically using web services please see the below link.
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/daf59d7f-1073-4186-a807-29dcbd83b3c5/upload-a-document-using-webservices-without-changing-its-modification-and-creation-dates?forum=sharepointdevelopmentlegacy
    Regards,
    MS

  • Results mismatch between query and web item

    Hi SDN,
    I have a query which produces 12 fiscal quarters for the last three years and the query is working when I run it by itself. The query is based upon a multiprovider.
    I use this query as a DP for a checkbox web item. When I run the web-app, the web item (checkbox) generates a lot of values, far more than what the DP query by itself generates.
    How is this possible? What is it that I am doing wrong?
    Thanks.
    Saf.
    PS I always award points.

    Safdar,
    It could be that the web item is retreiving the values frm the master data .. as Bhanu has mentioned - there is a checkbox / dropdown for the properties of the web item for droipdown where you have to change it from master data to posted values or you can also set this in the BeX tab of the particular infoobject. That way it would fetch values from the transaction instead of fetching the same from master data.
    Arun

  • Web Application Designer: Change Table Chart to Line Format

    Dear Experts,
      We, as novices of the web application designer, encounter a problem in using this program. After having created a Chart table, we cannot changed it to the line format.
    The things that we perform are as follows:
    1) Right click and choose lines format
    2) Give it all titles
    3) Click Next until finish
    However, the result is still the chart table. Is there anyone who kindly give me steps of how to change it.

    Hi,
    Please try the following:
    1. Highlight the chart.
    2. In the Web Item Properties for chart, go to Edit Chart.
    3. Click on the ... incon
    4. Pick Lines
    5. Pick a type of Lines graph.
    6. Follow the wizard to change the required properties.
    This should work for you.
    Regards,
    Xibi

  • Issues when creating new web items (chart) - No BLOB!

    Please help us...
    Background:
    We have created a copy of the SAP standard class: CL_RSR_WWW_ITEM_CHART, named: ZCL_RSR_WWW_ITEM_CHART and maintained the tables:
    - rsrrenderer
    - rsrrendereratr
    - rsrrenderert
    Problem occurred:
    -When running a chart using our new web item it’s not  possible to change chart type other than the default type, bar chart. We have noticed that, for the new web item, the parameter “TMP_CHART_DATA_HANDLE” is not copied to the HTML-code as for the standard web item (CL_RSR_WWW_ITEM_CHART) when executing “Edit chart” in the properties tab. When debugging the code we notice that no BLOB is being created for our copy-web-item, and that's why no chart-settings are changed.
    Questions:
    1.How to get the functionality “edit chart” to work  properly in the new class ZCL_RSR_WWW_ITEM_CHART?
    3.If it’s not possible to use the “edit chart” functionality in a copied web item then what’s the attribute to use in the HTML editor in Web Application Designer in order to set chart type? Or any other suggestions...
    Regards
    Daniel
    Message was edited by: Daniel Vasiljevic

    Prag,
    Try this. Execute the following in a SQL window started by a userid that has been granted the USER ADMIN system privilege:
    ALTER USER BODS1 VALID FROM NOW    UNTIL FOREVER;
    You can use a date instead of FOREVER --- '2016-12-31 23:59'.
    Good luck,
    Robert

  • Button Group Web Item

    Hi All,
    Can you guys tell me how to get the BUTTON GROUP Web Item in the Web Item list. Iam unable to find it.
    Thank you all,
    Padma

    It looks you want to do this on the web. The first thing to be aware of is the the button group web item is only available in SAP NetWeaver 2004s BI Web Application Designer. The BW 3.x web application designer allows you to do this with javascript. Basically you have 2 options:
    1. Multiple views and dataproviders and hiding and showing the different web items (similar to default template 0ADHOC).
    2. Use javascript. This example shows you how to show/hide key figure elements
    <!-- Set the data provider --->
    <object>
             <param name="OWNER" value="SAP_BW"/>
             <param name="CMD" value="SET_DATA_PROVIDER"/>
             <param name="NAME" value="DP1"/>
             <param name="QUERY" value="YEA_ZMDSRSUM_DSR_WEB_NS"/>
             <param name="INFOCUBE" value="ZMDSRSUM"/>
             DATA_PROVIDER:             DP1
    </object>
    <!-- Output area --->
    <html>
    <!-- BW data source object tags -->
    <object>
             <param name="OWNER" value="SAP_BW"/>
             <param name="CMD" value="SET_PROPERTIES"/>
             <param name="TEMPLATE_ID" value="ZPD_ZMDLYFLSH_DSR01"/>
             TEMPLATE PROPERTIES
    </object>
    <head>
    <script type="text/javascript">
    <!--
    var state;
    /* Calls the online Documentation via technical QueryName */
    function callquerydoc() {
       var docustart= '/sap/bw/doc/meta/fldmeta/default?tlogo=elem&objnm=' + document.getElementById('querydoc').innerHTML  + '&sap-language=' +SAP_BW_Get_Language();
      SAPBWOpenWindow(docustart,'Documentation',800,600);
    /* Sets the displayed tab */
    /* Check, which items of the Array check_items  is not hidden.
        Change the style of the HTML tag with id Group+Area/Group+Link */
    function set_color01()
       var state = self.location.search;
       if (state.indexOf('0PROFIT_CTR') > 0)
    document.getElementById('GR1Area').setAttribute('className', 'SAPBEXTbsTABSel',false);
    document.getElementById('GR2Area').setAttribute('className', 'SAPBEXTbsTAB',false);
    document.getElementById('GR3Area').setAttribute('className', 'SAPBEXTbsTAB',false);
    document.getElementById('GR4Area').setAttribute('className', 'SAPBEXTbsTAB',false);
    document.getElementById('GR5Area').setAttribute('className', 'SAPBEXTbsTAB',false);
      else if (state.indexOf('0G_CWWSU')  > 0)
    document.getElementById('GR1Area').setAttribute('className', 'SAPBEXTbsTAB',false);
    document.getElementById('GR2Area').setAttribute('className', 'SAPBEXTbsTABSel',false);
    document.getElementById('GR3Area').setAttribute('className', 'SAPBEXTbsTAB',false);
    document.getElementById('GR4Area').setAttribute('className', 'SAPBEXTbsTAB',false);
    document.getElementById('GR5Area').setAttribute('className', 'SAPBEXTbsTAB',false);
      else if (state.indexOf('ZPHLEVEL1')  > 0)
    document.getElementById('GR1Area').setAttribute('className', 'SAPBEXTbsTAB',false);
    document.getElementById('GR2Area').setAttribute('className', 'SAPBEXTbsTAB',false);
    document.getElementById('GR3Area').setAttribute('className', 'SAPBEXTbsTABSel',false);
    document.getElementById('GR4Area').setAttribute('className', 'SAPBEXTbsTAB',false);
    document.getElementById('GR5Area').setAttribute('className', 'SAPBEXTbsTAB',false);
      else if (state.indexOf('ZSHLVL2')  > 0)
    document.getElementById('GR1Area').setAttribute('className', 'SAPBEXTbsTAB',false);
    document.getElementById('GR2Area').setAttribute('className', 'SAPBEXTbsTAB',false);
    document.getElementById('GR3Area').setAttribute('className', 'SAPBEXTbsTAB',false);
    document.getElementById('GR4Area').setAttribute('className', 'SAPBEXTbsTABSel',false);
    document.getElementById('GR5Area').setAttribute('className', 'SAPBEXTbsTAB',false);
      else if (state.indexOf('ZKEYCUST')  > 0)
    document.getElementById('GR1Area').setAttribute('className', 'SAPBEXTbsTAB',false);
    document.getElementById('GR2Area').setAttribute('className', 'SAPBEXTbsTAB',false);
    document.getElementById('GR3Area').setAttribute('className', 'SAPBEXTbsTAB',false);
    document.getElementById('GR4Area').setAttribute('className', 'SAPBEXTbsTAB',false);
    document.getElementById('GR5Area').setAttribute('className', 'SAPBEXTbsTABSel',false);
    -->
    </script>
    <script type="text/javascript">
    /* Filters the DSR to certain Units of Measure */
    <!--
    function SAPFilter(unitname)
    switch (unitname) {
    case "1":     
    SAPBWOpenURL(SAP_BW_URL_Get()+"&DATA_PROVIDER=DP1&FILTER_IOBJNM_1=3Y2C0XWQA6QQYN9U1HV7VTDJ9&FILTER_VALUE_1=3Y2C0Y4ET5CGH9TA7BXK5VC91&FILTER_IOBJNM_2=3Y2C0XWQA6QQYN9U1HV7VTDJ9&FILTER_VALUE_2=3Y2C0YJRV2JVIIW6J028PZ9OL&FILTER_IOBJNM_3=3Y2C0XWQA6QQYN9U1HV7VTDJ9&FILTER_VALUE_3=3Y2C0YRGE15L15FMOU4L018ED&FILTER_IOBJNM_4=3Y2C0XWQA6QQYN9U1HV7VTDJ9&FILTER_VALUE_4=3Y2C0YZ4WZRAJRZ2UO6XA3745&FILTER_IOBJNM_5=3Y2C0XWQA6QQYN9U1HV7VTDJ9&FILTER_VALUE_5=3Y2C0ZEHYWYPL11Z6CBLU74JP&FILTER_IOBJNM_6=3Y2C0XWQA6QQYN9U1HV7VTDJ9&FILTER_VALUE_6=3Y2C0ZTV0U64MA4VI0GAEB1Z9&FILTER_IOBJNM_7=3Y2C0XWQA6QQYN9U1HV7VTDJ9&FILTER_VALUE_7=3Y2C101JJSRU4WOBNUIMOD0P1&FILTER_IOBJNM_8=3Y2C0XWQA6QQYN9U1HV7VTDJ9&FILTER_VALUE_8=3YC9N7NLV03ISISJ3REK4E85H&FILTER_IOBJNM_9=3Y2C0XWQA6QQYN9U1HV7VTDJ9&FILTER_VALUE_9=3YC9N7VADYP8B5BZ9LGWEG6V9&FILTER_IOBJNM_10=3Y2C0XWQA6QQYN9U1HV7VTDJ9&FILTER_VALUE_10=3Y2C10GWLPZ965R7ZINB8GY4L&FILTER_IOBJNM_11=3Y2C0XWQA6QQYN9U1HV7VTDJ9&FILTER_VALUE_11=3Y2C0Z6TFYD02EIJ0I99K55TX&FILTER_IOBJNM_12=3Y2C0XWQA6QQYN9U1HV7VTDJ9&FILTER_VALUE_12=3Y2C185FKBORSP7DTKZLAFNWL&FILTER_IOBJNM_13=3Y2C0XWQA6QQYN9U1HV7VTDJ9&FILTER_VALUE_13=3Y2C18SH57HWCKTQB36M4LK1X&FILTER_IOBJNM_14=3Y2C0XWQA6QQYN9U1HV7VTDJ9&FILTER_VALUE_14=3Y2C197U74PBDTWMMRBAOPHHH&FILTER_IOBJNM_15=3Y2C0XWQA6QQYN9U1HV7VTDJ9&FILTER_VALUE_15=3Y2C18D43AAHBBQTZF1XKHMMD&FILTER_IOBJNM_16=3Y2C0XWQA6QQYN9U1HV7VTDJ9&FILTER_VALUE_16=3Y2C19N791WQF2ZIYFFZ8TEX1&FILTER_IOBJNM_17=3Y2C0XWQA6QQYN9U1HV7VTDJ9&FILTER_VALUE_17=3Y2C1A2KAZ45GC2FA3KNSXCCL&FILTER_IOBJNM_18=3Y2C0XWQA6QQYN9U1HV7VTDJ9&FILTER_VALUE_18=3Y2C1AHXCWBKHL5BLRPCD19S5&FILTER_IOBJNM_19=3Y2C0XWQA6QQYN9U1HV7VTDJ9&FILTER_VALUE_19=3Y2C1AXAETIZIU87XFU0X577P&FILTER_IOBJNM_20=3Y2C0XWQA6QQYN9U1HV7VTDJ9&FILTER_VALUE_20=3Y8D408KA64X3XZTJVF10F3R9");
    break;
    case "2":
    SAPBWOpenURL(SAP_BW_URL_Get()+"&DATA_PROVIDER=DP1&FILTER_IOBJNM_1=3Y2C0XWQA6QQYN9U1HV7VTDJ9&FILTER_VALUE_1=3Y2C10OL4OKYOSAO5CPNIIWUD&FILTER_IOBJNM_2=3Y2C0XWQA6QQYN9U1HV7VTDJ9&FILTER_VALUE_2=3Y2C10W9NN6O7EU4B6RZSKVK5&FILTER_IOBJNM_3=3Y2C0XWQA6QQYN9U1HV7VTDJ9&FILTER_VALUE_3=3Y2C113Y6LSDQ1DKH0UC2MU9X&FILTER_IOBJNM_4=3Y2C0XWQA6QQYN9U1HV7VTDJ9&FILTER_VALUE_4=3Y2C11BMPKE38NX0MUWOCOSZP&FILTER_IOBJNM_5=3Y2C0XWQA6QQYN9U1HV7VTDJ9&FILTER_VALUE_5=3Y2C11JB8IZSRAGGSOZ0MQRPH&FILTER_IOBJNM_6=3Y2C0XWQA6QQYN9U1HV7VTDJ9&FILTER_VALUE_6=3Y2C11QZRHLI9WZWYJ1CWSQF9&FILTER_IOBJNM_7=3Y2C0XWQA6QQYN9U1HV7VTDJ9&FILTER_VALUE_7=3Y2C11YOAG77SJJD4D3P6UP51&FILTER_IOBJNM_8=3Y2C0XWQA6QQYN9U1HV7VTDJ9&FILTER_VALUE_8=3Y2C126CTESXB62TA761GWNUT&FILTER_IOBJNM_9=3Y2C0XWQA6QQYN9U1HV7VTDJ9&FILTER_VALUE_9=3YC9N82YWXAXTRVFFFJ8OI5L1&FILTER_IOBJNM_10=3Y2C0XWQA6QQYN9U1HV7VTDJ9&FILTER_VALUE_10=3YC9N8ANFVWNCEEVL9LKYK4AT&FILTER_IOBJNM_11=3Y2C0XWQA6QQYN9U1HV7VTDJ9&FILTER_VALUE_11=3YC9N8Q0HT42DNHRWXQ9IO1QD&FILTER_IOBJNM_12=3Y2C0XWQA6QQYN9U1HV7VTDJ9&FILTER_VALUE_12=3Y2C1BCNGQQEK3B493YPH94N9&FILTER_IOBJNM_13=3Y2C0XWQA6QQYN9U1HV7VTDJ9&FILTER_VALUE_13=3Y2C1BS0INXTLCE0KS3E1D22T&FILTER_IOBJNM_14=3Y2C0XWQA6QQYN9U1HV7VTDJ9&FILTER_VALUE_14=3Y2C1BZP1MJJ3YXGQM5QBF0SL&FILTER_IOBJNM_15=3Y2C0XWQA6QQYN9U1HV7VTDJ9&FILTER_VALUE_15=3Y2C1BKBZPC42PUKEY11RB3D1&FILTER_IOBJNM_16=3Y2C0XWQA6QQYN9U1HV7VTDJ9&FILTER_VALUE_16=3Y2C1C7DKL58MLGWWG82LGZID&FILTER_IOBJNM_17=3Y2C0XWQA6QQYN9U1HV7VTDJ9&FILTER_VALUE_17=3Y2C1CF23JQY580D2AAEVIY85&FILTER_IOBJNM_18=3Y2C0XWQA6QQYN9U1HV7VTDJ9&FILTER_VALUE_18=3Y2C1CMQMICNNUJT84CR5KWXX&FILTER_IOBJNM_19=3Y2C0XWQA6QQYN9U1HV7VTDJ9&FILTER_VALUE_19=3Y2C1CUF5GYD6H39DYF3FMVNP&FILTER_IOBJNM_20=3Y2C0XWQA6QQYN9U1HV7VTDJ9&FILTER_VALUE_20=3Y8D408KA64X3XZTJVF10F3R9");
    break;
    case "3":
    SAPBWOpenURL(SAP_BW_URL_Get()+"&DATA_PROVIDER=DP1&FILTER_IOBJNM_1=3Y2C0XWQA6QQYN9U1HV7VTDJ9&FILTER_VALUE_1=3Y2C12E1CDEMTSM9G18DQYMKL&FILTER_IOBJNM_2=3Y2C0XWQA6QQYN9U1HV7VTDJ9&FILTER_VALUE_2=3Y2C12LPVC0CCF5PLVAQ10LAD&FILTER_IOBJNM_3=3Y2C0XWQA6QQYN9U1HV7VTDJ9&FILTER_VALUE_3=3Y2C12TEEAM1V1P5RPD2B2K05&FILTER_IOBJNM_4=3Y2C0XWQA6QQYN9U1HV7VTDJ9&FILTER_VALUE_4=3Y2C1312X97RDO8LXJFEL4IPX&FILTER_IOBJNM_5=3Y2C0XWQA6QQYN9U1HV7VTDJ9&FILTER_VALUE_5=3Y2C138RG7TGWAS23DHQV6HFP&FILTER_IOBJNM_6=3Y2C0XWQA6QQYN9U1HV7VTDJ9&FILTER_VALUE_6=3Y2C13GFZ6F6EXBI97K358G5H&FILTER_IOBJNM_7=3Y2C0XWQA6QQYN9U1HV7VTDJ9&FILTER_VALUE_7=3Y2C13O4I50VXJUYF1MFFAEV9&FILTER_IOBJNM_8=3Y2C0XWQA6QQYN9U1HV7VTDJ9&FILTER_VALUE_8=3Y2C13VT13MLG6EEKVORPCDL1&FILTER_IOBJNM_9=3Y2C0XWQA6QQYN9U1HV7VTDJ9&FILTER_VALUE_9=3YC9NRHYUE6FWR1A6FGA3GWQT&FILTER_IOBJNM_10=3Y2C0XWQA6QQYN9U1HV7VTDJ9&FILTER_VALUE_10=3YC9NRPNDCS5FDKQC9IMDIVGL&FILTER_IOBJNM_11=3Y2C0XWQA6QQYN9U1HV7VTDJ9&FILTER_VALUE_11=3YC9NS50F9ZKGMNMNXNAXMSW5&FILTER_IOBJNM_12=3Y2C0XWQA6QQYN9U1HV7VTDJ9&FILTER_VALUE_12=3Y2C1D23OFK2P3MPJSHFPOUDH&FILTER_IOBJNM_13=3Y2C0XWQA6QQYN9U1HV7VTDJ9&FILTER_VALUE_13=3Y2C1DHGQCRHQCPLVGM49SRT1&FILTER_IOBJNM_14=3Y2C0XWQA6QQYN9U1HV7VTDJ9&FILTER_VALUE_14=3Y2C1DP59BD78Z921AOGJUQIT&FILTER_IOBJNM_15=3Y2C0XWQA6QQYN9U1HV7VTDJ9&FILTER_VALUE_15=3Y2C1D9S7E5S7Q65PMJRZQT39&FILTER_IOBJNM_16=3Y2C0XWQA6QQYN9U1HV7VTDJ9&FILTER_VALUE_16=3Y2C1DWTS9YWRLSI74QSTWP8L&FILTER_IOBJNM_17=3Y2C0XWQA6QQYN9U1HV7VTDJ9&FILTER_VALUE_17=3Y2C1E4IB8KMA8BYCYT53YNYD&FILTER_IOBJNM_18=3Y2C0XWQA6QQYN9U1HV7VTDJ9&FILTER_VALUE_18=3Y2C1EC6U76BSUVEISVHE0MO5&FILTER_IOBJNM_19=3Y2C0XWQA6QQYN9U1HV7VTDJ9&FILTER_VALUE_19=3Y2C1EJVD5S1BHEUOMXTO2LDX&FILTER_IOBJNM_20=3Y2C0XWQA6QQYN9U1HV7VTDJ9&FILTER_VALUE_20=3Y8D408KA64X3XZTJVF10F3R9");
    break;
    case "4":
    SAPBWOpenURL(SAP_BW_URL_Get()+"&DATA_PROVIDER=DP1&FILTER_IOBJNM_1=3Y2C0XWQA6QQYN9U1HV7VTDJ9&FILTER_VALUE_1=3Y2C143HK28AYSXUQPR3ZECAT&FILTER_IOBJNM_2=3Y2C0XWQA6QQYN9U1HV7VTDJ9&FILTER_VALUE_2=3Y2C14B630U0HFHAWJTG9GB0L&FILTER_IOBJNM_3=3Y2C0XWQA6QQYN9U1HV7VTDJ9&FILTER_VALUE_3=3Y2C14IULZFQ020R2DVSJI9QD&FILTER_IOBJNM_4=3Y2C0XWQA6QQYN9U1HV7VTDJ9&FILTER_VALUE_4=3Y2C14QJ4Y1FIOK787Y4TK8G5&FILTER_IOBJNM_5=3Y2C0XWQA6QQYN9U1HV7VTDJ9&FILTER_VALUE_5=3Y2C14Y7NWN51B3NE20H3M75X&FILTER_IOBJNM_6=3Y2C0XWQA6QQYN9U1HV7VTDJ9&FILTER_VALUE_6=3Y2C155W6V8UJXN3JW2TDO5VP&FILTER_IOBJNM_7=3Y2C0XWQA6QQYN9U1HV7VTDJ9&FILTER_VALUE_7=3Y2C160MAPNOMFSW78C6HW0QT&FILTER_IOBJNM_8=3Y2C0XWQA6QQYN9U1HV7VTDJ9&FILTER_VALUE_8=3Y2C168ATO9E52CCD2EIRXZGL&FILTER_IOBJNM_9=3Y2C0XWQA6QQYN9U1HV7VTDJ9&FILTER_VALUE_9=3Y2C16FZCMV3NOVSIWGV1ZY6D&FILTER_IOBJNM_10=3Y2C0XWQA6QQYN9U1HV7VTDJ9&FILTER_VALUE_10=3Y2C15L98SG9L6PZVK7HXS3B9&FILTER_IOBJNM_11=3Y2C0XWQA6QQYN9U1HV7VTDJ9&FILTER_VALUE_11=3Y2C15DKPTUK2K6JPQ55NQ4LH&FILTER_IOBJNM_12=3Y2C0XWQA6QQYN9U1HV7VTDJ9&FILTER_VALUE_12=3Y2C15SXRR1Z3T9G1E9U7U211&FILTER_IOBJNM_13=3Y2C0XWQA6QQYN9U1HV7VTDJ9&FILTER_VALUE_13=3Y2C16NNVLGT6BF8OQJ7C1WW5&FILTER_IOBJNM_14=3Y2C0XWQA6QQYN9U1HV7VTDJ9&FILTER_VALUE_14=3Y2C16VCEK2IOXYOUKLJM3VLX&FILTER_IOBJNM_15=3Y2C0XWQA6QQYN9U1HV7VTDJ9&FILTER_VALUE_15=3Y2C1730XIO87KI50ENVW5UBP&FILTER_IOBJNM_16=3Y2C0XWQA6QQYN9U1HV7VTDJ9&FILTER_VALUE_16=3YC9NSKDH76ZHVQIZLRZHQQBP&FILTER_IOBJNM_17=3Y2C0XWQA6QQYN9U1HV7VTDJ9&FILTER_VALUE_17=3YC9NSS205SP0I9Z5FUBRSP1H&FILTER_IOBJNM_18=3Y2C0XWQA6QQYN9U1HV7VTDJ9&FILTER_VALUE_18=3YC9NSZQJ4EEJ4TFB9WO1UNR9&FILTER_IOBJNM_19=3Y2C0XWQA6QQYN9U1HV7VTDJ9&FILTER_VALUE_19=3Y2C17Q2IEHCRG4HHWUWQBQH1&FILTER_IOBJNM_20=3Y2C0XWQA6QQYN9U1HV7VTDJ9&FILTER_VALUE_20=3Y2C17XR1D32A2NXNQX90DP6T&FILTER_IOBJNM_21=3Y2C0XWQA6QQYN9U1HV7VTDJ9&FILTER_VALUE_21=3Y8D408KA64X3XZTJVF10F3R9");
    break;
    case "5":
    SAPBWOpenURL(SAP_BW_URL_Get()+"&DATA_PROVIDER=DP1&FILTER_IOBJNM_1=3Y2C0XWQA6QQYN9U1HV7VTDJ9&FILTER_VALUE_1=3Y2C17APGH9XQ71L68Q867T1H&FILTER_IOBJNM_2=3Y2C0XWQA6QQYN9U1HV7VTDJ9&FILTER_VALUE_2=3Y2C17IDZFVN8TL1C2SKG9RR9&FILTER_IOBJNM_3=3Y2C0XWQA6QQYN9U1HV7VTDJ9&FILTER_VALUE_3=3Y8NMABP2SZ7OGIUKPIMWEQBP&FILTER_IOBJNM_4=3Y2C0XWQA6QQYN9U1HV7VTDJ9&FILTER_VALUE_4=3Y8NJV21NOCB2DK8A4X4O3BGL&FILTER_IOBJNM_5=3Y2C0XWQA6QQYN9U1HV7VTDJ9&FILTER_VALUE_5=3Y8NJV9Q6MY0L03OFYZGY5A6D&FILTER_IOBJNM_6=3Y2C0XWQA6QQYN9U1HV7VTDJ9&FILTER_VALUE_6=3Y8NJYWB4Z72DNAB7639P2OCL&FILTER_IOBJNM_7=3Y2C0XWQA6QQYN9U1HV7VTDJ9&FILTER_VALUE_7=3Y8NJZ3ZNXSRW9TRD05LZ4N2D&FILTER_IOBJNM_8=3Y2C0XWQA6QQYN9U1HV7VTDJ9&FILTER_VALUE_8=3Y8NJZBO6WEHEWD7IU7Y96LS5&FILTER_IOBJNM_9=3Y2C0XWQA6QQYN9U1HV7VTDJ9&FILTER_VALUE_9=3Y8NMA40JUDI5TZEEVGAMCRLX&FILTER_IOBJNM_10=3Y2C0XWQA6QQYN9U1HV7VTDJ9&FILTER_VALUE_10=3Y8NMOENU8RZTS6H9TT5C0DL1&FILTER_IOBJNM_11=3Y2C0XWQA6QQYN9U1HV7VTDJ9&FILTER_VALUE_11=3Y8NMOMCD7DPCEPXFNVHM2CAT&FILTER_IOBJNM_12=3Y2C0XWQA6QQYN9U1HV7VTDJ9&FILTER_VALUE_12=3Y8NMOU0W5ZEV19DLHXTW4B0L&FILTER_IOBJNM_13=3Y2C0XWQA6QQYN9U1HV7VTDJ9&FILTER_VALUE_13=3Y8NLAH8LBO4R9RFCELBZ8Q11&FILTER_IOBJNM_14=3Y2C0XWQA6QQYN9U1HV7VTDJ9&FILTER_VALUE_14=3Y8D408KA64X3XZTJVF10F3R9");
    break;
    case "6":
    SAPBWOpenURL(SAP_BW_URL_Get()+"&DATA_PROVIDER=DP1&CMD=REMOVE_FILTER&IOBJNM=3Y2C0XWQA6QQYN9U1HV7VTDJ9&ALL=X");
    break;
    -->
    </script>
    <SCRIPT LANGUAGE="JAVASCRIPT" type="text/javascript">
    <!--
    //  Global variables definitions
    var expDays = 1;
    var exp = new Date();
    exp.setTime(exp.getTime() + (expDays*24*60*60*1000));
    /* Create a Random Number*/
    function rand ( n )
      return ( Math.floor ( Math.random ( ) * n + 1 ) );
    /*Used to Open New Window with Status Bar & URL*/
    function openWindow( URL, NAME, WIDTH1, HEIGHT1){
    NAME=NAME+rand(157)
    WindowObjectReference =  window.open(URL,NAME,"menubar=yes,location=yes,resizable=yes,scrollbars=yes,status=yes,width="+WIDTH1+"height="+HEIGHT1);
    function PrintMyReport(typePaper) {
    /*  Assumption: Users page margins (top, bottom, left and right) are a default value of 0.75 inches */
        var Header2 = '';
        var CurrentDataProvider = 'DP1' ;
        var mynewTitle = 'The Daily Sales Report';
        var dateout = exp;
        var CurrentReportName = '&?psize=' + escape(typePaper) + '&qtitle=' + escape(mynewTitle)  + Header2 + "&ASOFDATE=" + escape(dateout) + "&";
        var openCMD="<SAP_BW_URL>&DATA_PROVIDER="+CurrentDataProvider+"&TEMPLATE_ID=ZPD_PRINT_PAGE&CMD=RELEASE_DATA_PROVIDER"+CurrentReportName;
        openWindow(openCMD,"MainTitleNow",800,600);
    -->
    </SCRIPT>
    <!-- BEGIN WAIT INDICATOR FUNCTION -->
    <script type="text/javascript">
    function toggleLayer()
    el = document.getElementById('hidepage');
    var display = el.style.display ? '' : 'none';
    el.style.display = display;
    </script>
    <!-- END WAIT INDICATOR FUNCTION -->
    <!-- Description in the window title bar --->
    <title>
    <object>
             <param name="OWNER" value="SAP_BW"/>
             <param name="CMD" value="GET_ITEM"/>
             <param name="NAME" value="TITLE"/>
             <param name="ITEM_CLASS" value="CL_RSR_WWW_ITEM_TEXT_ELEMENTS"/>
             <param name="DATA_PROVIDER" value="DP1"/>
             <param name="GENERATE_CAPTION" value=""/>
             <param name="ELEMENT_TYPE_1" value="COMMON"/>
             <param name="ELEMENT_NAME_1" value="REPTXTLG"/>
             <param name="ONLY_VALUES" value="X"/>
             <param name="ELEMENT_NAME" value="REPTXTLG"/>
             ITEM:            TITLE
    </object>
    </title>
          <link href="/sap/bw/Mime/Customer/StyleSheets/z_BIReports30_ie6.css" type="text/css" rel="stylesheet"/>
    <STYLE>
    .SAPSapFormLabel {
         padding-top:4px;
         text-align:right;
         vertical-align:top;
    .SAPSapFormInput {
         padding-right: 10px;
         vertical-align:top;
    .SAPBEXTbsTAB {
         background-color:#EEEEEE;
    .SAPBEXstdDataOdd {
        background-color:#EEEEEE;
    </STYLE>
    </head>
    <body style="BACKGROUND-COLOR: #ffffff">
    <!-- Tabs -->
    <table border="0" cellspacing="0" cellpadding="0" style="MARGIN-BOTTOM: 10px">
    <tr>
    <td style="PADDING-LEFT: 1px; PADDING-BOTTOM: 1px">
    <!-- Start Tabs -->
    <table name="" border="0" cellpadding="0" cellspacing="0">
    <tr>
    <!-- First Tab: Display Retail Op Groups -->
    <td align="middle" nowrap class="SAPBEXTbsTABSel" id="GR1Area" onClick="document.location='<SAP_BW_URL DATA_PROVIDER='DP1' MULTI='X' CMD='SET_NAV_STATE' ALL='X' IOBJNM_1='0PROFIT_CTR' AXIS_1='Y' POSITION='1'>&amp;dummy=#TabStripContent';">Retail
    <a name="TabStripContent" tabIndex="0"><IMG title=Retail alt="Retail" src="/sap/bw/Mime/BEx/Icons/pixel.gif" border=0 ></a>
    </td>
    <!-- Second Tab: Display AOR -->
    <td align="middle" nowrap class="SAPBEXTbsTAB" id="GR2Area" onClick="document.location='<SAP_BW_URL DATA_PROVIDER='DP1' MULTI='X' CMD='SET_NAV_STATE' ALL='X' IOBJNM_1='0G_CWWSU' AXIS_1='Y' POSITION='1'>&amp;dummy=#TabStripContent';" >AOR
    <a name="TabStripContent" tabIndex="0"><IMG title=AOR alt="AOR" src="/sap/bw/Mime/BEx/Icons/pixel.gif" border=0 ></a>
    </td>
    <!-- Third Tab: Display Brand -->
    <td align="middle" nowrap class="SAPBEXTbsTAB" id="GR3Area" onClick="document.location='<SAP_BW_URL DATA_PROVIDER='DP1' MULTI='X' CMD='SET_NAV_STATE' ALL='X' IOBJNM_1='ZPHLEVEL1' AXIS_1='Y' POSITION='1'>&amp;dummy=#TabStripContent';" >Brand
    <a name="TabStripContent" tabIndex="0"><IMG title=Brand alt="Brand" src="/sap/bw/Mime/BEx/Icons/pixel.gif" border=0 ></a>
    </td>
    <!-- Fourth Tab: Display Sales Hierarchy -->
    <td align="middle" nowrap class="SAPBEXTbsTAB" id="GR4Area" onClick="document.location='<SAP_BW_URL DATA_PROVIDER='DP1' MULTI='X' CMD='SET_NAV_STATE' ALL='X' IOBJNM_1='ZSHLVL' AXIS_1='Y' POSITION='1' IOBJNM_2='ZSHLVL2' AXIS_2='Y' POSITION='2' IOBJNM_3='ZSHLVL3' AXIS_3='Y' POSITION='3' IOBJNM_4='ZSHLVL4' AXIS_4='Y' POSITION='4' IOBJNM_5='ZSHLVL5' AXIS_5='Y' POSITION='5'>&amp;dummy=#TabStripContent';" >Sales Hierarchy
    <a name="TabStripContent" tabIndex="0"><IMG title="Sales Hierarchy" alt="Sales Hierarchy" src="/sap/bw/Mime/BEx/Icons/pixel.gif" border=0 ></a>
    </td>
    <!-- Fifth Tab: Display Key Customers -->
    <td align="middle" nowrap class="SAPBEXTbsTAB" id="GR5Area" onClick="document.location='<SAP_BW_URL DATA_PROVIDER='DP1' MULTI='X' CMD='SET_NAV_STATE' ALL='X' IOBJNM_1='ZKEYCUST' AXIS_1='Y' POSITION='1'>&amp;dummy=#TabStripContent';" >Key Customers
    <a name="TabStripContent" tabIndex="0"><IMG title="Key Customers" alt="Key Customers" src="/sap/bw/Mime/BEx/Icons/pixel.gif" border=0 ></a>
    </td>
    </tr>
    </table>
    <!-- End Tabs -->
    </td>
    </tr>
    <tr>
    <td style="BORDER-RIGHT: #e5e0cc 1px solid; PADDING-RIGHT: 5px; BORDER-TOP: #cc0000 5px solid; PADDING-LEFT: 5px; PADDING-BOTTOM: 5px; BORDER-LEFT: #e5e0cc 1px solid; PADDING-TOP: 5px; BORDER-BOTTOM: #e5e0cc 1px solid; BACKGROUND-COLOR: #eeeeee"
       >
    <!-- Start Column Filters -->
    <table cellpadding="1" cellspacing="0" border="0" width="200">
    <tr>
    <td class="SAPBEXTbsBorder">
    <A href="#TabStripEnd">
    <IMG title=<SAP_BW_TEXT program='SAPLRRSV' key='739'> alt="<SAP_BW_TEXT program='SAPLRRSV' key='739'>" src="/sap/bw/Mime/BEx/Icons/pixel.gif" border=0 ></A>
    <table cellspacing="0" cellpadding="0" border="0" width="700">
    <tr>
    <td>
    <!-- Display BU Only-->
    <table class="SAPBEXBtnStdBorder" cellspacing="0" cellpadding="0" border="0"><tr><td nowrap>
    <table border="0" cellpadding="0" cellspacing="1"><tr><td nowrap class="SAPBEXBtnStdIe4">
    <A class=SAPBEXBtnStd  title="Base Unit" href="JavaScript:SAPFilter('1');" name=BU><nobr> Base Units</nobr> </A>
    </td></tr></table>
    </td></tr></table>
    </td>
    <td>  </td>
    <!-- Display LB Only--->
    <td>
    <table class="SAPBEXBtnStdBorder" cellspacing="0" cellpadding="0" border="0"><tr><td nowrap>
    <table border="0" cellpadding="0" cellspacing="1"><tr><td nowrap class="SAPBEXBtnStdIe4">
    <A class=SAPBEXBtnStd title=Pounds href="JavaScript:SAPFilter('2');" name=LB><nobr> Pounds</nobr> </A>
    </td></tr></table>
    </td></tr></table>
    </td>
    <td>  </td>
    <!-- Display EQU Only--->
    <td>
    <table class="SAPBEXBtnStdBorder" cellspacing="0" cellpadding="0" border="0"><tr><td nowrap>
    <table border="0" cellpadding="0" cellspacing="1"><tr><td nowrap class="SAPBEXBtnStdIe4">
    <A class=SAPBEXBtnStd title="Equiv Units" href ="JavaScript:SAPFilter('3');" name=EQ><nobr> Equiv Units</nobr> </A>
    </td></tr></table>
    </td></tr></table>
    </td>
    <td>  </td>
    <!-- Display Gross Sales Only--->
    <td>
    <table class="SAPBEXBtnStdBorder" cellspacing="0" cellpadding="0" border="0"><tr><td nowrap>
    <table border="0" cellpadding="0" cellspacing="1"><tr><td nowrap class="SAPBEXBtnStdIe4">
    <A class=SAPBEXBtnStd title="Gross Sales" href="JavaScript:SAPFilter('4');" name=SLS><nobr> Gross Sales</nobr> </A>
    </td></tr></table>
    </td></tr></table>
    </td>
    <td>  </td>
    <!-- Display Gross Margin Only--->
    <td>
    <table class="SAPBEXBtnStdBorder" cellspacing="0" cellpadding="0" border="0"><tr><td nowrap>
    <table border="0" cellpadding="0" cellspacing="1"><tr><td nowrap class="SAPBEXBtnStdIe4">
    <A class=SAPBEXBtnStd title="Gross Margin" href ="JavaScript:SAPFilter('5');" name=MGN ><nobr> Gross Margin</nobr> </A>
    </td></tr></table>
    </td></tr></table>
    </td>
    <td>  </td>
    <!-- Display All Columns--->
    <td>
    <table class="SAPBEXBtnStdBorder" cellspacing="0" cellpadding="0" border="0"><tr><td nowrap>
    <table border="0" cellpadding="0" cellspacing="1"><tr><td nowrap class="SAPBEXBtnStdIe4">
    <A class=SAPBEXBtnStd title="All Columns" href ="JavaScript:SAPFilter('6');" name=ALL ><nobr> All Columns</nobr> </A>
    </td></tr></table>
    </td></tr></table>
    </td>
    <td>  </td>
    <!-- Export to Excel--->
    <td>
    <table class="SAPBEXBtnStdBorder" cellspacing="0" cellpadding="0" border="0"><tr><td nowrap>
    <table border="0" cellpadding="0" cellspacing="1"><tr><td nowrap class="SAPBEXBtnStdIe4">
    <A class=SAPBEXBtnStd title="Export to Excel" href ="<SAP_BW_URL CMD='EXPORT' FORMAT='XLS' DATA_PROVIDER='DP1'>" name=ALL ><nobr> Export to Excel</nobr> </A>
    </td></tr></table>
    </td></tr></table>
    </td>
    <td>  </td>
    <!-- Print with IE --->
    <td>
    <table class="SAPBEXBtnStdBorder" cellspacing="0" cellpadding="0" border="0"><tr><td nowrap>
    <table border="0" cellpadding="0" cellspacing="1"><tr><td nowrap class="SAPBEXBtnStdIe4">
    <A class=SAPBEXBtnStd title="Print with IE" href ="javascript:PrintMyReport('0');" name=ALL ><nobr> Print with IE</nobr> </A>
    </td></tr></table>
    </td></tr></table>
    </td>
    <td>  </td>
    <!-- Hide Dropdowns--->
    <td>
    <table class="SAPBEXBtnStdBorder" cellspacing="0" cellpadding="0" border="0"><tr><td nowrap>
    <table border="0" cellpadding="0" cellspacing="1"><tr><td nowrap class="SAPBEXBtnStdIe4">
    <A class=SAPBEXBtnStd title="Toggle Dropdowns" href ="JavaScript:toggleLayer('hidepage');" name=TABLE ><nobr> Toggle Dropdown</nobr> </A>
    </td></tr></table>
    </td></tr></table>
    </td>
    <td>  </td>
    <td width="100%"> 
    </td>
    </tr></table>
    </td>
    </tr>
    </table>
    <!-- End Column Filters -->
    <!-- Start Hide Area -->
    <div id=hidepage>
    <TABLE cellSpacing=0 cellPadding=0 border=0>
      <TR>
        <TD CLASS="SAPSapFormLabel" STYLE="PADDING-TOP: 15px"
             >Profit Center:</TD>
        <TD STYLE="PADDING-LEFT: 4px">
    <object>
             <param name="OWNER" value="SAP_BW"/>
             <param name="CMD" value="GET_ITEM"/>
             <param name="NAME" value="GR1GR2GR3GR4GR5Dropdowns01"/>
             <param name="ITEM_CLASS" value="CL_RSR_WWW_ITEM_FILTER_HIERDD"/>
             <param name="DATA_PROVIDER" value="DP1"/>
             <param name="GENERATE_CAPTION" value=""/>
             <param name="IOBJNM" value="0PROFIT_CTR"/>
             <param name="HIERARCHY_NAME" value="SAP PROFIT CENTER HIERARCHY"/>
             <param name="SHOW_LABEL" value=""/>
             <param name="TARGET_DATA_PROVIDER_1" value="DP1"/>
             <param name="HEIGHT" value="30"/>
             ITEM:            GR1GR2GR3GR4GR5Dropdowns01
    </object>
        <br>
       </TD>
        <TD CLASS="SAPSapFormLabel" STYLE="PADDING-TOP: 15px">Area of Resposibility:</TD>
        <TD CLASS="SAPSapFormInput" STYLE="PADDING-LEFT: 4px">
    <object>
             <param name="OWNER" value="SAP_BW"/>
             <param name="CMD" value="GET_ITEM"/>
             <param name="NAME" value="GR1GR2GR3GR4GR5Dropdowns14"/>
             <param name="ITEM_CLASS" value="CL_RSR_WWW_ITEM_FILTER_HIERDD"/>
             <param name="DATA_PROVIDER" value="DP1"/>
             <param name="GENERATE_CAPTION" value=""/>
             <param name="IOBJNM" value="0G_CWWSU"/>
             <param name="HIERARCHY_NAME" value="SAP_AREARESP"/>
             <param name="SHOW_LABEL" value=""/>
             <param name="TARGET_DATA_PROVIDER_1" value="DP1"/>
             <param name="HEIGHT" value="30"/>
             ITEM:            GR1GR2GR3GR4GR5Dropdowns14
    </object>
        <br>
       </TD>
    </TR>
    <TR>
        <TD CLASS="SAPSapFormLabel">Sales Org:</TD>
        <TD CLASS="SAPSapFormInput">
    <object>
             <param name="OWNER" value="SAP_BW"/>
             <param name="CMD" value="GET_ITEM"/>
             <param name="NAME" value="GR1GR2GR3GR4GR5Dropdowns13"/>
             <param name="ITEM_CLASS" value="CL_RSR_WWW_ITEM_FILTER_DDOWN"/>
             <param name="DATA_PROVIDER" value="DP1"/>
             <param name="GENERATE_CAPTION" value=""/>
             <param name="BORDER_STYLE" value="NO_BORDER"/>
             <param name="IOBJNM" value="0SALESORG"/>
             <param name="BOOKED_VALUES" value="Q"/>
             <param name="MAXVALUES" value="50000"/>
             <param name="SHOW_LABEL" value=""/>
             <param name="TARGET_DATA_PROVIDER_1" value="DP1"/>
             ITEM:            GR1GR2GR3GR4GR5Dropdowns13
    </object>   
       </TD>
        <TD CLASS="SAPSapFormLabel">Sales Hierarchy Level 2:</TD>
        <TD CLASS="SAPSapFormInput">
    <object>
             <param name="OWNER" value="SAP_BW"/>
             <param name="CMD" value="GET_ITEM"/>
             <param name="NAME" value="GR1GR2GR3GR4GR5Dropdowns08"/>
             <param name="ITEM_CLASS" value="CL_RSR_WWW_ITEM_FILTER_DDOWN"/>
             <param name="DATA_PROVIDER" value="DP1"/>
             <param name="GENERATE_CAPTION" value=""/>
             <param name="BORDER_STYLE" value="NO_BORDER"/>
             <param name="IOBJNM" value="ZSHLVL2"/>
             <param name="BOOKED_VALUES" value="Q"/>
             <param name="MAXVALUES" value="50000"/>
             <param name="SHOW_LABEL" value=""/>
             <param name="TARGET_DATA_PROVIDER_1" value="DP1"/>
             ITEM:            GR1GR2GR3GR4GR5Dropdowns08
    </object>   
       </TD>
    </TR>
      <TR>
        <TD CLASS="SAPSapFormLabel">Brand:</TD>
        <TD CLASS="SAPSapFormInput">
    <object>
             <param name="OWNER" value="SAP_BW"/>
             <param name="CMD" value="GET_ITEM"/>
             <param name="NAME" value="GR1GR2GR3GR4GR5Dropdowns12"/>
             <param name="ITEM_CLASS" value="CL_RSR_WWW_ITEM_FILTER_DDOWN"/>
             <param name="DATA_PROVIDER" value="DP1"/>
             <param name="GENERATE_CAPTION" value=""/>
             <param name="WIDTH" value="30"/>
             <param name="IOBJNM" value="ZPHLEVEL1"/>
             <param name="BOOKED_VALUES" value="Q"/>
             <param name="MAXVALUES" value="50000"/>
             <param name="SHOW_LABEL" value=""/>
             <param name="TARGET_DATA_PROVIDER_1" value="DP1"/>
             <param name="HEIGHT" value="30"/>
             ITEM:            GR1GR2GR3GR4GR5Dropdowns12
    </object>            
       </TD>
        <TD CLASS="SAPSapFormLabel">Sales Hierarchy Level 3:</TD>
        <TD CLASS="SAPSapFormInput">
    <object>
             <param name="OWNER" value="SAP_BW"/>
             <param name="CMD" value="GET_ITEM"/>
             <param name="NAME" value="GR1GR2GR3GR4GR5Dropdowns09"/>
             <param name="ITEM_CLASS" value="CL_RSR_WWW_ITEM_FILTER_DDOWN"/>
             <param name="DATA_PROVIDER" value="DP1"/>
             <param name="GENERATE_CAPTION" value=""/>
             <param name="BORDER_STYLE" value="NO_BORDER"/>
             <param name="IOBJNM" value="ZSHLVL3"/>
             <param name="BOOKED_VALUES" value="Q"/>
             <param name="MAXVALUES" value="50000"/>
             <param name="SHOW_LABEL" value=""/>
             <param name="TARGET_DATA_PROVIDER_1" value="DP1"/>
             ITEM:            GR1GR2GR3GR4GR5Dropdowns09
    </object>      
       </TD>
    </TR>
      <TR>
        <TD CLASS="SAPSapFormLabel">SubBrand:</TD>
        <TD CLASS="SAPSapFormInput">
    <object>
             <param name="OWNER" value="SAP_BW"/>
             <param name="CMD" value="GET_ITEM"/>
             <param name="NAME" value="GR1GR2GR3GR4GR5Dropdowns02"/>
             <param name="ITEM_CLASS" value="CL_RSR_WWW_ITEM_FILTER_DDOWN"/>
             <param name="DATA_PROVIDER" value="DP1"/>
             <param name="GENERATE_CAPTION" value=""/>
             <param name="WIDTH" value="30"/>
             <param name="BORDER_STYLE" value="NO_BORDER"/>
             <param name="IOBJNM" value="ZPHLEVEL3"/>
             <param name="BOOKED_VALUES" value="Q"/>
             <param name="MAXVALUES" value="50000"/>
             <param name="SHOW_LABEL" value=""/>
             <param name="TARGET_DATA_PROVIDER_1" value="DP1"/>
             <param name="HEIGHT" value="30"/>
             ITEM:            GR1GR2GR3GR4GR5Dropdowns02
    </object>   
       </TD>
        <TD CLASS="SAPSapFormLabel">Sales Hierarchy Level 4:</TD>
        <TD CLASS="SAPSapFormInput">
    <object>
             <param name="OWNER" value="SAP_BW"/>
             <param name="CMD" value="GET_ITEM"/>
             <param name="NAME" value="GR1GR2GR3GR4GR5Dropdowns10"/>
             <param name="ITEM_CLASS" value="CL_RSR_WWW_ITEM_FILTER_DDOWN"/>
             <param name="DATA_PROVIDER" value="DP1"/>
             <param name="GENERATE_CAPTION" value=""/>
             <param name="BORDER_STYLE" value="NO_BORDER"/>
             <param name="IOBJNM" value="ZSHLVL4"/>
             <param name="BOOKED_VALUES" value="Q"/>
             <param name="MAXVALUES" value="50000"/>
             <param name="SHOW_LABEL" value=""/>
             <param name="TARGET_DATA_PROVIDER_1" value="DP1"/>
             ITEM:            GR1GR2GR3GR4GR5Dropdowns10
    </object>   
       </TD>
    </TR>
    <TR>
        <TD CLASS="SAPSapFormLabel">PromoGroup:</TD>
        <TD CLASS="SAPSapFormInput">
    <object>
             <param name="OWNER" value="SAP_BW"/>
             <param name="CMD" value="GET_ITEM"/>
             <param name="NAME" value="GR1GR2GR3GR4GR5Dropdowns06"/>
             <param name="ITEM_CLASS" value="CL_RSR_WWW_ITEM_FILTER_DDOWN"/>
             <param name="DATA_PROVIDER" value="DP1"/>
             <param name="GENERATE_CAPTION" value=""/>
             <param name="WIDTH" value="30"/>
             <param name="BORDER_STYLE" value="NO_BORDER"/>
             <param name="IOBJNM" value="ZPHLEVEL5"/>
             <param name="BOOKED_VALUES" value="Q"/>
             <param name="MAXVALUES" value="50000"/>
             <param name="SHOW_LABEL" value=""/>
             <param name="TARGET_DATA_PROVIDER_1" value="DP1"/>
             <param name="HEIGHT" value="30"/>
             ITEM:            GR1GR2GR3GR4GR5Dropdowns06
    </object>      
       </TD>
        <TD CLASS="SAPSapFormLabel">Sales Hierarchy Level 5:</TD>
        <TD CLASS="SAPSapFormInput">
    <object>
             <param name="OWNER" value="SAP_BW"/>
             <param name="CMD" value="GET_ITEM"/>
             <param name="NAME" value="GR1GR2GR3GR4GR5Dropdowns11"/>
             <param name="ITEM_CLASS" value="CL_RSR_WWW_ITEM_FILTER_DDOWN"/>
             <param name="DATA_PROVIDER" value="DP1"/>
             <param name="GENERATE_CAPTION" value=""/>
             <param name="BORDER_STYLE" value="NO_BORDER"/>
             <param name="IOBJNM" value="ZSHLVL5"/>
             <param name="BOOKED_VALUES" value="Q"/>
             <param name="MAXVALUES" value="50000"/>
             <param name="SHOW_LABEL" value=""/>
             <param name="TARGET_DATA_PROVIDER_1" value="DP1"/>
             ITEM:            GR1GR2GR3GR4GR5Dropdowns11
    </object>    
       </TD>
    </TR>
    </TABLE>
    </div>
    <!-- End Hide Area -->
    </td>
    </tr>
    </table>
    <object>
             <param name="OWNER" value="SAP_BW"/>
             <param name="CMD" value="GET_ITEM"/>
             <param name="NAME" value="GR1Table"/>
             <param name="ITEM_CLASS" value="CL_RSR_WWW_ITEM_GRID"/>
             <param name="DATA_PROVIDER" value="DP1"/>
             <param name="GENERATE_CAPTION" value=""/>
             <param name="BLOCK_SIZE" value="999999"/>
             ITEM:            GR1Table
    </object>
    <P> </P></TD></TR></TABLE>
    <script type="text/javascript">
    <!--
    set_color01();
    -->
    </script>
    </body>
    </HTML>

Maybe you are looking for

  • Problem when invoke the  Webservice WSDL

    Hi , Use case : I have two applications (Webservices) A and B.They have their own WSDL urls. From A ---> request format at A ---->Transform that into B request format----->forward that(request) to B request --- > get B response -----> tranfrom that i

  • Reading file in bytes using FileReader...

    Hi, I am trying to read out bytes value from a .bmp file then i try to change the byte values that i read out to hexadecimal value. I open the .bmp in Win Hex (a software) but the hexadecimal value does not tally.... public void readByteFile (String

  • Option Missing from "Record Keyframes" Box.

    I'm working through the Motion 5 tutorials.(Lesson 4) It tells me to "Select 'Record keyframes on animated parameters only' and click OK." That is not an option in my Record Keyframes box. I've gone back and re-worked all the steps multiple times- no

  • Upgraded to yosemite and cc stopped working

    i upgraded to yosemite and following advise i also upgraded to java 8 restarted but cc bridge and photoshop stopped working i assume this is a common issue. Could I have advice on what to do?

  • Huge error

    I'm not quite sure how to explain this, but about 15 minutes ago while I was working, my Mac randomly shut down. I booted it back up and logged in as usual, but I noticed that Finder wasn't running. I tried opening it via the dock icon, only to recei