Migration From Progress 9.1E to OpenEdge 10.0B Frame Segment Problem

AKumar

New Member
Hi All,

I am working migration project from Progress 9.1E to Open Edge 10.0B in Unix Enviornment.

I am getting an Error related to Frame becasue in Progress 9.1E code one static frame is used with FORM statement and there are so many fileds are there. So when i compile the .p file with open Edge 10.0 B i am getting the Error.

Compile Time Error is "A Frame Segment has exceeded its limit of 32767 bytes, in <prgram name .p> at line no # <Line No> (3307).

Please send your valuable suggetion what i used with Open Edge 10.0 B

Thanks,
With Regards,
Amit

 
The handling of frames and how they are allocated memory has changed in 10.

You need to split the frame, so rather than have (say) 30 fields in one frame you have 15 in 2, ie. 2 small frames as opposed to 1 large one.
 
Back
Top