Wednesday, 29 June 2016

Drag the top value to bottom

To bring up the Fill Series dialog box press Alt and then H F I S. Select the both the cells from where to be copied and what to be copied like, to drag from A3 to A4 , select both A3 , A4 and pres Alt H F I S

Monday, 13 June 2016

Direct ALV Display

ALV display directly using below code: Data: o_alv TYPE REF TO cl_salv_table. IF i_result IS NOT INITIAL. TRY. cl_salv_table=>factory( IMPORTING r_salv_table = o_alv CHANGING t_table = i_result ). o_alv->display( ). CATCH cx_root. EXIT. ENDTRY. ENDIF. I_result is the table which has the final values to be displayed.