Customer Portal

trailer/foot and Clover version 1.1.3

Comments 1

  • Avatar
    avackova
    0
    Comment actions Permalink
    Hello,
    you can use dict_put_str ctl function in finish method of your transformation for storing information about number of processed records, eg.:
     function finished() {
    dict_put_str('recNo',num2str(counter));
    }

    where counter is number of processed records.
    In the next phase you can use dict_get_str function for reading this info, eg. in DataGenerator component:
    function generate() {
    $0.info := 'Summary';
    $0.recNo := dict_get_str('recNo');
    }

Please sign in to leave a comment.