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

Search for:
Search Only:

Page 1 of 2

1. Selection-Screen Function Key in Form, Function Module or Method
(Tricks)
...        else.         if not line_exists(  -excl[ fcode = button ] ).            append value #( fcode = button ) to  -excl.         endif.       endif.     endif.   endmethod.   method deactivate_ss_button. ...
Created on 21 November 2018
2. Creating ABAP type definition from JSON structure (JSON2ABAPtype)
(How to...)
...      init( ).     data: level type i value 0.     data(abap_type) = cast cl_abap_structdescr( cl_abap_structdescr=>describe_by_data_ref( p_data_ref = i_data ) ).     append value #( level = level name = 'JSON' type = abap_type->type_kind absolute_type = abap_type->absolute_name structure = abap_true id = get_id( ) ) to hierarchy. ...
Created on 20 August 2018
3. 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
4. Re-explode or delete purchase order line subcontracting BOM
(Tricks)
...                       importing e_mdpa = mdpa e_mdlb = mdlb ).     check mdpa is not initial and mdlb is not initial.     append mdlb to mdlb_tab.     call function 'ME_COMPONENTS_MAINTAIN' ...
Created on 04 February 2017
5. Deletion of subcontracting BOM in Purchase Requisition
(Tricks)
...        exporting         im_eban = eban         im_ebkn = ebkn       importing         ex_mdlb = mdlb.     append mdlb to mdlb_tab.     call function 'ME_COMPONENTS_UPDATE_PREPARE'       exporting ...
Created on 03 February 2017
6. Re-explosion of subcontracting BOM in Purchase Requisition
(Tricks)
...        exporting         im_eban = eban         im_ebkn = ebkn       importing         ex_mdlb = mdlb.     append mdlb to mdlb_tab.     call function 'ME_COMPONENTS_UPDATE_PREPARE' ...
Created on 02 February 2017
7. Dynamic GUI STATUS & TITLE with ABAP code
(Tricks)
...        delete allowed_buttons where function = iv_button.       append iv_button to excluded_buttons.     endif.   endmethod.   method show_button.     check iv_button is not initial.     if not line_exists( allowed_buttons[ function = iv_button ] ). ...
Created on 11 July 2015
8. Mass replace popup for ALV grid
(Tips)
...    data: fs_exclude like line of ft_exclude.   if sy-dynnr eq 1001.     "Exclude functions which are not used from modal SS     fs_exclude-fcode = 'GET'.     append fs_exclude to ft_exclude. ...
Created on 27 April 2014
9. GOS - How to add business documents at creation of object
(Tricks)
...      ms_object_id-option = 'EQ'.     ms_object_id-low = i_temp_object.     append ms_object_id to mr_object_id.   else. "change the date to tommorow for all  temporary files older than 1 day. ...
Created on 25 April 2014
10. EWB Components allocation to routing operation (multilevel BOM)
(How to...)
...    append fs_mbm_matnr to fs_mbm_sel_type-matnr.   concatenate 'I' 'EQ' i_werks into fs_mbm_werks.   append fs_mbm_werks to fs_mbm_sel_type-werks. * objects for loading ...
Created on 18 April 2014
11. ESDUS, ESRUO - MM settings table - Part 3/3
(Tricks)
...  *  isave           = 'X' * TABLES *   IESDUS          = IESDUS  exceptions    not_found       = 1    others          = 2           . if sy-subrc eq 0. endif. call function 'ES_APPEND_USER_SETTINGS' ...
Created on 14 April 2014
12. ESDUS, ESRUO - MM settings table - Part 2/3
(Tricks)
... value in IACTIVE. If you want to save the settings directly to DB then you need to set the flag in ISAVE parameter, in other case you'll need to call FM ES_SAVE_USER_SETTINGS later. call function 'ES_APPEND_USER_SETTINGS' ...
Created on 09 April 2014
13. ESDUS, ESRUO - MM settings table - Part 1/3
(Tricks)
... ES_READ_USER_OBJECTS ES_APPEND_USER_OBJECTS ES_DELETE_USER_OBJECTS ES_SAVE_USER_OBJECTS ES_READ_USER_SETTINGS ES_APPEND_USER_SETTINGS ES_SAVE_USER_SETTINGS ES_DELETE_USER_SETTINGS As you can ...
Created on 31 March 2014
14. Enhanced MB51 Part 6 - ZMB51 program
(Tricks)
...        append gs_alv to gt_alv.       clear gs_alv.     endif.   endloop.   refresh: gt_mkpf[], gt_t157e, gt_vendor[], gt_marc[], gt_blpp[],   gt_mb51res[]. endform.                    "data_collection ...
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)
...    f_text = i_text.   "get lenght   f_times = strlen( f_text ).   "translate to upper case so we have always same start   translate f_text to upper case.   "append initial line to range and put first value into table ...
Created on 13 March 2014
18. Characteristic's own input screen - Part 5 - show characteristic's own update scre
(How to...)
...          others                      = 6.     if sy-subrc  0. *   Error       raise characteristic_unknown.     endif.     ms_api_char-atinn = m_atinn.     append ms_api_char to mt_api_char. ...
Created on 14 November 2013
19. 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
20. Custom selection-screen fields for MD07/MS07
(Tips)
...          move -berid to mdmwx-berid.         append mdmwx. clear mdmwx.       endif.     endloop.   else. "append all materials to MDMWX     loop at gt_mdma assigning .       move -matnr to mdmwx-matnr. ...
Created on 16 June 2013
21. Selection Screen - Part1 - Parameters
(For beginners)
...    fs_values-key  = 'K1'. "key is the value that will be passed to parameter   fs_values-text = 'Text of K1'. "descritpion of paramter shown in listbox   append fs_values to ft_values. ...
Created on 08 June 2013
22. Call standard F4 search help with customized parameters
(How to...)
...    fs_interface-shlpfield = 'CARRID'.   fs_interface-valfield  = 'X'.   fs_interface-value     = p_carrid. *  fs_interface-dispfield = 'X'.   append fs_interface to ft_interfaces. ...
Created on 07 June 2013
23. Endless loop in BADI ME_PROCESS_PO_CUST
(Tips)
...            append fs_condcheck to ft_condcheck[].           export ft_condcheck = ft_condcheck                  f_checkheader = f_checkheader                  to memory id 'CONDADJUST'. ...
Created on 06 June 2013
24. Copy routing (create on a base of existing one)
(Tricks)
...    f_classes_in_workarea-bom_inarea = 'X'. * fill selection conditions   concatenate 'I' 'EQ' f_plnty_s into f_tsk_plnty_selection.   append f_tsk_plnty_selection to f_tsk_selection-plnty. ...
Created on 26 May 2013
25. Classifications - Part 1 - prepare structure for class data
(How to...)
...      ms_comp-type ?= cl_abap_elemdescr=>describe_by_name( p_name = 'OBJNUM' ).     append ms_comp to mt_comp_final.     ms_comp-name = 'CLASS'.     ms_comp-type ?= cl_abap_elemdescr=>describe_by_data( p_data = i_class ). ...
Created on 17 May 2013
26. Create XLSX/MHTML file from internal table in background
(Tricks)
...      call function 'SCMS_XSTRING_TO_BINARY'       exporting         buffer          = g_xstring *       APPEND_TO_TABLE = ' '       importing         output_length   = g_size       tables         binary_tab      = gt_bintab ...
Created on 12 May 2013
27. Create a nice looking chart with CL_GUI_CHART_ENGINE - Part 2 - Customization
(How to...)
In part one for this tutorial I quickly shown you how to create a chart customizing using Chart Designer, in this part I will show how I store and use such customizing. For the beginning I'll tell ...
Created on 04 May 2013
28. Load variant to single subscreen (selection screen)
(How to...)
...                assign (f_fieldname) to .               if sy-subrc eq 0.                 "firstly append initial line to be able to assign components                 append initial line to  assigning . ...
Created on 02 May 2013
29. Save variant for single selection screen subscreen
(How to...)
...        fs_selopt-option = 'EQ'.       fs_selopt-low = fs_sscr-name.       append fs_selopt to fr_selopt.     endloop. *delete parameters and values not used on our subscreen     delete ft_params where selname not in fr_selopt. ...
Created on 23 April 2013
30. Delete Routing - piece of cake
(How to...)
...  * fill selection conditions   concatenate 'I' 'EQ' f_plnty into f_tsk_plnty_selection.   append f_tsk_plnty_selection to f_tsk_selection-plnty.   concatenate 'I' 'EQ' f_plnnr into f_tsk_plnnr_selection. ...
Created on 18 April 2013
  • Start
  • Prev
  • 1
  • 2
  • Next
  • End


