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

how get selection-screen info!

Former Member
0 Likes
794

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
Read only

Former Member
0 Likes
754

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

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!

4 REPLIES 4
Read only

Former Member
0 Likes
754

HI,

Check this Fm....'DYNP_VALUES_READ'

Refer to this link....

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

Read only

Former Member
0 Likes
755

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

Read only

Former Member
0 Likes
754

thank you

Read only

former_member222860
Active Contributor
0 Likes
754

wrong post

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