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

Search for:
Search Only:

Page 1 of 2

1. FALV (Fast ALV Grid)
(Category)
Created on 28 December 2015
2. ALV Grid in the nutshell
(Category)
Created on 17 December 2018
3. ALV Grid in the nutshell: Field catalog - col_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
4. ALV Grid in the nutshell: Field catalog - dfieldname – Fieldname for column 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
5. ALV Grid in the nutshell: Field catalog - Hotspot - ALV control: SingleClick-sensitive
(ALV Grid in the nutshell)
...  Once done, you should create handler for the event and notify ALV grid about it. To do so, you need to declare a method (named hotspot_click in my example) with the addition FOR EVENT HOTSPOT_CLICK ...
Created on 27 April 2020
6. ALV Grid in the nutshell: Field catalog - sp_group - Group key
(ALV Grid in the nutshell)
Group key is not widely used but it has nice feature. Once you group the field catalog fields and you pass the group name into parameter IT_SPECIAL_GROUPS of method SET_TABLE_FOR_FIRST_DISPLAY, then in ...
Created on 18 April 2020
7. ALV Grid in the nutshell: Field catalog - domname - Domain name
(ALV Grid in the nutshell)
... grid. Maybe just for information and for Report-Report interface, where this field is use as one of the matching criteria for selection-screen parameters. As you can see on the next image, although ...
Created on 18 April 2020
8. ALV Grid in the nutshell: Field catalog - reprep - ALV control: Value is selection criterion for rep./rep.intf.
(ALV Grid in the nutshell)
... deep dive into topic, to understand how we can use this interface and for which purpose.   Seems that, using this interface, you can call from ALV grid an BW Query, SAP Query, ABAP Report Program ...
Created on 13 April 2020
9. ALV Grid in the nutshell: Field catalog - reptext – Heading
(ALV Grid in the nutshell)
... manual REPTEXT 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 ...
Created on 13 April 2020
10. ALV Grid in the nutshell: Field catalog - lowercase - Lowercase letters allowed/not allowed
(ALV Grid in the nutshell)
The changes of this parameter are only visible in edit mode and makes sense only for character or string fields. If it is set to ABAP_TRUE (‘X’), then the ALV grid stores in internal table the value in ...
Created on 13 April 2020
11. 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
12. ALV Grid in the nutshell: Field catalog - inttype - ABAP data type (C,D,N,...)
(ALV Grid in the nutshell)
... type, or for example a table. Just like DATATYPE, you don’t need to fill this field manually, when you’ll leave it empty, ALV grid will automatically setup a proper type according to referenced internal ...
Created on 18 December 2019
13. 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
14. ALV Grid in the nutshell: Field catalog - rollname
(ALV Grid in the nutshell)
The main functionality of the ROLLNAME is to provide a data element that will be responsible for showing F1 help on the grid cell. If in data element the documentation is available, then it will be shown. ...
Created on 12 September 2019
15. 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
16. 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
17. ALV Grid in the nutshell: Field catalog - convexit
(ALV Grid in the nutshell)
Conversion Exit was already mentioned while describing the EDIT_MASK field, but here it is called in a bit different way. Before saying how, it is important to understand the conversion exits. They are ...
Created on 29 July 2019
18. 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
19. ALV Grid in the nutshell: Field catalog - tech
(ALV Grid in the nutshell)
Technical field allows you to do similar thing as NO_OUT, you can hide the field on the output, the difference is that, users are not able to unhide this field. As NO_OUT, in order that TECH field work, ...
Created on 29 July 2019
20. ALV Grid in the nutshell: Field catalog - no_out
(ALV Grid in the nutshell)
NO_OUT is useful when you want to hide the field on the output, but still allow users to unhide it on demand. As lots of fields from field catalog, it can be filled with ‘X’ or space (default). If ...
Created on 29 July 2019
21. 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
22. ALV Grid in the nutshell: Field catalog - do_sum
(ALV Grid in the nutshell)
DO_SUM is very helpful when you want to assure that some of the numeric fields are summarized directly after the output, without interaction from the user side. In order to do so, just put the ‘X’ or ABAP_TRUE ...
Created on 28 July 2019
23. ALV Grid in the nutshell: Field catalog - fix_column
(ALV Grid in the nutshell)
... window, so the full grid is not visible.   Figure 62 ZDEMO_AIN_CL26 Field catalog fixed on AIRPFROM field   Figure 63 ZDEMO_AIN_CL26 Field catalog fixed on ...
Created on 28 July 2019
24. ALV Grid in the nutshell: Field catalog - emphasize
(ALV Grid in the nutshell)
... grid ‘X’ – you use standard emphasize (default colour) ‘Cxyz’ – where:  ‘C’ is a character that notifies ALV grid that you will use specific colours x – contains one of the following ...
Created on 01 July 2019
25. ALV Grid in the nutshell: Field catalog - edit_mask
(ALV Grid in the nutshell)
If you are familiar with the WRITE statement, then probably you know the EDIT_MASK addition which allows us to do formatting of the output in two different ways, you can apply the same to the EDIT_MASK ...
Created on 28 June 2019
26. 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
27. ALV Grid in the nutshell: Field catalog - fieldname
(ALV Grid in the nutshell)
This field is one of the basic ones in field catalog. It contains the fieldname of internal table that will be used in our grid. Although LVC_T_FCAT is standard table, then this field should be treated ...
Created on 24 June 2019
28. ALV Grid in the nutshell: Field catalog - tabname
(ALV Grid in the nutshell)
The name of this field suggest to put here an internal table name, but it seems that it has no function at all. When SAP fills field catalog automatically, then value of this field is set to ‘1’. You can ...
Created on 24 June 2019
29. ALV Grid in the nutshell: Field catalog - currency
(ALV Grid in the nutshell)
When you have a field that contains an amount, for example net value of an sales order, then in order to show it correctly in the grid you should fill or this field with an value of currency key (one of ...
Created on 24 June 2019
30. ALV Grid in the nutshell: Field catalog - cfieldname
(ALV Grid in the nutshell)
CFIELDNAME can be read as currency field name. When you have in your internal table a field that represents the currency for the amount stored in a field kept under FIELDNAME in field catalog, then you ...
Created on 24 June 2019
  • Start
  • Prev
  • 1
  • 2
  • Next
  • End
Łukasz Pęgiel
ALV Grid in the nutshell Field catalog - qfieldname ABAP ZIP GUI ALV GRID REUSE FIELDCATALOG MERGE Basic Information REFRESH DATA FRIEND ALV GRID IN THE NUTSHELL COMPONENTS UPDATE PREPARE Field catalog - fix column Field catalog - tech LOAD COMPLEX BOM DARK THEME REDISPATCH KEY SEL SCMS XSTRING BINARY RESET REJ ALLOWED ALV GRID CTMS DDB HAS VALUES INTERNAL Field catalog - fieldname TOTEXP Field catalog - do sum Field catalog - outputlen FALV ITM LVC FCAT DELETE USER SETTINGS SUM CUSTOM CONTAINER ZCL LAYOUT - layout settings SALV TABLE GUI STATUS ESRUO APPEND GAME FALV Fast ALV Grid ZDEMO FALV11 - Editable Grid settings Enhanced MB51 Part 2 - Structure for data cookies STRUCTDESCR AiE JSON2ABAPtype SET VALUE IXML DOCUMENT GOS SERVICE TOOLS GTMOVE LINKED OBJECTS ESRUO - MM settings table - Part 2 and Enhance Your ADT ESDUS SEARCH EXPONENT SIGN ABAP in Eclipse - Install TOOL ACCESS TVCPL CMD CUSTOMER - Wrapper for CMD API classes Reset rejection of Purchase Requisition CHECKBOX VRM CSRF Token
  • 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
  • GOS - How to add business documents at creation of object
  • Link Attachments of Purchase Requisition to Purchase Order
  • 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.