How to get input controls to populate in a cell in webi

Hi
  I have a table and a graph and I have input controls set up for those. I would also like to create a blank cell and populate it with the selected input control. What formula do I use to obtain that?
Josh

Hi,
Use below formula in blank cell:
=ReportFilter([Object Name])
If you face any issue then let us know.
Cheers
Sahil

Similar Messages

  • How to get record control in sony ericsson p1i.

    How to get record control in sony ericsson p1i....
    does jsr234 helps??

    I'm not sure it is possible to get the PL/SQL record type through JDBC. Please try to access this procedure through JDBC to see if it is possible.
    You may need to convert the record type, to an object-type, i.e. wrap the procedure in another procedure that converts the record type. You could also just wrap the procedure in another that expands the record values into individual output parameters.

  • How to get Input-Ready Cell  Value of Input Ready Query?

    Hi,
    How to get input ready cell value in fox formula?
    for example :
    In Input-Ready Query,
    C_Code Month        Psale(input ready)
    1000          05.2012       800
    now i want Psale 800 in fox formua before value save in cube,
    is it possible?
    Thanks
    Ravi

    Hi,
    as I understand your requirement: you want to execute a planning function before 'save'. This possible, cf. note 1356805
    for more details.
    Regards,
    Gregor

  • How to get parent controls reset

    how to get parent control reset or changed

    You would have to log in as the administrator, then use the Parental Controls panel in System preferences to change the account's controls.
    Matt

  • How to get(copy) the contents i.e the cell of an excel sheet to other excel

    How to get(copy) the contents i.e the cells of an excel sheet to another excel sheet.
    I can read the contents i.e the text in the cells and able to display it in the Java console
    i want these contents to be copied to another excel sheet with the cells data.
    I am using Java Swing for the UI, POI framework for the excel work.
    Please anyone suggest some code to this requirement.

    [spreadsheets with poi|http://poi.apache.org/spreadsheet/converting.html] Hi
    on the poi apache site there's a number of good examples...
    I started with poi only a week ago, but just from reading these examples
    (especially SS Usermodel code) i managed all i needed to know (so far).
    kind regards
    BB
    Edited by: BugBunny on Feb 22, 2010 4:36 AM

  • Help get input controls working WEBI 4.0 BEx

    Hello All
    I am trying to get WEBI Input Control working for me, and all I seem to be getting is the error message
    Unable to get the first page of the current report.
    Please check the validity of your report or contact your administrator. (ERR WIJ 20003).
    What I am doing is as follows:
    Create a Cross Tab based upon BEx Query via BICS the format is basically
    Cross Tab 1
    FY.........Period..........Structure.........u20AC
    I am wanting to click on FY and have it report on
    Cross Tab 2
    Period..........Structure.........u20AC
    I then create an element link for all objects (single doesn't work either)
    When I select FY I get the above error message.
    Can anyone please help me become wiser as to how to work with WEBI and BEx?
    Thanks
    Phillip

    Hi Philip,
    Thanks for your interest in Web Intelligence input controls.
    Although I have not all the details of the issue you are encountering, this looks like a bug we've found with Web Intelligence 4.0 input controls occurring specifically with objects from BICS sources (logged as fix request 1553312 / customer issue CSS 393735 in our systems).
    This issue has been fixed with Web Intelligence 4.0 SP2.1 (patch 1 of SP2), which has been released last week AFAIK.
    If the issue persists or you are not sure that this fix addresses your issues, I strongly encourage you to get in touch with customer support to report your issue so wde can have this corrected as soon as possible.
    Please keep in mind besides that hiercharchies are not yet supported by input controls, new controls will be specifically introduced with Web Intelligence 4.1 to select values from tree lists.
    Hope that helps,
    David.

  • How to get more control over DVR recordings

    Looking for some advice on how to make sure the DVR records (and keeps) the episodes I want.  
    An example:
    I want to record a series that is still producing new episodes, but is also in repeats in syndication.  For example, Big Bang Theory.  This has new episodes each week on CBS, but has about twenty or so repeats each day on TBS.
    Due to the high number of repeats, any new episodes pretty quickly get overwritten by the repeats.  So is there a way to record both first-run and repeat episodes, but prevent the first-runs from getting overwritten before I can watch them?

    GRubinstein1 wrote:
    I have no idea if the format has recently been changed or what the issue is, but when I try to get more control over my DVR recordings, I can't. What I mean by that is that I cannot alter "First-Run and Repeats" to "First-Run Only," I cannot specify the specific channel to record on, I cannot say how many episodes I want it to keep, etc. Here is a step-by-step guide of what I do and what the problem is:
    I press the "menu" button on the remote. I scroll down to DVR. I select the option of "manage series recordings." I select one of my shows. I'll use "Masters of Sex" as my example. I select "Masters of Sex." It's at this point where I get a problem. When I select "Masters of Sex," the only option I get is to cancel the series. No option to only record first-runs. No option to keep only 3 episodes instead of 5. No option to change it so it saves until I manually record it. Nothing. I've tried not selecting "Masters of Sex" and instead using the right arrow button to scrol over to the settings of the show. But nothing happens when I do that. It doesn't give me access to these options. This is incredibly frustrating because not only do the shows delete automatically at a certain point, but it records EVERY SINGLE AIRING OF EVERY SINGLE SHOW I RECORD. This means I have to go through several times a day to the "Scheduled Recordings" section and delete scheduled recordings of shows I have already seen. It's absolutely ridiculous, particularly for cable shows, which air episodes frequently throughout the week. Please help me if you can.
    Put simply, I cannot change the settings on how I record each show.
    Try the Box's Menu/customer support/tops support tools/Fix Fios TV option. (exact working may be different on your box)

  • How to get input from card reader

    hi, everyone,
    I have a project, which needs me to get input from card reader. My terminal input is IBM POS system, but it didnot provide the API to get the input. How can I get the input? Need your help so much! and thanks a lot

    Now this is a wild idea.... how about searching the IBM site for technical information ?

  • How to get input from keyboard scanner into an array

    This is probably a very basic question but I'm very new to java..
    My task is to reverse a string of five digits which have been entered using keyboard scanner.
    E.g. - Entered number - 45896
    Output - 69854
    I used the StringBuffer(inputString).reverse() command for this, but i need a more basic method to do this.
    I thought of defining an array of 5
    int[] array = new int [5];
    and then using,
    Scanner scan = new Scanner(System.in);
    to enter the numbers. But I can't figure out how to get the five input numbers into the array.
    If I can do this I can print the array in reverse order to get my result.
    Any other simple method is also welcome.

    Hey thanks for the quick reply,
    But how can I assign the whole five digit number into the array at once without asking to enter numbers separately?
    E.g. - if entered number is 65789
    Assign digits into positions,
    anArray [0] = 6;
    anArray [1] = 5;
    anArray [2] = 7;
    anArray [3] = 8;
    anArray [4] = 9;
    I'm really sorry but I am very new to the whole subject.

  • JComboBox    How to get input from JComboBox

    Hi all.
    I have a JComboBox called combobox.
    User can choose one string out of 5 using this JComboBox.
    Whenever the user press a button, I'd like to get an input through this combobox using actionListener.
    How can I get input through JComboBox?
    combobox.getValue() ???
    I appreciate your help !

    http://java.sun.com/j2se/1.4.2/docs/api/javax/swing/JComboBox.html
    Object getSelectedItem()

  • How to Get Input from Command Prompt?

    How can i get input from command prompt like
    C:\
    or linux ?
    (Here's what I use now)
    BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
    String line;
    Whlie((line=in.readLine())!= null)
    { System.out.prinln( line) ; }
    IS THERE A BETTER WAY?

    The main method within a java class accepts command line input through a String array.
    In this example args is the String array. You can access the parameters as args[0] for the first parameter, args[1] for the second parameter, etc....
    The usage for the example below would be :
    c:\EDIFormat file1 file2
    Where args[0] would equal file1 and args[1] would equal file2.
    public class EDIFormat {
    public static void main(String[] args) {
              if (args.length < 0) {
                   System.out.println("No Parameters supplied. Exiting....");
                   // open input and output files
                   EDIFiles(args[0], args[1]);
    Hope that helps!

  • How to get inputs of several JTextFields?

    Hi all,
    I'm writing an application which prompt the user to enter "Customer Information" such as Customer, Name and Tel. I need to use JTextField for these inputs but I don't know how to get the input values. I found some sample code for only input ONE JTextField so I don't know how to apply it for more than one JTextField. Below is part of my coding. What should be add in the "actionPerformed" part to get the inputs? Would anyone help?
    class CustFrame extends JFrame implements ActionListener
    JButton save, cancel;
    JLabel text1, text2, text3;
    JTextField cust_number, name, tel;
    text1 = new JLabel ("Customer Number: ");
    text2 = new JLabel ("Name: ");
    text3 = new JLabel ("Tel: ");
    cust_number = new JTextField (8);
    cust_number.addActionListener (this);
    name = new JTextField (20);
    name.addActionListener (this);
    tel = new JTextField (30);
    tel.addActionListener (this);
    save = new JButton ("Save");
    cancel = new JButton ("Cancel");
    public void actionPerformed (ActionEvent e)
    if (e.getSource()==save)
    else if (e.getSource()==cancel)

    public void actionPerformed (ActionEvent e)
    if (e.getSource()==save){
    innumber = cust_number.getText();
    inname = name.getText();
    intel = tel.getText();
    }.....

  • Input Controls pane - How to force Input Controls pane to visible on WebI?

    We are planning to distribute WebI reports to our users. The reports would be scheduled daily and the users would get  an email containing a hyperlink to the Webi report. Upon clicking, the hyperlink it would  launch the WebI and refresh data to the latest instance of the report.
    Is there a way to force the Input Controls pane to visible on this report when users click on the link?
    Thanks

    Hi Rohit,
    I do not think this can be set in WebI. Nevertheless, I understand this suggestion as a very interesting enhancement for the tool. What about submitting it on Idea Place?
    Thanks for the suggestion and your interest with input controls,
    David.

  • How to get any control reference?

    Hi everyone,
    I want to get any control's reference when click the mouse button on any control.(Front Panel includes hundreds of different types of control.) Actually, I found method using "register for event:mouse down value source". This solution is fine working.
    But I don't want to use this method. Please Can you suggest any other method ?
    Thanks for answer...
    Himmet GENCER
    Software Development Coordinator at Teknik Destek Grubu
    [email protected]
    Attachments:
    getControlReference.vi ‏12 KB

    Using a couple of property nodes, you can get an array of references for all of the controls on a front panel.  From there, just register the array.
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines
    Attachments:
    All Controls Mouse Down.png ‏8 KB

  • How to get Input field value?

    Hi All,
    I have some problem in getting of input value from View to customcontroller.
    My problem is I have created a Input field in the view and if Iam giving the value to that field I can capture the value from View to customcontroller and send it as BAPI input.But My input filed is in the view Context.
    How can i capture InputFiled value from View to CustomController.
    Advance thanks
    Nageswara.
    Message was edited by: nageswar mandapati

    Thanks for your response Patrick,
    In my customcontrollerView all my BAPI mathods instances and execute methods are declared.All the attributes directly getting from model class.
    But I have two views , in first view I created a input field(for that i created valueAttribute in that context).
    Here I want give the conditions If  the input field is empty then directly call the execute method of BAPI.
    Otherwise give any input to the inputfiled then capture that value and send it input to BAPI from view to BAPI.
    In my customcontroller
    BAPI b = new BAPI();
    b.Param1();
    b.param2();
    and
    execute BAPI()
    I done like this.
    How can i capture the view input value how to send as a b.parama();
    Please guide me .
    Any snippests appriciate.
    Thanks
    nageswara.

Maybe you are looking for

  • How can I expand my wireless network with a Time Capsule and Airport Express?

    My entire house is wired for ethernet access (2 floors).  I have a Time Capsule on the 2nd floor that reaches the entire house except for one room.  In this one room I have an ethernet port plugged into an Airport Express.  The problem I encounter is

  • Asset history for specific period

    Hi All, How to check the list of assets for a particular period. Could u plz. suggest any body immediately. Regs, Bhaskar

  • PP CS5 doesn't see MB Looks 2.5?

    I'm running CS5 Suite: I recently upgraded to Red Giant Color Suite / Magic Bullet Looks 2.5. At first, PP was seeing this suite. I flew it into a short project in PP. I got the red line above the video track, then press the edit key to render the sh

  • OTA Music Downloads Not Working after 3.1 update?

    Hey all, I've been having a strange problem since updating my iPhone 3Gs to 3.1, which may or may not be a "feature", or I might just be crazy, but anyway: Previously, when trying to download an album over-the-air from iTunes, I was able to download

  • Backup Failure using OEM

    Backup Failure using OEM I have oracle 9i (windows 2000 server) I tried to make a fullbackup using OEM, it gives me NO error messages I got result file with 890 MB (my Db is not huge), but when I go back to the JOBs in OEM I found the status of the j