• 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: 47 results found.

Search for:
Search Only:

Page 1 of 2

1. ALV Grid in the nutshell: Field catalog - <span class="highlight">col</span>_id - ALV control: Column ID
(ALV Grid in the nutshell)
Column ID is not really a special field in ALV. It is always filled automatically by ALV and your manual entries are overwritten and set to the same value as COL_POS (Column position). I’ve prepared ...
Created on 08 June 2020
2. ALV Grid in the nutshell: Field catalog - dfieldname – Fieldname for <span class="highlight">col</span>umn group
(ALV Grid in the nutshell)
I was trying to find an usage of this field in ALV, but I failed. Any of known behaviours of ALV didn’t shown anything on a base of this field.  
Created on 27 April 2020
3. ALV Grid in the nutshell: Field catalog - fix_<span class="highlight">col</span>umn
(ALV Grid in the nutshell)
FIX_COLUMN can be useful when you have a lots of fields in the field catalog and you want to make sure that some of the key fields are always visible, for example sales order number and position or posting ...
Created on 28 July 2019
4. ALV Grid in the nutshell: Field catalog - <span class="highlight">col</span>_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
5. ZCL_FALV_<span class="highlight">COL</span>UMN - column (fcat) settings
(FALV (Fast ALV Grid))
Column class was created to be able modify faster the settings of field catalog at any place and time. Each field of field catalog has it set method with only one parameter IV_VALUE which type is equal ...
Created on 10 January 2016
6. ZDEMO_FALV10 - <span class="highlight">Col</span>or 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
7. ZDEMO_FALV07 - <span class="highlight">Col</span>umns (field catalog) settings
(FALV (Fast ALV Grid))
... the we can use standard old technique of getting frontend field catalog and then manipulating the entries or we can use column method which returns zcl_falv_column object and then using this object we ...
Created on 06 January 2016
8. ALV Grid in the nutshell: Field catalog - Hotspot - ALV control: SingleClick-sensitive
(ALV Grid in the nutshell)
... to show the details of the clicked object, or to move to a transaction in which the object can be modified. As you can imagine, setting column as a HOTSPOT is very easy, you need to pass only the ABAP_TRUE ...
Created on 27 April 2020
9. ALV Grid in the nutshell: Field catalog - sp_group - Group key
(ALV Grid in the nutshell)
... function to change of the layout, on the right side of column selection tab, you’ll notice group (or column set) filter. When you expand it, you’ll see all group names from the program.   Figure ...
Created on 18 April 2020
10. ALV Grid in the nutshell: Field catalog - reprep - ALV control: Value is selection criterion for rep./rep.intf.
(ALV Grid in the nutshell)
... I’ve set sender and receiver, both as RT (ABAP Report Program). Figure 100 TRSTI entry for sender program   I’ve also adapted the field catalog, setting REPREP to ABAP_TRUE for column ...
Created on 13 April 2020
11. ALV Grid in the nutshell: Field catalog - reptext – Heading
(ALV Grid in the nutshell)
This field allows us to set (or change) the header text of the column. It can consist up to 55 characters in lowercase mode. When you use data dictionary reference ( REF_FIELD, REF_TABLE ) it is populated ...
Created on 13 April 2020
12. ALV Grid in the nutshell: Field catalog - intlen - Internal Length in Bytes
(ALV Grid in the nutshell)
... mode, you’ll not notice probably any change When you’ll setup this incorrectly, you may have problems when you allow grid to be editable, for example: When I’ve set the INTLEN to ‘2’ for column FLTIME, ...
Created on 13 April 2020
13. ALV Grid in the nutshell: Field catalog - inttype - ABAP data type (C,D,N,...)
(ALV Grid in the nutshell)
... table field. But if you’ll have unstoppable need of filling it, then the behaviour of the column will be exactly the same like you would use DATATYPE field, means JUST, OUTPUTLEN, INTTYPE, INTLEN and DD_OUTLEN ...
Created on 18 December 2019
14. ALV Grid in the nutshell: Field catalog - datatype
(ALV Grid in the nutshell)
DATATYPE field has small influence on the way the column is displayed. You can omit this field and then ALV grid will automatically fill this field and additionally JUST, OUTPUTLEN, INTTYPE, INTLEN and ...
Created on 11 December 2019
15. ALV Grid in the nutshell: Field catalog - rollname
(ALV Grid in the nutshell)
... then the column description, tooltip and column short and long texts are taken from the data element. Figure 86 ZDEMO_AIN_CL35 Results with ROLLNAME Figure 87 ZDEMO_AIN_CL35 ...
Created on 12 September 2019
16. ALV Grid in the nutshell: Field catalog - tooltip
(ALV Grid in the nutshell)
TOOLTIP, as in any other places in on your PC, is responsible to show short info about the column when you hover your mouse over the column header. It’s very useful when you have a lots of fields in you ...
Created on 12 September 2019
17. 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
18. ALV Grid in the nutshell: Field catalog - convexit
(ALV Grid in the nutshell)
... Conversion Exits In the example program ZDEMO_AIN_CL32 I’ve setup column CONNID to use conversion exit NUMCV. As you see you don’t put the full name of the FM into the CONVEXIT field, it only assumes ...
Created on 29 July 2019
19. ALV Grid in the nutshell: Field catalog - outputlen
(ALV Grid in the nutshell)
OUTPUTLEN can be used to setup the width of the column (if you don’t use automatic column width optimization). When automatically created, usually it have the value of the maximum field width, but when ...
Created on 29 July 2019
20. 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
21. 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
22. ALV Grid in the nutshell: Field catalog - no_sum
(ALV Grid in the nutshell)
As you can imagine from the name, NO_SUM does mostly opposite what DO_SUM, but in more secure way. If you don’t want that the field is allowed to be summarized, then set the value of this field to ‘X’. ...
Created on 28 July 2019
23. ALV Grid in the nutshell: Field catalog - emphasize
(ALV Grid in the nutshell)
EMPHASIZE allows you to change the colour of the whole column if there is such need. This field can be filled with following values: Space - this means you use the standard behaviour of ALV ...
Created on 01 July 2019
24. 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
25. ALV Grid in the nutshell: Field catalog - qfieldname
(ALV Grid in the nutshell)
QFIELDNAME has the same meaning for quantity fields, like CFIELDNAME for amount fields. This means that we can setup in which column of internal table the information about unit of measure is kept. On ...
Created on 24 June 2019
26. ALV Grid in the nutshell: Field catalog - key
(ALV Grid in the nutshell)
If you want to setup current field as a key one, you need to fill KEY with ‘X’. When you’ll do this then the field will have blue background and during horizontal scrolling the column will be fixed.  ...
Created on 24 June 2019
27. ALV Grid in the nutshell: Field catalog - checkbox
(ALV Grid in the nutshell)
The name of this field says almost everything about it. If you put an ‘X’ in it, then the column will be displayed as checkbox. The type of the field which is used as checkbox should be set to ABAP_BOOL ...
Created on 24 June 2019
28. ALV Grid in the nutshell: Field catalog - just
(ALV Grid in the nutshell)
With this field, you can setup alignment of the column. You can use one of the following values: R - Right, L - Left, C - Centre, space – default setting for field type      ...
Created on 24 June 2019
29. 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
30. 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
  • Start
  • Prev
  • 1
  • 2
  • Next
  • End
