Twitter

Twitter timeline

Tweets by @abapblog
  • Home
  • About me
  • FALV
  • Articles
    • Tricks
    • FALV (Fast ALV Grid)
    • 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: 47 results found.

Search for:
Search Only:

Page 1 of 2

1. SAP Script error with percentages using decimal field
(Tips)
If you would ask me if I would write something about SAP Script then I would definitely answer "Hell no!". I hate SAP Script to be honest, it has for me only one advantage - speed of printou ...
Created on 03 June 2017
2. Re-explode or delete purchase order line subcontracting BOM
(Tricks)
...  class lcl_subcontracting definition.   public section.     constants: action_delete  type c value 'D',                action_explode type c value ' ...
Created on 04 February 2017
3. Deletion of subcontracting BOM in Purchase Requisition
(Tricks)
... 0'. class lcl_subcontracting definition.   public section.     class-methods: delete_pr_bom importing value(i_requsition)    type eban-b ...
Created on 03 February 2017
4. Re-explosion of subcontracting BOM in Purchase Requisition
(Tricks)
...                   p_bnfpo type eban-bnfpo default '00010'. class lcl_subcontracting definition.   public section. ...
Created on 02 February 2017
5. How to handle CL_GUI_ALV_GRID events in SALV
(Tricks)
... and you can modify layout or field catalog settings to make it editable.   Please check following code to see example of usage: report zsalv_grid_events. class lcl_grid_trick definition ...
Created on 09 October 2016
6. Why I like to code in ABAP in Eclipse
(Thoughts)
... 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 + Click, and ...
Created on 27 May 2016
7. How to access private or protected data and methods of CL_GUI_ALV_GRID
(Tricks)
... from CL_GUI_ALV_GRID, which is normally not possible.   When you look into the class definition you'll notice that there is only one global friend - interface IF_ALV_RM_GRID_FRIEND which has no ...
Created on 26 May 2016
8. ZCL_FALV_LAYOUT - layout settings
(FALV (Fast ALV Grid))
...      methods set_excp_group importing value(iv_value) type lvc_exgrp .     methods set_detailinit importing value(iv_value) type lvc_detini  ...
Created on 10 January 2016
9. ZCL_FALV_COLUMN - column (fcat) settings
(FALV (Fast ALV Grid))
...        importing         value(iv_value) type lvc_colopt .     methods set_no_init_ch ...
Created on 10 January 2016
10. ZCL_FALV - explanation of main methods and attributes
(FALV (Fast ALV Grid))
... LASS If you create redefinition of ZCL_FALV to change event handling then you need to pass a class description to factory method CT_TABLE Table to display, this one is mandatory  ...
Created on 09 January 2016
11. ZDEMO_FALV13 - Mix demo + own screen and container
(FALV (Fast ALV Grid))
...    from sflight. class lcl_test definition inheriting from zcl_falv.   public section.   protected section.     methods evt_at_set_title redefinition. ...
Created on 06 January 2016
12. ZDEMO_FALV09 - Cell settings
(FALV (Fast ALV Grid))
...          end of t_sflight. data: sflight type standard table of t_sflight. class lcl_test definition inheriting from zcl_falv. ...
Created on 06 January 2016
13. ZDEMO_FALV05 - Adding/Removing/Disabling grid toolbar
(FALV (Fast ALV Grid))
...  "! done by Lukasz Pegiel for http://abapblog.com report zdemo_falv05. data: sflight type standard table of sflight. class lcl_test definition inheriting from zcl_falv. ...
Created on 06 January 2016
14. ZDEMO_FALV04 - Full Screen with fully dynamic GUI Status
(FALV (Fast ALV Grid))
...  "! done by Lukasz Pegiel for http://abapblog.com report zdemo_falv04. data: sflight type standard table of sflight. class lcl_test definition inheriting from zcl_falv ...
Created on 06 January 2016
15. ZDEMO_FALV03 - Full Screen with GUI Status Partly Dynamic
(FALV (Fast ALV Grid))
...  "! done by Lukasz Pegiel for http://abapblog.com report zdemo_falv03. data: sflight type standard table of sflight. class lcl_test definition inheriting from zcl_falv. ...
Created on 06 January 2016
16. ZDEMO_FALV02 - Full screen with redefinitions
(FALV (Fast ALV Grid))
... program shows how to use FALV when you want to use event handlers by your own.  "All" events are handled so you just need to redefine proper method starting from evt_*   "! This is demo for FALV with redefinition of hotspot event handle ...
Created on 05 January 2016
17. FALV (Fast ALV Grid)
(FALV (Fast ALV Grid))
... le editable reports to omit screen creation All events are already handled and with redefinition of method I can faster use it Faster setting of layout and field catalog attributes  Eas ...
Created on 04 January 2016
18. FALV (Fast ALV Grid) - First blood
(FALV (Fast ALV Grid))
... editable reports to omit screen creation All events should be already handled and with redefinition of method I can faster use it Faster setting of layout and field catalog attributes  Easy switch ...
Created on 28 December 2015
19. Direct access quality notification attachments from action box
(How to...)
...    field-symbols: <gos> type ref to cl_gos_manager.   assign (gos_path) to <gos>.   if <gos> is assigned and <gos> is not initial. ...
Created on 22 October 2015
20. Dynamic GUI STATUS & TITLE with ABAP code
(Tricks)
... which stores DYNAMIC_STATUS and DYNAMIC_TITLE.    Definition: class zca_ab_dynamic_gui definition   public   create public .   public section. ...
Created on 11 July 2015
21. Create fieldcatalog from internal table
(How to...)
... internal table using CL_SALV_CONTROLLER_METADATA and  CL_SALV_TABLE. Both methods are created with new ABAP 7.40 SP05 syntax.   LVC Field catalog definition   class-methods lvc_fcat_from_internal_table ...
Created on 08 May 2015
22. Popup with multi-select ALV
(How to...)
...  *      i_fcat_complete   = SPACE   exceptions     error_cntl_create = 1     error_cntl_init   = 2 ...
Created on 29 April 2014
23. Mass replace popup for ALV grid
(Tips)
...    assign (g_fieldname) to <any>.   if sy-subrc eq 0.     <any> = text-s03.   endif. end-of-definition. ...
Created on 27 April 2014
24. GOS - How to add business documents at creation of object
(Tricks)
... clear g_gos_ident.   if g_creation_mode is initial.     g_gos_ident-objkey   = g_banfn.     clear p_no_commit. ...
Created on 25 April 2014
25. GOS - Link Business Documents from PR to PO
(Tricks)
...    data: m_object type toav0-object_id.   field-symbols: <toavo> type toav0.   check i_purchase_requisition is not initial and i_purchase_order is not initial. ...
Created on 25 April 2014
26. EWB Components allocation to routing operation (multilevel BOM)
(How to...)
...    perform open_file_dialog changing p_path. initialization. start-of-selection.   refresh: gt_plan[], gt_assignment[], gt_return[]. ...
Created on 18 April 2014
27. Enhanced MB51 Part 6 - ZMB51 program
(Tricks)
...  * definition of the selections screen *----------------------------------------------------------------------* selection-screen begin of block disp with frame title text-003. ...
Created on 28 March 2014
28. Enhanced MB51 Part 5 - Export from MB51
(Tricks)
...    data: m_flag type c.   import flag to m_flag from memory id 'ZMB51_FULLLIST_EXPORT'.   if m_flag is not initial. ...
Created on 28 March 2014
29. Reset rejection of Purchase Requisition
(How to...)
...    if c_factory is initial.     call function 'MEREQ_GET_FACTORY'       importing         ex_factory = c_factory. ...
Created on 24 March 2014
30. How to check if for purchase requisition rejection can be reset?
(How to...)
...    data: f_document    type mepo_document.   data: fo_releasable type ref to if_releasable_mm.   if co_factory is initial. ...
Created on 18 March 2014
  • Start
  • Prev
  • 1
  • 2
  • Next
  • End
