2007 Dec 12 10:01 AM
Hi Experts,
Can any give me Complete Example for Table control like
1) Addition, or New Entrey, INsert ,
2) Delete,
3)Clear,
4)SAVE,
5) Change,
6)Find
Thanks
Point is given to ..
2007 Dec 12 10:06 AM
Hi,
U can use table control with wizard. U may get all things u can easily use Insert delete...Ect..
Regards,
S.Nehru
2007 Dec 12 10:14 AM
Hi,
Kindly refer the following programs in se38.
1.demo_dynpro_table_control_1
2.demo_dynpro_table_control_2
3.rsdemo02
4.demo_dynpro_get_cursor
2007 Dec 12 11:25 AM
hi,
first declare one internal table with all the fields u want in table control.
Then make table control by wizard using that internal table....
And then made buttons in GUI STATUS....
In USER_COMMAND_1000 module of PAI write,
MODULE user_command_1000 INPUT.
CASE ok_code.
WHEN 'BACK' OR 'UP' OR 'CANC'.
LEAVE PROGRAM.
WHEN 'SAVE'.
ur code.....
WHEN 'CHANGE'.
ur code.....
WHEN 'DELETE'.
ur code.....
WHEN 'CLEAR'.
CLEAR empcod.
CLEAR empnam.
ENDCASE.
ENDMODULE. " USER_COMMAND_1000 INPUT
2007 Dec 12 3:35 PM