How to use the continous process CIM Load using option 36.15.1.

Screen of 36.15.1

Input from file/Continous Process : continous
Input file and continous Process Name: __________

Batch Data load group Entered
Group id ____________ to: _______

Please tell me steps of Continous Process and how i can make a process continous?

Please Help me.
 
Thanks for your response,
is there any other way we can do the continous process in Windows enviorment.
Please tell me How we can try this in Unix or Linux.

Thanks
Manoj
 
Under Windows env do a repeat program which seeks the input, formats it in CIM format and loads it. This is in isolation of STD CIM rocessing offered by MFG/PRO.
 
Thanks Kishor,
I want to run this in Background. How we can set the any Transaction program in batchid like inventory transaction program.

I am Explaining my problem.

I am creating a cim file at a predefine location. i want to run a mfgpro transaction program when the cim file is creating. I know we can resolve this problem with sheduler. But i want to login with in mfgpro only once and run the program conitnously.
is this possible or not?
if you have any contact number please mail me on my id
manoj.chhaya@mind-infotech.com
 
Very Much Possible.
Write a program in repeat mode, should accept the CIM file from the folder and load it.
This program should be kicked off from MFG/PRO.
 
Thanks kishor,
File is created by some another apllication there is no interface with Mfgpro. when this file is Created then run uploading program automaticlly and load the data into mfgpro in Backgroud process.
 
Repeat:
LOGIC to read the folder & create the list of files in folder.
repeat:
input from listfile.
import listfname.
input close.
input from listfname.
output to logfile
{gprun.i mfgpro}
output close
input close
end.
end.
 
Back
Top