Reading web items in javascript.

In a 7.0 template, how can I read the value of a web item using javascript? I want to read a filter value from the info field item, manipulate it and assign the resulting value to an input item. How do I access the value?

Hello Bharath,
There is a webitem called Navigation pane in the Standard list, i hope this is what you need.
Kindly reply again is your problem is not resolved and please assign points if it is :).
Regards,
Dennis

Similar Messages

  • Determining web item parameters in JavaScript

    Hi there
    Is it possible to determine the parameters of a web item using JavaScript?
    I know there are commands to SET the parameters in JavaScript, but I need to determine a parameter first, then set it accordingly.
    Any ideas?
    Cheers,
    Andrew

    Hi DeGe,
    Yes, you will have only 1 button on/off at any point in time. Plz. proceed as follows. I assume you have 1 ButtonGroup webitem on your template. You would need to add 1 more ButtonGroup webitem to the template such that they are side by side. Name the 1st ButtonGroup webitem's Button as 'Set Repeated Text Display On' & the 2nd ButtonGroup webitem's Button as 'Turn off Repeated Text Display'.
    Now on Action of the 1st ButtonGroup webitem's Button, add following Commands using the Command Wizard:-
    -- Choose 'SET_ITEM_PARAMETERS' from Commands for Web Items. Select your Analysis webitem here & check 'Display Repeated Texts'
    -- Add another Command. Choose 'SET_ITEM_PARAMETERS' from Commands for Web Items. Select ButtonGroup 1 & check 'Visibility' to HIDDEN
    -- Add another Command. Choose 'SET_ITEM_PARAMETERS' from Commands for Web Items. Select ButtonGroup 2 & check 'Visibility' to VISIBLE
    Now on Action of the 2nd ButtonGroup webitem's Button, add following Commands using the Command Wizard:-
    -- Choose 'SET_ITEM_PARAMETERS' from Commands for Web Items. Select your Analysis webitem here & uncheck 'Display Repeated Texts'
    -- Add another Command. Choose 'SET_ITEM_PARAMETERS' from Commands for Web Items. Select ButtonGroup 2 & check 'Visibility' to HIDDEN
    -- Add another Command. Choose 'SET_ITEM_PARAMETERS' from Commands for Web Items. Select ButtonGroup 1 & check 'Visibility' to VISIBLE
    At design time, keep ButtonGroup webitem 1 or 2 HIDDEN depending on what you want the default state to be i.e. repeated text display on or off.
    --Priya

  • Get web item parameter using currentState.getParameter

    Hi WAD experts,
    how can we get the current parameter status of a web item in JavaScript (WAD in BI 7.0)?
    In the code generated by the wizard the currentState.getParameter is mentioned:
    <i>Information can be extracted using the parameter 'currentState' and 'defaultCommandSequence'. In either case create your own object of type 'sapbi_CommandSequence' that will be sent to the server. To extract specific values of parameters refer to the following snippet:
    <b>var key = currentState.getParameter( PARAM_KEY ).getValue();
    alert( "Selected key: " + key );</b></i>
    Any idea how to get for example the VISIBILITY status of a chart item in JavaScript?
    Thanks for your help!
    Regards, Olaf

    Does anyone have an answer to this question?  We have an urgent need to "read" the current parameters of a web item and then take an action.
    thanks
    rodney

  • How to read list item and display Title and on click hyperlink as value by javascript /jquery

    on newform.aspx just above the top of cancel button I want to put 1 hyperlink "Help"
    but I want to do this by script/jquery by reading my configuration list where 1 column is TITLE and other is- URL
    in TITLE column will write "Help" and in URL column  I will write
    http://portal1234/sites/sudha/MyHelppage.aspx
    so script should read Title and display Help--->1st part
    Script should read Value column and on click of help-(display link) the respective url should be open in new window.-->second part
    Please let me know reference code for adding anchor tag dynamically by reading from list
    I can see hyperlink near cancel button-
    $(document).ready(function(){
    var HelpLinkhtml ='<a href="#" text="Help">Help</a>';
    var position =$("input[value='Cancel']").parent("td").addClass('ms-separator').append(HelpLinkhtml);
    now for reading from list I am trying below script-
    $(document).ready(function() {
        GetHelpLinkFromConfigList();
    function GetHelpLinkFromConfigList()
     //The Web Service method we are calling, to read list items we use 'GetListItems'
     var method = "GetListItems";
     //The display name of the list we are reading data from
     var list = "configurationList";
     //We need to identify the fields we want to return. In this instance, we want the Title,Value fields
     //from the Configuration List. You can see here that we are using the internal field names.
     var fieldsToRead = "<ViewFields>"+"<FieldRef Name='Title' />"+"<FieldRef Name='Value' />"+"</ViewFields>";
     //comment
     var query = "<Query>" +
                            "<Where>" +
                                "<Neq>" +
                                    "<FieldRef Name='Title'/><Value Type='Text'>Help</Value>"
    +
                                "</Neq>" +
                            "</Where>" +
                            "<OrderBy>" +
                                "<FieldRef Name='Title'/>" +
                            "</OrderBy>" +
                        "</Query>";
     $().SPServices(
     operation: method,
        async: false,
        listName: list,
        CAMLViewFields: fieldsToRead,
        CAMLQuery: query,
        completefunc: function (xData, Status) {
        $(xData.responseXML).SPFilterNode("z:row").each(function() {
        var displayname = ($(this).attr("ows_Title"));
        var UrlValue = ($(this).attr("ows_Value")).split(",")[0];
        AddRowToSharepointTable(displayname,UrlValue)
    function AddRowToSharepointTable(displayname,UrlValue)
        $("#NDRTable").append("<tr align='Middle'>" +
                                    "<td><a href='" +UrlValue+ "'>+displayname+</a></td>"
    +
                                   "</tr>");
    <table id="NDRTable"></table>
    Thanks :)
    sudhanshu sharma Do good and cast it into river :)

    Hi,
    From your description, you want to add a help link(read data from other list) into new form page.
    The following code for your reference:
    <script src="http://code.jquery.com/jquery-1.10.2.min.js" type="text/javascript"></script>
    <script type="text/javascript">
    ExecuteOrDelayUntilScriptLoaded(AddHelpLink, "sp.js");
    function AddHelpLink() {
    var context = new SP.ClientContext.get_current();
    var list= context.get_web().get_lists().getByTitle("configurationList");
    var camlQuery= new SP.CamlQuery();
    camlQuery.set_viewXml("<View><Query><Where><Eq><FieldRef Name='Title'/><Value Type='Text'>Help</Value></Eq></Where></Query></View>");
    this.listItems = list.getItems(camlQuery);
    context.load(this.listItems,'Include(Title,URL)');
    context.executeQueryAsync(function(){
    var ListEnumerator = listItems.getEnumerator();
    while(ListEnumerator.moveNext())
    var currentItem = ListEnumerator.get_current();
    var title=currentItem.get_item("Title");
    var url=currentItem.get_item("URL").get_url();
    var HelpLinkhtml ='<a href="'+url+'">'+title+'</a>';
    $("input[value='Cancel']").parent("td").addClass('ms-separator').append(HelpLinkhtml);
    },function(sender,args){
    alert(args.get_message());
    </script>
    Result:
    Best Regards
    Dennis Guo
    TechNet Community Support

  • How to read application item's value using  javascript

    Is there any way to read value of application item using javascript?
    Thanks

    Javascript can access the objects rendered for the page you are calling. This is why the $v function will do the work if calling it for a page item. However an application item isn't rendered on the page - the session state of it is only stored in the table. This is why you need to do it the way I described. You could do a workarround and create a hidden item on your page and compute the value of it using the application item value. Then you would be able to get the value of your application item using $v function.
    Denes Kubicek
    http://deneskubicek.blogspot.com/
    http://www.opal-consulting.de/training
    http://apex.oracle.com/pls/otn/f?p=31517:1
    ------------------------------------------------------------------------------

  • Get web item parameters with JavaScript

    Hello,
    I have a web template with a button and an analysis item. The button should execute a JavaScript function that checks if the parameter REPEATED_TEXTS_DISPLAYED of the analysis item is set. If yes, the parameter REPEATED_TEXTS_DISPLAYED should be switched off, if not, it should be switched on.
    To implement this I am searching for the JavaScript coding that determines the state of the parameter REPEATED_TEXTS_DISPLAYED of my analysis item.
    Does anyone have an idea?
    Thanks a lot.
    DeGe

    Hi DeGe,
    Yes, you will have only 1 button on/off at any point in time. Plz. proceed as follows. I assume you have 1 ButtonGroup webitem on your template. You would need to add 1 more ButtonGroup webitem to the template such that they are side by side. Name the 1st ButtonGroup webitem's Button as 'Set Repeated Text Display On' & the 2nd ButtonGroup webitem's Button as 'Turn off Repeated Text Display'.
    Now on Action of the 1st ButtonGroup webitem's Button, add following Commands using the Command Wizard:-
    -- Choose 'SET_ITEM_PARAMETERS' from Commands for Web Items. Select your Analysis webitem here & check 'Display Repeated Texts'
    -- Add another Command. Choose 'SET_ITEM_PARAMETERS' from Commands for Web Items. Select ButtonGroup 1 & check 'Visibility' to HIDDEN
    -- Add another Command. Choose 'SET_ITEM_PARAMETERS' from Commands for Web Items. Select ButtonGroup 2 & check 'Visibility' to VISIBLE
    Now on Action of the 2nd ButtonGroup webitem's Button, add following Commands using the Command Wizard:-
    -- Choose 'SET_ITEM_PARAMETERS' from Commands for Web Items. Select your Analysis webitem here & uncheck 'Display Repeated Texts'
    -- Add another Command. Choose 'SET_ITEM_PARAMETERS' from Commands for Web Items. Select ButtonGroup 2 & check 'Visibility' to HIDDEN
    -- Add another Command. Choose 'SET_ITEM_PARAMETERS' from Commands for Web Items. Select ButtonGroup 1 & check 'Visibility' to VISIBLE
    At design time, keep ButtonGroup webitem 1 or 2 HIDDEN depending on what you want the default state to be i.e. repeated text display on or off.
    --Priya

  • Pass content from web item single document to javascript

    Hi all,
    does anyone has passed the content from the web item "single document" to a javascript variable? I just want to grab the text.
    Regards,
    Adem

    Hi GOPI,
    i am testing the script but i receive the error that obj.innerHTML is null or not an object.
    <HTML>
    <!-- BW data source object tags -->
    <object>
             <param name="OWNER" value="SAP_BW"/>
             <param name="CMD" value="SET_DATA_PROVIDER"/>
             <param name="NAME" value="DOCUMENT"/>
             <param name="DATA_PROVIDER_ID" value="ZMB_CC_00_DS_01_VIEW_WEB01"/>
             DATA_PROVIDER:             DOCUMENT
    </object>
    <object>
             <param name="OWNER" value="SAP_BW"/>
             <param name="CMD" value="SET_DATA_PROVIDER"/>
             <param name="NAME" value="DATAPROVIDER_1"/>
             <param name="DATA_PROVIDER_ID" value=""/>
             DATA_PROVIDER:             DATAPROVIDER_1
    </object>
    <object>
             <param name="OWNER" value="SAP_BW"/>
             <param name="CMD" value="SET_PROPERTIES"/>
             <param name="TEMPLATE_ID" value="ZTMP_SOLUTION4"/>
             <param name="DATA_MODE" value="STORED"/>
             TEMPLATE PROPERTIES
    </object>
    <HEAD>
    <META NAME="GENERATOR" Content="Microsoft DHTML Editing Control">
    <TITLE>BW Web Application</TITLE>
          <link href="/sap/bw/Mime/BEx/StyleSheets/BWReports.css" type="text/css" rel="stylesheet"/>
    </HEAD>
    <BODY>
    <object>
             <param name="OWNER" value="SAP_BW"/>
             <param name="CMD" value="GET_ITEM"/>
             <param name="NAME" value="DOCUMENT_1"/>
             <param name="ITEM_CLASS" value="CL_RSR_WWW_ITEM_DOC"/>
             <param name="DATA_PROVIDER" value="DOCUMENT"/>
             <param name="GENERATE_CAPTION" value=""/>
             <param name="BORDER_STYLE" value=""/>
             <param name="WIDTH" value="429"/>
             <param name="DOCUMENT_CLASS" value="TRAN"/>
             ITEM:            DOCUMENT_1
    </object>
    <script type="text/javascript">
    var obj = finddoc("DOCUMENT");
    alert(obj.innerHTML);
    function finddoc( doc_name ){
    var all_tables = document.all;
    for( var i=0;i<all_tables.length;i++ ){
    if (all_tables.name==doc_name)//we have found document
    return all_tables;
    return null;
    </script>
    </BODY></HTML>
    I try to debug.
    Best regards,
    Adem

  • Calling query doc. (text file) from a web template with JavaScript

    Hi,
    I would like to have an explanation of the following:
    My goal is to develop a solution within a dynamic web template that supports calling of query documentation (description and purpose of the certain report). This query documentation will be provided from a textfile(e.g .csv) and presented under the information tab applying a text element web item. This will be done with query technical name acting as key with the following column structure:
    Technical name    Description    Purpose
    I really would appreciate if anyone could provide me with a more or less detailed solution proposal for this. Javascript etc.?
    Thanx in advance

    You can use the command line tool cURL instead of a GUI browser.
    set myFonts to do shell script "curl http://site.com/fonts.txt"

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

  • WAD 7: Hide Web Item depending on variable value

    Hi,
    I have two enterprise reports in a web template. The underlying queries have the same variable (calendar month). I want to achieve the following:
    In case the variable is < 4: Show report A, Hide report B
    In case the variable is >=4: Show report B, Hide report A
    Any idea how to do this?
    Best regards
    Thomas

    You should lookup how to use XPATH and Javascript combination. Xpath will let you query the value of the variable in Javascript and then you can use javascript to set the hidden property for the desired web item.

  • Fetch table value in BEX Web report using Javascripts, and assign condition

    Hi Gurus,
    I am currently using WAD 3.5. I need to change the web report to behave like below :-
    1. Default layout (Field A B C) with condition A & B activated.
    2. If the drilldown Field B and C is removed, leaving only field B alone in the report drilldown, deactivate condition A & B, Activate condition C & D.
    3. the above can be reversed where user drilldown field B & C into the layout, the condition A & B need to then be activated back.
    So I believe this can be done using Javascript. So my questions are below
    1.) How do i fetch table value for the navigationblock ? with navigationblock i am able to know what are the columns are in the drilldown (i will not display free characteristics, so ignore this part). how do i read the content of NAVIGATIONBLOCK_1 as shown in following code? using javascript.
    <P><object>
             <param name="OWNER" value="SAP_BW"/>
             <param name="CMD" value="GET_ITEM"/>
             <param name="NAME" value="NAVIGATIONBLOCK_1"/>
             <param name="ITEM_CLASS" value="CL_RSR_WWW_ITEM_NAV_BLOCK"/>
             <param name="DATA_PROVIDER" value="DATAPROVIDER_1"/>
             <param name="SHOW_FREE_CHARACTERISTICS" value=""/>
             <param name="SHOW_NAVIGATION_ICONS" value=""/>
             <param name="SHOW_FILTER_ICONS" value=""/>
             ITEM:            NAVIGATIONBLOCK_1
    </object></P>
    2.) After question 1.) is done, please advice how do i activate/deactivate the conditions? based on the fields found in above. Maybe I can use IF navigationblock_1 contain field A only, then set condition A & B , etc.
    <p><object>
             <param name="OWNER" value="SAP_BW"/>
             <param name="CMD" value="GET_ITEM"/>
             <param name="NAME" value="CONDITIONLIST_1"/>
             <param name="ITEM_CLASS" value="CL_RSR_WWW_ITEM_CONDITION"/>
             <param name="DATA_PROVIDER" value="DATAPROVIDER_1"/>
             ITEM:            CONDITIONLIST_1
    </object>
    I would appreciate if we can solve Question 1 first before proceed to 2.)
    Please advise. Thanks

    Hi JTi,
    what i have understood from your requirement is that you want to access the web item table_1 in javascript, you can get that as below:
    Add
    <span> 
    tag before your web item and set its id to table.
    <span id = "table">
    <param name="OWNER" value="SAP_BW"/>
    <param name="CMD" value="GET_ITEM"/>
    <param name="NAME" value="TABLE_1"/>
    <param name="ITEM_CLASS" value="CL_RSR_WWW_ITEM_GRID"/>
    <param name="DATA_PROVIDER" value="DATAPROVIDER_1"/>
    <param name="GENERATE_CAPTION" value=""/>
    <param name="CAPTION" value="jezel"/>
    <param name="ONLY_HIERARCHY_NAVIGATION" value="X"/>
    <param name="BLOCK_SIZE" value="0"/>
    <param name="SHOW_PAGING_AREA_BOTTOM" value=""/>
    ITEM: TABLE_1
    </span>
    In javascript access it as :
    var mytable = document.getElementsById("table");
    Hope this helps
    Thanks
    Dipika

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

  • How to show modal window without popup in a web page using javascript

    Hi,
    How to show modal window without popup in a web page using javascript, means when the modalwindow is opened it should not ask for popup blocker alert......
    pls help me.....

    Thanx for ur reply,
    Actually the senario is when i click on a button, another jsp page should be displayed in a modal window without popup, but the functions alert() and confirm() will not accept the url path of the another jsp page...

  • How to render web items based on the authorisation profile of the user

    Hello,
    Is there any way to render web items based on the authorisation profile of the user. The only way i can think of is:
    - Write ABAP to look up into the security mapping tables.
    - Convert the ABAP report into RFC-Enabled FM. The selection variables will be part of the import/export parameters of FM and table can be used to display the result.
    - Create HTML template using WAD, write Java Script to call the FM and map the import/export parameter. Display the result in Table.
    But i don't know How to use the Java Script to call Function Module (FM) and get back the authorization through parameter.
    Is anyone know about it or is there any other method to do it? I can't find any solution and it is very critical for me.
    Any help is highly appreciated.
    Rajat

    Hi Rajat,
    Do you mean that you want certain users to be able to use only certain web items? I think you can use the libraries for that and assign them to roles:
    http://help.sap.com/saphelp_nw04/helpdata/en/4e/0f813b420ce60ee10000000a114084/content.htm
    Hope this helps...

  • Reset Row Selection from Web Item Analysis in WAD 7.0

    Hi All,
    I have a Web Item Type Analysis and I use the Row Selection (SELECT_ROWS) value multiple.
    Is there a way to reset the selection via a function?
    The user select some rows and start a planning function via a button. If they would like to start the function for an other selection they first have to remove the old ones and have to mark the other lines.
    A function to remove all selection from the item is needed!
    PS: It is getting funny if there is paging and the selection is not even visible because it is on an other page.
    Thanks for help.

    Hello All.
    I have exaclty the same problem now.
    Is there any way to do this?
    Thanks a lot and best regards,
    Alfonso.

Maybe you are looking for

  • How can we change the language of a Workspace Interface?

    Hi team, A German colleague of mine has told me he sees his workspace interface on beehiveonline.oracle.com in German. I was wondering if this was to do with his browser or if he had to modify any profile settings somewhere (to English). I know we ca

  • HP Mini 1000 - Solid State HD Constantly Thrashing - Slowing System Down

    I recently bought an HP Mini 1000 (the actual model number is the 1100 CTO).  It came with the HP flavor of Linux.  I put the Windows 7 RC on it, as several others have, and noticed incredibly poor performance with the 32GB solid state hard disk. The

  • ITunes on PC and MAC G4

    I have an iPod formatted with Windows, and all my tunes are on my PC laptop. However, I would like to copy all these music files onto my Apple G4? Does anybody know the easiest way to do this? I am aware of using iPod as a hard disk, but cannot see h

  • Help With Java Alarm

    Hello Everybody I Want To Make an Alarm Application With Java Like The User Enters Alarm Time as 3.15.4 AM or something like that which class shall i use? if there's any demos that would be great. Thank You

  • I have a ipod touch 3rd gen need to update 4.3

    i have an ipod 3rd gen need to update to 4.3