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

Search for:
Search Only:

Page 1 of 2

1. 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
2. ALV Grid in the nutshell: Field catalog - cfieldname
(ALV Grid in the nutshell)
... filled  As data in this table didn’t contained a line with JPY, I’ve changed in SE16 the currency key for one of the rows in order to show you the difference in output.   Figure 20 Changed ...
Created on 24 June 2019
3. ALV Grid in the nutshell: Field catalog - quantity
(ALV Grid in the nutshell)
... situation you can see if you use meters. No decimal places are visible in the rows for which the value doesn’t have any decimals, but if it’s the case then the full value is displayed.   Figure ...
Created on 24 June 2019
4. ALV Grid in the nutshell: Field catalog - icon
(ALV Grid in the nutshell)
... table. The corresponding field should be an CHAR4 field. You can use of course the domain ICON_D as well. In my example I’ve filled all rows with the same icon (ICON_ABAP) during the selection of data ...
Created on 24 June 2019
5. 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
6. How to handle CL_GUI_ALV_GRID events in SALV
(Tricks)
...      data: handler_added type abap_bool. endclass. class lcl_grid_trick implementation.   method create_salv.     select * up to 100 rows into corresponding fields of table @spfli     from spfli. ...
Created on 09 October 2016
7. ZCL_FALV_LAYOUT - layout settings
(FALV (Fast ALV Grid))
...      methods set_webrows importing value(iv_value) type lvc_webrow .     methods set_webxwidth importing value(iv_value) type int4 .     methods set_webxheight importing value(iv_value) type int4 . ...
Created on 10 January 2016
8. ZCL_FALV - explanation of main methods and attributes
(FALV (Fast ALV Grid))
...  If you pass 'X' here then grid will be displayed in split container with two rows, bottom row will be used to show error log if error will appear I_POPUP If you want FALV to show ...
Created on 09 January 2016
9. ZDEMO_FALV14 - Popup calls
(FALV (Fast ALV Grid))
...  report zdemo_falv14. data: sflight type standard table of sflight. parameters: p_defau  radiobutton group gr1 default 'X',             p_set    radiobutton group gr1,             p_rowst  type i, ...
Created on 06 January 2016
10. ZDEMO_FALV13 - Mix demo + own screen and container
(FALV (Fast ALV Grid))
...  report zdemo_falv13. types: begin of t_sflight.        include type sflight. types: style type lvc_t_styl,        end of t_sflight. data: sflight type standard table of t_sflight. select * up to 100 rows into corresponding fields of table @sflight ...
Created on 06 January 2016
11. ZDEMO_FALV12 - Error log
(FALV (Fast ALV Grid))
...  data: sflight type standard table of sflight. parameters: p_embeed radiobutton group gr1 default 'X',             p_notemb radiobutton group gr1. start-of-selection.   select * up to 100 rows ...
Created on 06 January 2016
12. ZDEMO_FALV11 - Editable Grid settings
(FALV (Fast ALV Grid))
...  start-of-selection.   select * up to 100 rows   into corresponding fields of table @sflight   from sflight.   "FALV creation with only table passed   data(falv) = zcl_falv=>create( changing ct_table = sflight ). ...
Created on 06 January 2016
13. ZDEMO_FALV10 - Color 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
14. ZDEMO_FALV09 - Cell settings
(FALV (Fast ALV Grid))
...    select * up to 100 rows   into corresponding fields of table @sflight   from sflight.   "creation of falv with local redefinition   data falv type ref to lcl_test.   falv ?= lcl_test=>create( exporting  i_subclass = cl_abap_classdescr=>describe_by_name( p_name = 'LCL_TEST' ) ...
Created on 06 January 2016
15. ZDEMO_FALV08 - Mass replace function
(FALV (Fast ALV Grid))
...  report zdemo_falv08. data: sflight type standard table of sflight. start-of-selection.   select * up to 100 rows   into corresponding fields of table @sflight   from sflight. ...
Created on 06 January 2016
16. ZDEMO_FALV07 - Columns (field catalog) settings
(FALV (Fast ALV Grid))
...  report zdemo_falv07. data: sflight type standard table of sflight. start-of-selection.   select * up to 100 rows   into corresponding fields of table @sflight   from sflight. ...
Created on 06 January 2016
17. ZDEMO_FALV06 - Grid Layout settings + "Mark" fiel
(FALV (Fast ALV Grid))
...          include type sflight. types: end of t_sflight. data: sflight type standard table of t_sflight. parameter: p_usemar as checkbox. start-of-selection.   select * up to 100 rows ...
Created on 06 January 2016
18. ZDEMO_FALV05 - Adding/Removing/Disabling grid toolbar
(FALV (Fast ALV Grid))
...          me->delete_button( zcl_falv_dynamic_status=>b_03 ).     endcase.   endmethod. endclass. start-of-selection.   select * up to 100 rows   into corresponding fields of table @sflight ...
Created on 06 January 2016
19. ZDEMO_FALV04 - Full Screen with fully dynamic GUI Status
(FALV (Fast ALV Grid))
...              msgno = '001'             msgv1 = 'Button 2 clicked'.     endcase.   endmethod. endclass. start-of-selection.   select * up to 100 rows   into corresponding fields of table @sfligh ...
Created on 06 January 2016
20. ZDEMO_FALV03 - Full Screen with GUI Status Partly Dynamic
(FALV (Fast ALV Grid))
...              msgno = '001'             msgv1 = 'Button 2 clicked'.     endcase.   endmethod. endclass. start-of-selection.   select * up to 100 rows   into corresponding fields of table @sfligh ...
Created on 06 January 2016
21. ZDEMO_FALV02 - Full screen with redefinitions
(FALV (Fast ALV Grid))
...              msgty = 'I'             msgno = '001'             msgv1 = 'Yupi!'.     endcase.   endmethod. endclass. start-of-selection.   select * up to 100 rows   into corresponding fields of table @sflight ...
Created on 05 January 2016
22. ZDEMO_FALV01 - Standard full screen FALV
(FALV (Fast ALV Grid))
...  report zdemo_falv01. data: sflight type standard table of sflight. start-of-selection.   select * up to 100 rows   into corresponding fields of table @sflight   from sflight. ...
Created on 05 January 2016
23. How to teach ABAP ???
(Thoughts)
... a program which selects 100 materials from MARA and displays them using CL_GUI_ALV_GRID. Then when it's done ask to change some columns to editable. Then to change some colors for the rows and columns. ...
Created on 24 November 2015
24. The SIN of progress indicator
(Tricks)
...              p_show radiobutton group gr1 default 'X'. start-of-selection.   select * up to 50000 rows   into corresponding fields of table gt_sbook   from sbook.   if p_supp eq abap_true. ...
Created on 19 August 2015
25. Popup with multi-select ALV
(How to...)
...    assign ct_outtab to .   gt_popup_fcat[] = it_fcat[].   g_popup_question = i_question.   call screen 0501 starting at 1 1.   case g_okcode.     when 'ENTER'.       go_popup_grid->get_selected_rows( ...
Created on 29 April 2014
26. Mass replace popup for ALV grid
(Tips)
...    data: f_num(2) type n.   data: f_index type i.   data: f_field type string.   data: f_changed type flag.   data: f_tabix type i.   data: ft_filtered type lvc_t_fidx.   data: ft_selected_rows type lvc_t_roid. ...
Created on 27 April 2014
27. EWB Components allocation to routing operation (multilevel BOM)
(How to...)
...  parameters: p_path type localfile lower case modif id exc. parameters: p_rows type i modif id exc. selection-screen end of block exc. selection-screen begin of block oth with frame title text-oth. ...
Created on 18 April 2014
28. Enhanced MB51 Part 6 - ZMB51 program
(Tricks)
...         rows type epsssrows,        vendor_name type mepo_vendor,        grtxt like t157e-grtxt,        xabln like mkpf-xabln,        bldat type mkpf-bldat,       end of t_alv. Selection-options ...
Created on 28 March 2014
29. Range to search in lower case fields
(Tricks)
It may happen that you'll need to do select or loop on a base of the field which is kept in lower case, but you don't know exactly what's the value o field. In such case you may want to build ...
Created on 13 March 2014
30. Characteristic's own input screen - Part 8 - example of use ...
(How to...)
... values in given characteristic and then throws an update screen. After exiting from the screen it's saving data to database.   program  zab_classifications_popup. *--------------------------------------------------------------------* ...
Created on 17 November 2013
  • Start
  • Prev
  • 1
  • 2
  • Next
  • End
Łukasz Pęgiel
ALINK CONNECTION GTINSERT ALV Grid in the nutshell Field catalog - no sign LVC FCAT FILENAME ABAP DEVELOPMENT TOOLS IN ECLIPSE PURCHASE REQ FACTORY LOWER CASE IXML PARSER Create fieldcatalog from internal table MB51 BAPI OBJCL GETDETAIL SAVE USER SETTINGS TEACH ABAP BCS GTUPDATE CREATE VARIANT APPEND ALV GRID IN THE NUTSHELL ABAP DEVELOPMENTS TOOLS ABAP IN ECLIPSE SAP DEVELOPMENT TOOLS FOR ECLIPSE KKEK CONVERT FLOAT CURR VIRTUALBOX GUI ALV GRID Other checks on purchase requisition state ESRUO DELETE OBJECTS EWB Components allocation to routing operation multilevel BOM REQUISITION GET SCROLL INFO VIA ECLIPSE ALV GRID FILL MDPA FROM EBAN F4IF START VALUE REQUEST FALV FIELDCATALOG DATATYPE ZDEMO FALV12 - Error log CMD API EXTRACT BINARY RELATION COMMIT Field catalog Field catalog - ifieldname VIDEO acrTYC RSFUNC TXT SET CURRENT CELL MESSAGE HANDLER CHANGE CREATED LOOP AUTOMATIC LOGON How to handle CL GRID events in SALV RELEASABLE SAP Community Events Field catalog - dfieldname Fieldname for column group COVEXT ELEMENT ABAP ZIP LOAD
  • 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.