• Home
  • About me
  • FALV
  • ALV Grid in the nutshell
    • Basic Information
    • Field catalog
  • Articles
    • Tricks
    • FALV (Fast ALV Grid)
    • ALV Grid in the nutshell
    • Tips
    • How to...
    • For beginners
    • Thoughts
  • By Topic
    • ALV
    • ALV OO
    • SALV
    • GOS
    • Selection screen
    • Purchase Requisitions
    • Purchase Orders
    • Attachments
    • Others
    • Characteristics
    • Sample Programs
    • ZIP
    • OLE
    • Mails
    • Routings
    • EWB
    • Excel
  • Keywords
  • RSS
  • Download
  • Home

Total: 31 results found.

Search for:
Search Only:

Page 1 of 2

1. ZDEMO_FALV07 - <span class="highlight">Columns</span> (field catalog) settings
(FALV (Fast ALV Grid))
The latest version of each part of FALV can be found on github repository https://github.com/fidley/falv which you can use in abapGit for easier up to date handling.    When we want to adapt fieldcatalog ...
Created on 06 January 2016
2. ALV Grid in the nutshell: Field catalog - col_id - ALV control: Column ID
(ALV Grid in the nutshell)
... this case also set manually on a base of columns order in the FCAT table.   Figure 122 ZDEMO_AIN_CL46 FCAT of the first selection option after displaying ALV   Using the option “COL_ID ...
Created on 08 June 2020
3. ALV Grid in the nutshell: Field catalog - sp_group - Group key
(ALV Grid in the nutshell)
... 111 Layout change screen with Groups (columns sets)   After choosing one of them, you’ll notice that the fields visibility change accordingly to groups assigned in field catalog.   Figure ...
Created on 18 April 2020
4. ALV Grid in the nutshell: Field catalog - reptext – Heading
(ALV Grid in the nutshell)
... in ZDEMO_AIN_CL40     As you can see, grid looks much better with the column headers, also proper naming of the columns will help the users to better understand the values of the column.  ...
Created on 13 April 2020
5. ALV Grid in the nutshell: Field catalog - datatype
(ALV Grid in the nutshell)
... that easily visible. For example, if you use TIMS data type, you’ll noticed that the length of the columns CONNID, FLTIME and DEPTIME is set to 8, additionally justification is set to L (columns 2, 8,9) ...
Created on 11 December 2019
6. ALV Grid in the nutshell: Field catalog - tooltip
(ALV Grid in the nutshell)
... grid and you’re optimizing the width of the column by minimizing the description of the column itself. It is common behaviour for example for checkboxes or for icon columns. In this case the Tooltip is ...
Created on 12 September 2019
7. ALV Grid in the nutshell: Field catalog - seltext
(ALV Grid in the nutshell)
  SELTEXT is one of the fields that are linked to the texts of the grid columns. This particular one is responsible for displaying the name of the column in the change/display of layout popup. ...
