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

Search for:
Search Only:

Page 1 of 2

1. Dark Theme form Patak Kumar.zip
(Attached to Article: AiE (ADT) dark theme settings)
Dark Theme form Patak Kumar.zip (Filename: Dark%20Theme%20from%20Patak%20Kumar.zip)  ...
Created on 23 January 2017
2. Thoughts
(Category)
Post not connected directly to any other categories. Mainly for some thoughts which goes from time to time around my head.  ...
Created on 24 November 2015
3. For beginners
(Category)
I'll try to put here some basic stuff so beginners can learn from here  ...
Created on 02 June 2013
4. CMD_EI_API deletes contact persons?
(Tips)
...  Also to update Z fields from all customer and vendor related tables. But lately after upgrade from 7.40 SP5 to 7.40 SP16 the method maintain_bapi was not saving the changes to the customers. Afte ...
Created on 13 August 2017
5. ABAP Favorites Eclipse plugin
(How to...)
... ks to the blogs from SCN. Additionally I've started to search the web for the eclipse plug-in developments so I could get some more information about it. It was hard time for me, I've stopped thi ...
Created on 29 June 2017
6. SAP Script error with percentages using decimal field
(Tips)
...  the same and although I can only imagine that the problem comes from decimal type of field, funny stuff was that inside this form there are other fields which are using decimal type and they are disp ...
Created on 03 June 2017
7. Copying is not poss.because an entry is missing in Table TVCPL VL473
(How to...)
... I did what I should do from beginning. I used where used function to display where TVCPL table is used and I found two views V_TVCPLAK and V_TVCPLAP. I started with the first one as from ...
Created on 15 February 2017
8. Re-explode or delete purchase order line subcontracting BOM
(Tricks)
... needed here. So I had to use CL_PO_HEADER_HANDLE_MM and IF_PURCHASE_ORDER_MM to fetch all data from purchase order and to move them to MDPA and MDLB structures. Once it was ready the rest ...
Created on 04 February 2017
9. Deletion of subcontracting BOM in Purchase Requisition
(Tricks)
... eban      from eban            where  banfn  eq i_requsition            and    bnfpo  eq i_posi ...
Created on 03 February 2017
10. Re-explosion of subcontracting BOM in Purchase Requisition
(Tricks)
... BOM" button, but I needed to do this from ABAP side.    I started with IF_PURCHASE_REQUISITION but although there is a method "explode_bom" for item, then it was calling the screen ...
Created on 02 February 2017
11. #SAPTechEd 2016 Barcelona
(Thoughts)
... not your friend. On TechEd also you had to manage your time correctly, but there always were some breaks when you could go and meet people you know from SCN/twitter/SITs (which I appreciate the ...
Created on 10 November 2016
12. SAP TechEd Developer Hero 2016
(Thoughts)
This year in July I received an email from SAP Developer Relation team that I was nominate for one of thirty SAP TechEd Developer Heroes 2016.   This was quite unsuspected but at the same time ...
Created on 09 October 2016
13. How to handle CL_GUI_ALV_GRID events in SALV
(Tricks)
... you can make your SALV editable and you can handle all the events you want from underlying cl_gui_alv_grid object.   What you need to do, is to set handler for event after_refresh for all instances ...
Created on 09 October 2016
14. Why I like to code in ABAP in Eclipse
(Thoughts)
... 1.       My first touch with ABAP in Eclipse   It was not the love from the first sight. Although I liked very much the idea of using Eclipse for developing in ABAP. ...
Created on 27 May 2016
15. How to access private or protected data and methods of CL_GUI_ALV_GRID
(Tricks)
Please be aware that accessing private or protected data may have unpredictible consequences! Use it at your own risk.   From time to time, it happens that you want to access private data or methods ...
Created on 26 May 2016
16. Send mail in BADI or User-Exit without commiting
(Tricks)
Everybody sends mails from SAP, some are still using old FM SO_NEW_DOCUMENT_ATT_SEND_API1 but some CL_BCS class. This class is really powerful but it has one disadvantage - it does commit work, and ...
Created on 22 February 2016
17. ZCL_FALV - explanation of main methods and attributes
(FALV (Fast ALV Grid))
... class of whole FALV. Everything starts here. Bellow you can find some description of main methods and attributes which are made in this class. Methods:  CREATE CREATE_BY_COPY LVC_FCAT_FROM_ITAB ...
Created on 09 January 2016
18. ZDEMO_FALV14 - Popup calls
(FALV (Fast ALV Grid))
...    from sflight.   "FALV creation with only table passed   data(falv) = zcl_falv=>create( exporting i_popup = abap_true changing ct_table = sflight  ...
Created on 06 January 2016
19. 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
20. ZDEMO_FALV12 - Error log
(FALV (Fast ALV Grid))
... s   into corresponding fields of table @sflight   from sflight.   "FALV creation with only table passed   if p_embeed eq abap_tr ...
Created on 06 January 2016
21. ZDEMO_FALV11 - Editable Grid settings
(FALV (Fast ALV Grid))
...    into corresponding fields of table @sflight   from sflight.   "FALV creation with only table passed   data(falv) = zcl_falv=>create( changing ct_table = sflight  ...
Created on 06 January 2016
22. ZDEMO_FALV10 - Color Settings
(FALV (Fast ALV Grid))
...  start-of-selection.   select * up to 100 rows   into corresponding fields of table @sflight   from sflight. ...
Created on 06 January 2016
23. 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
24. ZDEMO_FALV08 - Mass replace function
(FALV (Fast ALV Grid))
...  in the mass replace function for FALV so now you don't have to import separatelly from  http://abapblog.com/articles/tips/72-mass-replace-popup-for-alv-grid.   "! This is demo for FALV with mass replace functi ...
Created on 06 January 2016
25. ZDEMO_FALV07 - Columns (field catalog) settings
(FALV (Fast ALV Grid))
...    select * up to 100 rows   into corresponding fields of table @sflight   from sflight.   "FALV creation with only table passe ...
Created on 06 January 2016
26. ZDEMO_FALV06 - Grid Layout settings + "Mark" field
(FALV (Fast ALV Grid))
...    select * up to 100 rows   into corresponding fields of table @sflight   from sflight.   "FALV creation with only table pass ...
Created on 06 January 2016
27. 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
28. 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
29. 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
30. 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
  • Start
  • Prev
  • 1
  • 2
  • Next
  • End
COMPONENTS UPDATE PREPARE COC1 FEATURE CHECK Classifications - Part 4 - example of use REFRESH DATA Create a nice looking chart with CL GUI CHART ENGINE - Part 3 - Chart Data and render ALINK CONNECTION GTINSERT Enhanced MB51 Part 2 - Structure for data GTFIND READ USER OBJECTS ALV GRID RESET REJ
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.