Customer Contract Module: It would be very helpful if we could add the standard field is_renewed as a field to the search screen for Customer Contracts. Is there a way to accomplish this?
Thanks in advance.
Customer Contract Module: It would be very helpful if we could add the standard field is_renewed as a field to the search screen for Customer Contracts. Is there a way to accomplish this?
Thanks in advance.
Best answer by Phil Seifert
I don’t think a computed lookup will work as that requires at least opening the record before it is potentially saved to the database.
Perhaps you can look at creating a single text column, call it Renewed. This will create a column in your cconth table; cconth.cst_renewed. This column would be available to the search.
However, it does not have any data yet… so you probably would need to run a script to copy the value from the cconth.is_renewed to the cconth.cst_renewed column. This will set up the initial data. To avoid having to run this script periodically (which you could do with a periodic process flow to look for mismatches each night during off hours as I don’t think you would renew a contract more than once in a day normally) you could also setup a process flow as save event driven which would execute the update if there is a change to the value.
I honestly would prefer a code change with a custom service request but believe the above would also work though not very elegant as it is creating more data as well as using resources each time there is a save action on a customer contract to check if it was updated or not.
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.