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

Selection screen values in global variable user exit

0 Likes
966

Hi all,

I made a project report global variable of type 3 (User Exit) and I develop the related code in enhancement KKDR0001 component EXIT_SAPLKYP1_003. In this code I need the value of project definition that user entered on selection screen.

Does anybody know how can I get this data?

Thanks!

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
692

Hi,

Please check the memory parameter used for that variable & get the value by using "Get Parameter ID Key... " command.

Please reward some points according to your satisfaction.

regards

Prem

3 REPLIES 3
Read only

Former Member
0 Likes
692

Hi,

You can do the following for getting project in Earlier screen

Data: l_string(20) type c

Field-symbols: <fs> type any.

l_string = '(Screen)variable name'.

assign l_string to <FS>.

Just try above...

Read only

Former Member
0 Likes
693

Hi,

Please check the memory parameter used for that variable & get the value by using "Get Parameter ID Key... " command.

Please reward some points according to your satisfaction.

regards

Prem

Read only

0 Likes
692

Thanks a lot!