Hi experts I'm trying to color cell values that are not equal to 0, but I'm getting this entire cell column color.can you please check my code snippet? data: t_color type lvc_t_scol,
lt_color type lvc_t_scol,
ls_color type lvc_s_sc...
Hi ABAP dump ASSIGN_TYPE_CONFLICT using dynamic table on an alv when clicking buttons how to fix this ?here's my code ** Dynamic Table Declarations
DATA :
gt_dyn_table TYPE REF TO data,
gw_dyn_line TYPE REF TO data,
gw_dyn_line1 TYPE RE...
Hi how to access a column of an internal table.
FIELD-SYMBOLS: <gfs_line>,<gfs_line1>,
<gfs_dyn_table> TYPE STANDARD TABLE ,<fs1>...............LOOP AT GT_INTERN ASSIGNING FIELD-SYMBOL(<fs_int>) WHERE ROW >= 2.Loop AT gt_component INTO ls_compone...
Hi Gurus!
Need your help.
READ TABLE GT_INTERN INTO LS_INTERN_BASE WITH KEY VALUE = 'CHARGE FOR: CON'.LOOP AT GT_INTERN INTO GWA_INTERNENDLOOP.
Is there a way to use the value from internal table ?
Loop at T_FRT_VLD ASSIGNING FIELD-SYMBOL(...
Dear All,
I have internal tables, 1st contains all table data with headers and 2nd table contain headers that I need.
I can't map this using column since there is a possibility that Headers might interchange.
My expected output is to reta...
For example here's the full list of the invoicesometimes not all fields are filled in, so they delete that column.now i want to get specific fieldnames(Charge) and populate this data into other internal internal table
Hi according to your comment I need to specify possible scenarios? Is there a way to automate this one? like the system will automatically create ty_itab from the user input? for example, for incoming weeks there is another combination of fieldnames.
It's like the user will input dynamic field names from excel file.. For example for week 1 the field names are A ,B, C ,D and E for week 2 field names are A, C, E and F for week 3 A, B, E and D. But in my program I declare an internal table that can ...