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

Search for:
Search Only:

1. How to...
(Category)
Have you were lacking sometimes the documentation of a FM or BAPI or a manual how to do things that should be possible to do easily but you cannot find it nowhere? If yes I hope you can find what you're ...
Created on 09 April 2013
2. Characteristic's own input screen - Part 6 - move reference data to <span class="highlight">bapi</span> structure
(How to...)
Our characteristics update screen was displayed, data was changes so we need to read the reference data and put the values into BAPI structures in order to be able to save the values to database. I will ...
Created on 16 November 2013
3. Downloading Exchange Rates from NBP (National Bank of Poland)
(How to...)
Following the example of downloading exchange rates from Central Bank Of Turkey using transformations, please find bellow the same way for National Bank of Poland. Again, lets create an RFC destination ...
Created on 06 April 2020
4. Downloading Exchange Rates from Central Bank of Turkey
(How to...)
... XML from bank site into internal table, which can be then used inside your code to populate values of  BAPI_EXCHANGERATE_CREATE FM. There are few ways to download the XML to your ABAP code, I prefer ...
Created on 06 April 2020
5. ZCL_CMD_CUSTOMER -> Wrapper for CMD_EI_API classes
(How to...)
... perfect) class to handle the creation or update of customer master data with CMD_EI_API=>MAINTAIN_BAPI method. The whole source code is available as current version on Github, from where you can instal ...
Created on 06 June 2019
6. 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. After ...
Created on 13 August 2017
7. Copying is not poss.because an entry is missing in Table TVCPL VL473
(How to...)
...  The conclusion is: do not assume that if something is workning in standard transaction, will work also in BAPI without additional settings :-)    Bellow you can find piece of code which I used ...
Created on 15 February 2017
8. Re-explode or delete purchase order line subcontracting BOM
(Tricks)
...                                            returning value(r_messages)      type mepo_t_messages_bapi ,       prepare_po_mdpa         importing           value(i_order)    type ebeln           value(i_position) type ebelp ...
Created on 04 February 2017
9. Deletion of subcontracting BOM in Purchase Requisition
(Tricks)
...      message_handler->set_config_for_bapi( ).     call function 'ME_COMPONENTS_REFRESH'.     data: ebkn     type                   ebkn,           eban     type                   eban,           mdpa     type                   mdpa, ...
Created on 03 February 2017
10. Re-explosion of subcontracting BOM in Purchase Requisition
(Tricks)
...      cl_message_handler_mm=>get_handler(  importing                                          ex_handler = data(message_handler) ).     message_handler->co_handler_start( ).     message_handler->set_config_for_bapi( ). ...
Created on 02 February 2017
11. CL_PROGRESS_INDICATOR VS direct call of SAPGUI_PROGRESS_INDICATOR
(Tips)
... message variables (MSGNO, MSGID, MSGV1, .. etc) so you can also easily use it together with BAPIs and return tables.    I'd say with this method your code can look cleaner than before and for sure ...
Created on 28 April 2015
12. EWB Components allocation to routing operation (multilevel BOM)
(How to...)
...  data: gt_return type bapiret2_t. data: gs_return type bapiret2. data: g_error type c. field-symbols:  like line of gt_assignment. field-symbols:  like line of gt_plan. selection-screen begin of block exc with frame title text-exc. ...
Created on 18 April 2014
13. ESDUS, ESRUO - MM settings table - Part 3/3
(Tricks)
...  * TABLES *   IESDUS         = IESDUS   . 2. You create MM documents using BAPI and you want that next time you open MM t-code which is used to display/edit this document then your document appears ...
Created on 14 April 2014
14. ESDUS, ESRUO - MM settings table - Part 1/3
(Tricks)
... there. Sometimes not last but one of the lasts and you want to make it always last. You create MM documents using BAPI and you want that next time you open MM t-code which is used to display/edit this ...
Created on 31 March 2014
15. Reset rejection of Purchase Requisition
(How to...)
...        im_bapi            = ' '     importing       ex_instance        = fo_req     exceptions       failure            = 1       already_registered = 2.   if sy-subrc eq 1 or fo_req is initial. ...
Created on 24 March 2014
16. How to check if for purchase requisition rejection can be reset?
(How to...)
...        im_protect         = ' '       im_bapi            = ' '     importing       ex_instance        = fo_req     exceptions       failure            = 1       already_registered = 2. ...
Created on 18 March 2014
17. Characteristic's own input screen - Part 7 - save characteristic value to databas
(How to...)
Now it's time to save the values entered into database. I will use here previously created method to move data from reference structure to BAPI tables, then I will read values from database to see ...
Created on 17 November 2013
18. Characteristic's own input screen - Part 5 - show characteristic's own update scre
(How to...)
Now we're ready to build the data for screen output, call the update screen and then move the data back from screen to reference data. We will use here: COC1_FEATURE_CHECK to get characteristic ID ...
Created on 14 November 2013
19. Characteristic's own input screen - Part 1 - Convert Values To Floa
(How to...)
... my reference data structure to bapi tables (in order to save it) - method to save characteristic value - method to convert values from standard type (date, char, number, currency) to characteristic value ...
Created on 31 August 2013
20. Classifications - Part 3 - get all objects assigned to class
(How to...)
...            loop at et_objects assigning .             data: m_object type bapi1003_key-object.             data: m_objecttable type bapi1003_key-objecttable.             m_object = -objekt.             m_objecttable = -obtab. ...
Created on 18 May 2013
21. Classifications - Part 2 - Get Object Details
(How to...)
... in part 1. To get the characteristics values for an object I will use FM BAPI_OBJCL_GETDETAIL, then using field-symbols I will move the data from its result tables to our structure. I will use also cl_abap_typedescr ...
Created on 18 May 2013
22. Classifications - Part 1 - prepare structure for class data
(How to...)
... or method which will do it for you so you can keep the logic in each of your program without doing maual work.   To create the structure of the class I will use FM BAPI_CLASS_READ  to read class data, ...
Created on 17 May 2013
23. Secure call of "starting new task" using RM_FREE_SESSION_CHECK&#160;...
(Tips)
... gt_return type bapiret2_tt.    call function 'RM_FREE_SESSION_CHECK'       exceptions         no_free_session = 1         others          = 2.     if sy-subrc eq 0. "Z FM with ...
Created on 25 April 2013
24. Delete Routing - piece of cake
(How to...)
... like that also with delete routing function which I share with you today. There is no BAPI_ROUTING_DELETE (yet), so firsty we had to load the task to EWB memory with 'CP_CC_S_LOAD_COMPLEX_BY_TSK' ,then ...
Created on 18 April 2013
Łukasz Pęgiel
Reset rejection of Purchase Requisition ALV GRID IN THE NUTSHELL FIELDCATALOG ALV Grid in the nutshell Field catalog - seltext Save message with attachment in Outlook's Drafts BAPI CLASS READ LVC FCAT DARKEST DARK THEME COC1 FEATURE CHECK SE41 F4IF START VALUE REQUEST TOOLTIP Field catalog - edit mask CVIC MAP CONTACT Basic Information BOM MB51 ENHANCEMENT ESDUS GUI ALV GRID TVCPLAP Create fieldcatalog from internal table APPEND USER SETTINGS TVCPL CTMS DDB ESRUO - MM settings table - Part 2 SMP DYNTXT Field catalog - no convext chart designer Field catalog - col pos Field catalog - dfieldname Fieldname for column group FILL MDLB FROM EBAN ABAP4 CALL TRANSACTION EWB Components allocation to routing operation multilevel BOM REFRESH SELECTOPTIONS SELECT LOWERCASE GAME ADT CHECKBOX QM ATTACHMENTS id - ALV control Column ID COMPONENTS UPDATE PREPARE CHART ENGINE ABAP ZIP TOTEXP VARIANT CATALOG Selection Screen - Part1 - Parameters FALV Fast ALV Grid - First blood TVCPLAK GROUP SEARCH IXML PARSER VIRTUALBOX TYPEDESCR MDPA ALV GRID MEREQ GET FACTORY FALV MAT CREATE COPY
  • 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

  • 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
  • FALV (Fast ALV Grid)
  • Call standard F4 search help with customized parameters
  • Create XLSX file from internal table in background v2
  • Dynamic GUI STATUS & TITLE with ABAP code
  • ATC Pseudo Comments list
  • Create fieldcatalog from internal table
  • 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
  • How to access private or protected data and methods of CL_GUI_ALV_GRID
  • Endless loop in BADI ME_PROCESS_PO_CUST
  • 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.