*Interactive Report with HIDE Technique* report zinteractive_rep2 no standard page heading line-count 15(2). data : it_spfli type table of spfli, wa_spfli type
Author: coderobbot
Interactive Report – 2
*Interactive report Using SY-LSIND * report zinteractive_rep1 no standard page heading line-count 15(2). data : it_spfli type table of spfli,
Interactive Report – 1
REPORT ZREP_0012 NO STANDARD PAGE HEADING line-count 30(2). data : it_spfli type table of spfli, wa_spfli type spfli. start-of-selection.
Classical Reports
*VERY SIMPLE REPORT PROGRAM TO DISPLAY RECORDS FROM SPFLI TABLE* REPORT ZCLASSICAL_REPORT_01 NO STANDARD PAGE HEADING LINE-COUNT 10(2). types : begin of tab, carrid
Useful String Operation
Substring with Offset and length DATA result TYPE string. result = substring( val = ‘ABCDEFGH’ off = 2 len = 3 ). Write result OUTPUT: CDE
String Operation – Boolean
” BOOLC( )- Returns True(X) or False( ) for a given expresssion DATA ret. ret = boolc( sy–batch IS INITIAL ). WRITE ret. Step1. Step2. Output: