We have deployed a table to higher environment and used in required objects to perform operations, we want t o add 2 columns to it . How can we achieve this , also will there be any impact on the objects as its already in higher environments .
Discussion posts and replies are publicly visible
You can make the changes but the things to keep in mind to scale efficiently is Active process instances will not have those 2 new fields. So ensure if any precedent rule of that process model should not reference those fields directly. Have default values setup in case the field can't be indexed for such cases.
Any rule or process you are modifying referencing these new columns, keep in mind not all instances will have those fields so don't use dot operators, user property() functions to reference those to avoid the ' cannot index field error ' in production
Thanks you