Posts

Showing posts from June 9, 2012

ALV Report with OOPs

Image
How To Create ALV Report With OOPs  For the Creation Of T-Code go through below link - http://alterurmind.blogspot.in/2012/06/creating-t-code-in-abap.html Below screen display important includes and object for creating of  ALV with OOPs . REPORT   zmmr001_test. TYPE -POOLS :slis. INCLUDE  <icon>. TABLES : ekko ,eket ,vbak. TYPES  :                 BEGIN   OF  ty_result,                            ebeln             TYPE   ekpo-ebeln,                            message         TYPE   string,                END   OF  ty_result ,                BEGIN   OF ...