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

about data transfor in list processing

Former Member
0 Likes
309

hi experts:

I'm using a button to a list processing,write some check box in the list screen,when I click "back",I want transfor the data I have choosed to one text field in the dialog screen.how to carry it out?thanks.

the code is.

SUPPRESS DIALOG .

NEW-PAGE LINE-SIZE 255.

SELECT xingz FROM z1mm_gys06

INTO chanp1

WHERE descr_s = 'A' .

WRITE : / sela AS CHECKBOX,(30) chanp1 .

ENDSELECT .

LEAVE TO LIST-PROCESSING AND RETURN TO SCREEN 0001 .

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
280

Hi,

If you want to write any data on to the list then..You need to use the write statement after LEAVE TO LIST-PROCESSING statement.

LEAVE TO LIST-PROCESSING AND RETURN TO SCREEN 0001 .

WRITE:/ 'TEST write'.

1 REPLY 1
Read only

Former Member
0 Likes
281

Hi,

If you want to write any data on to the list then..You need to use the write statement after LEAVE TO LIST-PROCESSING statement.

LEAVE TO LIST-PROCESSING AND RETURN TO SCREEN 0001 .

WRITE:/ 'TEST write'.