Customer Portal

parsing fields of log files from error port.

Comments 1

  • Avatar
    avackova
    0
    Comment actions Permalink
    Can you clarify your problem? In the transformation downstream you can work with the field, that contains incorrect record, only, eg. in DataReader:
    fileURL=port:$0.offendingValue:discrete
    or in Reformat:
    function parseIncorectRecord(incValue){
    ......
    }

    // Transforms input record into output record.
    function transform() {
    parseIncorectRecord($offendingValue);
    }

Please sign in to leave a comment.