Web Service as Data Service of a Combo Box?

Hi,
I tried to use a Web Service as Data Service for a dynamic entry list of a Combo Box. The problem is that I can’t see any entry in the resulting iView.
The Web Service is working for sure; I can present the containing data in a table. I also tested BAPIS as Data Service for my Combo Box they are working properly.
Has anyone an idea how to solve this problem?
Thanks in advance
Robert

Hi Jarrod,
I tried a drop down list instead, still the same Problem. The connection to the web service works properly there is no problem. I can choose it and the data service test is working fine.
I also tried to use a value help instead of a drop down list, there encounters the problem that it’s not possible to select any of my data services, neither web services nor BAPI’s.
Any idea?
Robert

Similar Messages

  • Delete data service in Data/Services panel

    Hi,
    I can´t delete or refresh data service in Data/Services panel.
    Help!!

    Buenas,
    Borré el contenido del fichero fml que está dentro de la  carpeta .model de la aplicación y lo reemplace por uno sin configurar un  data/service. 
    <?xml version="1.0" encoding="UTF-8"?> 
    <model xmlns="http://ns.adobe.com/Fiber/1.0">
    <annotation name="ActionScriptGeneration">
    <item name="FullyQualifyReferences">true</item>
    </annotation>
    </model>

  • Http service vs data services

    is there any difference between Http service and data services?

    Hi
             Data service is probably a server pushed communication like messaging.. It carries lots of changes as an object or arraycollection and as ubuntu said something like asyn service calls..
         and http service is like traditional http service .. we can use http services to load remote resources also in flex application..

  • Delete or refresh data service in Data/Services panel.

    Hi,
    I can´t delete or refresh data service in Data/Services panel.
    Help!!

    Hi Sujit ,
    Thank you very very much for you post "Building Flex application for BlazeDS Remoting destinations using Flash Builder 4".
    I didn´t have any problem when i changed the .fml, only themes change. I didn´t have any message when i couldn´t delete/refresh de services.

  • Good cell service, horrible data service - Orlando, FL

    I live in southwest Orlando and have become very frustrated at the lack of data availability in the area.  I almost always have good cell service.  Never a dropped call and usually plenty of bars on my iPhone 5.  However, there are several areas where I may have five bars - but no data service at all!
    Please advise if this is being addressed as my wife and I NEED reliable data service for our jobs.
    Thanks,
    jaw1079

        Hi Jaw1079
    Let's get you the service you deserve! What zip are you in? Please try this and retest: http://vz.to/1oUnxMy
    JoeL_VZW
    Follow us on Twitter @VZWSupport

  • Where are the forums for BEA Products? (Service Bus, Data Services, etc.)

    There is a somewhat vague message on the old BEA forums saying they have been moved here - along with a link to a non-existent 'Welcome FAQ'.

    (In an complete reversal of his previous comment, Hans states:)
    I'm not sure whether the Aqualogic Forums have been migrated, or (if they have) what they have been mapped to. Can't find 'em either.
    Oracle's recent webinar was pretty clear about JRockit and Weblogic server being the direction.
    However, for Aqualogic - based on that same webinar, my misinterpretation is that Aqualogic is one of the 'merged' families, where the best of breed is being chosen for each subset or solution area. That may be causing a delay in the forums being transferred and/merged.
    Hoping Oracle comes up with a document that clearly maps both the products and the forums. The list of products is
    BEA AquaLogic User Interaction
    BEA AquaLogic BPM
    BEA AquaLogic Integrator
    BEA AquaLogic Service Bus
    BEA AquaLogic Data Services Platform
    BEA AquaLogic Registry Repository
    BEA AquaLogic Enterprise Security
    BEA AquaLogic Enterprise Repository
    BEA AquaLogic Service Registry
    BEA AquaLogic Commerce Services
    BEA AquaLogic SOA Management
    BEA AquaLogic Pages
    BEA AquaLogic Ensemble
    BEA AquaLogic Pathways

  • Display data in list and combo box

    hi all....
    how to display data from database in list and combo box? i use MYSQL...
    help me please..... tq...

    1 - Write a query to retrieve the data you want from database
    2 - In a servlet, connect to database, Run the query, scroll through the result set and put the data into a list of Java Objects.
    3 - Set a request/session attribute of that list of objects
    4 - Forward to JSP
    5 - In JSP, create a <select> box, and then use a <c:forEach> loop to generate <option> tags from the list.

  • Please help with: A date split into 3 Combo Boxes ....

    Can someone help me with this Please?
    I have a date for a Date of Birth i.e. dd/MM/yyyy
    I need to split it up an place it into 3 combo boxes i.e. Day Combo, Month Combo and Year Combo.
    This is the code I have to set the combo boxes, now I need to bring it back into the combo boxes.
    can someone help me with the code as I need to have this finish on friday and I am running out of time. I just dont know what to do PLEASE SOMEONE HELP...
    Thanks
    Craig
    // List days
      private void DayOfTheMonth(int highNumber,JComboBox comboBox){
        comboBox.addItem(" ");
        for (int index = 1; index < highNumber; index++) {
          comboBox.addItem(String.valueOf(index));
      private void DaySpecificComboBox()
        DayOfTheMonth( 32, DayjComboBox);
    // List Months
      private void Month(){
        MonthjComboBox.addItem("");
        MonthjComboBox.addItem("January");
        MonthjComboBox.addItem("February");
        MonthjComboBox.addItem("March");
        MonthjComboBox.addItem("April");
        MonthjComboBox.addItem("May");
        MonthjComboBox.addItem("June");
        MonthjComboBox.addItem("July");
        MonthjComboBox.addItem("August");
        MonthjComboBox.addItem("September");
        MonthjComboBox.addItem("October");
        MonthjComboBox.addItem("November");
        MonthjComboBox.addItem("December");
    //List Years
      private void Year(int highNumber,JComboBox comboBox){
        comboBox.addItem(" ");
        for (int index = 2002; index > highNumber; index--) {
          comboBox.addItem(String.valueOf(index));
      private void YearSpecificComboBox()
        Year( 1900, YearjComboBox);
    private String StringFromDateFields(){
        int month =1;
        if (MonthjComboBox.getSelectedItem().equals(JANUARY))
          month = 1;
        else
          if (MonthjComboBox.getSelectedItem().equals(FEBRUARY))
            month = 2;
          else
            if (MonthjComboBox.getSelectedItem().equals(MARCH))
              month = 3;
            else
              if (MonthjComboBox.getSelectedItem().equals(APRIL))
                month = 4;
              else
                if (MonthjComboBox.getSelectedItem().equals(MAY))
                  month = 5;
                else
                  if (MonthjComboBox.getSelectedItem().equals(JUNE))
                    month = 6;
                  else
                    if (MonthjComboBox.getSelectedItem().equals(JULY))
                      month = 7;
                    else
                      if (MonthjComboBox.getSelectedItem().equals(AUGUST))
                        month = 8;
                      else
                        if (MonthjComboBox.getSelectedItem().equals(SEPTEMBER))
                          month = 9;
                        else
                          if (MonthjComboBox.getSelectedItem().equals(OCTOBER))
                            month = 10;
                          else
                            if (MonthjComboBox.getSelectedItem().equals(NOVEMBER))
                              month = 11;
                            else
                              if (MonthjComboBox.getSelectedItem().equals(DECEMBER))
                                month = 12;
                              String
                              DOB = DayjComboBox.getSelectedItem()+"/"+String.valueOf(month)+"/"+YearjComboBox.getSelectedItem();
                              return DOB;

    Thanks for your time.
    I could not get that to work ??
    I have come up with this code whitch seams to work. Thought you may like to see it
         String dobxml = xmlDoc.getValueOf(clientInfo, "DOB");
          String dob = dobxml.replace('/', ' ');
          System.out.println(dob);
          StringTokenizer tokenizer = new StringTokenizer(dob);
          String day = tokenizer.nextToken();
          String month = tokenizer.nextToken();
          String year = tokenizer.nextToken();
          System.out.println(dob);
          DayjComboBox.setSelectedItem(day);
          MonthjComboBox.setSelectedIndex(Integer.parseInt(month));
          YearjComboBox.setSelectedItem(year);ps thankyou
    Craig

  • Connect to remote PHP service with Data/Services panel

    Please add this functionality.

    Hi,
    I think the whole point is that you shouldn't need to have drive mapping to create your services, you should be able to connect to the db and get your vo's and services generated.
    I don't believe that development should be done on a remote server, but you should be able to at least do introspection and even setup the localhost database without work arounds like vpn.
    David.

  • Error while loading data into BW (BW as Target) using Data Services

    Hello,
    I'm trying to extract data from SQL Server 2012 and load into BW 7.3 using Data Services. Data Services shows that the job is finished successfully. But, when I go into BW, I'm seeing the below / attached error.
    Error while accessing repository Violation of PRIMARY KEY constraint 'PK__AL_BW_RE_
    Please let me know what this means and  how to fix this. Not sure if I gave the sufficient information. Please let me know if you need any other information.
    Thanks
    Pradeep

    Hi Pradeep,
    Regarding your query please refer below SCN thread for the same issue:
    SCN Thread:
    FIM10 to BW 73- Violation of PRIMARY KEY -table AL_BW_REQUEST
    Error in loading data from BOFC to BW using FIM 10.0
    Thanks,
    Daya

  • Restart Data Services 3.2 fails

    I can not access  trace log, monitor log and error log files. Every time accessing through links I get a time out error. The Server is available and accessible. I just tried to restart the BusinessObjects Data Service - Server through the BO-DS-Servermanager. This has not worked. I can not restart the service "BusinessObjects Data Services".
    This Error occures : Error 1053: The service did not respond to the start or control request in a timely fashion"
    This happened sometime last months. When I restart the server then all is ok again.
    How can I restart the service without reboot?

    Hello,
    1. What is the version of the Microsoft .NET Framework? (Control Panel > Add/Remove Programs).
    2. What is the error message in Event Viewer (Start > Run > eventvwr.msc)?
    3. What user run this service (Start > Run > services.msc > Business Objects Data Services > Properties > Log On tab)?
    4. Is Data Execution Prevention disabled? (My Computer > Properties > Advanced > Performance > Settings > Data Execution Prevention tab)?
    Thank you,
    Viacheslav.

  • How do I retrieve data from combo boxes?

    The past weekend I spent my whole weekend trying to find this
    out and gone through the top 10 pages on google trying all sorts of
    things. I would be grateful for anyone who can help me.
    I have 6 combo boxes in a booking form and I need to retrieve
    the data when someone click submits which gets forwarded on to php
    then my mailbox. They are called box1_cb, box2_cb.....box6_cb All
    in the instance of: ComboBox - which I don't understand what that
    does.
    it does not seem to be retrieving any of the data. For each
    combo box:
    I have the the options people can choose form in "Labels" box
    under "Paramaters", nothing for "Data", Row Count is 8 and nothing
    for "Change Handler" which I don't know what it does.
    Can anyone please provide some help with telling me what
    "change handler" does, do I need the data for each combo box in the
    "Labels" parameter as well as the "Data" box, what an instance does
    (for combo boxes) and what I need to put in the actionscript for
    the submit button as well as do i need to put code in the
    actionscript for each combo box?
    The options people can choose from in the combo boxes are
    there when someone views the site.
    Can anyone please help me..I would greatly appriciate it.
    Thanks.

    If your hard drive can be detected and shows up as a drive letter in my computer but you can't access your files,then you can recover your data off it with data recovery software easily.This way is the easiest and the most inexpensive way to recover your data.If you bring it to a computer repair shop that is available for data recovery servise,they will cost you $500-1000 or more.Hmm, a lot of money.
    I managed to recover data from crashed hard drive with Tenorshare Data Recovery.If needed,you can download it and scan your hard drive for free to preview whether your data can be recovered.It will show you thumbnails for recoverable pictures.

  • Use only unique values as combo box data provider.

    I have an array collection of objects each of which has a
    property I
    will simply call 'name'. Let us say that this array
    collection contains
    a list of objects with the following name values
    ['George','Fred','George','Ron','Bill','Charlie','Bill','Bill','Percy'].
    I would like to use these names as the data provider of a
    combo box, but
    without the duplicates. What would be the easiest way to
    distill this
    down to an array of unique values to use as this combo box's
    data
    provider in Flex?
    The original array collection was the result of an remote
    object call to
    a cfc that returned a record set from a data store. Is it a
    better
    option to create a new function in this cfc that returns the
    unique list
    I desire, or can I do this easily inside the Flex code since
    I already
    have the complete list?
    TIA
    Ian Skinner

    Untested:
    var aData:Array =
    ['George','Fred','George','Ron','Bill','Charlie','Bill','Bill','Percy'];
    var oCheck:Object = new Object():
    var aUnique:Array = new Array()
    var sValue:String
    for (vari:int=0;i<aData.length;i++) {
    sValue = aData[ i ];
    if (!oCheck[sValue ]) { //is this a unique value?
    oCheck[sValue ] = true; //put this value in the check object
    aUnique.push(sValue)
    Note: if the values contain illegal property name values, yo
    would need to modify this.
    Tracy

  • Combo Box for SSRS

    I have a very large list and would like to filter via combo box.  Is it possible to use a combo box for a parameter in SSRS either 2012 or 2008 (currently running 2008)
    Thanks,
    JOe K.

    Hi tjcinnamon,
    According to your description, you want to filter data by using a combo box in a parameter. Right?
    In Reporting Services, it's not supported to have a combo box in a parameter. For your requirement, we can create cascading parameter to achieve it, it can generate corresponding values in drop down list based on the selection in another parameter. For more
    information, please see the link below:
    Add Cascading Parameters to a Report (Report Builder and SSRS)
    If you have any question, please feel free to ask.
    Best Regards,
    Simon Hou

  • Filtering my DataGridView with Combo Boxes

    Hello everyone! I have recently started working with windows form application and I must say it is really
    awsome! I have came up with a project but I came across a little problem and I hope some of you might help me!
    I have established a local database and managed to connect it to a DataGridView, awsome I can see my database
    in my windows form! I have also made 7 combo boxes, each with its strings in it, then i added a button that should filter the data grid view according to the strings the user selected in the combo boxes. My question is, how do i do that? I mean how do i make
    the button fillter my DataGridView according to the strings selected in my combo boxes?
    Hope for a quick answer, sorry for my english and lack of knowledge in windows form!

    Maybe you could go this way:
    Populate the combobox manually, first adding "All", then adding the items from industryGroupsDataSet.Tables[0].
    Add a BindingSource between companiesDataSet.Tables[0] and dataGridView1.DataSource.
    In the SelectedIndexChanged event of the combobox, alter the Filter property of the BindingSource. If the selected index is zero ("All"), set the Filter to null, otherwise set the filter to String.Format("groupID = '{0}'", cmbBxGroupFilter.SelectedValue).
    You may also have a look at these too:
    filtering data from a
    data table to populate combo box on a datagridview based on the user selection
    How to search the datagridview
    based on values selected in combo box, just like a search based on combo box values
    Happy Coding!

Maybe you are looking for

  • How do i share itunes radio on facebook

    Every webpage you see these days has a share button for social media not in itunes radio?

  • Missing/corrupted non-english characters in Preview

    I know there have been posts on this recently, but this is such a significant problem that I thought it worth keeping live. Preview does not display non-english characters in PDFs properly. Things like greek characters are either displayed as the eng

  • Quick selection tool only wants to make angular selections

    I'm using PS CC on a Mac, OS 10.9.4 . My quick selection tool suddenly decided to be heavily biased towards making angular selections. It REALLY does not want to follow curves.  I have restarted the computer and checked that the brush size and other

  • Import from HD folder with NEF and JPEG files-Can't see JPEG files

    I am using Aperture 2 and I am trying to import from an external HD folder of images, with both NEF and JPEG files of the same photo. Using the import function, the import pane only shows the NEF file, not the JPEG file. Is there a setting somewhere

  • If sga_target set explicitly, result cache become disabled

    hi all, I am using 11g R2 and automatic memory management. I realized something. if I explicitly declare sga_target parameter in parameter file, result cache become disabled. as you know if you use automatic memory management, sga_target is set to 0