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

Search for:
Search Only:

1. Characteristic's own input <span class="highlight">screen</span> - 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
2. Characteristic's own input <span class="highlight">screen</span> - Part 7 - save characteristic value to databas
(How to...)
...      sort ft_allocvaluescurrnew by charact value_from value_to value_relation currency_from currency_to.     loop at ft_allocvalueschar assigning .       if f_different is not initial.         exit. ...
Created on 17 November 2013
3. Characteristic's own input <span class="highlight">screen</span> - Part 6 - move reference data to bapi structure
(How to...)
...          .       loop at mt_classcharacteristics assigning .         "get characteristic ID         call function 'COC1_FEATURE_CHECK'           exporting *           feature_id                  = atinn ...
Created on 16 November 2013
4. Characteristic's own input <span class="highlight">screen</span> - Part 4 - Move screen values to reference dat
(How to...)
...      endif.     assign m_p to .     assign c_data->* to .     if sy-subrc eq 0.       assign component i_atnam of structure  to .       if sy-subrc eq 0.         refresh .         loop at it_values assigning . ...
Created on 14 November 2013
5. Characteristic's own input <span class="highlight">screen</span> - Part 3 - Move reference data values to scree
(How to...)
...        assign component i_atnam of structure  to .       if sy-subrc eq 0.         loop at  assigning .           insert initial line into table ct_values assigning .           if sy-subrc eq 0. ...
Created on 14 November 2013
6. Custom selection-<span class="highlight">screen</span> fields for MD07/MS07
(Tips)
...      loop at gt_mdma assigning .       read table gt_vendor assigning  with key matnr = -matnr       binary search.       if sy-subrc eq 0.         move -matnr to mdmwx-matnr.         move -werks to mdmwx-werks. ...
Created on 16 June 2013
7. Selection <span class="highlight">Screen</span> - Part1 - Parameters
(For beginners)
...  at selection-screen output.   "loop at screen elements   loop at screen.     "if we find elements of our group     if screen-group1 eq 'GR1'.       "then change the font color ...
Created on 08 June 2013
8. Load variant to single sub<span class="highlight">screen</span> (selection screen)
(How to...)
...          " clear current content of selection fields         loop at ft_params into fs_params.           read table ft_sscr with key name = fs_params-selname binary search transporting no fields. ...
Created on 02 May 2013
9. Save variant for single selection <span class="highlight">screen</span> subscreen
(How to...)
...  *     GLOBAL_SSCR       = GLOBAL_SSCR    exceptions      no_objects        = 1      others            = 2             .   if sy-subrc eq 0.     loop at ft_sscr into fs_sscr.       fs_selopt-sign = 'I'. ...
Created on 23 April 2013
10. ATC Pseudo Comments list
(Tips)
...  14 N Read NAMETAB CI_IMPORT_NAM   CL_CI_TEST_CRITICAL_STATEMENTS 15 W Write NAMETAB CI_TABL_EXCEPTN   CL_CI_TEST_DB_OPS_IN_LOOPS ...
Created on 26 September 2018
11. Creating ABAP type definition from JSON structure (JSON2ABAPtype)
(How to...)
...    endmethod.   method display.     cl_demo_output=>display( create_types( ) ).   endmethod.   method check_object.     loop at i_abap_type->components assigning field-symbol().       data(field) = |i_data->|. ...
Created on 20 August 2018
12. How to copy BOM using CEWB Function Modules
(How to...)
...          others           = 2.     if sy-subrc eq 0.       data: i_itm_class_data_new type itm_class_data.       data: i_alternatives_new type cscl_alt_tb_type.       loop at e_itm_class_data assigning field-symbol(). ...
Created on 28 October 2015
13. CL_PROGRESS_INDICATOR VS direct call of SAPGUI_PROGRESS_INDICATOR
(Tips)
... remember I was always using SAPGUI_PROGRESS_INDICATOR FM to display such messages on the screen. When used inside loops I often was manually dividing current tabix by selected variable (for example 1000) ...
Created on 28 April 2015
14. Popup with multi-select ALV
(How to...)
...          sort ft_row_no by row_id ascending.         create data ft_table_ref like ct_outtab.         assign ft_table_ref->* to .         [] = ct_outtab[].         loop at  assigning .           read table ft_row_no with key row_id = sy-tabix binary search transporting no fields. ...
Created on 29 April 2014
15. Mass replace popup for ALV grid
(Tips)
...    if sy-dynnr eq 1001.     perform set_ss_status.     loop at screen.       if screen-name cp '*P_*01*' and g_par01_type is initial.         clear: p_parf01, p_part01.         screen-active = 0. ...
Created on 27 April 2014
16. EWB Components allocation to routing operation (multilevel BOM)
(How to...)
...       "delete current assignment of components by setting LOEKZ on PLMZ (save directly after)       clear f_error .       loop at ft_com_class_data assigning .         call function 'CP_CL_P_OPR_ALLOCATION_PROVIDE' ...
Created on 18 April 2014
17. Enhanced MB51 Part 6 - ZMB51 program
(Tricks)
...          and mbew~bklas in s_bklas.     refresh matnr[].     loop at gt_marc assigning .       clear matnr.       matnr-sign = 'I'.       matnr-option = 'EQ'.       matnr-low = -matnr. ...
Created on 28 March 2014
18. Enhanced MB51 Part 4 - Call MB51
(Tricks)
...    assign mt_exlist->* to .   assign ms_exlist->* to .   loop at mt_list assigning .     move-corresponding  to .     append  to ct_list.".     clear .     delete table mt_list from . ...
Created on 27 March 2014
19. 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
20. Call standard F4 search help with customized parameters
(How to...)
...      exporting       shlpname = i_shlp_name       shlptype = 'SH'     importing       shlp     = f_shlp.   loop at it_ddshifaces assigning .     read table f_shlp-interface[] with key shlpfield = -shlpfield assigning . ...
Created on 07 June 2013
21. Create a nice looking chart with CL_GUI_CHART_ENGINE - Part 3 - Chart Data and render
(How to...)
... some data but I will use dummy one just to show you how to create the chart, you can replace this part with loop on your internal table or even better change it in the way that you'll pass internal ...
Created on 06 May 2013
22. Subtotal lines of ALV GRID OO as content separator
(Tricks)
... to set up a summary on that field so subtotal lines are displayed in grid. Our fields are defined so lets set fieldcatalog and sort properties for them (lvc_s_sort): loop at gt_fcat assigning .      case ...
Created on 28 April 2013


