hi,
i have written a code to dynamically get table name and select table data in an internal table. but i m getting problem where there is a text table. my code is as below.
p_tab TYPE dd02l-tabname OBLIGATORY.
FIELD-SYMBOLS: <fs_table> TYPE STANDARD TABLE.
SELECT * FROM (p_tab) INTO TABLE <fs_table>.
this is working fine for all tables but not for table "SKA1" because SKA1 has a text table called "SKAT". Since my program is a dynamic program, i want to know how to join tables which is having text table and get their data in internal table as per abap statements mentioned above.
Regards,
Santosh