cancel
Showing results for 
Search instead for 
Did you mean: 

Read values from Drop down list

Former Member
0 Kudos

Hi Experts ,

Suggest me how to read values from Drop down list

Created a value list Business with 3 entries L1 , L2 ,L3

On selection of L1 , some logic for L2 other login

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

You cannot trigger an action on the selection of a value from a value list. However you can write the logic on some other action.

to retrieve the selected value list value name, use

vlvName=doc.getExtensionField("extension_field_name").get().getDisplayName(session);

using vlvName you can branch out and perform operations speciifc to that selection.

Incase you want to use the other attributes/functions of the vlv , use the homelocator to find the vlv bean

vlvObj=doc.getExtensionField("extension_field").get();

vlvHome=IBeanHomeLocator.lookup(session,vlvObj);

vlvBean=vlvHome.find(vlvObj);

Use the vlvBean to retrieve all the data regrding the selected value.

hope this helps.

Regards

Immanuel

Answers (0)