[Progress Communities] [Progress OpenEdge ABL] Forum Post: RE: Identifier was left blank or is more than *32* characters (STATIC TEMP-TABLE AND DATASE

Status
Not open for further replies.
S

Stefan Drissen

Guest
While not for the internal "development" definition, the "external" definition can be up to 239 characters using serialize-name. Make it 240 and things start misbehaving, make it 242 or larger and you have yourself a memory violation. define temp-table ttshort field cc as char . def var lcc as longchar. create ttshort. temp-table ttshort:serialize-name = fill( "a", 242 ). temp-table ttshort:write-xml( "longchar", lcc, true ). message string( lcc ).

Continue reading...
 
Status
Not open for further replies.
Top