The document outlines an ABAP program that sets up an ALV (ABAP List Viewer) display for a report, defining field catalog entries for various sales-related data fields. It includes a function call to 'REUSE_ALV_LIST_DISPLAY' to render the report based on the defined layout and field catalog. Error handling is also incorporated to manage potential issues during the display process.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0 ratings0% found this document useful (0 votes)
9 views
Tip Alv Tabla Structure
The document outlines an ABAP program that sets up an ALV (ABAP List Viewer) display for a report, defining field catalog entries for various sales-related data fields. It includes a function call to 'REUSE_ALV_LIST_DISPLAY' to render the report based on the defined layout and field catalog. Error handling is also incorporated to manage potential issues during the display process.
1332 *& Form CHECKBOX_OUT 1336 form checkbox_out using rs_layout type kkblo_layout 1342 if not rs_layout-box_tabname is initial and 1343 rs_layout-box_tabname ne r_tabname. >>>>> if not r_sum is initial or <box> = '-'. 1354 if <box> = ' ' or <box> = 'X'. 1355 g_mark = <box>. 1357 write g_mark as checkbox no-gap input off. 1359 write g_mark as checkbox no-gap. 1363 if <box> = '1'. 1368 write l_mark as checkbox no-gap input off. CHECKBOX_OUT