Hi!
I am trying to build a custom field in Plans that will have a drop down and be available for use in lists/extractions. The custom element shows up, but there are no options in the drop down and I get a invalid entry message of "Ambiguous column name 'key_value'."
In T_Keyword, I have the following entries:
Data Type: StringEdit Mask: NoneDetail Tbl: T_PLANDetail Col: !.custom_1Ref Tbl: t_kwcoded_valuesRef Idcol: key_valueRef Descol: key_valueRef Where: keyword_no = 595Ref Sort: key_valueCategory: PlansUse for List: PlanCustom Id: 1
I then have the drop down options built in T_KWCODED_VALUES.
What am I missing?
ThanksJess LevySan Francisco Opera415-551-6319
In this case you don't need to specify Ref Sort option in the T_Keyword table, as the same column is used for id as description the sort should be alphabetical anyway, if it isn't you can probably use 1 or 2 in the ref sort as this tells it to use column 1 or column 2 in the query for the sort ie specify by column order rather than column name..
The Ref Sort option is normally used when your ID Column and Description Column are different so you can choose whether to order by the ID or the Description.
Mark