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

Search for:
Search Only:

Page 1 of 2

1. 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
2. ABAP Favorites Eclipse plugin
(How to...)
... rites Dev Objects views. It can contain following development objects: Programs Classes Interfaces Function Groups Function Modules Tables Views Message Classes When you double ...
Created on 29 June 2017
3. Copying is not poss.because an entry is missing in Table TVCPL VL473
(How to...)
... any issues, then when I tried to do it in ABAP, I always received the error VL473 - Copying is not poss.because an entry is missing in Table TVCPL.  I thought that this is some kind of nonsense ...
Created on 15 February 2017
4. Re-explode or delete purchase order line subcontracting BOM
(Tricks)
... lb,           mdlb_tab type standard table of mdlb.     select single * into corresponding fields of  ...
Created on 04 February 2017
5. Deletion of subcontracting BOM in Purchase Requisition
(Tricks)
... dlb,           mdlb_tab type standard table of mdlb.     select single * into corresponding fields of  ...
Created on 03 February 2017
6. Re-explosion of subcontracting BOM in Purchase Requisition
(Tricks)
...            mdlb_tab type standard table of mdlb.     select single * into corresponding fields of eban ...
Created on 02 February 2017
7. How to handle CL_GUI_ALV_GRID events in SALV
(Tricks)
If you follow my blog, then you probably noticed that I'm not keen of SALV class, as it's not editable and you cannot handle all events that you can in cl_gui_alv_grid class. With a small trick ...
Created on 09 October 2016
8. Why I like to code in ABAP in Eclipse
(Thoughts)
... table, type, etc. ) and all information about it will be fetched and shown in a pop-up. You can easily copy the types of FM parameters or preview the ABAPDoc and standard documentation   ...
Created on 27 May 2016
9. How to access private or protected data and methods of CL_GUI_ALV_GRID
(Tricks)
...      methods create_ex_result       returning         value(rv_results) type ref to cl_salv_ex_result_data_table . ...
Created on 26 May 2016
10. ZCL_FALV_COLUMN - column (fcat) settings
(FALV (Fast ALV Grid))
... to the field type. Additionally there are two methods set_editable and set_readonly which calls set_edit function with proper value. Example of usage you can find in ZDEMO_FALV07.   If you'll ...
Created on 10 January 2016
11. ZCL_FALV - explanation of main methods and attributes
(FALV (Fast ALV Grid))
...  DISPLAY EXCLUDE_FUNCTION COLUMN SOFT_REFRESH SET_MARK_FIELD SET_EDITABLE SET_READONLY ADD_BUTTON DISABLE_BUTTON ENABLE_BUTTON DELETE_BUTTON SET_CELL_DISABLED SET_CELL_ENABLED ...
Created on 09 January 2016
12. ZDEMO_FALV14 - Popup calls
(FALV (Fast ALV Grid))
...  "! done by Lukasz Pegiel for http://abapblog.com report zdemo_falv14. data: sflight type standard table of sflight. parameters: p_defau  radiobutton group gr1 default 'X' ...
Created on 06 January 2016
13. ZDEMO_FALV13 - Mix demo + own screen and container
(FALV (Fast ALV Grid))
...  data: sflight type standard table of t_sflight. select * up to 100 rows into corresponding fields of table @sflight ...
Created on 06 January 2016
14. ZDEMO_FALV12 - Error log
(FALV (Fast ALV Grid))
...  report zdemo_falv12. data: sflight type standard table of sflight. parameters: p_embeed radiobutton group gr1 default 'X ...
Created on 06 January 2016
15. ZDEMO_FALV11 - Editable Grid settings
(FALV (Fast ALV Grid))
... 3 ways to make your grid editable, you can set whole grid editable in layout, some columns in field catalog and some cells in cells style table. This demo shows it all. "! This is demo for FALV with edit settings ...
Created on 06 January 2016
16. ZDEMO_FALV10 - Color Settings
(FALV (Fast ALV Grid))
...          row_color  type char4,         end of t_sflight. data: sflight type standard table of t_sflight. ...
Created on 06 January 2016
17. ZDEMO_FALV09 - Cell settings
(FALV (Fast ALV Grid))
... are possible if you have table lvc_t_styl in output table structure. If you want to use FALV way of handling cell settings then you need to firstly set stylefname attribute of layout so then you can use ...
Created on 06 January 2016
18. ZDEMO_FALV08 - Mass replace function
(FALV (Fast ALV Grid))
... n "! done by Lukasz Pegiel for http://abapblog.com report zdemo_falv08. data: sflight type standard table of sflight. start-of-selectio ...
Created on 06 January 2016
19. ZDEMO_FALV07 - Columns (field catalog) settings
(FALV (Fast ALV Grid))
...  "! done by Lukasz Pegiel for http://abapblog.com report zdemo_falv07. data: sflight type standard table of sflight. start-of-selection. ...
Created on 06 January 2016
20. ZDEMO_FALV06 - Grid Layout settings + "Mark" field
(FALV (Fast ALV Grid))
...  types: end of t_sflight. data: sflight type standard table of t_sflight. parameter: p_usemar as checkbox. start-of-selection ...
Created on 06 January 2016
21. 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
22. 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
23. 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
24. ZDEMO_FALV02 - Full screen with redefinitions
(FALV (Fast ALV Grid))
...  "! done by Lukasz Pegiel for http://abapblog.com report zdemo_falv02. data: sflight type standard table of sflight. class lcl_test definition inheriting from zcl_falv ...
Created on 05 January 2016
25. ZDEMO_FALV01 - Standard full screen FALV
(FALV (Fast ALV Grid))
... shows how fast and simple is to use FALV. A table is passed to factory method , title is updated and then full screen grid displayed   "! This is demo for FALV standard fast call ...
Created on 05 January 2016
26. FALV (Fast ALV Grid)
(FALV (Fast ALV Grid))
... lways worked with cl_gui_alv_grid class so then whenever users decided that they need one of the field to be editable then I can do it in few seconds/minutes.   But there is a way to make SALV edi ...
Created on 04 January 2016
27. FALV (Fast ALV Grid) - First blood
(FALV (Fast ALV Grid))
... but, many doesn't mean everything. Especially that I really like CL_GUI_ALV_GRID class and this that without any tricks I can make it editable in easy way.    My class in not yet finished ...
Created on 28 December 2015
28. How to teach ABAP ???
(Thoughts)
... to create a function or method and this is what you should start with when you teach ABAP. I have created some basic description about types, basic syntax, tables,  etc. for my master’s thesis ...
Created on 24 November 2015
29. How to copy BOM using CEWB Function Modules
(How to...)
... Just for the safety reasons :-) Then let's load BOM header data to FG memory. If you want to do mass transaction then you would probably want to fill selection table i_cpsc_bom_sel with ...
Created on 28 October 2015
30. Direct access quality notification attachments from action box
(How to...)
...  *"  TABLES *"      TI_IVIQMFE STRUCTURE  WQMFE *"      TI_IVIQMUR STRUCTURE  WQMUR ...
Created on 22 October 2015
  • Start
  • Prev
  • 1
  • 2
  • Next
  • End
GET FRONTEND FIELDCATALOG SCMS XSTRING BINARY ESDUS IXML ISTREAM GOS MANAGER Classifications - Part 4 - example of use BOM BAPI CLASS READ RELEASABLE RESET REJ ALLOWED FILENAME KKEK CONVERT FLOAT CURR
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.