export format

anandknr

Member
HI all,
I have used the export option to log a process. The code is pasted below.

output to value(v-logfile) append.
export "------------------------------------------------------------" .
export "Total minors processed : " v-total .
output close .

But the output i obtains contains the double quotes which i don't want. The output in log file is pasted below.

"------------------------------------------------------------"
"Total minors processed : " 0

How can i get rid of those double quotes ??? Please help...
 
AFAIK, there is no way with the EXPORT statement as that is exactly its feature. As an alternative you could use the PUT statement with the UNFORMATTED option.

Heavy Regards, RealHeavyDude.
 
Back
Top