Variable popup Screen reequirement(Different Issues)

Hi Guys,
     I have requirement in selection screen level.
     We have queries on multi provider level this multiprovider is
     based on virtual cube.
     Virtual cube is reading data from infocube with the help of
     function module.
     My requirement is when i execute the query it shows the
     selection screen for user input.When I click on selection
     list it will display the master data input values but here I
     need to display the cube level values.
     I know how to select the read mode in query level but to    
    achieve this we need to make some changes in info object
    level.
    Can any one tell me what are the changes required in the
    info object definition to achive the above requirement?
    This is very impartant.
    Helpful answers will be rewarde with full points.
   Advance thanks.
   Prasad

Re: Variable screen in WEB
What you want is possible - you can do it through a custom HTML screen with a little bit of JavaScript , there is no out of the box functionality for what you desire...
For doing this you would have to generate the URL dynamically and use what is called the WEB API Reference.
You can find the WEB API REFERENCE3.x on help.sap.com , sdn as well as the support portal ... basically what you would do is have static drop downs on a HTML page and based on the selections build a URL and call the web report dynamically.

Similar Messages

  • Variable Selection Screen Issue in WAD

    Hi Guru's,
    I have created a Query in 3.5 and having Variables for the same as Acutal Good's Issued Date & Plant. I am able to see the variable screen with selection option(Intervals) in Query level. But I am not able to see the Variable selection option as interval in Portal (WAD). The variable is showing only as single value.
    Please suggest to get the variable selection screen as interval's.
    Regards,
    Bandi

    Hi,
    I got your point.When you open that query in Analyzer,it shows the variable screen and the variable is shown as a interval variable.But if you open the same query in Web Analyzer,the variable shown as single value variable.
    This looks little weird because both Web and BEx Analyzer uses the same Query.Can you execute the query in RSRT Tcode and check how the variable shown(whether as a Single or interval variable).
    And also check the variable definition.Try to create a new variable with the same settings and check the behavior.
    Rgds,
    Murali

  • Multiple stages on multiple screens of different size

    I'm working on a project that requires me to have two stages on two screens of different size. How do I do this in Flex, or is it even possible?
    More specifically, I am building a kiosk appliction, that will have the menu on a small touch-screen that sits in front of a larger, wall-mounted screen. When the user selects content to be played (videos, web sites, whatever) from the touch-screen, then the effect of that selection needs to be sent to the other stage. I need to be able to run a screen-saver on the main screen, also. Basically, the controls are the main application, and the other screen is simply a container for viewing things.
    I am currently packaging my Flex project in AIR, not through the web, so I actually have a windowed application. Basically, I just need to create a new window with a custom chrome that simply holds a movie.
    Is such a thing possible in Flex? I couldn't figure out how to spawn another stage, much less one that was referencable from the first stage.

    Hey all. I have reached the answer. I left everything up that I posted before, in case anybody is having similar issues. To create the custom component, click your project, create a package, and then right-click that package and create a new MXML component. Then, create the MXML just like you would before. Your root tag will be whatever you are working to modify (so, s:Window for my case, but you can do an s:Label or whatever you want). So, first, I'll give you the code for my simple Window component:
    [CODE]
    <?xml version="1.0" encoding="utf-8"?>
    <!-- This is a window component which creates a transparent window with no system chrome (no bars, close, min, max buttons, resize stuff) that contains... This screen is spawned from the main MXML WindowedApplication using AS 3. -->
    <s:Window xmlns:fx="http://ns.adobe.com/mxml/2009"
                        xmlns:s="library://ns.adobe.com/flex/spark"
                        xmlns:mx="library://ns.adobe.com/flex/mx"
                        systemChrome="none" visible="true" transparent="true" showStatusBar="false" width="400" height="300"
        <s:layout>
            <s:BasicLayout />
        </s:layout>
        <s:Label id="controlScreenTitle" text="new Window from VideoScreen component" fontSize="72" fontWeight="normal" color="#222222">
        <s:filters>
            <s:DropShadowFilter color="#CCCCCC" />
        </s:filters>
        </s:Label>
    </s:Window>
    [/CODE]
    All I did was a very simple white box there. You can disable the system chrome and such from the main Window tag, as I have shown. The window this creates has no [ _ ] [ [] ] [ x ] buttons, bar along the bottom, or any background. In my actual project, this component will hold a container to play my video objects.
    Then, I create my main document:
    [CODE]
    <?xml version="1.0" encoding="utf-8"?>
    <!-- This is the main MXML file for the application. MXML is based on pure XML, and is actually a short-cut to generating AS code. You use MXML to set up the layout of the stage. -->
    <s:WindowedApplication xmlns:fx="http://ns.adobe.com/mxml/2009"
                            xmlns:s="library://ns.adobe.com/flex/spark"
                            xmlns:mx="library://ns.adobe.com/flex/mx"
                            showStatusBar="false" alwaysInFront="false"
                            creationComplete="init()">
        <!-- Imports -->
        <fx:Style source="KioskScreensStyles.css" />
        <fx:Script source="controlScreenMain.as" />
        <fx:Script>
            <![CDATA[
                /* Insert other ActionScript stuff here. Try to put as much of it as you can in the .AS file, though */
            ]]>
        </fx:Script>
        <fx:Declarations>
            <!-- Place non-visual elements (e.g., variables, services, value objects) here -->
            <!-- Any variables placed in here will be global, and live for the entirety of the entire program's run. However, for simplicity's sake, I have placed all of those for this application in the imported .as file. But, for reference, they are described using MXML. ie: -->
            <!--<fx:Type id="ASReferencableName">Value of the variable</fx:Type>-->
        </fx:Declarations>
        <s:BorderContainer id="controlInterface" right="0" left="0" top="0" bottom="0" borderStyle="inset" borderColor="#CCCCCC">
            <s:layout>
                <!-- There are several layouts available to you:
                        * s:BasicLayout will allow you to completely control all placement. Objects are absolutely placed, and don't move from their position on the stage, even if the screen scrolls.
                        * s:TileLayout can be used to create grids of button objects.
                        * s:HorizontalLayout and s:VerticalLayout will lay out elements horizontally or vertically on the stage. You can specify padding around each object (example below). Placement will begin from top-left corner of the visible stage. If you go with either of these, then no x, y properties on elements will be used, as the system will automatically place all elements in the order that they are created.
                -->
                <s:BasicLayout />
                <!--<s:TileLayout columnAlign="justifyUsingWidth" rowAlign="justifyUsingHeight" />-->
                <!--<s:HorizontalLayout verticalAlign="middle" paddingLeft="10" paddingRight="10" />-->
            </s:layout>
            <!-- We default the text of this ID as an error, showing that the .as did not link up. -->
            <s:Label id="controlScreenTitle" text="Error loading program..." fontSize="48" fontWeight="normal" color="#222222">
                <s:filters>
                    <s:DropShadowFilter color="#CCCCCC" />
                </s:filters>
            </s:Label>
            <!-- Creating the menu buttons for playing the movies -->
            <s:ToggleButton id="btn1" label="Play video 1" click="btn1_clickHandler(event)" />
            <s:ToggleButton id="btn2" label="Play video 2" click="btn2_clickHandler(event)" />
            <s:ToggleButton id="btn3" label="Play video 3" click="btn3_clickHandler(event)" />
            <s:ToggleButton id="btn4" label="Play video 4" click="btn4_clickHandler(event)" />
            <s:ToggleButton id="btn5" label="Play video 5" click="btn5_clickHandler(event)" />
            <s:ToggleButton id="btn6" label="Play video 6" click="btn6_clickHandler(event)" />
        </s:BorderContainer>
    </s:WindowedApplication>
    [/CODE]
    Now, the important part will be the .as file. Here's parts of that:
    [CODE]
    /* Imports */
    /* import custom components. This is what allows us to open a new window in AIR. NOTE: THIS IS HOW YOU GET THAT CUSTOM MXML FILE IN HERE TO USE */
    import customComponents.VideoScreen;
    // import older mx stuff only when needed. Try to avoid using these.
    import mx.controls.Image;
    // import the newer Spark components. Use these for everything possible.
    import spark.components.VideoDisplay;
    import spark.components.Window;
    import spark.primitives.Rect;
    // Global variable declairation
    protected var screens:Array = Screen.screens;
    protected var controlScreenSizes:Rectangle = screens[0].bounds;
    protected var videoScreenSizes:Rectangle = screens[1].bounds;
    // All variables below Defined in init(), to be sure that they have been fully loaded
    // While the :Window declairation technically works for the controlScreen, Flash views this as an error, and will not process everything properly if I type it like that.
    //protected var controlScreen:Window = this.Window;
    protected var controlScreen;// = this;
    /* NOTE: THIS IS THE USE OF MY NEW, IMPORTED CUSTOM WINDOW. This is all you need to do to make it. */
    protected var videoScreen:VideoScreen = new VideoScreen();
    protected var btns:Array;
    /* Initialize all my variables, and call the needed functions to set everything up */
    protected function init():void
        controlScreen = this;
        // This is a Window method that opens the Window. I did not have to code this.
        videoScreen.open(false);
        btns = [btn1, btn2, btn3, btn4, btn5, btn6];
        placeScreens();
        createControlScreen();
        loadScreenSaver();
    /* Moves all my screens so that they sit in the top-left of each of the two screens, and then expands to be full screen on those two screens, whatever size that may be. */
    private function placeScreens():void
        // We move it to -1,-1 because there is 1 px padding and dead white space that I can't figure out how to remove.
        controlScreen.move(-1,-1);
        controlScreen.width = (controlScreenSizes.width+1);
        controlScreen.height = (controlScreenSizes.height+1);
        controlInterface.width = (controlScreenSizes.width+1);
        controlInterface.height = (controlScreenSizes.height+1);
        videoScreen.systemChrome = "Standard";
        videoScreen.move(controlScreenSizes.width,0);
        videoScreen.width = (videoScreenSizes.width);
        videoScreen.height = (videoScreenSizes.height);
    /* Puts all the buttons where they belong, and attached the background image that we need and so forth */
    private function createControlScreen():void
       /* Most of this code is not needed for the demonstration, so I only include what I feel would be helpful, with psudocode for the rest */
        var backgroundImg:Image = new Image();
        backgroundImg.source = "assets/backgroundImg.jpg";
        var backgroundVid:VideoDisplay = new VideoDisplay();
        backgroundVid.source = "assets/backgroundVid.mp4";
        backgroundVid.width = (controlScreenSizes.width+1);
        backgroundVid.height = (controlScreenSizes.height+1);
        backgroundVid.autoPlay = true;
        backgroundVid.muted = true;
        backgroundVid.loop = true;
        /* Format the buttons. You can change height, width, x and y position on the form, label (the text on it), and some other things (including the ability to spawn video or picture or sound when clicked and such for animations. */
        /* buncha code that moved the buttons around and made them all fit in the screen dynamically based on the screen size. */
        /* Finally, play with controlScreenTitle, which is a label control that you can styple and use for text on the screen in addition to the buttons. In here is just a bunch of code to do that*/
        /* Attach the elements to the controlInterface. The first put on has the lowest z, therefore is under the rest. Stack them in the order you want then displayed. The first one should be either backgroundImg (image), or backgroundVid (video), depending on what you provided and want. Note that the video causes the buttons to lag a lot */
        controlInterface.contentGroup.addElement(backgroundImg);
        //controlInterface.contentGroup.addElement(backgroundVid);
        controlInterface.contentGroup.addElement(controlScreenTitle);
        controlInterface.contentGroup.addElement(btn1);
        controlInterface.contentGroup.addElement(btn2);
        controlInterface.contentGroup.addElement(btn3);
        controlInterface.contentGroup.addElement(btn4);
        controlInterface.contentGroup.addElement(btn5);
        controlInterface.contentGroup.addElement(btn6);
        /* Buncha code for the functionality */
    } // End function createControlScreen()
    /* Puts the screensaver up on the video display so that we don't burn out the display */
    private function loadScreenSaver():void
        //pull in screensave into that window
    /* Makes sure that the user doesn't see two buttons active at the same time--that would look like two movies were playing at the same time. */
    private function deselectOtherButtons(clicked:int):void
        for(var i:int=0; i<6; i++)
            if(i != (clicked-1))
                btns[i].selected = false;
    /* All of the below do the same thing: unselect all the other buttons when one of the buttons is clicked. I could just create one click event handler, but I wanted to leave the possiblity of customizing the result of each button's click, so I left it this way. */
    protected function btn1_clickHandler(event:MouseEvent):void
        deselectOtherButtons(1);
    protected function btn2_clickHandler(event:MouseEvent):void
        deselectOtherButtons(2);
    protected function btn3_clickHandler(event:MouseEvent):void
        deselectOtherButtons(3);
        deselectOtherButtons(4);
    protected function btn5_clickHandler(event:MouseEvent):void
        deselectOtherButtons(5);
    protected function btn6_clickHandler(event:MouseEvent):void
        deselectOtherButtons(6);
    [/CODE]
    If anybody looking at this has any questions about it, feel free to ask me. I am not usually able to comb the forums, so you'll have to PM me or something. I actually put this up right after I found my solution, so there is work still to be done on it (obviously). But if you ever need to do anything like this, here's some code for you.

  • Bind Variable popup when no bind variable declared

    I am writing a fairly complex SQL (FYI, I want to keep this all in one step and not split out with multiple sub-selects) and I am getting the bind variable popup and an error message ("The requested URL /apex/wwv_flow.show was not found on this server ") and I am not sure why and could definitely use some help. From what I see there is no issue with the SQL syntax written and when I try to break it down, everything goes well until the point where I write a case statement with an OR and checking for 'BLOCK'.
    The issue comes when using the bolded line.
    I am using "10g Release 2 (10.2)" and querying from the SQL commands area inside it.
    The goal is to identify the area of the court broken down by the x and y dimension, home and away team has different logic to be used and if it is a block there is different logic.
    Your help would be greatly appreciated, and I am leaning towards it is a bug in the SQL Commands section of the tool:
    The full query is below:
    case when E.YEAR IS NOT NULL then
    *(case when x_dimension < 12.5 then 'A' when x_dimension <= 25 then 'B' when x_dimension < 37.5 then 'C' else 'D' end ||*
    case when ((a.action_team=c.awayname3 and A.ACTION_TYPE = 'BLOCK') or (a.action_team=c.homename3 and A.ACTION_TYPE <> 'BLOCK')) then (case when y_dimension < 9.5 then '4' when y_dimension <= 19 then '3' when y_dimension < 28.5 then '2' when y_dimension <= 38 then '1' else '0' end) else (case when y_dimension > 84.5 then '4' when y_dimension >= 75 then '3' when y_dimension < 65.5 then '2' when y_dimension <= 56 then '1' else '0' end) end) else 'NA' end as COURT_LOC
    It would not allow to enter the full SQL but please know that there is no issue with any declaration of the columns.
    Edited by: user10615520 on Feb 29, 2012 10:29 AM
    It seems that it is an issue with the in house SQL client of XE as I downloaded SQL Developer and ran same query there and the result was no issues. Is anyone aware of a bug for something like this?
    Edited by: user10615520 on Feb 29, 2012 10:43 AM

    So I am running Oracle Database Express version 10g. When you login through the default web interface, there is a SQL command line option. When I utilize the SQL below, can't insert whole SQL statement for some reason it won't let me, in that SQL command line I get a pop up window asking about values for bind variables... But as you can see from the code below there is no declaration of a bind variable. I also get the error message from the original post.
    When I use the same query in Oracle SQL Developer, not express (mistake in previous note), the query runs without any issues.
    My question is if anyone is aware of the oracle database express sql command line module having a bug where this is occurring. When I remove the line below from the query it runs fine in the Oracle Database Express command line module.
    Thank you for your help, I hope this is clear.
    case when E.YEAR IS NOT NULL then
    (case when x_dimension < 12.5 then 'A' when x_dimension <= 25 then 'B' when x_dimension < 37.5 then 'C' else 'D' end ||
    case when ((a.action_team=c.awayname3 and A.ACTION_TYPE = 'BLOCK') or (a.action_team=c.homename3 and A.ACTION_TYPE <> 'BLOCK'))
    then
    (case when y_dimension < 9.5 then '4' when y_dimension <= 19 then '3' when y_dimension < 28.5 then '2' when y_dimension <= 38 then '1' else '0' end)
    else
    (case when y_dimension > 84.5 then '4' when y_dimension >= 75 then '3' when y_dimension < 65.5 then '2' when y_dimension <= 56 then '1' else '0' end)
    end) else 'NA' end as COURT_LOC

  • History of user Input values in variable entry screen

    Hi Experts,
    I have a small issue. I have a variable entry screen where I select values from the list. I can always see the history of variable values I input earlier when I click on the dropdown box. For example the country code displays all my previous inputs.
    Similar to the web browsers history.
    Not the same case with Fiscal Year/Period. I do the same type of selection  from the combo box for example 12.2006. I give different values again like 1.2007, 2.2007 etc and run the report several times. But it doesn't show up the history of my previous entries unlike the country code.
    Kindly help, points assured.
    Thanks,
    Raj.

    What we've done isn't pretty, and I'm hoping for a better solution.
    We've developed 3 ODSs that we've exported a full list of all attributes and their values to.  Each ODS is identical.
    We've then created an InfoSet to link the Product Cube to each of the 3 ODSs.  We can then add 3 variables to the query representing each ODSs.  Since the ODS holds over half a million attributes, we limited it to 3 since it takes 30 minutes to run.
    It's not elegant, it's not pretty, and I'm sure it's not optimal.  I'm hoping someone can describe a better solution.

  • Popup screen not working after upgrade to APEX 3.0

    Hi,
    I have upgraded my APEX installation from version 1.6 to version 3. My application has some popup screens that are displayed when a user presses a button. These popups have now stop working and when you press them, the user is presented with the login page.
    I suspect this is because I am not passing the SESSION value in the URL when the page is displayed. The following code is the javascript that is called from one of the buttons :-
    function sa_popup2() {
    var field_value = document.getElementById("f22@0").value;
    if ( document.getElementById("f22@0").value != "" ) {
    var enqNo = document.getElementById("P17_ENQUIRY_NO") ? document.getElementById("P17_ENQUIRY_NO").value : -1;
    var enqLineNo = wwv_flow.f02[0].value;
    var str=document.getElementById("P17_PROCESS_CHRG_INCL").value;
    var outstring = str.replace(/%null%/,"");
    windowAddress = 'f?p=200:228:::::P228_CUS_ID,P228_ENQ_STATUS,P228_PROCESSING_CHRG,P228_ENQUIRY_NO,P228_ENQUIRY_LINE_NO:'+document.getElementById("P17_CUS_ID").value+','+document.getElementById("P17_ENQ_STATUS").value+','+outstring + ',' + enqNo + ',' + enqLineNo ;
    w = open(windowAddress,"winhelp","Scrollbars=1,resizable=1,width=500,height=350");
    You can see from the above that when the windowaddress variable is set it does not include the session value. In APEX 1.6 when the popup is displayed the SESSION is automatically populated in the URL, but in APEX 3 it is not populating.
    Is there a way I can get this to continue working without changing my javascript function. This approach has been used throughout my applications, and I do not want to have to change the code if I don't need to.
    Rgds
    Paul

    Hi Paul,
    Yes, as you suspect, it's the fact that you're not passing the session across. I would definitely recommend recoding to include the session.

  • Adding messages to the Variable entry screen in web report

    I need to add a message or note to the variable selection screen on a web report. I need this message or note to be displayed somewhere on the same screen with the variable list. I found something similar in BW Expert regarding pop-up messages, but this does not work with web templates. Does anyone know of a way to add a static (or dynamic) message to this initial screen of a web report?

    In my clients place, they are ready to do the SAP Mod based on "CL_RSR_WWW_VARIABLE_SCREEN" to have a Alert Message which sort of based on different idea.
    Does anyboay have an idea on where to make the change?
    Thanx
    Arun

  • How to add customize message on the variable selection screen in the query

    Hi all,
    Can we add an customise message on the variable selection screen in the query? If yes please let me know how it can be achevied?
    Thanks,
    Rani

    Hi Rani,
    I faced a similar issue (for what I understand your request is).
    My requirement for the Variable Screen was to do:
       1) place a link to a ppt file
       2) remove buttons "Save", "Save As...), "Delete"... the standard buttons come when running the Query or WebTempl
    We were using a Web Templ for BI7.0
    I struggled trying to find out how to do it. My conclusions are:
    - WAD, not sure we can accomplish it using a Web Template but i did not "play" a lot with the Web_Template Properties in order to know
    - XHTML, I was told in my post HTML modification was the way, but I have close to nil background in HTML and couold not find the way of accessing the Variable Entry screen
    For instance, I had to remove similar buttons and change some font size from a link on the Web Template (WAD), which was pretty straight forward. In WAD the buttons come with its own icon and to increase the Font size for that link we used XHTML (<font size="2" >). But the heck of the variable screen...well, i just did not get trhough to it to modify it in any way.
    Good luck,
    Definetly in a Query I would say that no.
    alex
    PS: If anyone had a better insight, please feel free to share it.

  • Data is not saving in to DB from POPUP screen.

    Hi,
    I am opening a popup screen on button click and On the popup screen, I have added the VO as form with submit button.
    On the popup fetchlistener, I calling a bean method to invoke the createInsert action as follows.
    public String createSubs() {
    System.out.println("Inside Action Event*********************");
    try{
    AdfFacesContext adf = AdfFacesContext.getCurrentInstance();
    BindingContainer bc = getBindings();
    oracle.binding.OperationBinding opb = bc.getOperationBinding("Create");
    opb.execute();
    }catch(Exception e){
    e.printStackTrace();
    return "";
    public BindingContainer getBindings() {
    return BindingContext.getCurrent().getCurrentBindingsEntry();
    When I am clicking on submit button in popup screen, data is appearing on the mainpage table but the same is not saving in the database. One more I have observed that doDML is not calling means SOP's are not comming from doDML method in the entity class.
    Please do the needful, its an urgent issue to reslove.
    Thanks in Advance,
    user5802014

    HI,
    Can you please specify that for your attributes CreatedBy and CreationDate , are you using automatic insert value from your entity or not? Or you are passing default values programatically in doDML() method.
    I guess for every new row your are using User name for CreatedBy field and current date for CreationDate field,
    Why don't you set these field at the time of creation of new row, Override Create() method in your entity bean and then you can set these fields to there default values. and now you should remove Mandatory property to unchecked for these fields in entity also.
    like i'm doing here - I'm setting sequence number as default to field insertedLineNo
        protected void create(AttributeList attributeList) {
            SequenceImpl seq = new SequenceImpl("NUMBER_SEQ", getDBTransaction());
            Number seqNum = seq.getSequenceNumber();
            setInsertedLineNo(seqNum);
            super.create(attributeList);
        }Hope this will help you, and let me know if this helps you.
    Fizzz...

  • Workbook fetching buffer date in variable popup in BI 7.0

    Hi All
    Appreciate ur respose in advance
    I have an issue related to workbook it is taking the buffer date instead current date from the variable
    i have tested the query with its variable popup .when we run it is showing  the current date i.e; sysdate
    and when the user runs the work book it fetches data from the cache it will not take the sysdate i.e; the cuurent date i have checked with all the technical settings with query and workbook as well
    we are using  a customer exit for 0calday varible
    *fo example *when we open the work book it fetches the old date(previousdate) not the current date**
    where as when we run the query it will display the variable popup with current date or sysdate
    Thanks in advance
    Mohammed ghouse
    Edited by: Mohammed Ghouse on Jul 17, 2009 2:05 PM
    Edited by: Mohammed Ghouse on Jul 17, 2009 2:06 PM

    Hi Chandamita Sarmah
    Pleased to see ur  reply but all  the technical settings related to workbook are done .every option is selected with out missing even though the problem persits
    Thanks for ur reply
    Mohammed Ghouse

  • I reinstalled acrobat pro 9.0 on windows 7 Ultimate 64, it installed OK, When I open i get a large white popup screen which i cannot close... what to do?

    I reinstalled acrobat pro 9.0 on windows 7 Ultimate 64, it installed OK, When I open i get a large white popup screen which i cannot close... what to do?

    Hey jeroenb16613921,
    Please specify exactly when you get this white popup screen. While opening a PDF or launching Acrobat by double-clicking on the Acrobat icon.
    If it comes when opening a PDF, then where is this PDF actually stored?
    Let me know more on the same so that I can analyze the issue.
    Regards,
    Anubha

  • Problem with Variable Entry Screen

    Hello All,
    We upgraded our development systems to NW2004s and came across the following issue:
    All our Bex queries have restricted time characteristics with variables entries. When we execute a query it should pop-up the variable selection screen for us to enter the restriction values but the query is ignoring Variable restriction screen and taking into consideration everything. The same query works fine in Prod., which is still in 3.1.
    Did anyone come across this situation kind of situation? It did not pop-up any type of error and we are in SPS10
    Thanks in Advance,
    Message was edited by:
            bw expert online
    Message was edited by:
            bw expert online

    We fixed the "Variable Screen not appearing" problem by adding following objects to our users.
    1) Business Explorer - BEx Web Templates (NW 7.0+) S_RS_BTMP
    2) Business Explorer - Individual Tools S_RS_TOOLS
    3) Business Explorer - Data Access Services S_RS_DAS
    Mark the message answered if this helps.

  • Need to skip the variable selection screen when using dropdown

    Hello Friends,
    I have created a web template having a dropdown, a table and a text element. Basically I am trying to follow the guide "How to Use a Dropdown Box to Set Variable Values". It shows how to select values for a variable using dropdown.
    NOTE: The guide can be found here:
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/2642ab90-0201-0010-9193-d59de66cbab4
    What is happening is when I select a value for the variable in the dropdown, the correct url is getting formed but instead of displaying the report using the selected value, the variable selection screen appears. Given below is the url that gets formed:
    http://abcdev.wdf.sap-ag.de:8000/sap/bw/BEx?SAP-LANGUAGE=E&PAGENO=1&REQUEST_NO=3&CMD=PROCESS_VARIABLES&SUBCMD=VAR_SUBMIT&VAR_NAME_1=TSTPEROD&VAR_VALUE_EXT_1=04.2007
    Please assist me to get rid of the variable selection screen. Thanks!
    Regards,
    Prem.

    Hello Ray,
    Thanks for your reply. This has partially resovled the issue. I have awarded you points for that. Now I am able to skip the variable screen.
    However, the query results are not getting refreshed. I wanted to restirct the values based on the value given in the variable selection (In my case the dropdown box). Somehow I am not able to link the dropdown with the variable or the "SAPBWOpenURL(url);" function is having some issues.
    Please assist. Thanks!
    Regards,
    Prem.

  • Passing URL Parametes to Variables in variable Selection Screen

    Hi
    Is there any way to pass the URL parameters to the variables in the selection screen of Web Report/ and How to make to non editable.
    Your points are assured
    Thanks and Regards
    Prasad

    Pankaj,
    What you have mentioned is for BSP Pages... for web reports .. add the following to the URL..
    &CMD=PROCESS_VARIABLES&SUBCMD=VAR_SUBMIT&VAR_NAME_1=<Your Variable Name>&VAR_VALUE_EXT_1=<Value of the variable>
    This is for a normal variable - it is slightly different for hierarchy variables...
    For details information - you can refer the WEB API reference 3.x....
    service.sap.com/bi -> BW infoindex -> Web Application Designer 3.x -> Web API Reference 3.5 (pdf)
    Arun
    Assign points if useful
    Message was edited by:
            Arun Varadarajan

  • Variable entry screen for query doesnt show selection values.

    Hi,
    I've created a query with date varibale Quarter From-To. When i execute this query, the variable entry screen pops up but when i try to select values just shows ??? and not the text.
    if i run the same query in RSRT the variable entry screen pops up but here the selection values are present for me to choose from.
    can anyone tell why the values arent showing when the query is executed.
    Thanks

    yes, it seems to be a problem with NetWeaver BI BEx Java Web runtime as it works in RSRT and web analyzer. Found a note on marketplace note 125357 - No values displayed for attributes in input help but this did not resolve issue.
    A call has been raised now as it seems to be a product fault

Maybe you are looking for

  • Worst customer service and still on going foir near on 18 months

    I manage the laptop pool in a large private school, we bought 750 x220i's for th student body, we also spent close to $45,000 to buy the extended warranty and next day on site warranty, all was good for the first 12 months, we got what we paid for, t

  • Multiple free goods determination for one item

    Hi All I have a requirement in free goods functionality as explained below: When one product is purchased, system should propose 2 or 3 products as free goods. But as per standard SAP, only one free item is possible (it is either an Exclusive or Incl

  • My MacBook isn't charging and nothing's wrong with the

    I recently was going to use the MacBook from like a week and when I put on the adapter says that " Not Charging " in the top right corner. Nothing is wrong with the adapter, it's just the MacBook. I already reset SMC and nothing happened. Can you hel

  • Sql query join with transpose

    i have two tables table A and table B, both these tables are associated with id column . And the table B might have variant properties for each id i.e as shown in the below example id "1" having 4 properties and id "2" having 7 properties and id "3"

  • Making an Independent Clip

    I am working with still images and want to take an indivudual clip and convert it into a quicktime so that I can use the TimeReMap and have control over timing and ease in/ease out. When I click on the clip my "Make Independent Clip" is greyed out. I