Hi Ashutosh,I can provide you with the job number for our runs, but this is more of a theoretical question, since even in the NEOS FAQ list there is a notion about loading models by name (Do not try to include your model or data files by name in the AMPL commands. The files are given new names under NEOS and will be loaded automatically), but there is no recommendation as to what one should do instead if the control file needs to refer to a variable that is defined in the model file.For instance, if our run-file script looks like this:model mymodel.mod;data mydata.dat;solve;display x;...and x is a parameter defined within mymodel.mod, then if we load the three files into NEOS, it will complain that mymodel.mod is not found. If we remove the first two lines to let NEOS load the model and data file automatically, then it will complain that variable x is not defined. So the question is, how can we make the run-file refer to a variable if it is defined in the model file that cannot be loaded by name when the job is submitted to NEOS?Regards,infons