|
Some short simple abap program
example for beginners.
How we can draw triangle in reports like we can make square and rectangle? constants : c_cent type i value '65',
write at c_cent c_star. do 10 times .
How to print this?
*&---------------------------------------------------------------------*
REPORT y_tgh_test1. DATA : h TYPE i, v TYPE i,
DATA : BEGIN OF it_num OCCURS 0,
h = 5.
*DO 5 TIMES.
DO 5 TIMES.
SORT it_num by int DESCENDING.
NEW-LINE.
How I can remove any blank records from an internal table e.g. ITAB? We can use the below statement for deleting blank lines. "DELETE itab where matnr IS INITIAL AND matkl IS INITIAL." From the internal table "itab" by checking the fields in the internal table. |
|
See Also:
Tables
ABAP Books List
Smart Forms
ABAP Menu:
Return to Index:-
(c) www.gotothings.com All material on this site is Copyright.
|