how can u hilight perticular row in popwindow in report
programming?please any one can tell me?
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / venkateswarlu
by using the graphics multiflexer we can highlight the row
particular row in report
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / apoorv sharma
U can highlight a particular row using
Format Hotspot on.
//Mention fields on which u want hand.
Format hotspot off.
If u want color then mention the color number following the field name.
eg,
write: it-no color 1, it-name color 2.
Is This Answer Correct ? | 1 Yes | 1 No |
SAP query how to use end users?
what is Primary key and unique key and what is the Difference?
what is the code for basic list to 2ndry list?
What is the diff b/w load of program and Initailazatio Events? Which event triggers each time we exectute the program?
What is the difference between Clustered Tables and Pooled Tables?
what is the difference between at line selection and at line selection on field.
How to debug a smartform otherthan putting break-point in initializatin section?
5 Answers BirlaSoft, IBM, KPIT,
What is off cycle payroll run
What is the difference between abap and hr abap? : abap hr
How do you differentiate tax for different countries? : sap abap hr
If One session is processed, where can You see the processed session?
Do you use select statement in loop end loop, how will be the performance? To improve the performance?