CHANGE CREATED VARIANT WYSIWYG HTML Editor in ABAP FILENAME ABAP STRUCTDESCR SALV CONTROLLER METADATA GTGET LVC FIELDCATALOG RESET REJ ALLOWED GUI ALV GRID FALV Custom selection-screen fields for MD07 MS07 BINARY RELATION GTREAD
Follow @abapblog

 


abapblog.com
  • Laserowe usuwanie blizn Tychy
  • Laserowe usuwanie zmarszczek Tychy
  • Paznokcie hybrydowe Tychy
  • Paznokcie tytanowe Tychy
  • Salon Kosmetyczny Tychy
  • Trycholog Tychy
  • Wypadanie włosów Tychy

ABAP Favorites Eclipse plugin

Drag to your running Eclipse* workspace. *Requires Eclipse Marketplace Client

Latest Articles

  • CMD_EI_API deletes contact persons?
  • ABAP Favorites Eclipse plugin
  • SAP Script error with percentages using decimal field
  • Speed up your coding with ABAP in Eclipse (SITWRO 2017 session)
  • A new hope for dark side with Darkest Dark Theme for Eclipse
  • Copying is not poss.because an entry is missing in Table TVCPL VL473
  • Re-explode or delete purchase order line subcontracting BOM
  • Deletion of subcontracting BOM in Purchase Requisition
  • Re-explosion of subcontracting BOM in Purchase Requisition
  • #SAPTechEd 2016 Barcelona
  • SAP TechEd Developer Hero 2016
  • How to handle CL_GUI_ALV_GRID events in SALV
  • Why I like to code in ABAP in Eclipse
  • How to access private or protected data and methods of CL_GUI_ALV_GRID
  • Send mail in BADI or User-Exit without commiting

Most Read

  • Create XLSX/MHTML file from internal table in background
  • Refresh ALV GRID and keep position and current cell
  • Create a nice looking chart with CL_GUI_CHART_ENGINE - Part 3 - Chart Data and render
  • Call standard F4 search help with customized parameters
  • Link Attachments of Purchase Requisition to Purchase Order
  • Subtotal lines of ALV GRID OO as content separator
  • FALV (Fast ALV Grid)
  • Dynamic GUI STATUS & TITLE with ABAP code
  • EWB Components allocation to routing operation (multilevel BOM)
  • GOS - How to add business documents at creation of object
  • Endless loop in BADI ME_PROCESS_PO_CUST
  • Popup with multi-select ALV
  • Create a nice looking chart with CL_GUI_CHART_ENGINE - Part 1 - Chart Designer
  • Secure call of "starting new task" using RM_FREE_SESSION_CHECK
  • Create fieldcatalog from internal table

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.