CIM load 7.5.2

dhenin

New Member
Hello,

I try to load Req Ship Schd data (7.5.2) with a CIM file. All works fine in GUI environment, but can't be load in Chui and batch mode.

Hereafter is my test file:

"AASA" "SHIP-TO" "QA13-KT" "PO nbr" "SOE15225" "1"
"000000039"
- - - - - 0000006952 05/08/11 - - - -
.
31/08/11 - - -
000000948 - - -
14/09/11 - - -
000000000 - - -
.

Does someone have any idea about what's happen ?
I am using MFG/PRO eb under Windows.
Thanks for your help
Dominique
 

mosfin

Member
if you use menus 36.15.1 - 36.15.3
you can check for errors in menu 36.15.3

if you run CIM program from your progress code,
you can try in Progress Editor :
Code:
batchrun = yes.
output to value("my.log").
input from value("my.cim").
{gprun.i ""rcssmt.p""}   /* 7.5.2 - Customer Ship Schedule Maint */
input close.
output close.
batchrun=no.
/* analyse "my.log" file, and look for errors */
 
Top