Error Understanding Cim Process In Progress - Qad Mfg/pro

Muthaiya

New Member
I have generated a CIM sequence for a executing on particular menu in MFG/PRO. I will execute the CIM sequence through 36.15.2 CIM Data Load Processor.
While processing this i am unable to traverse the browse screen through the CIM sequence.
Error:** Array subscript 0 is out of range. (26)

please help to clear this.
 

Muthaiya

New Member
please help me to resolve this:
my CIM sequence and screen as follows:

@@batchload xxpupcnl.p
"<1st vlaue>"
"<2nd value>"
-(default value) (upto this value is passed in passed correctly after this 2nd display frame will be populated with few lines control is not going to that palce)
"1"
"Yes" (updated after picking the 1st line)
"2"
"Yes"
"3"
"Yes"
"4"
"Yes"
"." (returning to 1st screen)
"comments"
"yes"
"<1st value>"
@@end


error:
Batch Data Load Starting 30/08/16 14:29:44
Group ID: 7 WARNING: End of data.

Group ID: 7 WARNING: End of data.

Group ID: 7 ** Array subscript 0 is out of range. (26)

Group ID: 7 ** Array subscript 0 is out of range. (26)

Group ID: 7 WARNING: End of data.
 

Attachments

  • Cncl.JPG
    Cncl.JPG
    58.3 KB · Views: 18
please help me to resolve this:
my CIM sequence and screen as follows:

@@batchload xxpupcnl.p
"<1st vlaue>"
"<2nd value>"
.....

Group ID: 7 WARNING: End of data.

CIMs (batchload) does not work with Browsers.
Mfgpro programs use the var "batchrun" to change the flow of the program and work with and without batch load.

IF batchrun THEN DO:
SET var1 var2 ... .
END. ELSE DO:
... your code with browser ...
END.
 

Muthaiya

New Member
CIMs (batchload) does not work with Browsers.
Mfgpro programs use the var "batchrun" to change the flow of the program and work with and without batch load.

IF batchrun THEN DO:
SET var1 var2 ... .
END. ELSE DO:
... your code with browser ...
END.

Thanks Marco Mendoza!!!
Whether this logic will work for my query??? because i have designed my CIM input and load it via 36.15.2 CIM Data Load Processor in MFG/PRO.
 
Top