Discussions
Join us for complimentary one-day events around the world and step into a future fueled by AI and limitless potential. Explore new breakthroughs, sharpen your skills, and connect with experts who are shaping what’s next. Experience bold keynotes, interactive learning, and connections that span the global NetSuite community. Discover what's next at SuiteConnect Tour 2026.
We’re excited to announce that the 2025 Community Recap is now available! This special recap highlights the amazing contributions and achievements of our members over the year and celebrates the collective success of our community.
Check your personalized recap to see the impact you made in 2025 and how your efforts helped shape our community’s growth and success.
View Your 2025 Community Recap
Thank you to everyone for your passion, collaboration, and support. Here’s to building an even stronger community together in the year ahead!
CustomerPaymentApply NullReferenceException
Hello All,
I am pulling my hair out trying to figure out what stupid thing I forgot to but I am not seeing it. I am trying to create a Customer Payment in SuiteTalk and C#. I know I am missing a lot fo the required field and such but I seem to be missing something fundamental first. Here is the code
CustomerPaymentApply[] applyTo = new CustomerPaymentApply[1];
applyTo[0].doc = Convert.ToInt64(intid);
applyTo[0].refNum = invno;
applyTo[0].docSpecified = true;
applyTo[0].apply = true;
applyTo[0].applySpecified = true;
applyTo[0].amount = 10;
applyTo[0].amountSpecified = true;
CustomerPaymentApplyList applyList = new CustomerPaymentApplyList();
applyList.apply = applyTo;
As soon as it tries to set any of the feilds for applyTo[0] it errors out with a NullReferenceException. The right side of the code has a value when I look in the debugger (ie.e intid, invo) so that is not Null so I am guessing it has something to do with the applyTo but right now I am not seeing it.