‎2008 Jan 23 1:28 PM
Hi,
please help me.
DATA: BEGIN OF TABTEXT OCCURS 20,
TAB LIKE TEXTPOOL,
END OF TABTEXT.
READ TABLE TABTEXT WITH KEY TAB-KEY = SELCTAB-NAME+2(3).
‎2008 Jan 23 1:42 PM
Hi friend,
write this code.
Data: gt_textpool_tab type sorted table of textpool
with unique key id key,
gs_textpool type textpool.
READ TABLE gt_textpool_tab into gs_textpool WITH KEY KEY = SELCTAB-NAME+2(3).
‎2008 Jan 23 1:29 PM
‎2008 Jan 23 1:42 PM
Hi friend,
write this code.
Data: gt_textpool_tab type sorted table of textpool
with unique key id key,
gs_textpool type textpool.
READ TABLE gt_textpool_tab into gs_textpool WITH KEY KEY = SELCTAB-NAME+2(3).
‎2008 Jan 23 1:50 PM
Hi,
Do like this,
data v_text(1) type c.
v_text = SELCTAB-NAME+2(3).
READ TABLE TABTEXT WITH KEY TAB-KEY = v_text.
Don't use offset values directly in any where conditions.
Rgds,
Bujji