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

Search for:
Search Only:

1. ALV Grid in the nutshell: Field catalog - d<span class="highlight">fieldname</span> – 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
2. ALV Grid in the nutshell: Field catalog - <span class="highlight">fieldname</span>
(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
3. ALV Grid in the nutshell: Field catalog - c<span class="highlight">fieldname</span>
(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
4. ALV Grid in the nutshell: Field catalog - i<span class="highlight">fieldname</span>
(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
5. ALV Grid in the nutshell: Field catalog - q<span class="highlight">fieldname</span>
(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
6. ALV Grid in the nutshell: Field catalog - col_id - ALV control: Column ID
(ALV Grid in the nutshell)
... & COL_POS filled” on the selection screen, the following FCAT will be build. You ca notice that the COL_ID is different than COL_POS. Additionally after the creation of FCAT, I’ve sorted it by FIELDNAME, ...
Created on 08 June 2020
7. ALV Grid in the nutshell: Field catalog - Hotspot - ALV control: SingleClick-sensitive
(ALV Grid in the nutshell)
... INDEX, the column name inside structure E_COLUMN_ID in field FIELDNAME.   Figure 116 Sample implementation of HOTSPOT_CLICK handler   One last thing you need to do, is to register ...
Created on 27 April 2020
8. ALV Grid in the nutshell: Field catalog - do_sum
(ALV Grid in the nutshell)
... into the value of this field in the field catalog. One remark, if you’re adding this setting to value or quantity field, make sure that you also fill the QFIELDNAME or CFIELDNAME to have the sum of ...
Created on 28 July 2019
9. ALV Grid in the nutshell: Field catalog - currency
(ALV Grid in the nutshell)
... entries from TCURC table). You can leave this field of course empty and in many case you will, especially if you use CFIELDNAME instead.  In many situations changing the of currency here will not make ...
Created on 24 June 2019
10. 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
11. ALV Grid in the nutshell: Field catalog
(ALV Grid in the nutshell)
... control: Output line (INTERNAL USE) col_pos type lvc_colpos ALV control: Output column fieldname type ...
Created on 24 June 2019
12. 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
13. How to handle CL_GUI_ALV_GRID events in SALV
(Tricks)
...        importing         et_fieldcatalog = data(fcat)    " Field Catalog     ).     "setting editable fields     assign fcat[ fieldname = 'CARRID' ] to field-symbol().     if sy-subrc eq 0. ...
Created on 09 October 2016
14. ZCL_FALV_COLUMN - column (fcat) settings
(FALV (Fast ALV Grid))
...        importing         value(iv_value) type lvc_colpos .     methods set_fieldname       importing         value(iv_value) type lvc_fname .     methods set_tabname       importing         value(iv_value) type lvc_tname . ...
Created on 10 January 2016
15. ZCL_FALV - explanation of main methods and attributes
(FALV (Fast ALV Grid))
... Can be used to change fieldcatalog in fast way. You need only to pass field name to use it.     methods column       importing         value(iv_fieldname) type lvc_s_fcat-fieldname       returning ...
Created on 09 January 2016
16. ZDEMO_FALV13 - Mix demo + own screen and container
(FALV (Fast ALV Grid))
...        iv_fieldname = 'SEATSMAX'       iv_row       = 1   ).   falv_redef_copy->add_button(     exporting       iv_function  = zcl_falv=>fc_mass_replace       iv_icon      = icon_replace   ). ...
Created on 06 January 2016
17. ZDEMO_FALV11 - Editable Grid settings
(FALV (Fast ALV Grid))
...        falv->set_cell_enabled(         exporting           iv_fieldname = 'FLDATE'           iv_row       = 2 * sy-index           ).     enddo.   endif.   "Change grid to edit mode   falv->set_editable( iv_modify = abap_true ). ...
Created on 06 January 2016
18. ZDEMO_FALV10 - Color Settings
(FALV (Fast ALV Grid))
...        exporting         iv_color = 'C300'         iv_row   = 2 * sy-index     ).   enddo.   "change some cell colors.   do 10 times.     falv->set_cell_color(       exporting         iv_fieldname = 'PLANETYPE' ...
Created on 06 January 2016
19. ZDEMO_FALV09 - Cell settings
(FALV (Fast ALV Grid))
...    method evt_hotspot_click.     case e_column_id-fieldname.       when 'SEATSMAX'.         me->set_cell_disabled(           exporting             iv_fieldname = e_column_id-fieldname             iv_row       = es_row_no-row_id ...
Created on 06 January 2016
20. ZDEMO_FALV02 - Full screen with redefinitions
(FALV (Fast ALV Grid))
...      case e_column_id-fieldname.       when 'SEATSMAX'.         call function 'POPUP_DISPLAY_MESSAGE'           exporting             titel = 'Hotspot is working'   " Title             msgid = '00' ...
Created on 05 January 2016
21. Mass replace popup for ALV grid
(Tips)
...  data: g_fieldname type string. data: g_okcode type sy-ucomm. field-symbols:  type lvc_s_fcat. field-symbols:  type any. define add_param_descr.   concatenate 'P_DESC' &1 into g_fieldname. ...
Created on 27 April 2014
22. Enhanced MB51 Part 6 - ZMB51 program
(Tricks)
...    gs_layout-no_input          = ''.   gs_layout-colwidth_optimize = 'X'.   gs_layout-coltab_fieldname          = 'COLOR'.   gs_layout-zebra             = 'X'. ...
Created on 28 March 2014
23. Scan program for authority-check
(How to...)
...    data: f_fieldname type string.   data: f_lines type i.   append c_k to ft_keywords.   clear fs_authorization. *read the source of an program   read report f_program into ft_src. ...
Created on 13 July 2013
24. Call standard F4 search help with customized parameters
(How to...)
...      importing       et_values      = ft_values          ).   read table ft_values with key fieldname = 'CONNID' assigning .   if sy-subrc eq 0.     move -fieldval to p_connid.   endif. ...
Created on 07 June 2013
25. Load variant to single subscreen (selection screen)
(How to...)
...    data: ft_params type table of rsparams.   data: f_variant type rsvar-variant.   data: f_text type rsvar-vtext.   data: fs_params type rsparams.   data: fs_paramsscr type rsparams.   data  f_fieldname type fieldname. ...
Created on 02 May 2013
26. Subtotal lines of ALV GRID OO as content separator
(Tricks)
... -fieldname.       when 'SUBTOTALKEY'.         -no_out = 'X'. "hide column on screen         fs_sort-spos = 1.    "first sorting key         fs_sort-fieldname = -fieldname. "fieldname ...
Created on 28 April 2013
27. Save variant for single selection screen subscreen
(How to...)
... to firstly use FM 'RS_REFRESH_FROM_SELECTOPTIONS' to get all fields and values for all select-options, then you need to use FM 'RS_ISOLATE_1_SELSCREEN' to get the fieldnames for selected ...
Created on 23 April 2013
28. Creating editor for dynamic code (SE38 like)
(How to...)
...  data: fs_code type char255. data: fs_zparm type zparm. data: f_table type string. data: f_fieldname type string. data: f_msg(120) type c. data: g_prog(8) type c. "temporary program name ...
Created on 17 April 2013


Łukasz Pęgiel
ECLIPSE ITM CREATE COPY ALV GRID FIELDCATALOG ALV Grid in the nutshell RSFUNC TXT PROVIDE MB51 LVC FCAT ALINK CONNECTION GTDELETE Create a nice looking chart with CL GUI CHART ENGINE - Part 3 - Chart Data and render ABAP TYPEDESCR ENGINE - Part 2 - Customization SAVE USER SETTINGS OUT EDIT MASK RESET REJ ALLOWED MB51 ENHANCEMENT ZDEMO FALV13 - Mix demo own screen and container IXML PARSER GET DDIC FIELD LIST VRM SET VALUES SELTEXT DELETE OBJECTS PROGRESS INDICATOR VS direct call of SAPGUI INDICATOR MTK TRANSFER FROM SLIS TVCPL READ TEXT MEREQS EBAN LOOKUP Why I like to code in ABAP in Eclipse Field catalog - datatype HEADER HANDLE Field catalog - outputlen Classifications - Part 2 - Get Object Details SCAN ABAP-SOURCE RELEASE RSBCS EXAMPLE EMAIL LOAD COMPLEX GROUP HTTP CLIENT EMPHASIZE Classifications - Part 4 - example of use ALV GRID Other checks on purchase requisition state ENGINE ISTREAM ALV GRID IN THE NUTSHELL Field catalog - col id - ALV control Column ID FALV MEPO DOCUMENT COC1 FEATURE CHECK SAP WebIDE MD07 Speed-up your Eclipse installation ZIP a file using ABAP How to select proper configuration entry Mass replace popup for ALV grid
  • 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)
  • Call standard F4 search help with customized parameters
  • ATC Pseudo Comments list
  • Dynamic GUI STATUS & TITLE with ABAP code
  • Create fieldcatalog from internal table
  • 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
  • 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
  • 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.