Discussions
Read on for the latest updates including:
• Agenda Builder launch
• SuiteWorld On Air registration
• New NetSuite Prompt Studio Contest
• And more!
Check out this thread to learn more!
Don’t miss your chance to meet our SuiteGurus—NetSuite Support professionals and subject matter experts with extensive experience in select product areas, including OneWorld, Advanced & Basic Accounting, Supply Chain Management, Receivables & Payables, CRM, Account Administration, and the SuiteCloud Platform. Full Conference attendees can prebook exclusive 30-minute one-on-one sessions for your product questions.
Spots are limited! Register through your Agenda Builder and find SuiteGuru under Agenda Enhancements.
SuiteTalk: error when adding customerpayment. Error ID: iappaxn515td1xx877mxm
I use webserivces to initialize and create a new customer payment. I got it to work when adding a new card as the payment method but when i want to use an existing credit card by assigning the internal id.. I get this error message:
An unexpected error occurred. Error ID: iappaxn515td1xx877mxm
what does the Error mean?
the code in red is not working!
var customer = (Customer)readResponse.record;
InitializeRef customerInitializeRef = new InitializeRef();
customerInitializeRef.type = InitializeRefType.customer;
customerInitializeRef.typeSpecified = true;
customerInitializeRef.internalId = customerInternalId;
InitializeRecord customerPaymentRecord1 = new InitializeRecord();
customerPaymentRecord1.type = InitializeType.customerPayment;
customerPaymentRecord1.reference = customerInitializeRef;
var read1 = _service.Initialize(customerPaymentRecord1);