Application Development and Automation 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: 
Read only

dialogue program for modifying ztable

Former Member
0 Likes
479

hi experts,

i want to create a ztable. After creating the ztable i want to create an dialogue program using that dialogue program i have to create/modify entries of that ztable using text box and push button options.

can anybody having sample coding pls send me.....

thanks in advance,

ravi

2 REPLIES 2
Read only

alejandro_bindi
Active Contributor
0 Likes
463

Is there any reason not to use standard table Maintenance view (SM30)? If not, check this link:

http://help.sap.com/saphelp_nw04/helpdata/en/a7/5133ac407a11d1893b0000e8323c4f/frameset.htm

Regards

Please reward points if helpful.

Read only

Former Member
0 Likes
463

HI,

chek this sample code

data: begin of itab occurs 0.

include structure ZTESTVENKATESH.

data: end of itab.

call screen 100.

&----


*& Module STATUS_0100 OUTPUT

&----


  • text

----


module STATUS_0100 output.

  • SET PF-STATUS 'xxxxxxxx'.

  • SET TITLEBAR 'xxx'.

endmodule. " STATUS_0100 OUTPUT

&----


*& Module USER_COMMAND_0100 INPUT

&----


  • text

----


module USER_COMMAND_0100 input.

if sy-ucomm = 'HAI'.

APPEND ITAB.

modify ZTESTVENKATESH from table itab.

ENDIF.

thanks & regards,

venkatesh