SAP Managed Tags: ABAP Development Hi, see this example DATA:t_mara TYPE TABLE OF mara. DATA:FCAT TYPE LVC_T_FCAT. DATA:G_CONTAINER TYPE SCRFNAME VALUE 'TABC',"TABC is *container in screen 101 GRID TYPE REF TO CL_GUI_ALV_GRID, G_CUSTOM_CONTAINER TYPE REF TO CL_GUI_CUSTOM_CONT...
SAP Managed Tags: ABAP Development You can hide a column by using the set_technical property, in the column settings. Below are code examples from a program I wrote before. Just an example, not ready to use. * Get the columns from ALV Table lr_columns_table = ->get_columns( ). if...
SAP Managed Tags: ABAP Development I need to use a variant on selection, it should have the fuctionality like Get a default variant,Provide F4 help, existence check , save the variant in OOPs ALV . Similar to REUSE_ALV_VARIANT_DEFAULT_GET ...
How to set focus in ALV Grid (OOPS) in a specific row & column? Go to solution Former Member 2008 Sep 109:01 PM 0Kudos 1,125 SAP Managed Tags: ABAP Development Hi, I'm trying to use method set_current_cell_rowpos_colid to set focus in a specific row & column.. But as ...
SAP Managed Tags: ABAP Development Dear Marcin, 1. Exactly..:) I have 3 containers to display the result in 3 ALVs and each ALV grid has its own toolbar. And the user is able to change the layout for each grid. Yes there are 3 different ALV instances. ...
Solved: Hi ABAP Gurus, Acutally i dnt have any knowledge on OOPs concepts, i have an object i.e. ALV Grid Control using OOPs concepts.. hope tht sumone will help to get
SAP Managed Tags: ABAP Development HI, I NEVER USED OOPS CONCEPT.BUT I GOT A TASK TO GENERATE ALV REPORT USING class CL_GUI_ALV_GRID, call method SET_TABLE_FOR_FIRST_DISPLAY for ALV . I HAVE TO PASS THE VALUES FROM INTERNAL TABLE AND GET OUTPUT IN ALV.PLZ GIVE THE CODE FOR THE ...
SAP Managed Tags: ABAP Development Hi Freinds, I am working on with ALV-OOPS,i just want to know the follwoing things as given below using OOPS ALV 1) Interactive report what are the asosciated methods. 2) Displaying header for ALV in OOPS. Can you help me on it. Regards DineshRe...
Example : suppose there are two alv grids at screen, created via CREATE OBJECT grid1 PARENT... and CREATE OBJECT grid2... each work on its own internal table, In a common method for Handle_double_click you may have a code like
SAP Managed Tags: ABAP Development I need to display Table header in ALV using Oops. I need to data from 8 fields which I get in the run time of the program. I am new to Oops ALV, I have done a similar thing in normal ALV but not in oops. Detailed info required, Custom ...