Hi,
Try the below piece of SQl in order to push in the select with the internal table:
lv_statement = SELECT A.* FROM HANA_TABLE A
INNER JOIN lt_table B ON A.user = B.user.
NOTE : u need to join on the common field from both the tables HANA_TABLE and lt_table.
Regards,
Charles