CIM loading in "Pending invoice maintenance"

jchellap

Member
Hi All,

I am creating a CIM program for "Pending Invoice Maintenance" in version eb2.

Normally, I used to check the CIM sequence by using the below routine.

{mfdtitle.i}

input from xxx.cim.[ will create as per the CIM sequence]
/* output to yyy.log */
batch run = yes.
{gprun.i ""soivmt.p""}
/*output close*/
input close.

when I am running the below routine, the cursor is not coming to the second frame. instead I am getting the message "Press space bar to continue".

My question is "Is there any restriction for CIM load in this menu"? if it is, how can we remove it.

What could be other reasons. Please let me know. Thanks !
 
Last edited:
Replace {mfdtitle.i} with {mfdeclre.i} and it will work without the "Press space bar" message.
Also change "batch run" to "batchrun".
 
Thanks for reply. It worked. I have one more doubt. I hope you can help me this too. I am trying to load the data in the "Purchase order maintenance" It is going to always to be the PO with one line and at a time I am loading only one PO details at a time.

Data is loading without any problem. However, After loading the PO data. the cursor is going to "PO nbr" field once again created record and getting the message "Modifying existing record".

My sequence would be like below after enter the line details (only only line)

/* After finishing line details + SKIP */
.
.
-
-
.


What could be the reason? Please advise
 
Your sequence seems correct to me, unless you are using a modified version of popomt.p.
Possibly your problem starts before this part of your sequence. The best way to find out is to follow the sequence in a manual session.
 
Back
Top