Łukasz Pęgiel
Extend allowed runtime of a program AT SELECTION-SCREEN OUTPUT ALV POPUP LVC TRANSFER SLIS RESET REJ ALLOWED SAVE USER SETTINGS FIELDCATALOG ABAP DEVELOPMENTS TOOLS ABAP IN ECLIPSE ESRUO GUI ALV GRID GUI TITLE Enhanced MB51 Part 4 - Call MB51 GET GLOBALS FROM SLVC FULLSCR DDIC FIELD LIST FCAT DELETE TSK IXML PARSER CHART ENGINE REUSE MERGE ZCL FALV COLUMN - column fcat settings BINARY RELATION CREATE COMMIT ADT ALV GRID TEACH ABAP F4 Help for external date SAPGUI PROGRESS INDICATOR ALV Grid in the nutshell Field catalog - sp group - Group key ALINK CONNECTION Create XLSX MHTML file from internal table in background Create a nice looking chart with CL ENGINE - Part 1 - Chart Designer ABAP ELEMDESCR SALV CONTROLLER METADATA GTGET CMD API deletes contact persons Field catalog - emphasize Secure call of starting new task using RM FREE SESSION CHECK PERIOD AND DATE CONVERT INPUT BAPI OUTB DELIVERY CREATENOREF BCS TABLE Field catalog - no sum CHECK COC1 FEATURE APPEND ZDEMO FALV14 - Popup calls Field catalog - outputlen FALV05 - Adding Removing
  • 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.