- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-14-2022 09:57 AM
Hi All,
We have a custom table and whenever the record is inserted one workflow will attached to it to create the Subtasks and to do other functions. When Inserting the data through transform map also this workflow is attaching and it is creating the subtasks. But the requirement is to ByPass the workflow for the records which are inserted through Transform Map. Kindly help me to achieve this.
Note : Run Business rule is checked, since some of the Business rules still need to run for the records which are inserted through Transform Map.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-14-2022 06:30 PM
Hi
disabling "Run Business rule" is the only way to prevent running Workflows while importing.
Or you create an additional custom field in your target table, which is filled during the import with any static value (for example, a "True/False" field is set to "true"). In your Workflow, the trigger condition could be extended to check whether that new field is set or not. That way you can distinguish between the two scenarios.
Kind regards
Maik
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-14-2022 06:30 PM
Hi
disabling "Run Business rule" is the only way to prevent running Workflows while importing.
Or you create an additional custom field in your target table, which is filled during the import with any static value (for example, a "True/False" field is set to "true"). In your Workflow, the trigger condition could be extended to check whether that new field is set or not. That way you can distinguish between the two scenarios.
Kind regards
Maik