Hi
After Posting I want to clear the field, I used the function CLEAR(Tablename.fieldname) on Closepage function but still it doesnt work. any another solution to it?
*This post is locked for comments
Hi
After Posting I want to clear the field, I used the function CLEAR(Tablename.fieldname) on Closepage function but still it doesnt work. any another solution to it?
*This post is locked for comments
Did you find solution?
You need to use MODIFY statement also after writing clear.
Chris,
Which field and on what table you want to clear the value ? You can add your customization in the posting routine or add an event to do that. By Adding only CLEAR function will clear the value but if you don't add modify statement it will not commit to the database.
Chris,
You can add your code after execution of Posting routine as well.
And yes as suggested by other members, you are missing with .MODIFY command.
-Yogesh Kulkarni
Please verify, if you find answer helpful.
Hello,
You have to write something like:
CLEAR(Tablename.fieldname);
Tablename.MODIFY;
you need to assign blank value to it and use tablename.Modify;
André Arnaud de Cal... 291,391 Super User 2024 Season 2
Martin Dráb 230,445 Most Valuable Professional
nmaenpaa 101,156