Marty Zigman

Conversations with Marty Zigman

Certified Administrator • ERP • SuiteCloud

Marty Zigman LinkedIn

Marty Zigman

Holding all three official certifications, Marty is regarded as the top NetSuite expert and leads a team of senior professionals at Prolecto Resources, Inc.. He is a former Deloitte & Touche CPA and has held CTO roles. For over 30 years, Marty has produced leadership in ERP, CRM, and eCommerce business systems. Contact Marty to set up a conversation.

BiographyYouTubeLinkedInX (Twitter)

5 thoughts on “NetSuite Tip: How to Update Contact to Entity Role Relationships

  1. Michoel Chaikin says:

    Another way is to click the confusingly named “Update Primary” button, and then on the page that pops up, click Edit. Although it’s called “Update *Primary*” it actually allows you to change a contact to *any* role.

  2. Marty Zigman says:

    Thank you Michael. Yes, indeed, here is how that looks:

    NetSuite Update Primary Button Method

  3. Nikita says:

    Can this be done from backend like scripting/imports/integration. I tried but not found any way!

    it will be helpful if you can suggest

  4. Marty Zigman says:

    Hello Nikita,

    Try this Suitesript pattern to attach and update NetSuite’s built-in Attach Contact to Customer or Vendor.


    record.attach(
    {
    record: {
    type: record.Type.CONTACT,
    id: 9309
    },
    to: {
    type: record.Type.CUSTOMER,
    id: 9275
    },
    attributes : {
    role : 3
    }
    });

    Marty

  5. Shoaib says:

    Thanks for sharing the code snippet, made my day.

Leave a Reply

Your email address will not be published. Required fields are marked *