how can u hilight perticular row in popwindow in report
programming?please any one can tell me?
Answer Posted / sateesh r
the Question is not clear?
i will tell how to highlighter particular row by using color.
1.intially declear variable type
Slis_specialcol_alv.(v_color type Slis_specialcol_alv)
TYPES:BEGIN OF ls_mara,
matnr TYPE mara-matnr,
ersda TYPE mara-ersda,
ernam TYPE mara-ernam,
cell TYPE slis_t_specialcol_alv,
END OF ls_mara.
2.declare one more variable in out side of the types
DATA: fs_cell LIKE LINE OF wa_mara-cell.
LOOP AT it_mara INTO wa_mara.
fs_cell-fieldname = 'MATNR'.
fs_cell-color-col = '6'.
endloop.
in dis way we can highlate row in ALVS.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is meant by authorization? Did you ever work on it? : sap abap hr
Which function module would you use to check the user’s authorization to access files before opening a file?
What is the maximum number of structures that can be included in a table or structure
THANKS ALL. i CLEARED THE INTERVIEW OF INFOSYS BASED ON THIS QUESTION SET. IT REALLY WORKS. LONG LIVE ALLINTERVIEW.COM
What is cts and what do you know about it? : abap hr
What are the functional modules used in sequence in bdc? : abap bdc
Why grouping of fields is required? What is the max no of modification groups for each field?
Where the payroll results are stored
Does the table can have multiple foreign keys?
What is the difference between bdc_open_group and bdc_open_dataset. : abap bdc
What are the ways you can do the tuning?
What are the advantages of abap query tool?
Explain the advantage of structures?
What is occurs in internal table?
Program for Prime numbers and Matrix plz explain me the procedural method with steps