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!
Updating custom records using smbXML
I have a number of records in custom record type that I need to update to as a batch. Only the IsInactive field needs to be changed.
To do this i have produced a simple xml file (example below) that identifies the record by its name field.
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE smbxml SYSTEM "http://www.netsuite.com/xml/dtd/smb_4_16.dtd">
<smbxml>
<request missingFieldOverwrite="false">
<addOrUpdate>
<customRecord>
<name>0003081</name>
<customRecordTypeRef><name>AgreementLines</name></customRecordTypeRef>
<isInactive>False</isInactive>