cancel
Showing results for 
Search instead for 
Did you mean: 

screen values for save from detail screen

Former Member
0 Kudos

Hi,

We have a detail screen (FPM_FORM_UIBB) for our application. We are using the Save event. How do i read the screen fields and its values? i have created a custom feeder class for the same(similar to CL_HRESS_PER_DETAIL). But im not able to get the method used to read the screen fields.

Thanks,

Pris.

Accepted Solutions (1)

Accepted Solutions (1)

js2
Product and Topic Expert
Product and Topic Expert
0 Kudos

Typically you'd use the FLUSH method in your feeder class to get the data from your form UIBB and store it back into your class attributes (or wherever you're storing the data).

J_R
Advisor
Advisor
0 Kudos

Hi Jason,

you are absolutely right. You will receive the data already in the FLUSH method of your feeder, of course.

Best regards,

Jens

Answers (1)

Answers (1)

J_R
Advisor
Advisor
0 Kudos

The form data will be passed to your form feeder class in method GET_DATA. This method is part of the interface IF_FPM_GUIBB_FORM that your form feeder has to implement.