Delivery Address Not Set Correctly in Sales Order

To resolve the issue of the delivery address not being set correctly in Sales Orders, ensure the Override checkbox is explicitly set to false when creating a Sales Order (SO). let shipaddrSubrecord = salesOrder.getSubrecord({ fieldId: ‘shippingaddress’ }); shipaddrSubrecord.setText({   fieldId: ‘country’,   value: shipTo?.Address[“@attributes”]?.isoCountryCode }); shipaddrSubrecord.setValue({ fieldId: ‘attention’, value: ” }); shipaddrSubrecord.setValue({   fieldId: ‘addressee’,   value: Array.isArray(shipTo.Address.PostalAddress.DeliverTo)     ?… Continue reading Delivery Address Not Set Correctly in Sales Order

Print Subsidiary Fields on Transaction Printout on Advanced PDF/HTML Template

To print on any transaction (Sales Order, Purchase Order, Invoice etc.) a value of custom or standard field from Subsidiary record, users may use the ${subsidiary.fieldID] syntax rule for adding those fields on Advanced PDF/HTML Template.   Navigate to Customization > Forms > Advanced PDF/HTML Templates Preferred Advanced PDF/HTML Template: Click Edit or Customize Upper right corner: Toggle Source Code Add the following syntax example at… Continue reading Print Subsidiary Fields on Transaction Printout on Advanced PDF/HTML Template

Show only the Selected Billing/Shipping address on checkout

On the checkout page of the website the complete list of the address is displayed be default. Instead, we need to show only the selected address and hide all the unselected addresses in the address section. In case customers need to update their selected address, provide a dropdown section, which shows the complete list of addresses… Continue reading Show only the Selected Billing/Shipping address on checkout

Other record field created for address was not visible in address book.

Other record field created for address was not visible in address book because the country was not set in the selected address forms. Navigation to create other record fields is, Customization -> Lists, Records and Fields -> Other record fields We need to select the countries for which the other record fields created are to… Continue reading Other record field created for address was not visible in address book.