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.
getCustomizationId does not work with itemOptionCustomField
Using the PHP toolkit, we send this request for a NetSuite account which has several matrix options:
-<SOAP-ENV:Body>
-<ns1:getCustomizationId>
<ns1:customizationType getCustomizationType="itemOptionCustomField"/>
<ns1:includeInactives>true</ns1:includeInactives>
</ns1:getCustomizationId>
</SOAP-ENV:Body>
The response shows zero results:
-<soapenv:Body>
-<getCustomizationIdResponse xmlns="urn:messages_2020_1.platform.webservices.netsuite.com">
-<platformCore:getCustomizationIdResult xmlns:platformCore="urn:core_2020_1.platform.webservices.netsuite.com">
<platformCore:status isSuccess="true"/>
<platformCore:totalRecords>0</platformCore:totalRecords>
<platformCore:customizationRefList/>
</platformCore:getCustomizationIdResult>
</getCustomizationIdResponse>
</soapenv:Body>
We will resort to using itemCustomField which includes the matrix option fields, if we cannot get this to work. Any suggestions are welcome.