CIM 7.1.1 Comment Maintenance

nate100

Member
Does anybody know how I would do the CIM on QAD 7.1.1 for where the comments are put in for just the header.

I am trying to do the following where I would put the comments in but not working as it needs to do it from 1 to 15.

do i = 1 to 15:
PUT unformatted cmcmmt.
end.


This all goes on one line. I need it to go for each one of the indexes on a seperate line. Please let me know if anybody needs clarification

Thanks
 
Hi,

I think you shoud write, something like:

do i = 1 to 15:
PUT unformatted '"' cmcmmt '" '.
end.

Please note, you must make sure that your data does not contain any '"' character - cmcmmt = replace(cmcmmt,'"','""')

Max length is 76 characters per line if I remember corretly.

Regards Ole
 
Back
Top