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

Search for:
Search Only:

Page 1 of 2

1. ALV Grid in the nutshell: Field catalog - reprep - ALV control: Value is selection criterion for rep./rep.intf.
(ALV Grid in the nutshell)
... If you’re familiar with REUSE_ALV_GRID_DISPLAY, then this mechanism of callback is know for you, if not, then in simply words it’s an kind of event handler. When RRI finish to fill the internal tables ...
Created on 13 April 2020
2. 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
3. ALV Grid in the nutshell: Field catalog - intlen - Internal Length in Bytes
(ALV Grid in the nutshell)
As the description says, the meaning of that field is to set the internal length of the field in Bytes. During my whole career as ABAP Developer, I had never filled that field manually. Usually you’ll ...
Created on 13 April 2020
4. Downloading Exchange Rates from NBP (National Bank of Poland)
(How to...)
... owing dirty ABAP code. The structure of the XML will be transformed into internal table of a type EXCHANGE_RATES.   CLASS lcl_exchange_rates DEFINITION.   PUBLIC SECTION.     TYPES: BEGIN OF&nb ...
Created on 06 April 2020
5. Downloading Exchange Rates from Central Bank of Turkey
(How to...)
... XML from bank site into internal table, which can be then used inside your code to populate values of  BAPI_EXCHANGERATE_CREATE FM. There are few ways to download the XML to your ABAP code, I ...
Created on 06 April 2020
6. ALV Grid in the nutshell: Field catalog - inttype - ABAP data type (C,D,N,...)
(ALV Grid in the nutshell)
As you can imagine, INTTYPE is just a presentation of DATATYPE in internal SAP format in most of cases. I wrote most of cases because it can also say if the field in internal table is a reference to other ...
Created on 18 December 2019
7. ALV Grid in the nutshell: Field catalog - datatype
(ALV Grid in the nutshell)
... of the data entered in edit mode will be done on a base of the real data type of the linked internal table field. Possible data types form system NW 7.52 SP04 can be found bellow. Data ...
Created on 11 December 2019
8. ALV Grid in the nutshell: Field catalog - convexit
(ALV Grid in the nutshell)
... no more and no less than a function modules that helps to represent the internal values into understandable or more readable values. An basic example is field MATNR which is 18 characters long in ECC and ...
Created on 29 July 2019
9. ALV Grid in the nutshell: Field catalog - tech
(ALV Grid in the nutshell)
... in the internal table that supposed to be displayed, but you do not want to display them. Such field can be used for example during the event handling or displaying totals and subtotals. It can also ...
Created on 29 July 2019
10. 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
11. 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
12. ALV Grid in the nutshell: Field catalog - currency
(ALV Grid in the nutshell)
... not make difference to the output, but there are some exceptions, for example JPY (Japanese Yen) don’t have decimal places. Figure 17 displays value of 42 294 whereas the internal value of field is ...
Created on 24 June 2019
13. 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
14. ALV Grid in the nutshell: Field catalog - quantity
(ALV Grid in the nutshell)
... In case the quantity value contains more decimal places, like on the first row, then the value is displayed fully as written into internal table.   Figure 24 ZDEMO_AIN_CL10 Results using ...
Created on 24 June 2019
15. ALV Grid in the nutshell: Field catalog - ifieldname
(ALV Grid in the nutshell)
Although the SAP name of this field says: “Field name of internal table field”, then I haven’t found any usage of this field. It’s also not filled by SAP when you use SALV for creating field-catalogs. ...
Created on 24 June 2019
16. ALV Grid in the nutshell: Field catalog - round
(ALV Grid in the nutshell)
... case the value in the internal table was the same 2 571,25.  ...
Created on 24 June 2019
17. 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
18. ALV Grid in the nutshell: Field catalog - exponent
(ALV Grid in the nutshell)
... value set to 3 As you have noticed the value 2 572,25 that you can find in the internal table, will be shown differently but it’s showing exact the same number.      ...
Created on 24 June 2019
19. ALV Grid in the nutshell: Field catalog - icon
(ALV Grid in the nutshell)
If you want to display an icon inside the cell, then you need to setup a value of this field to ‘X’ and additionally you need to put an icon from type-pool ICON into the corresponding field of your internal ...
Created on 24 June 2019
20. ALV Grid in the nutshell: Field catalog - symbol
(ALV Grid in the nutshell)
... fieldcatalog value for field SYMBOL to ‘X’ and in the corresponding field of your internal table, you have put the value of the symbol. The corresponding field should be CHAR1 field.    ...
Created on 24 June 2019
21. ALV Grid in the nutshell: Field catalog
(ALV Grid in the nutshell)
...  lvc_rowpos ALV control: Output line (INTERNAL USE) col_pos type lvc_colpos ALV control: Output column  ...
Created on 24 June 2019
22. ALV Grid in the nutshell
(ALV Grid in the nutshell)
... class in their programs. This is of course OK for the start but later on it happens very often that our customers (internal or external) want to have some additional functionalities of the grid and due ...
Created on 24 June 2019
23. ATC Pseudo Comments list
(Tips)
...  3200 E Index access on internal table outside a LOOP LOOP_INDEX   CL_CI_TEST_EXTENDED_CHECK 3202 E Non-numeric index access on internal table  ...
Created on 26 September 2018
24. Creating ABAP type definition from JSON structure (JSON2ABAPtype)
(How to...)
... ring,       init,       get_internal_types         changing           value(c_type) type t_hier ...
Created on 20 August 2018
25. How to extend the time between SAP license installations on NPL
(Tricks)
... ;one additional element that you can copy bellow and save. <ExtraDataItem name="VBoxInternal/Devices/VMMDev/0/Config/GetHostTimeDisabled" value="1"/>   Now sta ...
Created on 03 August 2018
26. Create XLSX file from internal table in background v2
(Tricks)
You may saw before the article Create XLSX/MHTML file from internal table in background and you may have use it without any issues before, but it seems that in newer releases of SAP (definitelly ...
Created on 01 June 2018
27. CMD_EI_API deletes contact persons?
(Tips)
... s, but I failed. So I did some debugging and found a place where after extraction of data from DB, the contact persons where deleted from internal tables. So I went deeper and saw that th ...
Created on 13 August 2017
28. ZCL_FALV - explanation of main methods and attributes
(FALV (Fast ALV Grid))
... ethod to create LVC field-catalog from internal table like in this article.     class-methods lvc_fcat_from_itab       importing         !it_table      type standard  ...
Created on 09 January 2016
29. Create fieldcatalog from internal table
(How to...)
Many people still asks how to create field catalog for CL_GUI_ALV_GRID or REUSE_ALV_GRID_DISPLAY on a base of internal table. This is very easy since we have SALV classes, you could see it in ...
Created on 08 May 2015
30. Mass replace popup for ALV grid
(Tips)
...  *   i_internal_tabname     = i_internal_tabname    " Table Name   changing     ct_fieldcat            = gt_fieldcat    " Field Catalog with Field Descriptions ...
Created on 27 April 2014
  • Start
  • Prev
  • 1
  • 2
  • Next
  • End
Łukasz Pęgiel
MB51 FLAG ALV GRID TEACH ABAP SAP Community Events ZIP a file using ABAP ABAP DEVELOPMENT TOOLS IN ECLIPSE ABAP FAVORITES PROVIDE ITM PATH APPEND USER SETTINGS GUI HTML VIEWER CFIELDNAME MD07 FIELDCATALOG CREATE COPY ALV GRID IN THE NUTSHELL DARK THEME ECLIPSE SMP DYNTXT How to copy BOM using CEWB Function Modules CMD API LVC FCAT API deletes contact persons F4IF GET SHLP DESCR COMPONENTS MAINTAIN Speed-up your Eclipse installation SCROLL INFO VIA SELECTED ROWS CHAR VALUE CHANGE2 GOS - Link Business Documents from PR to PO SALV CONTROLLER METADATA GTGET PROGRAM INDEX HOTSPOT BAPI OBJCL GETDETAIL TOTLINE READ RM07DOCS AUTHORITY-CHECK ALV GRID PURCHASE REQUISITION TABLE PERIOD AND DATE CONVERT OUTPUT SAVE DELETE OBJECTS STARTING NEW TASK ABAP EXTENSIONS ZDEMO FALV12 - Error log ESDUS FALV EXTEND PROGRAM RUNTIME REFRESH FROM SELECTOPTIONS DARKEST DARK THEME #SAPTechEd 2016 Barcelona CSRF token validation failed HTTP CLIENT MEREQ FACTORY TSK ALV Grid in the nutshell Field catalog - seltext FALV08 - Mass replace function TABNAME Other checks on purchase requisition state QM ATTACHMENTS
  • 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

  • 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
  • ALV Grid in the nutshell: Field catalog - rollname

Most Read

  • Create XLSX/MHTML file from internal table in background
  • Refresh ALV GRID and keep position and current cell
  • Call standard F4 search help with customized parameters
  • FALV (Fast ALV Grid)
  • Dynamic GUI STATUS & TITLE with ABAP code
  • 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
  • Subtotal lines of ALV GRID OO as content separator
  • Create fieldcatalog from internal table
  • Endless loop in BADI ME_PROCESS_PO_CUST
  • EWB Components allocation to routing operation (multilevel BOM)
  • Save message with attachment in Outlook's Drafts
  • How to access private or protected data and methods of CL_GUI_ALV_GRID
  • 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.