Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

text table

Former Member
0 Likes
341

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

1 REPLY 1
Read only

Former Member
0 Likes
281

Hi,

That is a complicated thing as each text table uses different field name to store texts/description.

Regards

Karthik D