‎2009 May 07 2:40 AM
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 .
‎2009 May 07 4:07 AM
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'.
‎2009 May 07 4:07 AM
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'.