hello, does anyone know why `search.lookupFields` ...
# suitescript
k
hello, does anyone know why
search.lookupFields
gives me a syntax error while accessing
payment
like below, but lets me access other fields like
trandate
if added in the columns:
Copy code
var customerDepositAmount = search.lookupFields({
        type: search.Type.CUSTOMER_DEPOSIT,
        id: custDepositId,
        columns: ['payment']
    });
b
columns available match that from a search
there is no column with the id
payment
k
ahh got it, thank you so much!