Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
How to get address info with CRMScript.
Company c; c.load(2); NSLocalizedField[][] address; address = c.getFormattedAddress(); for (Integer i = 0; i < address.length(); i++) { for (Integer j = 0; j < address[i].length(); j++) { print(address[i][j].GetLabel() + ":" + address[i][j].GetName() + ":" + address[i][j].GetValue() + ":" + address[i][j].GetTooltip() + ":" + address[i][j].GetValueLength().toString() + ":" + address[i][j].GetAddressType() + " "); } print("\n"); }
NSContactAgent contactAgent; NSContactEntity contact = contactAgent.GetContactEntity(2); NSAddress address = contact.GetAddress(); NSLocalizedField[][] fields = address.GetLocalizedAddress();
Was this page helpful?