Forum Post: RE: TT in method

  • Thread starter Thread starter ske
  • Start date Start date
Status
Not open for further replies.
S

ske

Guest
Seems like you want to have the cake and eat it too. You wanted to use the temp-table internally in your method, with no time-consuming helper class wrapping all access to it. This is a work-around to do that, when ABL does not provide a direct way of doing that. And now you are concerned that this trick will expose implementation of the temp-table to your method, which you wanted it exposed to in the first place... Think of the helper class as a "friend" class to your original class. It's not like any other class can gain access to this temp-table anyway, even with this trick. Your original class will have it's own instance of this temp-table (by instantiating the helper class), just like a local temp-table.

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