Answer Posted / venkaiah chowdary rudrapati
1.Add non data base column to the final internal table of the length four characters
2.Declare the work area of the type slis_layout_alv this structure contains the one of the field info_fieldname.
3.set a loop to final internal table
4.populate color code as per requirement
5.pass the color_ffield to the info_fieldname
coding:
types:begin of typ_vbak,
vbeln type vbak-vbeln,
f1,
f2,
'
'
row_color(4) type c,
end of typ_vbak.
data:it_vbak type table of typ_vbak.
field-symbols:<fs_vbak> type typ_vbak.
data:gs_layout type slis_layout_alv.
select vbeln
f1
f2
from vbak
into table it_vbak up to 200 rows.
data:lv_col type n value 1.
if not it_vbak is initial.
loop at it_vbak assigning <fs_vbak>.
concatenate 'C' LV_COL 1 1 into <fs_vbak>-row_color.
if lv_col lt 7
lv_col = lv_col + 1.
else.
lv_col = 1.
endif.
endloop.
gs_layout-info_fieldname = 'ROW_COLOR'.
endif.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
HOW CAN YOU USE A PAGE COUNT IN CALLING A PAGE IN SMARTFORM?
How to get that a secondary index is attached to a select query?
difference between Valuation type and valuation category?
What are the merits of its?-
What are two methods of modifying sap standard tables?
there are 2 selection screens. material num in screen 200 and plant in screen 300. so how can you write in INITIALISATION event?
How to combine multiple billing into one RV document ( Step by Step)?
Explain some essential objects in abap dictionary?
How can we create callable modules of program code within one abap/4 program? : abap modularization
what is diff between idocs,bdc,rfc and bapi. give real time answer
What is elementary search help? : sap abap data dictionary
What are field symbols and field groups? Have you used component idx of structure clause with field groups?
What are the dynapro keywords?
Can we use flow logic control key words in abap/4 and vice-verse?
What are the major steps will you use for tuning?