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: 

Table Control Example

Former Member
0 Kudos
101

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 ..

4 REPLIES 4

Former Member
0 Kudos
51

Hi,

U can use table control with wizard. U may get all things u can easily use Insert delete...Ect..

Regards,

S.Nehru

former_member585865
Contributor
0 Kudos
51

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

Former Member
0 Kudos
51

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

Former Member
0 Kudos
51

what is code for SAVE, Change, DELTE.