Created on 12 September 2019
8. ALV Grid in the nutshell: Field catalog - tech
(ALV Grid in the nutshell)
... with the AUTHORITY-CHECK, just assume that you want to display one or two columns only to specific users that have the authorization for it ( like simple sales margin). After checking the authorization, ...
Created on 29 July 2019
9. ALV Grid in the nutshell: Field catalog - no_out
(ALV Grid in the nutshell)
...  Figure 68 ZDEMO_AIN_CL29 hiding of columns In this case I’ve also filled the REPTEXT column, in order to show you that it is possible to move the columns to display. If I wouldn’t do that, ...
Created on 29 July 2019
10. ALV Grid in the nutshell: Field catalog - emphasize
(ALV Grid in the nutshell)
... (‘1’) or not (‘0’) z – is saying if the colours should be inverted (‘1’) or not (‘0’)     Figure 59 ZDEMO_AIN_CL25 Emphasize set for columns     Figure 60 ...
Created on 01 July 2019
11. ALV Grid in the nutshell: Field catalog - col_pos
(ALV Grid in the nutshell)
This field is responsible for setting up columns in proper order while displaying the grid without using of saved layout. It may be useful if you don’t allow your users to save their own or global grid ...
Created on 24 June 2019
12. ALV Grid in the nutshell: Field catalog - cfieldname
(ALV Grid in the nutshell)
... you can see that I passed to the filed catalog CFIELDNAME as ‘CURRENCY’ which is one of the columns of table SFLIGHT, that keeps currency key for field PRICE.   Figure 19 ZDEMO_AIN_CL09 CFIELDNAME ...
Created on 24 June 2019
13. ALV Grid in the nutshell: Field catalog - just
(ALV Grid in the nutshell)
...  Figure 42 ZDEMO_AIN_CL19 Fieldcatalog with alignment As you can see the columns are using the settings from fieldcatalog correctly. Figure 43 ZDEMO_AIN_CL19 Results    ...
Created on 24 June 2019
14. ALV Grid in the nutshell: Field catalog
(ALV Grid in the nutshell)
Field catalog is one of most important tables that is used in ALV Grid. In most cases you’ll create it manually or at least after automatic creation, you’ll update its content, as most of the columns settings ...
Created on 24 June 2019
15. ALV Grid in the nutshell: Basic Information
(ALV Grid in the nutshell)
... needs a custom container as a parent in order to work. It is used to divide the screen area into several containers. To simplify, you decide how many rows and columns the splitter will have. So it’s like ...
Created on 24 June 2019
16. Create XLSX file from internal table in background v2
(Tricks)
...              r_salv_table = data(salv_table)           changing             t_table      =  ).           data(lt_fcat) = cl_salv_controller_metadata=>get_lvc_fieldcatalog(                                    r_columns      = salv_table->get_columns( ) ...
Created on 01 June 2018
17. How to handle CL_GUI_ALV_GRID events in SALV
(Tricks)
...      ).     handler_added = abap_true.     sender->refresh_table_display( *      exporting *        is_stable      =     " With Stable Rows/Columns *        i_soft_refresh =     " Without Sort, Filter, etc. ...
Created on 09 October 2016
18. ZCL_FALV - explanation of main methods and attributes
(FALV (Fast ALV Grid))
...  FCAT SORT FILTER LVC_LAYOUT LAYOUT GUI_STATUS SCREEN OUTTAB TITLE_V1 TITLE_V2 TITLE_V3 TITLE_V4 TITLE_V5 TOOLBAR_ADDED TOOLBAR_DELETED TOOLBAR_DISABLED COLUMNS ...
Created on 09 January 2016
19. ZDEMO_FALV11 - Editable Grid settings
(FALV (Fast ALV Grid))
... your grid editable, you can set whole grid editable in layout, some columns in field catalog and some cells in cells style table. This demo shows it all. "! This is demo for FALV with edit settings ...
Created on 06 January 2016
20. ZDEMO_FALV10 - Color Settings
(FALV (Fast ALV Grid))
... set colors for cells, rows and columns using FALV "! This is demo for FALV full screen with color settings "! done by Lukasz Pegiel for http://abapblog.com report zdemo_falv10. types: begin of t_sflight. ...
Created on 06 January 2016
21. FALV (Fast ALV Grid)
(FALV (Fast ALV Grid))
... Full Screen Layout ZDEMO_FALV07 - FALV: Demo Full Screen Columns ZDEMO_FALV08 - FALV: Demo Mass Replace Function ZDEMO_FALV09 - FALV: Demo Cell Settings ZDEMO_FALV10 - FALV: Demo Colors ...
Created on 04 January 2016
22. How to teach ABAP ???
(Thoughts)
... a program which selects 100 materials from MARA and displays them using CL_GUI_ALV_GRID. Then when it's done ask to change some columns to editable. Then to change some colors for the rows and columns. ...
Created on 24 November 2015
23. Create fieldcatalog from internal table
(How to...)
...              r_columns      = salv_table->get_columns( ) " ALV Filter             r_aggregations = salv_table->get_aggregations( ) " ALV Aggregations     ).       catch cx_root.     endtry. ...
Created on 08 May 2015
24. Mass replace popup for ALV grid
(Tips)
... FG to be able to use such FM. I prefer to create own FG for ALV functions which you can reuse after.   The example shown bellow allows to show use maximum 10 columns from ALV grid in replace function ...
Created on 27 April 2014
25. EWB Components allocation to routing operation (multilevel BOM)
(How to...)
...    data: ft_excel type standard table of alsmex_tabline.   field-symbols:  like line of ft_excel.   data: f_rows type i. " Excel columns in proper order. "MATNR  WERKS PLNNR PLNFL PLNAL PLNTY VORNR STLNR STLAL STLAN POSNR IDNRK STLST ...
Created on 18 April 2014
26. Enhanced MB51 Part 6 - ZMB51 program
(Tricks)
...              r_columns      = salv_table->get_columns( ) " ALV Filter             r_aggregations = salv_table->get_aggregations( ) " ALV Aggregations     ).       call function 'LVC_TRANSFER_TO_SLIS' ...
Created on 28 March 2014
27. Enhanced MB51 Part 1 - Goal and prerequisites
(Tricks)
... because it gave me possibility to do pre-selection before calling MB51, I've received completly formated results from MB51 and I can add all possible events to grid for new and existing columns.   ...
Created on 24 March 2014
28. Scan program for authority-check
(How to...)
...  data: gt_alv type tt_alv. data: gs_alv type t_alv. data: gt_trdir type standard table of trdir. data: gt_fcat type  slis_t_fieldcat_alv. data: gr_salv type ref to cl_salv_table. data: gr_columns type ref to cl_salv_columns_table. ...
Created on 13 July 2013
29. Create XLSX/MHTML file from internal table in background
(Tricks)
...    data: m_flavour type string.   data: m_version type string.   data: mo_result_data type ref to cl_salv_ex_result_data_table.   data: mo_columns  type ref to cl_salv_columns_table.   data: mo_aggreg   type ref to cl_salv_aggregations. ...
Created on 12 May 2013
30. Subtotal lines of ALV GRID OO as content separator
(Tricks)
...  Of course don't forget to set the event handler: set handler go_event_receiver->subtotal_text for go_grid. We have now our method implemented, so now it's time to add our 3 additional columns. ...
Created on 28 April 2013
  • Start
  • Prev
  • 1
  • 2
  • Next
  • End


