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: 

how get selection-screen info!

Former Member
0 Kudos

hi !

exist one function will get what user input at selection-screen(select-options or parameter ) info!

i need to analyse it and to save selection-screen info to another program!

thank you very much!

1 ACCEPTED SOLUTION

Former Member
0 Kudos

hi,

use

data: dynpfields like dynpread occurs 10 with header line.

call function 'DYNP_VALUES_READ'

EXPORTING

dyname = <fieldname>

dynumb = '1000'

TABLES

dynpfields = dynpfields

EXCEPTIONS

invalid_abapworkarea = 01

invalid_dynprofield = 02

invalid_dynproname = 03

invalid_dynpronummer = 04

invalid_request = 05

no_fielddescription = 06

undefind_error = 07.

thanks

4 REPLIES 4

Former Member
0 Kudos

HI,

Check this Fm....'DYNP_VALUES_READ'

Refer to this link....

Edited by: avinash kodarapu on Dec 22, 2008 1:14 PM

Former Member
0 Kudos

hi,

use

data: dynpfields like dynpread occurs 10 with header line.

call function 'DYNP_VALUES_READ'

EXPORTING

dyname = <fieldname>

dynumb = '1000'

TABLES

dynpfields = dynpfields

EXCEPTIONS

invalid_abapworkarea = 01

invalid_dynprofield = 02

invalid_dynproname = 03

invalid_dynpronummer = 04

invalid_request = 05

no_fielddescription = 06

undefind_error = 07.

thanks

Former Member
0 Kudos

thank you

former_member222860
Active Contributor
0 Kudos

wrong post

Edited by: Mahesh Reddy on Mar 10, 2009 9:43 AM