Application Development 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: 

Catch number from output

0 Kudos

hi,

i use classic report for printing 1-10 values.

When i select any number from that output how i can print that number on other screen?

Thanks regard.

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi,

Please search on AT LINE SELECTION EVENT,, you will get how you can utilize the o/p values. and statement "GET CURSOR FIELD" is used to get the specified value where you have put your cursor.

So go in this direction.

3 REPLIES 3

Former Member
0 Kudos

Hi,

Please search on AT LINE SELECTION EVENT,, you will get how you can utilize the o/p values. and statement "GET CURSOR FIELD" is used to get the specified value where you have put your cursor.

So go in this direction.

0 Kudos

thanks

Edited by: pkumar10 on Jun 2, 2011 1:37 PM

former_member184578
Active Contributor
0 Kudos

Hi,

You have to use HIDE Statement and AT LINE-SELECTION event.

try this.,

DATA val TYPE i.

DO 10 TIMES.

  val = val + 1.

  WRITE / val.
  HIDE  val.

ENDDO.

AT LINE-SELECTION.
  WRITE val.

hope this helps u.,

Thanks & Regards,

Kiran