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


Please Help Members By Posting Answers For Below Questions

Can a transparent table exist in data dictionary but not in the database physically? : abap data dictionary

707


Explain Singleton class

843


What is the difference between free and refresh?

603


What is function group?

616


What is the max no of match code id's that can be defined for one match code object? : abap data dictionary

655






It is possible to assign a local data object defined in a subroutine or function module to a field group. State true or false. : abap modularization

772


Difference between /N and /BEND?

825


What is the significance of delivery class?

588


What are the system fields?

566


What is a data dictionary? : abap data dictionary

583


Performance tuning techniques

892


What are internal tables? How do you get the number of lines in an internal table? How to use a specific number occurs statement?

607


there are 2 selection screens. material num in screen 200 and plant in screen 300. so how can you write in INITIALISATION event?

1769


What are the main events of which are used for logical database?

602


Define abap/4 layer? : abap data dictionary

603