Prerequisites for multi selection value help

Hi everyone,
a couple of blogs and forum entries show multi selection value helps in VC. I, on the other hand, have so far been unable to do this. The only option I get in the first step of the value help wizard is the "single selection" type. Even if I start off with a blank form view and add a text input field I cannot choose anything apart from a single selection value help. Is there something I am completely missing? I stumbled upon a note bringing this into connection with OLAP source systems, but I can't quite see why this should change anything since the source system is not selected until step 2 of the wizard.
Any idea on this? Thanks a lot,
Tilman

Hi Mario,
thanks for the hints, I got it working now, regardless of whether you use an OLAP source system, variables or the respective input port, though. It seems to suffice to connect the query directly to a form view to get the additional options. My problem was then that I had a form view connected to a nested iview. I should be able to connect it to both a query and the iview, though.
Thanks for your help,
Tilman

Similar Messages

  • For Multi Selection of Whare used list

    Dear Friends,
    I have Used T-code CS-15 for whare used list of material. if any other T-code for multi selection of materials for where used list.
    Please write.
    Thanks & Regards
    Ajit Sharma

    Hi Ajit,
    As mentioned in the previous posts, it is not adviced to have a multiple selection where-used, as the runtime is very long for this report.
    But if there is a specific need, you can build a Z report by using the FM -> CS_WHERE_USED_MAT
    But do ensure that your abaper puts in some restriction criteria. In the z report which i had done in one of the projects, i had put a restriction of 10 materials as the runtime was long.
    If helpful award points
    Regards,
    Vivek

  • Request for multi selection in XTree component

    Dear Donald,
    i need a small help in XTree component.Currently its supporting only single selection but i need to do multiple selection in that.Can you please enhance that for multi selection.This would be of great help to me.
    Appreciate your help...
    Thanks,
    Sreelekha

    Hi Sreelekha
    You need to contact Donald to ask for this enhancement so I will mark this as answered.
    Regards
    Matt

  • Extending Screens for Multi-Select in the LightSwitch HTML Client

    Hi i
    read Mike Droney's article of 
    Extending Screens for Multi-Select in the LightSwitch HTML Client
    But i just want to understand the code, so what is the ‘__isSelected’ property? from where does it come?
    why does the contentItem.value.details have an ‘__isSelected’ property?
    is the value of the contentItem not the screen?
    and also how can i implement the ‘Can Execute Code’ only if one or more check boxes are checked?
    Thanks  

    But i just want to understand the code, so what is the ‘__isSelected’ property? from where does it come?
    why does the contentItem.value.details have an ‘__isSelected’ property?
    is the value of the contentItem not the screen?
    and also how can i implement the ‘Can Execute Code’ only if one or more check boxes are checked?
    The '__isSelected' property is a private member of the class msls.ContentItem related to the backing data for the selected item.  That is to say, it would be a private member if JavaScript actually had encapsulation and information hiding like a typical
    object-oriented language. I like to reference David Herman's description from his book
    Effective JavaScript:
    Often, JavaScript programmers resort to coding conventions rather than any absolute enforcement mechanism for private properties. For example, some programmers use naming conventions such as prefixing or suffixing private property names with an underscore
    character (_). This does nothing to enforce information hiding, but it suggests to well-behaved users of an object that they should not inspect or modify the property so that the object can remain free to change its implementation.
    ...which means that it's generally not recommended to directly get or set backing data properties like __isSelected, instead working with the public property 'selectedItem', although it may work fine in certain cases like this one.
    To make _canExecute fire only when an item in the list is selected to enable a button method, try:
    return (screen.Contacts.selectedItem !== null);

  • In OBIEE mobile apps designer there is no option for multi select prompts?The navigation page gives option only for single select?Is there a work around for this?

    In OBIEE mobile apps designer there is no option for multi select prompts?The navigation page gives option only for single select?Is there a work around for this?

    Nic, for me the iTunes window looks like this, when I connect my iPad 3:
    I select the iPad in the "devices" section of the Sidebar (use: "View > Show Sidebar" if the sidebar is hidden).
    Click the "Apps" tab in the "Devices" pane.
    Scroll all the way down in the Devices pane to "File Sharing" "Apps" section.
    Then do I click "GarageBand" to select the documents in the right panel.
    Which part is different for you? Perhaps you could post a screenshot?
    Regards
    Léonie

  • Sapshcut.exe - Parameter for multi selection

    Hello,
    with sapshcut.exe we can start a new GUI session and start a transaction.
    For the parameters to start a transaction we use the "command" parameter of sapshcut.exe
    For example - command "SE09 TRDYSE01CM-USERNAME=WULFF"
    My question is if it is possible to fill parameters for multi selection.
    The syntax <field>-low=.... and <field>-high=... is working but <field(1)>=..... is not working.
    We want to start transaction ME2o using sapshcut.exe.
    Thanks
    Arnfried

    Dear Arnfried,
    have you checked sap note 103019?
    It describes how to provide parameters to sapshcut and shows the limitations.
    Best regards,
    Thomas

  • Parsing Through the Multi Selection Values in a PL/SQL Procedure

    Greetings,
    This should be an easy one for one of you PL/SQL experts. I'm not, so I am unsure how to code this up.
    I have a Multi Selection page item and am passing the value of it to a PL/SQL routine as a parameter. I am able to use the value if I only pass my procedure one value, so I have it working. Just not with multi-values I need the code in the procedure to loop through the values. How do I code that up? The procedure is relatively short and is included below. p_cell is the multi-value parameter.
    Oh yes... You probably need to know this. The values are coming in like this - 1-3:2-3:3-3:5:6
    Also, the values are the x-y coordinates of a grid I have over an image on the page. The routine removes certain cells (1-3, etc.) from the grid. The grid is created using HTML, so I have to remove lines of HTML to remove a cell from the grid. Just in case that is helpful.
    Thx, Tony
    = = = = = = =
    create or replace
    procedure qcis_remove_grid_cell(p_id IN NUMBER,p_cell IN VARCHAR2) as
    v_position number;
    v_position_from_end number;
    v_line_start number;
    v_line_end number;
    v_length number;
    v_html clob;
    BEGIN
    BEGIN
    select imagemap_html into v_html from qcis_im_template_draft
    where header_id = p_id;
    EXCEPTION
    WHEN NO_DATA_FOUND THEN
    v_html := NULL;
    END;
    v_length := length(v_html);
    v_position := INSTR(v_html,'alt="'||p_cell||'"');
    v_position_from_end := (v_length - v_position) * -1;
    v_line_start := INSTR(v_html,'<area shape',v_position_from_end) - 1;
    v_line_end := INSTR(v_html,'/>',v_position) +2;
    v_html := substr(v_html,1,v_line_start) || substr(v_html,v_line_end);
    UPDATE qcis_im_template_draft SET imagemap_html = v_html WHERE header_id = p_id ;
    END qcis_remove_grid_cell;
    Edited by: cloaked on Nov 1, 2011 8:01 AM

    Not sure I understood your need, but it sounded like you need to unscramble a string into a set of rows. If so, I would give you 2 ideas:
    1. STRING_TO_TABLE function: http://www.sloug.org/i/doc/api073.htm
    2. Other ways (Regular expression or XML): http://apex-at-work.blogspot.com/2011/05/two-ways-using-string-to-table-in-apex.html

  • Latest Value - Select Option - At Selection Value help

    Hi,
    I need the current values entered in the Select Option of the Selection Screen while generating the Value Help.
    There are two selection option fields in the Selection Screen, Selopt1 and Selopt2, to generate the Value help of Selopt2 i need the latest values of the Selopt1, the function module dynp_read_values does not return all the values of the selectop option Selopt1 it returns only the first row of selopt1-high and selopt1-low, the function module RS_REFRESH_FROM_SELECTOPTIONS does not return the current values entered in the selection screen, is there any way to retrive the latest values of the select option in the event At Selection Screen on Value Request.
    regards
    Santosh

    Hi Santosh,
    When you go for f4 help on selopt2, you can use following code to get the current value of selopt1,
    AT SELECTION-SCREEN ON VALUE-REQUEST
    FOR selopt2-high.
    select * from bkpf into table it_bkpf where
    BKTXT in selopt1[].
      CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
        EXPORTING
          retfield    = 'BKTXT'
          dynpprog    = sy-repid
          dynpnr      = sy-dynnr
          dynprofield = 'Invoice Id'
          value_org   = 'S'
        TABLES
          value_tab   = it_bkpf .
      IF sy-subrc <> 0.
        " do nothing.
      ENDIF.
    In selection screen, you can directly fetch the value of selection options or parameters by selopt1 or selopt2 (in your case by using AT Selection Screen for value request).
    Reply for further doubts,
    Please reward if useful.
    Thanks and regards,
    Ashlesha Desai
    Edited by: ashlesha desai on May 26, 2008 6:06 AM

  • No case for some selected values

    Hi, I need some help on create VI model.
    I need create model shown on Pic. 1.png, but I have problems with case structure, it report "Case Structure: No Case for Some Selector Values".
    P. S. Sory for bad English 
    Attachments:
    Pic. 1.png ‏51 KB
    DAC 8 bit.vi ‏49 KB
    zavd5.vi ‏33 KB

    Hi Orochimarko,
    your uploaded picture is not the same as the VIs you also uploaded. Atleast when opening them with LV2011 they differ from the pic...
    The case structure in your VI only has one case ("True"), but there is no False-case. So you get the error "no case for some values"...
    Btw.  both VIs are crowded with Rube-Goldbergs. Even considering the old LV version they are saved with wouldn't allow for such bad programming behaviours...
    @V-F:
    What's the sense of making the only case of that case structure a "default" one? What's the sense of that case structure at all???
    Best regards,
    GerdW
    CLAD, using 2009SP1 + LV2011SP1 + LV2014SP1 on WinXP+Win7+cRIO
    Kudos are welcome

  • What is the easy way to update Managed Metadata field multi select values using client object model C#?

    The below mentioned code works sometimes and doesn't most of the time. What is the real best way to update multi select managed metadata fields?
    Microsoft.SharePoint.Client.File file = site.GetFileByServerRelativeUrl("/sites/myspsite/Documents/Presentation2.pptx");
    clientContext.Load(file);
    clientContext.ExecuteQuery();
    ListItem currentItem = file.ListItemAllFields;
    clientContext.Load(currentItem);
    clientContext.ExecuteQuery();
    currentItem["Country"] = "-1;#India|1d13cfe9-d6f4-4bd3-a6c7-4b46a81f2a96;#-1;#China|9c1dff73-82db-44b1-8d70-f4258dd24e47;#-1;#USA|b9295c0b-67d4-4dc5-99d4-e88af888de48";
    currentItem["Title"] = "Demo Doc";
    currentItem.Update();
    clientContext.ExecuteQuery();
    file.CheckIn("test check-in", CheckinType.MajorCheckIn);
    clientContext.ExecuteQuery();
    Anuradha!!

    Hi,
    Here are two blog for your reference:
    How to Work with Managed Metadata Columns by Using the SharePoint Client Object Model
    http://blogs.msdn.com/b/sharepointdev/archive/2011/11/18/how-to-work-with-managed-metadata-columns-by-using-the-sharepoint-client-object-model-kaushalendra-kumar.aspx
    SharePoint 2010 Code Tips – Setting a Managed Metadata Field with the Client Object Model
    http://sharepointfieldnotes.blogspot.com/2011/08/sharepoint-2010-code-tips-setting.html
    Best Regards
    Dennis Guo
    TechNet Community Support

  • Checkbox - not working for multiple selected values

    Hi,
    I've got a checkbox (with multiple static values) and a dynamic report which displays filtered data based on the checkbox selection... my report refreshes correctly for a single checkbox selection, but when I select multiple values it gives me an error message...
    Here is the sample query that I am using:
    select * from table_a
    where
    CATEGORY = :P22_CATEGORY
    Please advice...

    Hi,
    I think the type of check box you're referring to returns a colon delimited list of values. If that's the case, you'll need a query something like:
    select * from table_a
    where ':'||:P22_CATEGORY||':' like '%:'||CATEGORY||':%'There is a very description here: http://apex.oracle.com/pls/otn/f?p=ATSIN_DEMO:COLON_DELIMITED
    Hope this helps,
    Gregory

  • XML Publisher Report  - Possible for multi-select LOV parameters?

    I am new to using BI Publisher for generating reports out of E-Business Suite. I am looking for assistance with 2 questions below
    1. I have created an LOV parameter based on a value set, is it possible to allow the user to select one, all, or a subset?
    2. Is there a way to model an "IN" statement in the XML where using the parameter?
    Thank you.

    With whatever i could make out is you are trying to change a discovere report to xml; publisher report isnt it?
    To answe to your question, directly it is not possible to have In clause but you could use some smart logic like lexical parameters etc to achieve similar things.I guess you cannot do in in EBS Reports too.

  • What is Maximum size for Multi select list?

    Hi,
    We are using the select_list_from_query given " size=10 attribute " so getting as multiselect list ,but there is a constraint for multiselect list where we can display only 1000 values max i guess,I have around 10,000values to display in list but getting error as given below , how can i overcome this problem in apex?? please suggest me..
    getting error saying : ORA-06502: PL/SQL  numeric or value error: character string buffer too small
    Thanks
    Anoo
    Edited by: Anoo on Sep 2, 2009 8:00 AM
    Edited by: Anoo on Sep 2, 2009 8:06 AM

    First of all, I wouldn't use a multiselect list but a shuttle item since this is much better from the handling point of view. Second, the Patrick's comment is valid. You could use the filetering on the shuttle like in this example
    http://apex.oracle.com/pls/otn/f?p=31517:166
    where your approach would be to show no results by default and give a user a chance to reduce the nubmer of options by choosing some groups from a select list or by typing in some sting.
    Denes Kubicek
    http://deneskubicek.blogspot.com/
    http://www.opal-consulting.de/training
    http://apex.oracle.com/pls/otn/f?p=31517:1
    -------------------------------------------------------------------

  • Menu for multi selection (Safari)

    I brought this issue up in a previous discussion but wanted to open up a new one just for this. After updating to iOS 8, I found an issue using drop-down menus that have the option for selecting multiple items. I use a menu like this often on my job website, so it's become troublesome. I found a public site that has the menu and the same issue occurs. FYI: the issue only occurs on the iPhone, not ipad.
    http://jeffhowden.com/code/css/forms/
    Towards the bottom of the form there is a menu titled: ""What is your current availability?" As default there are no items selected. If you select an item and leave the menu, it seems to work fine. But after returning to the menu, if you want to deselect the item, add additional items and remove the original item and leave the menu, the original item is stll selected (i.e. you can't revert it back to 0 items selected) or other various errors occur.
    If anyone else sees this issue I'd appreciate the notice. I don't how to report the bug to Apple accordingly. iOS 7 did not have this issue. Like I said, I use it frequently for work, so it's become a little annoying if not impossible for me to get certain results. Thank you.
    Jtsastre

    I have a similar trouble, here is what is happening:
    When i load the webpage by default all the options are checked.
    if I uncheck one and hit OK only the one I unchecked is selected.
    its like each time the control is open all the options become unselected even if they are shown like the are selected.
    Did you try to open the control and select none to see if this happens to you too?

  • Is there an option for 'multi-selection' of files?

    It is very troublesome having to tap each and every file for selection.

    Thanks for the reply!
    That's what I am currently doing. However, if there is a 'select-all' option it would be much easier.

