‎2018 Nov 15 7:14 AM
Hi All,
In my module pool program, I have a tabstrip functionality. In one of the tab there is a Table control placed using table control wizard. When user enters the data in the table control and save, the data it is saved into a custom table.
I can see the newly added records in SE11. But my issue is, here a space is getting added for each field value. I am not sure why it is saving like this. In debugging I can see the data in each field is left aligned and there is no leading space. All fields in custom table are standard fields only. Below is my code. Anyone faced this issue please help me.
MODULE user_command_8200.
WHEN 'CREA'.
IF gt_servers[] IS NOT INITIAL.
MODIFY zservers FROM TABLE gt_servers.
ENDIF.
ENDMODULE.
Thnks,
HT