Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

This is an alternate script to add the primary approver to whom the Pre-Trip Approval Email was sent. This script doesn't contain any email special character substitutions

Tag/keyword
Secondary tag/keywords
Script
PTA

Primary Approver Email 2

PNR Field Type =

Remark


Code Block
languagejava
titlePrimary Approver Email 2
collapsetrue
//PTA - PRIMARY APPROVER EMAIL

var an=UserPnrData.UserBooking.PreTripApprovalInfo.ProfileApproverEmail;

if(((UserPnrData.DataType=="new")||(UserPnrData.DataType=="hold")) && (an!=undefined))
{out.print("5UD3 " + an);}   


...