how can we do error handling in DT like we have JUMP statement in activity
We perform db operations in the Activity, so we jump to a later step if the record doesn’t exist or DB returns an error. However, you can use when conditions if you want to skip the below steps based on a condition in the Data transform.
Hi @TanyaS58
We use hasMessages when condition in data transform to do the error handling.
A data transform doesn’t have JUMP feature like activity. you can map/modify property values in DT. Using function, we can call activities, decision tables etc. If you have to handle error, you can use hasMessages function or the DT should be called in an activity and the transition of that step should be appropriately filled to handle the error.
Use hasMessages when or function and skip that step during error handling.