Discussions
Join the NetSuite community to innovate, connect, and discover what’s next.
SuiteWorld brings thousands of innovators, builders, and leaders together to learn, connect, and shape what’s next. This October, explore how to build a stronger foundation for growth through inspiring keynotes, major product reveals, hands-on sessions, and unforgettable moments—all in one place for our biggest event of the year. Register now
display cutom field for a customer
Hi, I am trying to display information about our customer based on internal ID in C#. It work fine as far as customer name, email, phone.... but I ran into some issue displaying the custom field of specific customer
here is what I have so far:
RecordRef customer = new RecordRef();
customer.internalId = "517";
customer.type = RecordType.customer;
customer.typeSpecified = true;
var result = _service.get(customer);
Customer cus = result.record as Customer;
output.Text = cus.companyName + " - " + cus.category.name
please let me know how I can display a custom field for this customer.
Thanks for any help or advice.
Dean