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

TextPool Unicode Error

Former Member
0 Likes
509

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).

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
477

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).

3 REPLIES 3
Read only

Former Member
0 Likes
477

what is the error

Read only

Former Member
0 Likes
478

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).

Read only

Former Member
0 Likes
477

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