Checking If EDI Data Passed Validation – JS

Index

    Checking If EDI Data Passed Validation

    You can check whether an EDI file passed validation by the EDIValidator through the Passed property. If Passed is false the Errors property should be checked.

    Example

    if (validator.Passed)
    {
      
    // passed
    }

    in EDI Validator – JS
    Did this article answer your question?