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

Search for:
Search Only:

Page 1 of 2

1. Endless <span class="highlight">loop</span> in BADI ME_PROCESS_PO_CUST
(Tips)
... from Business Add-In ME_PROCESS_PO_CUST not adopted" then after you check SAP notes for that error and none of them help then you may try with solution which you can find bellow. The endless loop ...
Created on 06 June 2013
2. ALV Grid in the nutshell: Field catalog - icon
(ALV Grid in the nutshell)
... into internal table, but in productive programs, you’ll probably do this during the loop over internal table, as probably you’ll want to setup different icons for a row, depending on the content of other ...
Created on 24 June 2019
3. 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
4. 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
5. Copying is not poss.because an entry is missing in Table TVCPL VL473
(How to...)
...          created_items = created_items    " Generated Delivery Items         return        = error_log.    " Return Parameter(s)     append lines of error_log to bapi_log.     loop at error_log assigning field-symbol() where type ca 'EAX'. ...
Created on 15 February 2017
6. Re-explode or delete purchase order line subcontracting BOM
(Tricks)
...      loop at items assigning field-symbol().       item = -item->get_data( ).       if item-ebelp eq i_position.         exit.       else.         clear item.       endif.     endloop.  ...
Created on 04 February 2017
7. 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
8. 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
9. 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
10. 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
11. GOS - How to add business documents at creation of object
(Tricks)
...        others             = 4          ).   if sy-subrc  0. * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO *            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.   endif.   loop at mt_connections assigning . ...
Created on 25 April 2014
12. GOS - Link Business Documents from PR to PO
(Tricks)
...  *            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.   endif.   loop at mt_connections assigning .     clear ms_toavo.     move-corresponding  to ms_toavo.     ms_toavo-object_id = i_purchase_order. ...
Created on 25 April 2014
13. 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
14. 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
15. Enhanced MB51 Part 5 - Export from MB51
(Tricks)
...      loop at it_list assigning .       move-corresponding  to ms_list.       delete table it_list from .       append ms_list to mt_list.     endloop.     refresh: it_list[].     export export from mt_list to memory id 'ZMB51_FULLLIST_EXPORT'. ...
Created on 28 March 2014
16. 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
17. 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
18. 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
19. Characteristic's own input screen - 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
20. Characteristic's own input screen - 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
21. Characteristic's own input screen - 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
22. Characteristic's own input screen - 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
23. Scan program for authority-check
(How to...)
...  * Implement a suitable exception handling here   endif.   "select programs from trdir   select name from trdir into corresponding fields of table gt_trdir    where name in s_prgnam.   loop at gt_trdir assigning . ...
Created on 13 July 2013
24. Extend allowed runtime of a program
(Tricks)
... the selects statements to parts or to select single in the loop.   Although it's nice to know this possibility my advice is to not to use it very often as the less time you have for program run the ...
Created on 25 June 2013
25. Custom selection-screen 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
26. Selection Screen - 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
27. 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
28. How to select proper configuration entry
(Tips)
...  loop at gt_sflight assigning .   " static version where you manually check key fields and at each change of   " your configuration table structure you have to adjust it   clear gs_zconf_static. ...
Created on 31 May 2013
29. Classifications - Part 4 - example of use
(How to...)
As I promised I will show how to use the methods we've prepared in previous parts of this tread. I will write simple program that calls the method get_objects_of_class and then loops through the results ...
Created on 26 May 2013
30. Classifications - Part 3 - get all objects assigned to class
(How to...)
... this method and FM CLAF_OBJECTS_OF_CLASS  to get the characteristics values for all of objects that are classified by given class. I will firstly read all assignments to the class, then I will loop through ...
Created on 18 May 2013
  • Start
  • Prev
  • 1
  • 2
  • Next
  • End


Łukasz Pęgiel
LVC FCAT ALV Grid in the nutshell Field catalog - no sign EXPONENT ALV GRID IN THE NUTSHELL OUTPUTLEN ALV GRID TRANSFER SLIS ABAP TEST COCKPIT SCMS STRING XSTRING Field catalog - Hotspot - ALV control SingleClick-sensitive ZDEMO FALV01 - Standard full screen FALV LZERO Create a nice looking chart with CL GUI CHART ENGINE - Part 1 - Chart Designer ROUND DELETE USER SETTINGS SAP SCRIPT ESRUO - MM settings table - Part 2 EMPHASIZE RM07DOCS APPEND OBJECTS GET GLOBALS FROM SLVC FULLSCR READ TEXT PURCHASE ORDER sum CTMS DDB HAS VALUES INTERNAL ESDUS FRONTEND SERVICES GTENVIRONMENT VARIABLE ENGINE TSK UNLOCK SMP DYNTXT Field catalog - qfieldname ITM CREATE COPY TIMER GROUP REFRESH TABLE DISPLAY ALV GRID SAVE ISOLATE SELSCREEN ZCL FALV LAYOUT - layout settings XML How to select proper configuration entry convext MDC7 JSON2ABAPtype ALINK CONNECTION GTUPDATE Field catalog - round SALV CONTROLLER METADATA GTGET FIELDCATALOG SELECTOPTIONS BAPI CLASS SET READY FOR INPUT Field catalog - just COMPONENTS PRETTY
  • 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)
  • 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
  • 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.