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

Search for:
Search Only:

Page 1 of 2

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'r ...
Created on 09 April 2013
2. Downloading Exchange Rates from NBP (National Bank of Poland)
(How to...)
... bsp; ).   ENDMETHOD. ENDCLASS.   Now again you can use BAPI_EXCHANGERATE_CREATE to store the exchange rates in your system.     ...
Created on 06 April 2020
3. 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 ...
Created on 06 April 2020
4. ZCL_CMD_CUSTOMER -> Wrapper for CMD_EI_API classes
(How to...)
If you know CMD_EI_API class, you are aware of its power. It's very helpful for the manipulation of customer master data, all master data including contacts. I have played with this class many times an ...
Created on 06 June 2019
5. Creating ABAP type definition from JSON structure (JSON2ABAPtype)
(How to...)
... lass.   In the example of usage I'll use sample JSON from TFS API documentation   {   "count": 3,   "value": [     {       "id": ...
Created on 20 August 2018
6. CMD_EI_API deletes contact persons?
(Tips)
I'm big fan of CMD_EI_API and VMD_EI_API classes. I use them to create, update and delete customer and vendor master data, including contact persons, partners and all data you have in XD02/XK02 transaction ...
Created on 13 August 2017
7. Copying is not poss.because an entry is missing in Table TVCPL VL473
(How to...)
... ram and finally I received positive result.      The conclusion is: do not assume that if something is workning in standard transaction, will work also in BAPI without additi ...
Created on 15 February 2017
8. Re-explode or delete purchase order line subcontracting BOM
(Tricks)
... ;c                                           returning value(r_messages)      type mepo_t_messages_bapi&nbs ...
Created on 04 February 2017
9. Deletion of subcontracting BOM in Purchase Requisition
(Tricks)
... ;).     message_handler->co_handler_start( ).     message_handler->set_config_for_bapi( ).     call function 'ME_COMPONENTS_REFR ...
Created on 03 February 2017
10. Re-explosion of subcontracting BOM in Purchase Requisition
(Tricks)
...      message_handler->co_handler_start( ).     message_handler->set_config_for_bapi( ).     call function 'ME_COMPONENTS_REFRESH'. ...
Created on 02 February 2017
11. 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
12. CL_PROGRESS_INDICATOR VS direct call of SAPGUI_PROGRESS_INDICATOR
(Tips)
... to it , or you can pass 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 ...
Created on 28 April 2015
13. 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: <assign> like line of gt_assignment. ...
Created on 18 April 2014
14. 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 ...
Created on 14 April 2014
15. 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 ...
Created on 31 March 2014
16. Reset rejection of Purchase Requisition
(How to...)
...        im_bapi            = ' '     importing       ex_instance        = fo_req ...
Created on 24 March 2014
17. How to check if for purchase requisition rejection can be reset?
(How to...)
...        im_bapi            = ' '     importing       ex_instance        = fo_req ...
Created on 18 March 2014
18. Range to search in lower case fields
(Tricks)
...      write:/ <char40>-low.   endloop. And it's sample output for f_char40 = abapblog.     Of course the number of etries in the range grows rapidly ...
Created on 13 March 2014
19. Characteristic's own input screen - Part 8 - example of use
(How to...)
...  parameters: p_clty type klah-klart obligatory . parameters: p_atnam type api_value-atnam obligatory . parameters: p_table type tcla-obtab. ...
Created on 17 November 2013
20. Characteristic's own input screen - Part 7 - save characteristic value to database
(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
21. Characteristic's own input screen - Part 6 - move reference data to bapi structures
(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
22. Characteristic's own input screen - Part 5 - show characteristic's own update screen
(How to...)
... data zcl_abapblog_com_classific=>clear_initial_line_api_vari to delete initial line for multiple values characteristics zcl_abapblog_com_classific=>move_ref_data_to_screen_val to move reference ...
Created on 14 November 2013
23. Characteristic's own input screen - Part 4 - Move screen values to reference data
(How to...)
... Importing: IT_VALUES TYPE TT_API_VALI -> screen values table I_ATNAM TYPE API_VALI-ATNAM -> Characteristic Name Changing: C_DATA TYPE REF TO DATA Exceptions: NO_DATA_TO_CHANGE Implementation: ...
Created on 14 November 2013
24. Characteristic's own input screen - Part 3 - Move reference data values to screen
(How to...)
Before we can call the screen with the characteristic value to change we need to convert data from our reference data structure to table of type TT_API_VALI. Following method shows how to do it.   ...
Created on 14 November 2013
25. Characteristic's own input screen - Part 2 - Clear Initial Line
(How to...)
... there.   Importing: IT_API_CHAR TYPE TT_API_CHAR -> Table type for structure api_char_tab Implementation:   method clear_initial_line_api_vari.     field-symbols: <ws> type any table. ...
Created on 31 August 2013
26. Characteristic's own input screen - Part 1 - Convert Values To Float
(How to...)
... data from 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 ...
Created on 31 August 2013
27. Classifications - Part 3 - get all objects assigned to class
(How to...)
...              data: m_object type bapi1003_key-object.             data: m_objecttable type bapi1003_key-objecttable. ...
Created on 18 May 2013
28. Classifications - Part 2 - Get Object Details
(How to...)
... created 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 ...
Created on 18 May 2013
29. 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 ...
Created on 17 May 2013
30. Secure call of "starting new task" using RM_FREE_SESSION_CHECK
(Tips)
... example of the code: data: gt_return type bapiret2_tt.    call function 'RM_FREE_SESSION_CHECK'       exceptions         no_free_session = 1 ...
Created on 25 April 2013
  • Start
  • Prev
  • 1
  • 2
  • Next
  • End
Łukasz Pęgiel
Extend allowed runtime of a program FALV LVC FCAT GUI ALV GRID ABAP DEVELOPMENTS TOOLS ALV GRID ALV Grid in the nutshell Field catalog - fieldname COL REUSE DISPLAY ECLIPSE WYSIWYG HTML Editor in ABAP ALV GRID IN THE NUTSHELL BCS MESSAGE COMPONENTS UPDATE PREPARE ZDEMO TOOLTIP PROGRAM INDEX READ USER OBJECTS ESDUS SAP DEVELOPMENT TOOLS FOR ECLIPSE ZERO ADT Field catalog HEADER HANDLE DYNAMIC GUI STATUS ABAP STRUCTDESCR SAVE PURCHASE ORDER GUI STATUS LOAD COMPLEX TSK Field catalog - domname - Domain name FIELDCATALOG SETTINGS SET SELECTED ROWS DARK THEME DELETE Field catalog - qfieldname Field catalog - sp group - Group key RM07DOCS COPY FALV11 - Editable Grid settings How to copy BOM using CEWB Function Modules BINARY RELATION CREATE AiE LOOP FALV09 - Cell settings ABAP EXTENSIONS CMD API REFRESH TABLE CHART ENGINE CTMS DDB VAL FROM OBJECT Basic Information ABAP IN ECLIPSE KKEK CONVERT FLOAT CURR Field catalog - key SALV LEX PROCESS CUST ZIP ROWMARK TOTLINE SAP WebIDE SMP DYNTXT ISOLATE SELSCREEN RSBCS EXAMPLE
  • 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
  • Call standard F4 search help with customized parameters
  • FALV (Fast ALV Grid)
  • Dynamic GUI STATUS & TITLE with ABAP code
  • Create XLSX file from internal table in background v2
  • Create a nice looking chart with CL_GUI_CHART_ENGINE - Part 3 - Chart Data and render
  • ATC Pseudo Comments list
  • Create fieldcatalog from internal table
  • GOS - How to add business documents at creation of object
  • Link Attachments of Purchase Requisition to Purchase Order
  • Subtotal lines of ALV GRID OO as content separator
  • Endless loop in BADI ME_PROCESS_PO_CUST
  • How to access private or protected data and methods of CL_GUI_ALV_GRID
  • 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.