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

Explain the properties of selection screen?

646


What is a view? : abap data dictionary

654


How can we send data to external programs?

615


The max number of calling modes stacked at one time is?

587


What two statements are required in an abap program to output an icon using a write statement?

537






What are conversion routines? : abap data dictionary

586


Hi my dear friends,Please give the answers for the following link http://www.saptechnical.com/InterviewQ/interviewQ.htm

1657


What is native sql?

600


performance tuning concepts

955


Explain the table, which contain the details of all the name of the programs and forms?

517


What is the procedure you followed to upload the data?

565


What is the significance of technical settings (specified while creating a table in the data dictionary) ?

584


What are Pull and Push Methods?

1773


How do you find if a logical database exists for your program requirements?

640


What is update task

7621