Łukasz Pęgiel
RSBCS EXAMPLE EMAIL SIMPLE ZCL CMD CUSTOMER - Wrapper for CMD API classes ADT REFRESH DATA BOM ALV GRID IN THE NUTSHELL and Enhance Your ADT LVC FCAT FIELDCATALOG HOTSPOT BINARY RELATION CREATE FALV GUI ALV GRID FRIEND SET SELECTED CELLS Extend allowed runtime of a program API EXPONENT ABAP ELEMDESCR TABNAME ALV GRID IXML PARSER GET GLOBALS FROM SLVC FULLSCR TechEd BATTLESHIPS ALV Grid in the nutshell Field catalog - seltext RELEASE ALLOWED MEREQ FACTORY FILL MDPA EBAN SAP NPL MD07 ZDEMO FALV02 - Full screen with redefinitions Popup with multi-select ALV Speed-up your Eclipse installation SIGN SUBTOTAL TEXT COMPONENTS SAPGUI PROGRESS INDICATOR RSDBRUNT CHAR VALUE CHANGE2 Field catalog - round DDSHIFACE CHANGE CREATED VARIANT RELEASABLE Field catalog - outputlen POPUP PURCHASE REQ READ USER SETTINGS ATC Pseudo Comments list ROWS ABAP Code Retreat CTMS DDB ONLINE FALV Fast ALV Grid Field catalog MDC7 DESCRIBE NAME DDIC FIELD LIST
  • Laserowe usuwanie blizn Tychy
  • Laserowe usuwanie zmarszczek Tychy
  • Paznokcie hybrydowe Tychy
  • Paznokcie tytanowe 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
  • FALV (Fast ALV Grid)
  • Call standard F4 search help with customized parameters
  • Dynamic GUI STATUS & TITLE with ABAP code
  • Create XLSX file from internal table in background v2
  • ATC Pseudo Comments list
  • Create fieldcatalog from internal table
  • Create a nice looking chart with CL_GUI_CHART_ENGINE - Part 3 - Chart Data and render
  • Link Attachments of Purchase Requisition to Purchase Order
  • GOS - How to add business documents at creation of object
  • Endless loop in BADI ME_PROCESS_PO_CUST
  • How to access private or protected data and methods of CL_GUI_ALV_GRID
  • Subtotal lines of ALV GRID OO as content separator
  • Popup with multi-select ALV

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.