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

Search for:
Search Only:

Page 1 of 2

1. <span class="highlight">ZCL</span>_CMD_CUSTOMER -> Wrapper for CMD_EI_API classes
(How to...)
... contact person: parameters: p_custom type kna1-kunnr. try.     data(customer) = new zcl_cmd_customer( i_customer = p_custom ).     data(contact) = customer->add_new_contact( ).     contact->set_addr_lastname( ...
Created on 06 June 2019
2. <span class="highlight">ZCL</span>_FALV_DYNAMIC_STATUS - for full screen or popup
(FALV (Fast ALV Grid))
The latest version of each part of FALV can be found on github repository https://github.com/fidley/falv which you can use in abapGit for easier up to date handling.    This class is based on article ...
Created on 10 January 2016
3. <span class="highlight">ZCL</span>_FALV_LAYOUT - layout settings
(FALV (Fast ALV Grid))
The latest version of each part of FALV can be found on github repository https://github.com/fidley/falv which you can use in abapGit for easier up to date handling.    Layout class is based on ...
Created on 10 January 2016
4. <span class="highlight">ZCL</span>_FALV_COLUMN - column (fcat) settings
(FALV (Fast ALV Grid))
... into ZCL_FALV class then you'll see that you have direct access fcat table where all field catalog settings are store.  When you'll update this table before using display method then it would work ...
Created on 10 January 2016
5. <span class="highlight">ZCL</span>_FALV - explanation of main methods and attributes
(FALV (Fast ALV Grid))
The latest version of each part of FALV can be found on github repository https://github.com/fidley/falv which you can use in abapGit for easier up to date handling.  ZCL_FALV is the main class of ...
Created on 09 January 2016
6. Selection-Screen Function Key in Form, Function Module or Method
(Tricks)
... shows how this can be done. What is really nice is that although I'm assigning the structure SSCRFIELDS dynamically, it's not needed to declare it explicitly in the program. class zcl_selection_screen_functions definition ...
Created on 21 November 2018
7. ATC Pseudo Comments list
(Tips)
...    ZCL_AOC_CHECK_40 1 E   CI_SUBRC   ZCL_AOC_CHECK_48 1 E   CI_DEFAULT_KEY     EDIT: Additionally here is ...
Created on 26 September 2018
8. WYSIWYG HTML Editor in ABAP
(Tricks)
... to SAP. ZCL_HTML_EDITOR class, which is attached to this post, raises an event whenever someone click on save button in the editor, so you can easily handle it and then use new HTML for your purposes. ...
Created on 20 January 2016
9. ZDEMO_FALV14 - Popup calls
(FALV (Fast ALV Grid))
...    "FALV creation with only table passed   data(falv) = zcl_falv=>create( exporting i_popup = abap_true changing ct_table = sflight ).   "Add title variable   falv->title_v1 = 'ZDEMO_FALV14'. ...
Created on 06 January 2016
10. ZDEMO_FALV13 - Mix demo + own screen and container
(FALV (Fast ALV Grid))
...    from sflight. class lcl_test definition inheriting from zcl_falv.   public section.   protected section.     methods evt_at_set_title redefinition.   private section. endclass. ...
Created on 06 January 2016
11. ZDEMO_FALV12 - Error log
(FALV (Fast ALV Grid))
...    into corresponding fields of table @sflight   from sflight.   "FALV creation with only table passed   if p_embeed eq abap_true.    data(falv) = zcl_falv=>create( exporting i_applog_embedded = abap_true  changing ct_table = sflight ). ...
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))
...    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
14. ZDEMO_FALV09 - Cell settings
(FALV (Fast ALV Grid))
...          include type sflight. types:  styles type lvc_t_styl,         end of t_sflight. data: sflight type standard table of t_sflight. class lcl_test definition inheriting from zcl_falv. ...
Created on 06 January 2016
15. ZDEMO_FALV08 - Mass replace function
(FALV (Fast ALV Grid))
...    "FALV creation with only table passed   data(falv) = zcl_falv=>create( changing ct_table = sflight ).   "Add title variable   falv->title_v1 = 'ZDEMO_FALV08'.   "set whole grid editable ...
Created on 06 January 2016
16. ZDEMO_FALV07 - Columns (field catalog) settings
(FALV (Fast ALV Grid))
... the we can use standard old technique of getting frontend field catalog and then manipulating the entries or we can use column method which returns zcl_falv_column object and then using this object we ...
Created on 06 January 2016
17. ZDEMO_FALV06 - Grid Layout settings + "Mark" fiel
(FALV (Fast ALV Grid))
...    into corresponding fields of table @sflight   from sflight.   "FALV creation with only table passed   data(falv) = zcl_falv=>create( changing ct_table = sflight ).   "Add title variable ...
Created on 06 January 2016
18. ZDEMO_FALV05 - Adding/Removing/Disabling grid toolbar
(FALV (Fast ALV Grid))
...  "! done by Lukasz Pegiel for http://abapblog.com report zdemo_falv05. data: sflight type standard table of sflight. class lcl_test definition inheriting from zcl_falv.   public section. ...
Created on 06 January 2016
19. ZDEMO_FALV04 - Full Screen with fully dynamic GUI Status
(FALV (Fast ALV Grid))
...  report zdemo_falv04. data: sflight type standard table of sflight. class lcl_test definition inheriting from zcl_falv.   public section.   protected section.     "redefinition of event handler ...
Created on 06 January 2016
20. ZDEMO_FALV03 - Full Screen with GUI Status Partly Dynamic
(FALV (Fast ALV Grid))
...  report zdemo_falv03. data: sflight type standard table of sflight. class lcl_test definition inheriting from zcl_falv.   public section.   protected section.     "redefinition of event handler ...
Created on 06 January 2016
21. ZDEMO_FALV02 - Full screen with redefinitions
(FALV (Fast ALV Grid))
...  "! done by Lukasz Pegiel for http://abapblog.com report zdemo_falv02. data: sflight type standard table of sflight. class lcl_test definition inheriting from zcl_falv.   public section. ...
Created on 05 January 2016
22. ZDEMO_FALV01 - Standard full screen FALV
(FALV (Fast ALV Grid))
...    "FALV creation with only table passed   data(falv) = zcl_falv=>create( changing ct_table = sflight ).   "Add title variable   falv->title_v1 = 'ZDEMO_FALV01'.   "Display full screen grid ...
Created on 05 January 2016
23. FALV (Fast ALV Grid)
(FALV (Fast ALV Grid))
... you'd like to join us, you're more than welcomed.   Outcome   The outcome of this work is following: Package ZFALV Classes ZCL_FALV - main class, inheriting from CL_GUI_ALV_GRID ...
Created on 04 January 2016
24. Enhanced MB51 Part 6 - ZMB51 program
(Tricks)
...  form export_to_excel.   data: f_filename type string. * create zcl_excel_worksheet object   data: lo_excel          type ref to zcl_excel,         lo_worksheet      type ref to zcl_excel_worksheet. ...
Created on 28 March 2014
25. Characteristic's own input screen - Part 8 - example of use&#160;...
(How to...)
...  loop at s_object.   fs_class-object = s_object-low.   fs_class-class  = p_class.   fs_class-klart  = p_clty.   zcl_abapblog_com_classific=>get_object_details(     exporting       i_object           = fs_class-object ...
Created on 17 November 2013
26. Characteristic's own input screen - Part 7 - save characteristic value to databas
(How to...)
...      data: ft_allocvaluescurrnew type standard table of bapi1003_alloc_values_curr.     data: ft_return type standard table of bapiret2.     check i_data is not initial .     zcl_abapblog_com_classific=>move_ref_data_to_bapi_tables( ...
Created on 17 November 2013
27. Characteristic's own input screen - Part 6 - move reference data to bapi structure
(How to...)
...                    -charact = -name_char.                   assign component 'LOW' of structure  to .                   if sy-subrc eq 0.                     -value_from = zcl_abapblog_com_classific=>convert_char_value( ...
Created on 16 November 2013
28. Characteristic's own input screen - Part 5 - show characteristic's own update scre
(How to...)
... after user action zcl_abapblog_com_classific=>create_structure_for_class to create reference data structure zcl_abapblog_com_classific=>move_screen_val_to_ref_data to move screen values to reference data ...
Created on 14 November 2013
29. Characteristic's own input screen - Part 3 - Move reference data values to scree
(How to...)
...                  assign component 'LOW' of structure  to .                 if sy-subrc eq 0.                   -atflv = zcl_abapblog_com_classific=>convert_char_value(                                                    i_atnam       = i_atnam ...
Created on 14 November 2013
30. Call standard F4 search help with customized parameters
(How to...)
...    zcl_abapblog_com=>f4_with_customized_params(     exporting       i_display_only = space       i_max_records  = space       i_shlp_name    = 'H_SPFLI'       it_ddshifaces  = ft_interfaces ...
Created on 07 June 2013
  • Start
  • Prev
  • 1
  • 2
  • Next
  • End
Łukasz Pęgiel
ZCL FALV COLUMN - column fcat settings ESRUO - MM settings table - Part 3 FIELDCATALOG ALV Grid in the nutshell Field catalog - seltext JSON2ABAPtype COMPONENTS UPDATE PREPARE GUI ALV GRID MB51 FLAG VIRTUALBOX LVC FCAT BOM PROVIDE MBM Field catalog - no out ABAP IN ECLIPSE ABAP TABLEDESCR Create fieldcatalog from internal table ALV GRID IN THE NUTSHELL READ USER SETTINGS ALV GRID ROWMARK acrTYC Range to search in lower case fields LOAD COMPLEX AUTHORITY-CHECK Create a nice looking chart with CL CHART ENGINE - Part 3 - Chart Data and render #EC Mass replace popup for ALV grid TRANSFER FROM SLIS Enhanced MB51 Part 5 - Export from MB51 COM OPR ZDEMO FALV01 - Standard full screen FALV SAVE OBJECTS CMD API Classifications - Part 4 - example of use ZIP EWB Components allocation to routing operation multilevel BOM MEPO DOCUMENT Field catalog - rollname How to copy BOM using CEWB Function Modules TSK F4IF GET SHLP DESCR PERIOD AND DATE CONVERT OUTPUT EXTRACT COL SCMS XSTRING BINARY Selection Screen - Part1 - Parameters AiE REFRESH TABLE DISPLAY LOWER CASE KKEK FLOAT CURR HEADER HANDLE MM- GTGET GOS MANAGER Field catalog - edit mask sign IXML
  • 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.