cancel
Showing results for 
Search instead for 
Did you mean: 

How to design select-option(like GUI) in CRM WebUI?

0 Kudos

I have designed a form view with fields added in value node. Now I want to make one of the fields to accept multiple values (like select-option in GUI). Please let me know how to achieve this.

Regards,

Jagdish Panjwani

Accepted Solutions (0)

Answers (1)

Answers (1)

CarstenKasper
Active Contributor
0 Kudos

Hi Jagdish,

The counterpart of Select Options in WebClient UI is the THTMLB Tag used in nearly all search masks: thtmlb:advancedSearch

This might be one option for you. Additional values will directly be displayed on the UI. You can fill the tag by an internal table as you do not have an AdvancedSearch in the background.

Another approach, maybe more aligned to Form Layout, is to use a PopUp Valuehelp.

  1. Create a new Table View with columns SIGN, OPTION, LOW, HIGH.
  2. Call that Table View as ValueHelp on the single field in the Form View.
  3. On selection in the TableView update the entities in the ContextNode behind the Form View field.
  4. Display, as in SAP GUI Select Options, the first entry.

cheers Carsten