We have delegated a Data Type to business users and we want to add some custom logic before saving the record. Is there any OOTB activity that can be customized
Customize Post Processing of Delegated DataType
azharrkv Hi Azhar, when we add records in data type, pxRecordInner activity is invoked. In that Save activity is getting called which saves the row to the data type. You can customize that activity(Save) for custom logics.
Hi Anoop,
Thanks for your response. I'm unable to find the pxRecordInner activity in pega 8.2.1.
azharrkv
What business logic you need to implement? Is that the business validation or data manipulations or authorization?
If it's validation, see if you could use edit validate at property level.
If it's manipulations, see if you could use a declare trigger for the data class on SAVE mode.
If it's an authorization, see if you can use ABAC/ RBAC based on the need.
Let me know if your need is something apart from the above items.