WAD 7.0 Checkbox Group web item - ability to select/deselect all

Hello. I am currently using within the Web Application Designer 7.0 the web item Checkbox Group. I would like the ability to add a "select all" and "deselect all" button(s) to select all values and deselect all values respectively.
Has anyone in the community been able to accomplish this? Our user base has asked about this frequently.
Kind regards,
Lynn Peter

Hi,
This can be solved by using a Container layout item and a button group item.
1 Put the Checkbox item and a button group item in the Container layout item.
2 Configure a button in the button group item with the command CLEAR_SELECTION_STATE and connect it to the criteria/key figures you wish to use it on.
3 Configure another button similarely with the command SET_SELECTION STATE. (In our user case this button was not necessary)
4 Configure the Container layout item to display your checkbox and button group as desired.
This should solve your problem, we had exactly the same problem with the before "unfriendly" user interface.
BR,
Niclas

Similar Messages

  • 2004s "Group Web Item" Explanation

    Hi, Can someone explain the "Group Web Item" to me? I put several items in it, but when I configure the "Group Web Item" it requests a single subordinate web item? And when I run it only the one assigned web item shows up on the screen. Is it supposed to only display 1 item? Doesn't seem to make any sense to me.
    What am I missing here?
    Thanks, Ken Murray

    Hi Kenneth,
    In a group item you can have web item assigned to
    1. Caption
    2. toolbar
    3. Design
    All the webitems (that can be  container/conatiner layout or any other web item) can be assigned to 1, 2 and 3.
    Also you can use conatiner layout and assign couple of other web items and specify all the web items correctly in the conatiner layout or
    you can create a table in a container and drag and drop other web items in the table.
    Then you need to assign the conatiner or the container layout to the design subordinate item. (3-design)
    When web template with group item is executed, the web report will only shows up the web items that you have assigned in the 3 areas; (design/caption/toolbar).
    Can I ask what web items do u want to display? And what web item did you assign in the design (3)?
    I hope this explantion helps you. Please let me know if have any questions.
    Thankyou,
    -Sini

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

  • WAD: Background-Image when dropping Web-Item

    Hi specialists,
    I've got the following issue:
    As soon as I drop an WebItem into (let's say) a div-element, the WAD adds the following items to the XHTML-Code of the div-Element:
    oheight="423" owidth="714" height="423" width="714" iwidth="714px" iheight="423px" src="file://C:/my documents/myname/local settings/Temp/bw/tmp_mime/gen_prevgenbmp377.png"
    and the following into the div's style-attribute:
    BACKGROUND-IMAG E: url(file://C:/my documents/myname/local settings/Temp/bw/tmp_mime/gen_prevgenbmp377.png);
    Can anybody explain this behaviour ? What are this background-Image (which seems to be a dummy-image) and the non-standard attributes used for ?
    So far I always needed to remove this attributes/style-element manually after inserting a new web-item - which is quite inconvenient... - Is there a way to disabble this

    You don't convert code from Spry.  You eliminate Spry and start over with a better Menu.
    If you have a budget to work with, Project Seven's Pop-Menu Magic3 is a good investment and it's mobile &  touch screen friendly.
    http://www.projectseven.com/products/menusystems/pmm3/index.htm
    jQuery Superfish (free)
    http://users.tpg.com.au/j_birch/plugins/superfish/
    jQuery MegaMenu 2  (free)
    http://www.geektantra.com/2010/05/jquery-megamenu-2/
    To answer your first question, you want a persistent indicator.
    Making a persistent page indicator on site wide CSS Menus
    Nancy O.

  • ABAP Web Dynpro, ALV, Cardinality 0..n, Remove Select/Deselect All

    Hi Everyone
    I am developing a new application using ABAP Web Dynpro. I am using ALV. I want to give the user the option to select either 0 or multiple rows in the ALV grid. However, I want to hide the standard Select All/Deselect All push button that appears in the top left hand corner. This is because we do not want the user to simply select all and then click on a pushbutton to complete the process. If they wish to do this, they must manually select each item first of all. Anyone have any ideas? I've looked at the underlying ABAP classes for WD4A, but cannot find a method to do this.
    Thanks in advance for your help!!
    Jon

    Hello,
    To hide the buttons that appear at the top left of ALV, do the following:
    lo_model->if_salv_wd_std_functions~set_edit_check_available(
        EXPORTING value  = abap_false )   .
      lo_model->if_salv_wd_std_functions~set_edit_append_row_allowed(
          EXPORTING  value  = abap_false )  .
      lo_model->if_salv_wd_std_functions~set_edit_insert_row_allowed(
        EXPORTING  value  = abap_false )   .
      lo_model->if_salv_wd_std_functions~set_edit_delete_row_allowed(
        EXPORTING  value  = abap_false )   .
      lo_model->if_salv_wd_std_functions~set_pdf_allowed( abap_false ).
      lo_model->if_salv_wd_std_functions~set_view_list_allowed( abap_false ).
    lo_model->if_salv_wd_std_functions~SET_EXPORT_ALLOWED( abap_false ).
    Hope this helps!
    Regards,
    Srilatha

  • Selecting playlists checkboxes to sync does not always select/deselect.

    When I plug in my iPad to my MBP and try to select playlists to sync, the check boxes don't always work when clicked on. I have to click it a few times for it to select/deselect a checkbox. I have all OS X updates installed and I'm still running Snow Leopard.

    Solved this by noticing in about:sync-log that one home2 for some reason it got stuck and did not sync. Using the manual sync facility (the small icon which you can find by modifying your toolbar) solved everything and suddenly everything sync'ed to everything!
    This function is worth its weight in gold :)
    Case solved and closed

  • WAD 7.0 - Navigation Pane Web Item with Old 3.x features

    Hi Experts,
    Is there a way to get the WAD 3.x version Navigation pane in WAD 7.0.
    Navigation pane in WAD 7.0 is missing those "beautiful navigation icons" to add/remove a free char. into rows/columns and also to set filter values.
    We are on the latest SP - BW 7.0.
    Any suggestions, will be appreciated.
    Thanks
    CK

    Hello,
    I struggled with the same issue ...
    but here is a sollution. don not select a navigation pane but use the filter pane.
    in the filterpane you can define the number of kollums.
    and with drag and drop from the filter pane to the report you can use the same functions as wth the navigation pane.
    really works
    good luck

  • How do you auto tone a group of photos. I selected them all and tried to auto tone but it keeps doing only one

    How do you auto tone a group of photos. I tried command a to select all and then auto tone but it only did one Photo. I troes several times and yes all photos were selected

    In Develop you can highlight a group of thumbnails in the filmstrip, then right-click and choose Develop Settings -> Auto Tone
    In Library you can highlight a group of thumbnails in the Grid and click the Auto Tone button in the Quick Develop area.
    What you can’t do is click the Auto button in Develop and have it do more than one photo—this is by design, except, maybe if you have Auto Sync enabled.

  • Is it possible to Select/Deselect All checkboxes using single button

    Hi all,
      I want to Select/Deselect all check boxes in my table using single button. I tried using single button ,but it is not working correctly for all the cases.
    Thanks&regards,
    karthik.

    Hi karthik..
    You can do this ..
    1.Create boolean variable..
    2.Create Select all button..
    write this code in Select all action ..
    IPrivate<View>.I<Table>Node tNode=wdContext.node<Table>().;
    for(int i=0;i<tNodesize();i++)
    tNode.get><Table>ElementAt(i).setCheck(true);
    Like Deselect all..
    IPrivate<View>.I<Table>Node tNode=wdContext.node<Table>().;
    for(int i=0;i<tNodesize();i++)
    tNode.get><Table>ElementAt(i).setCheck(false);
    Urs GS

  • Missing Web Items

    Hello,
    We have migrated from BW 3.0 to NW2004s SP13.
    The users are complaining that some web items like broadcaster and whatifprediction is not available on portals.
    1) What could be the issue with this after upgrade.
    2) There is a migration of web items from 3.x to 7.0 Program:- RSZW_ITEM_MIGRATION_3X_TO_70 . will this solve the issue ?
    3) If yes to point 2, Is RSZW_CHART_MIGRATION_35 required prior to step 2.
    4) Is there any work around without going for step 2 & 3.
    Regards,
    Sandeep

    Do you mean BI 7.0 WAD does not have some web items?
    See the link below for some of the changes in BI 7.0 environment.
    http://help.sap.com/saphelp_nw04s/helpdata/en/07/ca534230c6b330e10000000a155106/content.htm

  • 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

  • Web Item Portfolio in WAD 7.0

    Hi,
    I would like to realize the following with the portfolio Web Item in the WAD 7.0:
    I got a Query which delivers me 3 columns:
    Section1 : x,y, size
    Section2 : x,y, size
    x for x axis y for y axis and size for the size of the bubbles in the chart.
    The Chart presents this correct.
    As a label for every bubble it shows me Section1, Section 2....
    As Label I would like to have the value of the third column(size) presented and not
    Section 1, Section 2...
    Is there a possibility to this?
    Thanks for any help!!

    Hi Holger,
    this is possible with the latest IGS version when using $size in the Format attribute of the Series customzing.
    See note <a href="http://service.sap.com/sap/support/notes/1064448">1064448</a> for more information on the number formats.
    Best regards
    Matthias

  • How to design selection screen with WAD 3.x Web Items

    Hi Guruu2019s,
    I have a requirement where I need to design a selection screen by using WAD 3.x web items. In the selection screen we have to include the Query Description - in the left corner of the selection screen, Name of Sales Person u2013 left side of the screen, Date from and Date to u2013 right side of the selection screen, User ID and User Name u2013 on the top right of the selection screen etc., after this on the bottom of the selection screen I have to include the pushbutton RUN REPORT.
    After filling all the above parameters and click on Run Report it has to trigger another URL link which contains consolidated Sales CRM Report.
    Could any one suggest me and provide me the idea on developing the selection screen with WAD 3.x Web items and is there any other interface to trigger the other URL link when I click on Run Report.
    Regards
    Venkat

    no replies. Closing the incident

  • How to fix column / row as "header" in WAD (Web item Analysis) ?

    Hi,
    is there a possibility to fix a column or row as "header" in web item analysis? (like freeze panes in excel)
    When scrolling down, the header should always be displayed.
    Thank you very much in advance, best regards
    Frank

    We did a custom proof of concept on this back in 3.5 using CSS and/or javascript. At that time there was no BW solution for this.
    Don't know if 2004s has this ability or not. Here's a link to an example that shows how it can be done using CSS:
    http://home.tampabay.rr.com/bmerkey/examples/locked-column-csv.html

  • How to pass parameter values to a customer exit web item (WAD)

    Hi gurus,
    I have a wad with a data provider and a filter panel filtering that dp by using a variable. There is also a customer exit which saves the values of that variable into a z table.
    How can I pass the values of the filter panel to the customer exit web item?
    Thanks in advance,
    Rob

    Can you clarify your scenario? Which is the case you're talking about?
    1) You want to pass a parameter from OmniPortlet to a PL/SQL procedure.
    2) You want to pass a parameter from a PL/SQL procedure to OmniPortlet.
    In both cases the most obvious way of doing it is through request (URL) parameters.
    Render a link in your portlet (either in OmniPortlet or using PL/SQL) that invokes a portal page, containing the other portlet.
    Both OmniPortlet and PL/SQL allow you to wire and access page parameters.
    Take a look at the Using Parameter and Events section of the Portal User's Guide and the Parameters and Events section of the Portal Developer's Guide.
    Hope this helps,
    Peter

Maybe you are looking for

  • End to end scenario using Webservic and SAP XI

    Hi Experts,                    I have read many blogs regarding Integrating XI using WebService, SOAP, HTTP  for many scenarios but I am still confused and no blogs were clearly saying about the end to end scenario what happens where and how? My ques

  • Blog: Integration Process

    I found a good blog with a BPM example /people/arpit.seth/blog/2005/06/27/rfc-scenario-using-bpm--starter-kit But the blog don't explain which container elements are necessary (fig.15). I think it is only possible to use abstract and asynchronous ada

  • My iphone is still locked to my old carrier

    my iphone is still locked to my old carrier

  • Business Rules with BPEL or ADF

    Hi, My requirement is : We have to migrate records from one DB table to another DB table. And we have to apply Business Rules on those records while they are on there journy from source DB to target DB. We have two choices to achieve this:- 1) Use BP

  • How to customise charting styles?

    Hi, I'm currently looking for a way to customise the styles available in cfchart. I have to place 9 charts on an A4 page in landscape i.e. 3 rows of 3 charts, each of size width 280 and height 190. Is there anybody who can please help me with the fol