Deleting Temp-Table Object

Hello.

If I receive a temp-table as a TABLE HANDLE input parameter, we always make sure to delete the incoming 'object' when done..

DEFINE INPUT PARAMETER TABLE-HANDLE phTT.
...
DELETE OBJECT phTT.

If there is a static definition of the temp-table in the receiving procedure, is it still required to manually delete the temp-table object?

{myTT.i}

DEFINE INPUT PARAMETER TABLE FOR myTT.

Thanks.
 
Top