Łukasz Pęgiel
IDENTITY FALV Fast ALV Grid ALV Grid in the nutshell Field catalog - convexit MEPO151 SALV CONTROLLER METADATA FILL MDPA FROM EBAN REUSE ALV GRID DISPLAY LVC ESRUO FRIEND FCAT Secure call of starting new task using RM FREE SESSION CHECK FIELDCATALOG cookies GUI TITLE PERIOD AND DATE CONVERT INPUT PSEUDO COMMENTS ALV GRID IN THE NUTSHELL REFRESH SELECTOPTIONS READ USER OBJECTS CHAR VALUE CHANGE2 EMPHASIZE AiE ALINK CONNECTION GTFIND GET CURRENT CELL CMD API deletes contact persons GUI Download CV01N 3N documents to PC Field catalog - cfieldname ALV GRID FALV UI2 JSON Field catalog - inttype - ABAP data type JSON2ABAPtype GUI HTML EDITOR IXML ENCODING CTMS DDB INIT Popup with multi-select ALV ESDUS FRONTEND ECLIPSE LOWERCASE ABAP in Eclipse ALV POPUP ZCL CUSTOMER - Wrapper for CMD API classes MDLB Field catalog - seltext FIELDNAME PRINTOUTS Reset rejection of Purchase Requisition ABAP IN ECLIPSE OSTREAM COMPONENTS RELEASABLE SCAN ABAP-SOURCE ADT PURCHASE REQ FACTORY XML TABNAME Field catalog - fix column
  • Laserowe usuwanie blizn Tychy
  • Laserowe usuwanie zmarszczek Tychy
  • Salon Kosmetyczny Tychy
  • Trycholog Tychy
  • Wypadanie włosów Tychy
Tweets by abapblog

Eclipse Plugins for ABAP

ABAP Favorites

Drag to your running Eclipse* workspace. *Requires Eclipse Marketplace Client

ABAP ADT Extensions

Drag to your running Eclipse* workspace. *Requires Eclipse Marketplace Client

ABAP Quick Fixes

Drag to your running Eclipse* workspace. *Requires Eclipse Marketplace Client

 

Latest Articles

  • ABAP in Eclipse - Install, Configure, Use, and Enhance Your ADT
  • ALV Grid in the nutshell: Field catalog - col_id - ALV control: Column ID
  • ALV Grid in the nutshell: Field catalog - dfieldname – Fieldname for column group
  • ALV Grid in the nutshell: Field catalog - Hotspot - ALV control: SingleClick-sensitive
  • ALV Grid in the nutshell: Field catalog - sp_group - Group key
  • ALV Grid in the nutshell: Field catalog - domname - Domain name
  • ALV Grid in the nutshell: Field catalog - reprep - ALV control: Value is selection criterion for rep./rep.intf.
  • ALV Grid in the nutshell: Field catalog - reptext – Heading
  • ALV Grid in the nutshell: Field catalog - lowercase - Lowercase letters allowed/not allowed
  • ALV Grid in the nutshell: Field catalog - intlen - Internal Length in Bytes
  • Downloading Exchange Rates from NBP (National Bank of Poland)
  • Downloading Exchange Rates from Central Bank of Turkey
  • ABAP Extensions - Automatic Logon
  • ALV Grid in the nutshell: Field catalog - inttype - ABAP data type (C,D,N,...)
  • ALV Grid in the nutshell: Field catalog - datatype

Most Read

  • Create XLSX/MHTML file from internal table in background
  • Refresh ALV GRID and keep position and current cell
  • Create XLSX file from internal table in background v2
  • FALV (Fast ALV Grid)
  • ATC Pseudo Comments list
  • Call standard F4 search help with customized parameters
  • Dynamic GUI STATUS & TITLE with ABAP code
  • Create fieldcatalog from internal table
  • Link Attachments of Purchase Requisition to Purchase Order
  • Endless loop in BADI ME_PROCESS_PO_CUST
  • GOS - How to add business documents at creation of object
  • Create a nice looking chart with CL_GUI_CHART_ENGINE - Part 3 - Chart Data and render
  • How to access private or protected data and methods of CL_GUI_ALV_GRID
  • Subtotal lines of ALV GRID OO as content separator
  • How to handle CL_GUI_ALV_GRID events in SALV

Latest Comments

ABAP code and articles provided on http://abapblog.com, if it is not statet otherwise, were created by Łukasz Pęgiel. You can use the code in your SAP instance for commercial and non-commercial use without any warranty from side of the author. You cannot sell the code as a full program or a part of it.
Replicating of the articles and code is prohibited unless the agreement of the author is given to you. 

Bootstrap is a front-end framework of Twitter, Inc. Code licensed under MIT License. Font Awesome font licensed under SIL OFL 1.1.