Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
slondono
Partner - Creator II
Partner - Creator II

Inline Selection to Field

Hi guys

I have a problem here.

This is an Inline: inline.PNG

And this is the Field: field.PNG

I need that the final user doesnt have the posibility to select 'EPM', so i created an inline without this choise. Now i need to communicate the Inline with the Field, i mean...When i selecting 'URABA' in the Inline, automaticly select URABA in the field.

The objetive of this is simple, the user will not have the posibility to selecting EPM

Thanks to all

1 Solution

Accepted Solutions
Gysbert_Wassenaar

Expand your inline table with the original field:

LOAD * INLINE [

_Filiales, Filial

MALAMBO, MALAMBO

NACIONALES, NACIONALES

ORIENTE, ORIENTE

URABA, URABA

];

Then simply use the _Filiales field for the listbox for the user. You won't need any tricks to make selections in the Filial field. It will always have only the possible values that match the selection in the _Filiales field.


talk is cheap, supply exceeds demand

View solution in original post

1 Reply
Gysbert_Wassenaar

Expand your inline table with the original field:

LOAD * INLINE [

_Filiales, Filial

MALAMBO, MALAMBO

NACIONALES, NACIONALES

ORIENTE, ORIENTE

URABA, URABA

];

Then simply use the _Filiales field for the listbox for the user. You won't need any tricks to make selections in the Filial field. It will always have only the possible values that match the selection in the _Filiales field.


talk is cheap, supply exceeds demand