2007 Aug 17 11:50 AM
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
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.
2007 Aug 17 12:03 PM
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.
2007 Aug 17 12:04 PM
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
| User | Count |
|---|---|
| 6 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |