0
votes

I created a list of values in my APEX app, with query like below:

select JMENO as display_value, JMENO as return_value 
  from VW_DISTINCT_JT_PARTY
 order by 1

But when I execute the form whereI use the LOV for text field with autocomplete, it shows the error message enter image description here

Anybody can help me out?

1

1 Answers

0
votes

The LOV for a Text Field with Autocomplete item must contain only one column, which is used as lookup and display. When you think about it, it wouldn't make sense for it to work otherwise!