>Could you please help in syntax.
I'm not sure what syntax you mean. Did you mean making a browseDelete() method? If so, you just define it in your class definition and name the method--just the same as the current delete() method you have. Actually, you can just rename it in both places.
- Code: Select all Expand view RUN
class ... from TData
...
method BrowseDelete()
endclass
method BrowseDelete()
...
return self
OK, you may be cofused about the way the current delete method is defined. Because "delete" is a reserved word, we have to use a special way of defining it. This is only used for reserved words.
- Code: Select all Expand view RUN
class ... from TData
message delete method _delete
endclass
method _delete()
...
return self
James