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

Splitter Container

Former Member
0 Likes
320

Hi to all,

My requirement is to get the only selected node among many nodes

in the same splitter container when i reload it with a different

function code. My code is somewht like this-

CASE W_NODE_KEY(3).

WHEN 'REP'.

CLEAR W_CODE.

READ TABLE NODE_TABLE_200D INTO NODE WITH KEY

NODE_KEY = W_NODE_KEY.

W_PLNNR = NODE-TEXT(8).

SHIFT W_PLNNR LEFT DELETING LEADING SPACE.

W_PLNAL = NODE-TEXT+9(2).

CHECK NOT W_PLNNR IS INITIAL.

IF ( W_PLNNR NE W_PLNNR_DUP ) OR

( W_PLNAL NE W_PLNAL_DUP ).

W_RELOAD = 'X'.

CALL METHOD ALV_204->REFRESH_TABLE_DISPLAY.

ENDIF.

Any approach to solve my problem will be appreciated.

Thanks in advance.

Seema.

2 REPLIES 2
Read only

Manohar2u
Active Contributor
0 Likes
293

Refer to these thread, might help you.

Regds

Manohar

Read only

Former Member
0 Likes
293

Hi,

Check the following link

http://www.sapgenie.com/abap/controls/splitter.htm

Sameena