CIMLoad gpcmmt.p

donaldhl

New Member
I am trying to CIMLoad 2.1.12 - Master Comment Maintenance and can not seem to get two or more lines to load correctly.
Here is my attempt
@@batchload gpcmmt.p
"CP001708" "PO" "US" 1
"Refer to Spec: SPEC-56-OMD [XX]"
"Normalized Delivered Yield: 100 nMole"
@@end
Only the line
"Refer to Spec: SPEC-56-OMD [XX]"
Loads
Any help would be appreciated
 
Hi donaldhl,

You can try as below format for CIMLoad to 2.1.12 - Master Comment Maintenance with two or more lines comment

@@batchload gpcmmt.p
"CP001708" "PO" "US" 1
"Refer to Spec: SPEC-56-OMD [XX]" "Normalized Delivered Yield: 100 nMole"
@@end

Rgrds,
Newbie
 

gcheak

New Member
I just got through that chore for Routing Comments.

As mfg_newbie described in his example, each comment line is a separate field in the CIM file.

The comments are stored in a field array char[15], so you can go out 15 fields in the CIM file.

In my case I had more than 15 lines, so I had to increment the page value and load those separately.

Greg
 
Top