2022 Oct 25 1:48 PM
I've created a MODULE in PBO of the screen which we fill values and fill the required field with values. But when I've done with maintaining, i am saving . It doesn't saving the values from the module. But if I select with search help, It gets the values.
PROCESS BEFORE OUTPUT.
MODULE liste_initialisieren.
LOOP AT extract WITH CONTROL
tctrl_zqm_dof_dprtmn CURSOR nextline.
MODULE liste_show_liste.
MODULE getmail.
ENDLOOP.
ENDMODULE.
2022 Oct 25 2:07 PM
Did you define structue zqm_dof_dprtmn in the global data (TOP include for example) in this case the TABLES statement is suggested (for dynpro-program exchange)
2022 Oct 27 10:08 AM
Hello,
Where is the save user-command?
If you want to save data,you should save zqm_dof_dprtmn for record table.
Like this:
MODULE user_command_0100."save button
MODULE user_command_0100 INPUT.
CASE sy-ucomm .
WHEN 'SAVE'."save button
insert zqm_dof_dprtmn.
ENDCASE.
ENDMODULE. " USER_COMMAND_0100 INPUT