Skip to page contentSkip to chat
ServiceNow support
    • Community
      Ask questions, give advice, and connect with fellow ServiceNow professionals.
      Developer
      Build, test, and deploy applications
      Documentation
      Find detailed information about ServiceNow products, apps, features, and releases.
      Impact
      Accelerate ROI and amplify your expertise.
      Learning
      Build skills with instructor-led and online training.
      Partner
      Grow your business with promotions, news, and marketing tools
      ServiceNow
      Learn about ServiceNow products & solutions.
      Store
      Download certified apps and integrations that complement ServiceNow.
      Support
      Manage your instances, access self-help, and get technical support.
Inbound Action Update Approval Request not working if approver has replied to the notification email instead of clicking on Approve or Reject link in the notification email - Support and Troubleshooting
  • >
  • Knowledge Base
  • >
  • Support and Troubleshooting (Knowledge Base)
  • >
  • Inbound Action Update Approval Request not working if approver has replied to the notification email instead of clicking on Approve or Reject link in the notification email
KB0824389

Inbound Action Update Approval Request not working if approver has replied to the notification email instead of clicking on Approve or Reject link in the notification email


5342 Views Last updated : May 16, 2023 public Copy Permalink
KB Summary by Now Assist

Issue

The changes / requests approvals don't get processed although approvers have sent the Approval or Rejection emails.

The received email's email log we see statements as - 

Skipping 'Update Approval Request', did not create or update sysapproval_approver

Stop processing detected after executing script: Update Approval Request.

 

These statements imply that email processor validated the inbound action, however something in the script failed and target record didn't get updated.

In this case Target field of the email record would also remain NULL.

Cause

For a pending approval notification email, in the mail script there are mailto actions associated which are responsible for opening a new email window with subject line as - 

Re:<Request_number> - approve or Re:<Request_number> - reject.

If user instead of clicking Approve or Reject button chooses to reply to the notification email and the subject of the email doesn't contain approve or reject in the subject line, then the script for Inbound Action - Update Approval Request fails.

There are conditions associated to this in the script of the inbound action.

if (email.subject.indexOf("approve") >= 0)
current.state = "approved";

if (email.subject.indexOf("reject") >= 0)
current.state = "rejected";

if (current.state != "approved" && current.state != "rejected") {
gs.log(getFailurePreamble() + "The subject is malformed. The approver probably did not click the approve or reject button on the email.");

Resolution

2 possible resolutions to this issue are

1. Advise the approvers to click on Approve or Reject button to process the approval request.

2. If approver is choosing to reply to the notification email, they should change the subject line to include approve or reject in the subject line.

 

 


The world works with ServiceNow.

Sign in for more! There's more content available only to authenticated users Sign in for more!
Did this KB article help you?
Did this KB article help you?

How would you rate your Now Support digital experience?

*

Very unsatisfied

Unsatisfied

Neutral

Satisfied

Very satisfied

Very unsatisfied

Unsatisfied

Neutral

Satisfied

Very satisfied

What can we improve? Please select all that apply.

What are we doing well? Please select all that apply.

Tell us more

*

Do you expect a response from this feedback?

  • Terms and conditions
  • Privacy statement
  • GDPR
  • Cookie policy
  • © 2025 ServiceNow. All rights reserved.