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

Search for:
Search Only:

1. Classifications - Part 3 - get all <span class="highlight">objects</span> 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
2. ALV Grid in the nutshell: Field catalog - inttype - ABAP data type (C,D,N,...)
(ALV Grid in the nutshell)
As you can imagine, INTTYPE is just a presentation of DATATYPE in internal SAP format in most of cases. I wrote most of cases because it can also say if the field in internal table is a reference to other ...
Created on 18 December 2019
3. ABAP Favorites Eclipse plugin
(How to...)
...  a.Available views The plugin contains two separate views Favorites and Favorties Dev Objects. The difference between then is that in Favorites view you can create two kind of folders and in Favorites ...
Created on 29 June 2017
4. Why I like to code in ABAP in Eclipse
(Thoughts)
... the objects in code then you’re in heaven. In eclipse once you want to jump to method or function definition or implementation, you don’t have to save your current work and move to other, you just Ctrl ...
Created on 27 May 2016
5. ZCL_FALV - explanation of main methods and attributes
(FALV (Fast ALV Grid))
... to be disabled to grid toolbar COLUMNS  Protected - Table with columns objects BUILT_IN_SCREEN  Protected - Marked if built-in screen is used APPLICATION_LOG_EMBEDDED ...
Created on 09 January 2016
6. How to teach ABAP ???
(Thoughts)
... selection-screens,  screens,  dictionary objects, object oriented programming, alv grid, FM, FG, and so on.  After person is familiar with all of this then you can start to share some info about basic ...
Created on 24 November 2015
7. CL_PROGRESS_INDICATOR VS direct call of SAPGUI_PROGRESS_INDICATOR
(Tips)
...      i_processed          = sy-index    " Number of Objects Already Processed     i_total              = p_times1    " Total Number of Objects to Be Processed     i_output_immediately = abap_true    " X = Display Progress Immediately ...
Created on 28 April 2015
8. GOS - How to add business documents at creation of object
(Tricks)
... from temporary object to final one. Let's start with attachments, I will move them using cl_gos_service_tools=>move_linked_objects. Importing: I_TEMP_OBJECT TYPE BORIDENT-OBJKEY -> temporary key for ...
Created on 25 April 2014
9. 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
10. ESDUS, ESRUO - MM settings table - Part 3/3
(Tricks)
As we got a short description of ESDUS and ESRUO and connected FMs in previous parts, then now it's time for examples. Let's start with scenarios which I described in first part   1. When you open ...
Created on 14 April 2014
11. ESDUS, ESRUO - MM settings table - Part 2/3
(Tricks)
... are of ES_*USER_SETTINGS FMs are simillar to ES_*USER_OBJECTS FMs. But let's look on them closer. ES_READ_USER_SETTINGS will give you all parameters for a user for selected transaction / program / ...
Created on 09 April 2014
12. ESDUS, ESRUO - MM settings table - Part 1/3
(Tricks)
... cases you'll want to look at tables: ESRUO (MM: Recently Used Objects) ESDUS (MM: Dynamic User Settings)  and to function group MLSO which provides you few nice FM to handle entries in this tables:  ...
Created on 31 March 2014
13. How to check if for purchase requisition rejection can be reset?
(How to...)
... checking EBAN table. You have to use OO PR objects to be able to do so. Bellow you can find a method how to check if you can reset the rejection of the requisition done in the WF.    Importing: I_BANFN TYPE ...
Created on 18 March 2014
14. Characteristic's own input screen - Part 5 - show characteristic's own update scre
(How to...)
...            date                               = i_date *   TABLES *     OBJECTS                            = OBJECTS        exceptions          not_found                          = 1          no_objectid                        = 2 ...
Created on 14 November 2013
15. Copy routing (create on a base of existing one)
(Tricks)
...    data: f_mtk_ident type czcl_mtk_type.   data: ft_capp_opr type standard table of capp_opr.   data: fs_opr_class_data type opr_class_data.   data: f_error type cpcc_message_type. * objects for loading ...
Created on 26 May 2013
16. 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
17. Classifications - Part 2 - Get Object Details
(How to...)
  In the first part I show how to create a structure on a base of class characteristics, now I will describe how to get the characteristics values for a object and how to fill the structure we've created ...
Created on 18 May 2013
18. Load variant to single subscreen (selection screen)
(How to...)
...  *     L_PARAMS_NONV               = L_PARAMS_NONV *     L_SELOP                     = L_SELOP *     L_SELOP_NONV                = L_SELOP_NONV       valutab                     = ft_params *     OBJECTS                     = OBJECTS ...
Created on 02 May 2013
19. Save variant for single selection screen 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
20. Delete Routing - piece of cake
(How to...)
...    data: f_tsk_selection type cpsc_tsk_sel_type.   data: f_tsk_ident type  cpcl_tsk_ident_type.   data: f_mtk_ident type czcl_mtk_type. * objects for loading   f_classes_in_workarea-mtk_inarea = 'X'. ...
Created on 18 April 2013
21. Free global data of a program at once
(Tricks)
... create a report which just show some figures and you don't need anymore all the internal tables or objects that you used to prepare output table. So to free memory then just before calling ALV I was ...
Created on 10 April 2013


Łukasz Pęgiel
BOM PROVIDE MBM ALV Grid in the nutshell Field catalog - quantity LOOP ABAP PERIOD AND DATE CONVERT OUTPUT INTTYPE VL473 FIELDCATALOG FREE SESSION CHECK DARK THEME Enhanced MB51 Part 4 - Call MB51 LOWER CASE FALV Field catalog - tooltip ALV GRID IN THE NUTSHELL TABNAME ABAP EXTENSIONS Field catalog - rollname ABAP Extensions - Automatic Logon ECLIPSE PLUGIN SCMS XSTRING BINARY ZDEMO FALV08 - Mass replace function QM ATTACHMENTS FALV14 - Popup calls GUI TITLE MB51 ENHANCEMENT RM07DOCS ALV GRID OLE2 OBJECT LVC FCAT GOS MANAGER GUI ALV GRID Custom selection-screen fields for MD07 MS07 EXPONENT COMPONENTS REFRESH SALV CONTROLLER METADATA Extend allowed runtime of a program RSBCS EXAMPLE EMAIL CSRF token validation failed APPEND USER SETTINGS SLICENSE CTMS CLASS DDB ITM CREATE COPY STARTING NEW TASK ADT MB51 NOLIST GET SELECTED COLUMNS ROWS EXPORT TO MEMORY ID SET VAL FROM TABLE FOR FIRST DISPLAY CHANGE CREATED VARIANT REUSE MERGE RSDBRUNT READ TEXT LOAD COMPLEX TSK SYMBOL
  • 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.