Getting this error with our boomi integration to a...
# ask-stanley-ai
c
Getting this error with our boomi integration to a custom record. Any ideas? ERROR:Error executing Netsuite operation: org.xml.sax.SAXException: 'value' on {urn:core_2023_2.platform.webservices.netsuite.com}SelectCustomFieldRef is required
c
AI generated answer (using internal Slack threads):
The error you're encountering is related to the XML structure of your request. It seems like the 'value' for the SelectCustomFieldRef is missing or not correctly defined in your request. In SOAP web services, the XML structure needs to match the WSDL (Web Services Description Language) definition. If the structure is incorrect or missing required elements, you will receive an error like the one you're seeing. In your case, the error message is indicating that the 'value' for the SelectCustomFieldRef is required but not provided. This could be due to a missing or incorrectly formatted 'value' element in your XML request. Here's an example of how a custom field should be defined in your SOAP request:
Copy code
xml
<customField xsi:type="StringCustomFieldRef" scriptId="custrecord_myfield">
    <value>salesorder</value>
</customField>
In this example, 'value' is a child element of 'customField', and it's required according to the WSDL definition. Make sure that your request follows this structure for all custom fields. Please review your XML request and ensure that all required elements are included and correctly formatted. If you're using a tool or library to generate the SOAP request, make sure that it's correctly configured to include all required elements. ****** Disclaimer: This response was generated by an artificial intelligence assistant based on previous conversations from multiple Slack channels, and may contain inaccuracies or mistakes. ******
Slack thread 1: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.900275588
Slack thread 2: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.850343227
Slack thread 3: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.843694746
Please provide your feedback on this answer.