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
Explain about drill down report?
what are the problem we face during development( if we say v are in support(development)? what are the critical problems araises during LSMW updation and Smart form layout development for involce and po? very very important questions now a days commonly asking..plz plz reply me
What is the difference between a structure and a table?
How does the interface between the dynpro and the abap/4 modules take place?
What is the difference between a structure and a table? : abap data dictionary
Explain what are the events used in interactive reports?
Can a domain, assigned to a data element be changed?
What is its?
What are the function modules used in f4 help?
What are the types of parameters in the function modules?
What is bdc programming? : abap bdc
Can matchcode object contain ids with different update types? : abap data dictionary
What is table attribute? : abap data dictionary
What is a modification assistant?
How can I make a differentiation between dependent and independent data? : abap hr