[Stackoverflow] [Progress OpenEdge ABL] Progress 4GL, Is there a reason a buffer record would not be available in a finally block of an internal proce

Status
Not open for further replies.
U

user13093022

Guest
I have an internal procedure that defines a buffer for a temp table and creates a record for that tt using the buffer but the buffer is not available in the finally block

Example

Code:
define temp-table table1 no-undo
    field field1 as char
    . 

run procedure1. 

procedure procedure1: 

    define buffer btable1 for table1. 

    create btable1. 
    assign btable1.field1 = "Test". 

    find first table1. 

    finally: 

        message "Temp table available?:" avail table1 
                skip(1) 
                "Temp table buffer available?:" avail btable1 
                view-as alert-box. 
    end finally. 
end procedure.

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