Reducing e code segments easily

jdpjamesp

ProgressTalk.com Moderator
Staff member
Running Progress 9.1D. One of my .w files is hitting the limit of the 4 64k e code segments. Does anyone have any useful tips for reducing the e code segments? I can't go to OpenEdge as yet so am looking for an interim solution.

Thanks in advance.
 
You need fewer expressions in your .w.

So merge related calculations, or split them off into a (eg.) persistent maths library and run them in that.
 
Hi,
You need to break your code by transferring it to .p programs. This will eliminate your code segment error.

Regards,
Jing
 
Back
Top