This commit is contained in:
larshp 2017-11-05 18:32:33 +00:00
parent eaea931778
commit 207bf54a54

View File

@ -2176,10 +2176,8 @@ method BIND_ALV_OLE2.
clear: wa_subtot_indexs. clear: wa_subtot_indexs.
read table lt_subtot_indexs into wa_subtot_indexs read table lt_subtot_indexs into wa_subtot_indexs
with key index = l_save_index. with key index = l_save_index.
IF sy-subrc = 0. IF sy-subrc = 0 AND <item> = '0'.
if <item> = '0'.
clear: contentsitem-value. clear: contentsitem-value.
endif.
ENDIF. ENDIF.
endif. endif.
endif. endif.
@ -2422,8 +2420,7 @@ method BIND_ALV_OLE2.
read table currcells index counter into curritem2. read table currcells index counter into curritem2.
if curritem-left eq curritem2-left. if curritem-left eq curritem2-left.
length = curritem-top + curritem-rows. length = curritem-top + curritem-rows.
if length eq curritem2-top. if length eq curritem2-top and curritem-decimals eq curritem2-decimals.
if curritem-decimals eq curritem2-decimals.
move curritem to curritem3. move curritem to curritem3.
curritem3-rows = curritem3-rows + curritem2-rows. curritem3-rows = curritem3-rows + curritem2-rows.
curritem-left = -1. curritem-left = -1.
@ -2434,7 +2431,6 @@ method BIND_ALV_OLE2.
found = 'X'. found = 'X'.
endif. endif.
endif. endif.
endif.
enddo. enddo.
if found is initial. if found is initial.
exit. exit.
@ -2460,8 +2456,7 @@ method BIND_ALV_OLE2.
if curritem-top eq curritem2-top and curritem-rows eq if curritem-top eq curritem2-top and curritem-rows eq
curritem2-rows. curritem2-rows.
length = curritem-left + curritem-columns. length = curritem-left + curritem-columns.
if length eq curritem2-left. if length eq curritem2-left and curritem-decimals eq curritem2-decimals.
if curritem-decimals eq curritem2-decimals.
move curritem to curritem3. move curritem to curritem3.
curritem3-columns = curritem3-columns + curritem2-columns. curritem3-columns = curritem3-columns + curritem2-columns.
curritem-left = -1. curritem-left = -1.
@ -2472,7 +2467,6 @@ method BIND_ALV_OLE2.
found = 'X'. found = 'X'.
endif. endif.
endif. endif.
endif.
enddo. enddo.
if found is initial. if found is initial.
exit. exit.