You will probably get much better answers if you post some sample code that illustrates the problem.
Don't just dump 500 lines of gibberish that results in an error into a posting -- try to trim down the sample code to something focused on the problem. And surround it with "
Code:
" tags so that it is nicely formatted. (Use the "#" button in the posting editor...)
You often get that if you try to assign something to a field without creating the record first. This should replicate the error.
def temp-table t
field t1 as char
field t2 as char.
release t.
t.t1 = "1".
I would guess that you have a procedure or block of code where you are assigning fields and another where you are creating a record and for some reason you are not calling the create procedure before the assign procedure.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.