csv report of gltbrp.p - 25.15.4 Trial Balance Summary

sreekuax

Member
Hi

I need to make a csv file of the outcome of report 25.15.4. How the program can be written ? I tried and failed miserably. Somebody please help
 
Basically:

Code:
DEF STREAM csv.
OUTPUT STREAM csv TO csvfile.csv.

FOR EACH rec NO-LOCK
:
    PUT UNFORMATTED STREAM csv
        rec.field1    ','
    '"' rec.field2    '",'
        rec.field3
        SKIP
        .
END.

OUTPUT STREAM csv CLOSE.

HTH
 
What version? We have accomplished this. I may be able to help but am not sure we can share the source code with you. May be able to do some screen shots of. We had to modify serveral sub programs.

25.15. 4 gltbrp.p
25.15. 4 gltbrpa.p
25.15. 4 gltbrp1.i
25.15. 4 gltbrp3.i
 
What version? We have accomplished this. I may be able to help but am not sure we can share the source code with you. May be able to do some screen shots of. We had to modify serveral sub programs.

25.15. 4 gltbrp.p
25.15. 4 gltbrpa.p
25.15. 4 gltbrp1.i
25.15. 4 gltbrp3.i

yes these are the programs... I have got it in a csv file atlast.. I too modified the above programs... but still in doubt everything correct .. If I need i will definitely ask you.. thanks for the help :-)

version : eB2 SP8 CHUI
 
Back
Top