Simple CIM Load Instruction?

I'm way back on 85.h.
I have never CIM loaded anything.
I'm getting confused by the papers I'm reading from QAD.
Can anyone instruct me in simple language how to
take data like: (text file obviously)
40005 FDS
40006 FDS
40007 CPD
...ect.
and put it into pt_mstr (the FDS/CPD stuff goes in the pt_group field)
I'd love ya for it.
bob
 

rvandehoek

New Member
This is how you would do it in eB:

@@batchload ppptmt04.p
"40005"
-
- - - - - - "FDS"
.
@@end
@@batchload ppptmt04.p
"40006"
-
- - - - - - "FDS"
.
@@end
@@batchload ppptmt04.p
"40007"
-
- - - - - - "CPD"
.
@@end
 
Top