Entry list or value help?

Hi Experts,
i need a input box or a combo box for an entry field. For example this field should have an input assistance and should accept other values. For example i have a combo box for a licence number of a vehicle. So it must be possible to give value help or the user could enter his own licence number with is not in the help list. At the moment i use a dynamic entry list which get the help values by a webservice.
Now i had the problem when a user enters a value which is in the list. In this case he get a validation error an he must select a value of the list for go on. In the configure of the combo box the setting "validation reqiured" is false!
Many Thanks!

Hi Dirk,
If I get you correctly, you would like the end user to type in the Vehicle number / select from the list, When typing in the number there is no validation!
This can be achieved with input box and a button in melting group. Something like [this|http://img355.imageshack.us/img355/8800/example1vq3.jpg]
On click of the button you call the web service which would have the available licence details in table....
Let me know if it helps...
Best regards,
Dharmi
Edited by: Dharmi Tanna on Jul 21, 2008 3:26 PM

Similar Messages

  • Dynamic entry list - Use Value as input to WS

    Hi,
    I have a Dynamic Entry list, which displays the text, I would however like to store its value, so that I could use it as input for the Web service.
    Any ideas, how that can be done?
    Many thanks,
    Dharmi

    Dharmi Tanna,
    In your model,
    Drag a Data Store connector from the Compose task panel to the Design board.
    Drag from the out port of the UI element whose data is to be stored in the Data Store to the port of the Data Store element.
    Right-click the Data Store element and from the context menu, choose Define Data.
    Define a virtual field for the Data Store by clicking the Add Field button and choosing the type of data that you want to store. Add more fields as required.
    The field is added with a default name.
    To define a default value for each field, enter it in the Default Value column.
    Define the event used to transfer data to the Data Store
    Right-click the connecting line to the Data Store, and from the context menu choose Rename.
    Name the event with the same name as the action that adds items to the Data
    Map values from the UI element fields to the Data Store fields:
    Right-click the connecting line between the elements, and from the context menu choose Map Data.
    In the Assigned Value column, choose a UI element field, enter a field name, or define a dynamic expression to specify from where to take the value that is placed in the Data Store.
    Edited by: Ahmed Salah on Apr 1, 2008 11:02 PM

  • When I am trying to create an organization in HRMS, and clicking on Type field, it is showing me "Frm-41830: List of values contains no entries". Please suggest me what is the solution

    When I am trying to create an organization in HRMS, and clicking on Type field, it is showing me "Frm-41830: List of values contains no entries". Please suggest me what is the solution

    Hi,
    Type is one part of Org creation....
    Optionally, select an organization type in the Type field.
    Organization types do not classify your organization, you use them for reporting purposes only. The type may identify the function an organization performs, such as Administration or Service, or the level of each organization in your enterprise, such as Division, Department or Cost Center. You create the organization types you require by entering values for the Lookup Type ORG_TYPE.
    Regards:
    Shahzad M. Saleem (mark this answer as helpful if it helps u)

  • Value help dropdown list not showing up other values

    Dear all,
    I'm new to Adobe and Java WD. I managed to go through all the tutorials and developed a WDJ and embedded an interactive form in the view. I also used an RFC Model to pull some values from n R/3 table and populate in a context node element.
    These values are appearing perfectly fine in the WDJ if I'm using a table or a drop down list index field.
    But in the Adobe form, when i bind this context node to a WebDynpro native Value help drop down list box, only the first value of the table appears. On clicking on it, nothing happens. I'm not sure what is the problem.
    Can anyone please help me in this? Should i write some code to bring the other values too? (the tutorial doesn't say this!)
    If so, then please give some sample java codings and step by step process for populating the field values with the table values.
    My node structure is like below
    Context
         Ysam_Get_Values_Input(Node-RFC)
              Output (Node-RFC O/P)
                   Values(Node-table from the RFC)
                       Slno (attribute that has the values to be populated with)
    Any help is greatly appreciated.
    Thanks,
    Sam

    Hi Raja,
    In the view:
    <htmlb:gridLayoutCell id                  = "AddedProfileNameIF"
                                        columnIndex         = "2"
                                        rowIndex            = "2"
                                        horizontalAlignment = "LEFT"
                                        verticalAlignment   = "MIDDLE" >
                    <htmlb:dropdownListBox id         = "added_profile1"
                                           helpValues = "//model/ust10st.profn"
                                          />
                  </htmlb:gridLayoutCell>
    In the Model:
    method MODEL_INIT .
    select profn from ust10s into  table UST10ss.
    read table UST10ss index 1 into UST10st.
    endmethod.
    In controller:
    METHOD do_init .
      m_model ?= create_model( model_id = 'm'
                               class_name = 'zcl_model_zsox1' ).
    m_model->model_init( ).
    ENDMETHOD.

  • We are trying to do a Quick payment from payment workbench and getting 'FRM-41830: List of values contains no entries' error for payment document column/field. Payment document setup looks good. Not sure what the issue is.

    We are trying to do a Quick payment from payment workbench and getting 'FRM-41830: List of values contains no entries' error for payment document column/field. Payment document setup looks good. Not sure what the issue is.

    Already gone through following three notes but didn't found resolution.
    APXPAWKB: FRM-41830 When Clicking on Payment Document LOV (Doc ID 1081305.1)
    R12: APXPAWKB: Payment Document Lov Is Empty When Entering A Payment (Doc ID 857587.1)
    R12: Payment Workbench Error: FRM-41830 List Of Values Contains No Entries (APXPAWKB.FMB) (Doc ID 1323875.1)

  • How to set a default value in a Value Help Drop Down List

    Hi,
    I used an age Range field in my adobe form, the control  is a Value Help Drop Down List. i am populating the drop down using following code.
    IWDAttributeInfo ageInfo = wdContext.nodePersonalData().getNodeInfo().getAttribute("CTAgeRange");
         ISimpleTypeModifiable ageType = ageInfo.getModifiableSimpleType();     
         IModifiableSimpleValueSet ageValueSet =  ageType.getSVServices().getModifiableSimpleValueSet();
         ageValueSet.put("1","21-29");
         ageValueSet.put("2","30-34");
         ageValueSet.put("3","35 or Above");
    My requirement is to set a default value e.g. 30-34 in the age range field.
    I want to give input to iform from my Implementation code only.
    Please help.
    Thanks in advance

    hi Ranjan,
    that means you have to set at design time,
    to set default drop down value you will have to set the value for particular attribute (which is linked to the dropdown element) in the context
    like
    wdContext.currentContext<nodeName>Element.set<FieldName>(<default value>)
    This generally done in Initialization method of the controller.

  • Icon in Dictionary Value Help List

    Hi
    I would like to add a Status-Icon like 'WEBICON_LED_RED' to the Result List of a Value Help. However, the Result List contains only of 'TextView' UI_Elements. Is there any possibility to get UI-Elements like 'Image' for displaying icons?
    Thanks in advance
    Daniel

    Baskaran,
          I think we can do with OVS, by adding new image column. correct me , if i am wrong

  • How to specify the value help list of a variable?

    Hi Gurus
       My requirement is like this. The query has at least two fields( manager and employee). A group of employees belong to a certain manager. When an employee is going to run the query, he will fill an employee number into a variable so that the information of the employee will be displayed in the query. My question is that is it possible to display all the employees of the same manager when the user trys the value help of the variable? Right now, the list of all employees will be displayed. I just want the ID list of employees of the same manager will be displayed.
    for example:  here is the data
    manager              employee
      A                          101
      A                          102
      A                          103
      B                           104
      C                           105
      C                           106
      C                           107
    IF user 105 runs the query and he clicks on the value help button of the varibale, only 105, 106, 107 will be displayed for him to choose instead of list of all employees.
    if is possible? how to? thanks

    Hi Stephen Xue,
    I think it can be done through Compounding option in the maintenance of the characteristics. Make the Manager as the compounding attribute of Employee. I am not sure about it, but have a try on it.
    Hope it helps.
    Veerendra.

  • Assigning multiple values from a List of Values at detail (table) level

    Hi,
    I have a master detail entry screen. I want to assign multiple values when end user selects an item from the list. The field is at detail level (Table type). I can do it using the "Select one choice" type component (ADF Faces Core) but it doesnt retain the value when I go to the next record. This type of component works fine with the screen with only one record to show (form type). This component has binding with list type.
    If I use simple list with Table binding, I can not assign values to multiple items. This type of list retains value when record is changed.
    Can anyone help me resolving this issue?
    Thanks,
    CAH

    Post on Jdev forum JDeveloper and OC4J 11g Technology Preview
    --Shiv                                                                                                                                                                               

  • Flex Table Add Row Issue with Dynamic Entry Lists in Visual Composer

    All,
    Your help would be kindly appreciated in resolving an 'Add Row'-issue within a Flex Table that uses Dynamic Entry Lists in Visual Composer. The issue here is as follows :
    When I use a [Local Dynamic Entry List |http://www.postyourimage.com/view_image.php?img_id=O5hrG2aMxWZ84Mu1211193041]to populate a row field, the initial row and all next rows are emptied upon 'insert row', they loose their selected values and also the entry list values ('pull-down menus') are lost. Please also see [screenshot|http://www.postyourimage.com/view_image.php?img_id=FPLr2cABcgiHRou1211192889].
    The initial row does [show the entry list values |http://www.postyourimage.com/view_image.php?img_id=2HybmEHAuQYs9cg1211192766]from the Local Dynamic Entry List based on the dynamically assigned input value; upon 'insert row' the entry lists are lost. Please also see [screenshot|http://www.postyourimage.com/view_image.php?img_id=FPLr2cABcgiHRou1211192889].
    When using a [Global Dynamic Entry List |http://www.postyourimage.com/view_image.php?img_id=m5p2KYuBb442dTq1211193501]to populate the row fields the Flex-table behaves normally as expected. Unfortunately with a Global Entry List it is not possible to dynamically assign a input value. Please also see [screenshot|http://www.postyourimage.com/view_image.php?img_id=U96V0zENCCyO3gA1211193157].
    Please also see the [issue summary image|http://www.postyourimage.com/view_image.php?img_id=06xti08tIEfely1211195178] I made to visualize the issue.  What I basically would like to know is whether this is a 'known issue' or not, or that it is an issue that can be fixed or whether there is an alternative workaround available ... I'm using Visual Composer 7.0 and the Portal is at SP 13.
    Many thanks,
    Freek

    Hi,
    you should be able to assign a dynamic value with global entry lists as well. If you say @myParam as dynamic value. VC will indicate in red letters, that the field @myParam is unknown. However, it will work, as long as @myParam is known in the form or table where you use the entry list.
    I have never heard of the problem that entry lists are emptied after "insert"-event.
    Kindes Regards,
    Benni

  • Set of Books not showing in list of values - 11i

    Hi all,
    I have an issue with Set of books, i have followed one note and created a set of books. After that tried to create one inventory organization, then tried to create operating unit, there Legal Entity is showing but when click set of book, showing No entries found of List of values.
    Please help to solve this issue. I am a dba, trying to enable multi-org for learning purpose
    Thanks
    Pons

    Pl post details of OS, database and EBS versions, along with which document you are following to enable multiorg. Pl see if these MOS Docs can help
    FAQ - Multiple Organizations Architechure (Multi-Org) (Doc ID 165042.1)
    LOV for Legal Entity or Set of Books from Operating Unit Information Missing Selections          (Doc ID 354008.1)
    HTH
    Srini

  • Flex Table Add Row Issue with Dynamic Entry Lists

    All,
    Your help would be kindly appreciated in resolving an 'Add Row'-issue within a Flex Table that uses Dynamic Entry Lists in Visual Composer. The issue here is as follows :
    When I use a [Local Dynamic Entry List |http://www.postyourimage.com/view_image.php?img_id=O5hrG2aMxWZ84Mu1211193041]to populate a row field, the initial row and all next rows are emptied upon 'insert row', they loose their selected values and also the entry list values ('pull-down menus') are lost. Please also see [screenshot|http://www.postyourimage.com/view_image.php?img_id=FPLr2cABcgiHRou1211192889].
    The initial row does [show the entry list values |http://www.postyourimage.com/view_image.php?img_id=2HybmEHAuQYs9cg1211192766]from the Local Dynamic Entry List based on the dynamically assigned input value; upon 'insert row' the entry lists are lost. Please also see [screenshot|http://www.postyourimage.com/view_image.php?img_id=FPLr2cABcgiHRou1211192889].
    When using a [Global Dynamic Entry List |http://www.postyourimage.com/view_image.php?img_id=m5p2KYuBb442dTq1211193501]to populate the row fields the Flex-table behaves normally as expected. Unfortunately with a Global Entry List it is not possible to dynamically assign a input value. Please also see [screenshot|http://www.postyourimage.com/view_image.php?img_id=U96V0zENCCyO3gA1211193157].
    Please also see the [issue summary image|http://www.postyourimage.com/view_image.php?img_id=06xti08tIEfely1211195178] I made to visualize the issue.  What I basically would like to know is whether this is a 'known issue' or not, or that it is an issue that can be fixed or whether there is an alternative workaround available ... I'm using Visual Composer 7.0 and the Portal is at SP 13.
    Many thanks,
    Freek

    Hi,
    you should be able to assign a dynamic value with global entry lists as well. If you say @myParam as dynamic value. VC will indicate in red letters, that the field @myParam is unknown. However, it will work, as long as @myParam is known in the form or table where you use the entry list.
    I have never heard of the problem that entry lists are emptied after "insert"-event.
    Kindes Regards,
    Benni

  • Passing Page Parameters to a List of Values

    Hi,
    I have a form with an entry field named outlet. There is a parameter (Param1) displayed as a list of values associated with this field. In the list of values definition I have ##Param1##
    I have a home page with a link that calls a pl/sql package that returns a url ending like &schema=PORTAL&outlet=1000,10001,10002
    What I require is that when the link is pressed, the outlet page parameter is passed through the page and the results are displayed in the list of values.
    What I get is the literal ##Param1## in the outlet entry field LOV.
    However if the entry field is defined as a Field then the data 1000,10001, 10002 is passed into the entry field correctly (but obviously as a field and not an LOV).
    Can anyone help please,
    Thanks,
    Martin

    Hi,
    I'm having a similar problem.
    In a "Simple Parameter Form" portlet I have in "Field1" the option "Display As" set to "List of Values" and I'm using a page parameter "##Param2##" to fill in the list, but the list is not filled with the values of ##Param2## and instead I got the literal ##Param2## in the list.
    Did anyone give you a solution to this problem?
    Thanks,
    Ana

  • Changing the Entry list title in Combo box

    Hi,
      i want to give title for the entry list displayed in Combo box.but itz displaying some default title "Extended value selector".is there anyway to remove this? please help me.
    Thanks,
    Priya

    Hi Shai,
         Thanks for ur reply.please let me know if there is a way to do that.
    Regards,
    Priya

  • Invalid Table Name SQL ReporError From Unsubmitted List of Value Table Name

    I have an application in which a user selects a table name from a list of values and a SQL report shows data from the table selected. On entry into this page the "invalid table name" error shows until you select a table name.
    My list of values is a LOV with redirect.
    Is there any way to remove this error or not show the report?
    Any help is appreciated.
    Thanks,
    Kyle

    I resolved my issue by doing the following:
    Create a process
    Process Point - On Load - Before Header
    Run Process - Once Per Session or When Reset
    Process Source:
    (item in list of value set equal to return value in list of value)
    :P10_VERSION := 'ALLVERSIONS';

Maybe you are looking for

  • How do I programmatically create and save an empty project?

    I can programmatically create an empty project, but when I drop an invoke node on the project, select "Save", and wire in the desired path, it results in an "Error 1".  I am getting the error on the "Save" invoke node (An input parameter is invalid.)

  • Document currency in the COPA

    Hi, I'm modeling a cube for the COPA using the generated extractor. The COPA holds two currency types, the op. concern currency (B0) and C.code currency(10). My users want also to see in their reports in document currency (transaction currency) is th

  • There was an error during the save process

    Hi All, When I try to save the data in a form, I got the following error but data was saved. Remaing forms are saving the data without any error. There was an error during the save process I found the log [Jul 4, 2009 4:24:17 PM]: Thread TP-Processor

  • ORA -12705  Error

    Hi I am getting the following error while trying to connect to a repository in OMB: ORA-12705 cannot access NLS data files or invalid environment specified. Can someone please help me with this ? Regards azaman

  • Save for Web & Devices is changing resolution from 72ppi to 300ppi

    Hi, I'm writing an action to do the following. Image size - change resolution from 300ppi to 72ppi Automate - Fit Image - 600px x 600px Save for web and devices - JPEG medium. If I save at any stage (up to save for web & devices) the image is 72ppi H