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

Search for:
Search Only:

1. ALV Grid in the nutshell: Field catalog - tooltip
(ALV Grid in the nutshell)
... the value from TOOLTIP will be used as description used to describe the column in the change layout screen. Figure 82 ZDEMO_AIN_CL34 ABAP Code for Tooltip Figure 83 ZDEMO_AIN_CL34 ...
Created on 12 September 2019
2. ALV Grid in the nutshell: Field catalog - convexit
(ALV Grid in the nutshell)
... _OUTPUT. _INPUT and _OUTPUT describes if the FM is responsible for converting external value into internal (INPUT) or form internal value into external (OUTPUT).   Figure 75 Search ...
Created on 29 July 2019
3. ALV Grid in the nutshell
(ALV Grid in the nutshell)
... you, but I hope it will help you in your daily job.  From all available grids as the one to describe I’ve selected CL_GUI_ALV_GRID, which was, or maybe still is, called by many persons ALV OO. ...
Created on 24 June 2019
4. Speed-up your Eclipse installation
(How to...)
... I also feel that it's working more smoothly. I will not describe what for the parameters are responsible. You can find it on many websites in the net.   ...
Created on 15 November 2018
5. ATC Pseudo Comments list
(Tips)
... FIELD_EXT CONCATO W Old Concatenate (&1) length conflict &2 -> &3 CI_FLDEXT_OK   CL_CI_TEST_FIELD_EXT DESCRIBE N DESCRIBE FIELD (&1) CI ...
Created on 26 September 2018
6. Creating ABAP type definition from JSON structure (JSON2ABAPtype)
(How to...)
... alue 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&n ...
Created on 20 August 2018
7. Re-explode or delete purchase order line subcontracting BOM
(Tricks)
To continue previous two posts about re-exploding and deleting subcontracting BOM of purchase requisition item, let me describe you how to do the same thing with subcontracting BOM of purchase order line. ...
Created on 04 February 2017
8. Why I like to code in ABAP in Eclipse
(Thoughts)
... the same time. No more Ctrl+H.     vi.      ABAPDoc – this function is really nice also, you can easily describe your methods and magic Ctrl+1 allows you to ...
Created on 27 May 2016
9. ZCL_FALV - explanation of main methods and attributes
(FALV (Fast ALV Grid))
... oid-row_id.   MASS_REPLACE Mass replace function was described in this article and I've decided to include this into FALV project. So you can call it yourself or you can just add function FC ...
Created on 09 January 2016
10. ZDEMO_FALV13 - Mix demo + own screen and container
(FALV (Fast ALV Grid))
...    falv_redef ?= lcl_test=>create( exporting i_applog_embedded = abap_false  i_popup = abap_true                               i_subclass = cl_abap_classdescr=>describe_by_name( p_name = 'LCL_TEST'  ...
Created on 06 January 2016
11. ZDEMO_FALV09 - Cell settings
(FALV (Fast ALV Grid))
... est.   falv ?= lcl_test=>create( exporting  i_subclass = cl_abap_classdescr=>describe_by_name( p_name = 'LCL_TEST' )                               changing ct_table = sflight    )& ...
Created on 06 January 2016
12. ZDEMO_FALV05 - Adding/Removing/Disabling grid toolbar
(FALV (Fast ALV Grid))
... n   data falv type ref to lcl_test.   falv ?= lcl_test=>create( exporting  i_subclass = cl_abap_classdescr=>describe_by_name( p_name = 'LCL_TEST'&nbs ...
Created on 06 January 2016
13. ZDEMO_FALV04 - Full Screen with fully dynamic GUI Status
(FALV (Fast ALV Grid))
... definition   data falv type ref to lcl_test.   falv ?= lcl_test=>create( exporting  i_subclass = cl_abap_classdescr=>describe_by_name( p_name = 'LCL_ ...
Created on 06 January 2016
14. ZDEMO_FALV03 - Full Screen with GUI Status Partly Dynamic
(FALV (Fast ALV Grid))
... efinition   data falv type ref to lcl_test.   falv ?= lcl_test=>create( exporting  i_subclass = cl_abap_classdescr=>describe_by_name( p_name = 'LCL_T ...
Created on 06 January 2016
15. ZDEMO_FALV02 - Full screen with redefinitions
(FALV (Fast ALV Grid))
... flight   from sflight.   "creation of falv with local redefinition   data falv type ref to lcl_test.   falv ?= lcl_test=>create( exporting  i_subclass = cl_abap_classdescr=>;describe_by_name( p_name = 'LCL_TES ...
Created on 05 January 2016
16. The SIN of progress indicator
(Tricks)
In my article about cl_progress_indicator I've mentioned that sometimes progress showing is more time consuming than the action which is described by it, so you must be careful when using progress ...
Created on 19 August 2015
17. Mass replace popup for ALV grid
(Tips)
...      return.   endif.   describe table gt_mass_sel_columns lines f_lines.   if f_lines gt 10.     message s001(00) display like 'W' with 'Maximum number of columns in mass change function is 10'. ...
Created on 27 April 2014
18. 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 ...
Created on 14 April 2014
19. ESDUS, ESRUO - MM settings table - Part 2/3
(Tricks)
ESRUO table and FM which takes care about reading/adding/deleting entries there was described in previous part ( ESDUS, ESRUO - MM settings table - Part 1/3 ), so now is the turn for ESDUS table and ...
Created on 09 April 2014
20. Enhanced MB51 Part 1 - Goal and prerequisites
(Tricks)
... existing columns.   In the next parts I will describe how exactly I've done this but to be able to use MB51 optimized I recommend firstly to apply following OSS Notes: 1516684 MKPF fields ...
Created on 24 March 2014
21. Characteristic's own input screen - Part 4 - Move screen values to reference data
(How to...)
...                    mo_type ?= cl_abap_typedescr=>describe_by_data( p_data = <any> ). ...
Created on 14 November 2013
22. Scan program for authority-check
(How to...)
...      describe table ft_tokens lines f_lines.     "go through results     loop at ft_tokens assigning <token>. ...
Created on 13 July 2013
23. How to select proper configuration entry
(Tips)
... for all entries then you have to do some little coding to handle it as you just cannot check only if key fields are same as in your checked structure. There is a way to do it and the method described can ...
Created on 31 May 2013
24. 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 on 18 May 2013
25. Classifications - Part 1 - prepare structure for class data
(How to...)
...      " object table     ms_comp-name = 'OBJECT_NUMBER'.     ms_comp-type ?= cl_abap_elemdescr=>describe_by_name( p_name = 'OBJNUM' ). ...
Created on 17 May 2013
26. F4 Help for external date
(How to...)
In one of the previous articles I described how to Convert date to and from external date type, so we can display in grid or in screen field properly formated date. Today I will show how to create ...
Created on 24 April 2013
27. Free global data of a program at once
(Tricks)
...          m_classref ?=  cl_abap_classdescr=>describe_by_data( <any> ).         if sy-subrc eq 0 and m_classref->kind eq 'R'. ...
Created on 10 April 2013
Łukasz Pęgiel
ALV GRID IN THE NUTSHELL ALV GRID FIELDCATALOG FALV QM ATTACHMENTS SCMS XSTRING BINARY SAP DEVELOPMENT TOOLS FOR ECLIPSE GUI ALV GRID IXML ISTREAM REUSE DISPLAY LVC FCAT ABAP4 CALL TRANSACTION ALV Grid in the nutshell Field catalog - edit mask CMD API EXTRACT DDSHIFACE ABAP STRUCTDESCR APPEND USER OBJECTS GET SCROLL INFO VIA chart designer SYM FILENAME Free global data of a program at once PRINTOUTS MEREQ FACTORY ESDUS PURCHASE REQUISITION EXPORT TO MEMORY ID AUTHORITY-CHECK Field catalog Battleships game two players DFIELDNANE MEPO DOCUMENT SALV LEX RM07DOCS STREAM LZERO COMPONENTS UPDATE PREPARE MB51 ENHANCEMENT DELETE LOWERCASE Field catalog - sp group - Group key SAVE SETTINGS Enhanced MB51 Part 4 - Call MB51 BAPI CLASS READ FIELDNAME REFRESH FROM SELECTOPTIONS Custom selection-screen fields for MD07 MS07 COL TOOL ACCESS SELTEXT EDITOR TABLE WITH STATUS Field catalog - ifieldname ITM CREATE COPY MESSAGE HANDLER Endless loop in BADI ME PROCESS CUST REQ STRING ZDEMO
  • 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

  • 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
  • ALV Grid in the nutshell: Field catalog - rollname

Most Read

  • Create XLSX/MHTML file from internal table in background
  • Refresh ALV GRID and keep position and current cell
  • Call standard F4 search help with customized parameters
  • FALV (Fast ALV Grid)
  • Dynamic GUI STATUS & TITLE with ABAP code
  • 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
  • Subtotal lines of ALV GRID OO as content separator
  • Create fieldcatalog from internal table
  • Endless loop in BADI ME_PROCESS_PO_CUST
  • EWB Components allocation to routing operation (multilevel BOM)
  • How to access private or protected data and methods of CL_GUI_ALV_GRID
  • Popup with multi-select ALV
  • Save message with attachment in Outlook's Drafts

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.