ABAP 2nd ALV Grid display nothing

You want to display all the corresponding entries of that particular row
by using Function 'REUSE_ALV_GRID_DISPLAY' but it display an empty ALV. Based on my experience, the main ALV had a custom layout being used. Workaround is, you just add the i_default with a value of space on its exporting parameter.


Solution: Just add the i_default parameter with a space value.

Call Function 'REUSE_ALV_GRID_DISPLAY'
       Exporting
                i_default                = ' '   - add this parameter.

   

Mabuhay, Philippines!

Comments

Popular posts from this blog

SAP ABAP: Capturing CHECK BOX event in FM REUSE_ALV_GRID_DISPLAY / Cell Editing

SAP ABAP: Smartforms/SAPscript formatting

SAP ABAP: Adding leading zero to char or string.