is it possible to access the User Define Table interface to add data to a UDT?
I tried these declare but they do not work:
self.comAdaptor.company.UserTable
self.comAdaptor.UserTable
for C#:
SAPbobsCOM.UserTable UDT
UDT=Company.UserTables.Item("TableName")
UDT.Code ="newCode"
UDT.Name ="newName"
UDT.UserFields.Fields.Item("U_UDF").Value ="Value"
ErrCode=UDT.Add()