Łukasz Pęgiel
COC1 FEATURE CHECK FIELDCATALOG CALL TRANSFORMATION LOAD COMPLEX TSK PRETTY PRINTER BINARY RELATION CREATE COMMIT COM DELETE VRM SET VALUES JSON2ABAPtype SAPGUI FUNCTIONCODE ALV Grid in the nutshell Field catalog F4IF GET SHLP DESCR RESET REJ ALLOWED Field catalog - seltext GUI ALV GRID Classifications - Part 4 - example of use Enhanced MB51 Part 6 - ZMB51 program Field catalog - reptext Heading LVC FCAT MB51 ALV GRID IN THE NUTSHELL GUI STATUS PURCHASE ORDER RELEASABLE SELECTED CELLS SUBTOTAL TEXT SCMS XSTRING SAVE FALV ATC Pseudo Comments list REQ FACTORY SAP TechEd 2016 SCAN ABAP-SOURCE ALINK CONNECTION ZDEMO FALV11 - Editable Grid settings SIGN ABAP Favorites Eclipse plugin ALV GRID AiE Field catalog - sp group - Group key Secure call of starting new task using RM FREE SESSION CHECK REQUISITION Reset rejection of Purchase Requisition Custom selection-screen fields for MD07 MS07 GTFIND USER SETTINGS BAPI EXCHANGERATE VIRTUALBOX Field catalog - do sum PERIOD AND DATE CONVERT OUTPUT ABAP TABLEDESCR Range to search in lower case fields FALV Fast ALV Grid - First blood ITM
  • 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.