Getting error while opening the file in App Builder

Pavan Yadav

Member
I have a .p & it was working fine. But after adding few condition it's giving me problem while i Open the same file in App Builder.
It's giving me error as::
Unable to update _TRG field.
I pressed enter...then...
Attempt to update _TRG record data exceeding 32000(12370)
I pressed Enter ... then...
Replace/Concat may not result in data >32000 bytes

Please help me out the solution for the same. I am not sure what approach & what should i look up into this to modify.
 
The _TRG temp-table is used by the AppBuilder internally (amongst others) to keep track what's going on. I suppose one of your code sections is exceeding the 32.000 bytes limit of a character field. But that's just a guess. If I were you I would look for a huge code section and seperate it out in an include file.

HTH, RealHeavyDude.
 
Thanks a lotttt dude......
I created a .i & placed the set of code in that include file...
It's working fine now.....

Thanks agn.....
 
While it may be a good choice to build a development environment in the same language that it's supposed to be used for developing applications - it clearly implies that it will be bound to the same limits.

Since the section editor's behavior is getting erratic when you blow it's limit while editing code I guess you did edit the file outside the AppBuilder's section editor. If that's the case, you should never, never, never do this unless you're absolutely positive about what you're doing.

Regards, RealHeavyDude.
 
Yeah dude....
It's creating an error while i blow up some code. or i won't be able to update that properly.
So in that case the approach for creating the .i will be great.
Is there any Parameter we can specify in startup or something like that to edit that limit??
or is it Progress default limit??

May be if we can specifi some parameter in .pf or .ini for the same??
 
AFAIK, there is no way to circumvent that limit. The kernel of the AppBuilder was written more than 15 years ago and Progress has never really changed much of it ever since. They would need to change the variables / temp-table fields that store code from the section editor into LONGCHAR / CLOB. Furthermore, they use a third party product called Slick Edit for the syntax highlighting and some other rudimentary features which were state of the art more than 15 years ago. But as they have abandoned the AppBuilder in favor of the OpenEdge Architect (which is an Eclipse plugin) I think they won't.


Regards, RealHeavyDude.
 
Back
Top