Discussions
Custom Fields in a Sales order
I have a Sales Order that contains custom fields (via a CustomForm). My question is, how do I find the internalId's of those fields?
using this code:
SalesOrder so=new SalesOrder();
CustomFieldRef[] customFields=new CustomFieldRef[1];
customFields[0]=new SelectCustomFieldRef(WHAT_INTERNALID_GOES_HERE, dealerRecord);
CustomFieldList customFieldList=new CustomFieldList(customFields);
so.setCustomFieldList(customFieldList);
So, how do I go about finding the internalId's of the custom fields? I
Thanks,
tglaess