Submitted Questions

  • grapg failure email notification with error

    Hi, How can I configure email notification for any graph failure with error and compnent details which caused the failure in AB Initio

    NicoRobin

    • Jul 8th, 2020

    You can use $mpjret variable in the end script which returns the status of the graph as below:-
    if [$mpjret -eq 0]
    then echo "successful execution"
    else
    mailx -s [graph name] failed mail-id

    Rahul Rasal

    • Jan 17th, 2018

    By using RUN component you can write script with mail utility.
    Thanks ...!