changing format of unique opportunity id

Is there a way to change the unique opportunity ID for all new opportunities moving forward? we wanted it to be numeric and short for our reporting.

Parents
  • Hey  ,

    While technically it is possible, I strongly advise against it.

    The system is built to work with a 36 digits guids and changing that could create many unexpected behaviours. I've seen it done and nothing good comes of it.

    If you need something for reporting, I would create a new field, and if it is suitable for you, create an auto increment field

    --

    Enrico Simonetti

    Sugar veteran (from 2007)

    www.naonis.tech


    Feel free to reach out for consulting regarding:

    • API Integration and Automation Services
    • Sugar Architecture
    • Sugar Performance Optimisation
    • Sugar Consulting, Best Practices and Technical Training
    • AWS and Sugar Technical Help
    • CTO-as-a-service
    • Solutions-as-a-service
    • and more!

    All active SugarCRM certifications

    Actively working remotely with customers based in APAC and in the United States

  • would this work with importing from Oracle into Sugar meaning would this be an identifier we could count on?

  • Are you simply importing or syncing?

    If you are just importing you could simply save the Oracle ID or Oracle Customer Number (in the case of Accounts) in a read-only field upon import.


    If you are syncing then I suggest a mapping table, we have one with columns for OracleID, Sugar ID, SugarModule  to map Accounts(Customers), Contacts and Addresses (we have a custom module for addresses in Sugar). You need to take a lot of care when merging records though... and it has been a bit of a nightmare since triggering a merge in our older version of Oracle is not an option.

    FrancescaS

Reply
  • Are you simply importing or syncing?

    If you are just importing you could simply save the Oracle ID or Oracle Customer Number (in the case of Accounts) in a read-only field upon import.


    If you are syncing then I suggest a mapping table, we have one with columns for OracleID, Sugar ID, SugarModule  to map Accounts(Customers), Contacts and Addresses (we have a custom module for addresses in Sugar). You need to take a lot of care when merging records though... and it has been a bit of a nightmare since triggering a merge in our older version of Oracle is not an option.

    FrancescaS

Children