cancel
Showing results for 
Search instead for 
Did you mean: 

UserKeysMD in a user table

Former Member
0 Kudos

hi,

I need to add a user key for a field in a User table.

When I set my user field to my ColumnAlias element property, there is no problem but the Add method doesn't work : "Invalid field name"

is it possible to use UserKeysMD for User tables ?

How do i have to set my properties ?

Thanks

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

When adding user keys to your user table, try specifying the table name without the "@", and the field name without the "U_".

Example:

Set sboUK = sboCompany.GetBusinessObject(oUserKeys)

sboUK.TableName = "AZU_AV_CONTROLS"

sboUK.KeyName = "AZU_K1"

sboUK.Elements.ColumnAlias = "AZU_GL"

lngRet = sboUK.Add

John.

Answers (0)