it returns the shortname but I need the ui name su...
# suiteql
p
it returns the shortname but I need the ui name such as vendor bill. this is for the transaction type
i
Have you tried BUILTIN.DF(fieldname)
p
so we have to use the suiteql queries to transform data?
i
not sure what you mean by that?
p
we get the following error when trying to query data: OpenAccess SDK SQL Engine]Failed to retrieve data. Error ticket# m84xamhr1aacumatdngef[400]
i
at a loss as to what you are looking for, query example may help
p
select BUILTIN.DF(type) from transaction
i
worked for me, if your not defining WHERE then it's probably returned too much data, which may be why you are getting that error
p
did you add a where clause to the query?
i
i did not,just copied and pasted yours but im running directly on NS through a suitelet, seems like your trying to run it on JDBC?
p
yes. we are trying to query with JDBC
is it not possible to use the built-in functions with jdbc?
r
Try this. SELECT BUILTIN.DF(type) FROM Transaction GROUP BY BUILTIN.DF(type)