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: 

Report Events.

Former Member
0 Kudos
80

Hello,

My report is having Plant Value Mandatory and Equipment select options on the output screen.When i execute the report giving input as Plant and do F4 help without pressing Enter then it does not fetch the equipment value based on the Plant and gives the error "No value found" but when i execute the same giving Plant value and then pressing enter and then do the F4 help for equipment,i get all possible correct values.

In Debugg i found that when pressing enter it gets the Plant value and it fetches the Equipment Values.AT SELECTION SCREEN ON PLANT triggers after pressing ENTER while as AT SELECTION-SCREEN ON VALUE-REQUEST FOR EQUIPMENT triggers for F4 help.

Which REPORT EVENTS should i use to get the Plant Value first?

1 ACCEPTED SOLUTION

franois_henrotte
Active Contributor
0 Kudos
47

you still use the same event on F4

but you read the current value of your PLANT parameter

to do so, use function module DYNP_VALUES_READ

2 REPLIES 2

franois_henrotte
Active Contributor
0 Kudos
48

you still use the same event on F4

but you read the current value of your PLANT parameter

to do so, use function module DYNP_VALUES_READ

Former Member
0 Kudos
47

Thanks for reply!!