Discussions
Stay up-to-date with the latest news from NetSuite. You’ll be in the know about how to connect with peers and take your business to new heights at our virtual, in-person, on demand events, and much more.
New AI Community Guidelines. Please review and follow them to ensure AI use stays safe, accurate, and compliant.
Keep an eye out for upcoming NetSuite events, including meetups, workshops, and webinars. These sessions are a great way to connect with peers, learn from experts, and stay current on the latest NetSuite updates and best practices. Registration links are provided in each event.
External Cart and Custom Fields
Hi,
I would like to pass a custom value into the form that gets stored in a custom transaction body field. Is this doable?
<form id="nsform" action="<?php echo $addItemToCart;?>" method="post" >
<input type="hidden" name="c" value="<?php echo $nsAcctNumber; ?>"/>
<input type="hidden" name="ext" value="T"/>
<input type="hidden" name="n" value="2"/>
<input type="hidden" name="qtyadd" value='1'/>
<input type="hidden" name="buyid" value='multi'/>
<input type="hidden" name="custbody5" value="test"/>
<input type="hidden" name="multi" value="(numbers go here)"/>
0