• 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

Search

Total: 50 results found.

Search for:
Search Only:

Page 2 of 2

31. ALV Grid in the nutshell: Field catalog - round
(ALV Grid in the nutshell)
Round can be used for decimal fields that have no assigned QFIELDNAME or CFIELDNAME fields. Its purpose is to move decimal places left or right. If you want to move decimal places left, then you have to ...
Created on 24 June 2019
32. 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
33. ALV Grid in the nutshell: Field catalog - exponent
(ALV Grid in the nutshell)
This field is used to setup exponent number display for floating point decimals (F) fields. Although it’s not that commonly used field type for display, then it’s important to know that you can manipulate ...
Created on 24 June 2019
34. 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
35. ALV Grid in the nutshell: Field catalog - key_sel
(ALV Grid in the nutshell)
The description of this fields claims that if you put ‘X’ inside then current field will became a key field that can be hidden, but in fact it has no effect here, as standard key field can always be hidden. ...
Created on 24 June 2019
36. 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
37. ALV Grid in the nutshell: Field catalog - symbol
(ALV Grid in the nutshell)
This field has similar functionality like ICON but instead of better looking icons, you can choose to display old-style ASCII symbols from type-pool SYM. Like in an example of ICON you have to setup the ...
Created on 24 June 2019
38. 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
39. 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
40. ALV Grid in the nutshell: Field catalog - lzero
(ALV Grid in the nutshell)
This field allows manipulation of visibility of leading zeros. One of the most common example is the material number (MATNR), when there is no letter inside the name of material, it is stored in database ...
Created on 24 June 2019
41. ALV Grid in the nutshell: Field catalog - no_sign
(ALV Grid in the nutshell)
NO_SIGN can be used to hide the sign of the number. For example you have negative values but you want to display it as positive. In order to show you the behaviour of this settings, I’ve manipulated ...
Created on 24 June 2019
42. ALV Grid in the nutshell: Field catalog
(ALV Grid in the nutshell)
... are placed here. ALV Grid field catalog should have type LVC_T_FCAT. Of course as it’s not mandatory parameter you can also omit during the displaying on grid (like I did for example in program ZDEMO_AIN_CL01), ...
Created on 24 June 2019
43. Retro ASCII symbols in ALV Grid table
(How to...)
...  data(fcat) = value lvc_t_fcat(                                ( fieldname = 'SYMBOL' symbol = abap_true )                                ( fieldname = 'NAME' )                              ). ...
Created on 03 June 2018
44. Create XLSX file from internal table in background v2
(Tricks)
... definition of the method should look like this:     class-methods: create_xlsx_from_itab       importing                 it_fieldcat      type lvc_t_fcat optional                 it_sort          type lvc_t_sort optional ...
Created on 01 June 2018
45. ZCL_FALV - explanation of main methods and attributes
(FALV (Fast ALV Grid))
...        importing         !it_table      type standard table       returning         value(rt_fcat) type lvc_t_fcat . DISPLAY Display method can be used in following places: For Popup ...
Created on 09 January 2016
46. Create fieldcatalog from internal table
(How to...)
... and  CL_SALV_TABLE. Both methods are created with new ABAP 7.40 SP05 syntax.   LVC Field catalog definition   class-methods lvc_fcat_from_internal_table   importing     it_table type any table   returning value(rt_fcat) type lvc_t_fcat. ...
Created on 08 May 2015
47. Popup with multi-select ALV
(How to...)
...  data: gt_popup_fcat             type lvc_t_fcat. data: g_popup_question          type char70. field-symbols:  type standard table. 2) Then you need to create GUI status with Cancel and Enter Buttons ...
Created on 29 April 2014
48. Mass replace popup for ALV grid
(Tips)
...  data: g_par09_type type char255. data: g_par10_type type char255. data: g_wait type c. data: gt_rsparams type rsparams_tt. data: gt_fcat_mass type lvc_t_fcat. data: gt_mass_sel_columns type lvc_t_col. ...
Created on 27 April 2014
49. Enhanced MB51 Part 6 - ZMB51 program
(Tricks)
...  data: gt_fcatlvc type lvc_t_fcat. data: g_grid type ref to cl_gui_alv_grid. data: begin of gs_blpp,   belnr type blpp-belnr,   prtnr type blpp-prtnr,   verid type blpk-verid, end   of gs_blpp. ...
Created on 28 March 2014
50. Create XLSX/MHTML file from internal table in background
(Tricks)
... most important is that you can use this method in a background so you can prepare some jobs for your programs and send results of them to the users!   Importing: it_fieldcat type lvc_t_fcat ...
Created on 12 May 2013
  • Start
  • Prev
  • 1
  • 2
  • Next
  • End


Łukasz Pęgiel
ALV GRID FIELDCATALOG Create XLSX MHTML file from internal table in background MEREQ GET FACTORY Enhanced MB51 Part 1 - Goal and prerequisites ALINK CONNECTION DELETE USER OBJECTS HTTP CLIENT ZDEMO FALV01 - Standard full screen FALV COMPONENTS MAINTAIN CALL TRANSFORMATION STARTING NEW TASK PSEUDO COMMENTS GUI ALV GRID RELEASABLE SALV COLUMNS TABLE ALV GRID IN THE NUTSHELL ESDUS ALV Grid in the nutshell Field catalog - ifieldname Field catalog - fieldname SAVE CVIC MAP CONTACT JSON2ABAPtype SELECTED ROWS ABAP Code Retreat Tychy 2019 - Organizer Recap PURCHASE REQUISITION PARAMETERS F4IF SHLP DESCR TVCPLAK LVC FCAT By Topic Field catalog - reprep - ALV control Value is selection criterion for rep rep intf Field catalog - quantity SAPGUI PROGRESS INDICATOR MEPO DOCUMENT Field catalog - dfieldname Fieldname for column group Create a nice looking chart with CL CHART ENGINE - Part 2 - Customization KEY SETTINGS LOWER CASE Field catalog - sp group - Group key Field catalog - seltext LZERO ROUND SEL AUTHORITY-CHECK IXML SYM FALV ECLIPSE BAPI CLASS READ IFIELDNAME EDIT MASK RM07DOCS ADT IDENTITY ENGINE - Part 3 - Chart Data and render ISOLATE SELSCREEN BCS MESSAGE TVCPLAP SCMS BINARY XSTRING Load variant to single subscreen
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
  • How to handle CL_GUI_ALV_GRID events in SALV
  • Subtotal lines of ALV GRID OO as content separator

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.