Maybe you are looking for

  • Full startup disc, applications freezing and closing down

    Hi, My computer is freezing and closing applications down. It says my startup disk is full. My HD has 120GB and 113GB of it are used. But my iPhotos and iTunes only take up approx 40GB. Where is the rest of the space?? Help topics recommended to chec

  • Help with iPod Touch restore

    My computer shut down while updating my iPod touch to iOS 4.3.2 and now I'm trying to restore my iPod with the backup but my computer doesn't have enough memory space and iTunes says the backup could not be saved on the disc (I think iTunes compresse

  • Photoshop CC, Flash CC, After Effects CC, Dreamweaver CC all Closes right after opening????

    I have tried everything on the forums, but every time i open Photoshop, Dreamweaver, flash, after effects all with CC paid membership closes right after opening them. I have read the forums searched in the internet, update and downgrade the drivers o

  • Project file appears to be damaged - really, ALL of 'em?

    Hi all, longtime editor, relatively new to Adobe PremierePro... I'm working with a producer who's sending me his offline cuts...However, I have not successfully gotten a project file to open up yet, and I'm getting more than a little frustrated at th

  • CORBA-to-XML

    I am dealing with a data source that passes its data via CORBA method calls. Are there existing modules in Oracle 8i and its XDK that allow for CORBA-to-XML translation? In other words, can we take C++ or Java data in CORBA objects and create an XML