Inbound action
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-31-2025 01:36 PM
Hi community
Im trying to create a incident using inbound action but for some reason, its not creating, the target field is empty
im receiving the emails on the instance but its not creating the incident. i will provide the screenshot of my inbound action as well the emails received

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-31-2025 04:30 PM
Instead of using field action try just doing that in code.
current.short_description = email.subject;
current.description = email.body_text;
current.u_ppsm_incident = true; //I'm not sure if this is correct because as fare as I know this is not a OOB field.
current.insert();
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-04-2025 09:43 AM
Hi Brian,
I didn't work. I think there might be some OOB configuration that is stopping the incident creation

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-04-2025 12:52 PM
Does the email address that the email is coming from exist as a user account? Out of the box it will normally not create an incident if it cannot find an account for the incoming email address.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-31-2025 06:35 PM