• 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

Search

Total: 28 results found.

Search for:
Search Only:

1. <span class="highlight">ATC</span> Pseudo Comments list
(Tips)
I was implementing ATC checks in the company I work for and wanted to find the place where the information about possible pseudo comments are stored.  In transaction ATC I could find them in the management ...
Created on 26 September 2018
2. ALV Grid in the nutshell: Field catalog - domname - Domain name
(ALV Grid in the nutshell)
... Maybe just for information and for Report-Report interface, where this field is use as one of the matching criteria for selection-screen parameters. As you can see on the next image, although I gave ...
Created on 18 April 2020
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...)
One of the standard requests that comes with every SAP implementation is automatic download of exchange rates to your system. Today I will show you on an example of Central Bank Of Turkey, how to transform ...
Created on 06 April 2020
5. ZCL_CMD_CUSTOMER -> Wrapper for CMD_EI_API classes
(How to...)
... 'LastName' ).     contact->set_addr_firstname( 'FirstName' ).     customer->save( ). catch zcx_cmd_customer. endtry.   Changing of contact person using contact person number: parameters: ...
Created on 06 June 2019
6. ABAP Code Retreat Tychy 2019 - Organizer Recap
(Thoughts)
... it or like it was in my case, they will help you to lead it (or even they will lead it for you). They are active on Twitter and LinkedIn, there should be no issues to catch them. I've been in contact with ...
Created on 02 April 2019
7. Creating ABAP type definition from JSON structure (JSON2ABAPtype)
(How to...)
... can deserialize JSON and also it can generate a dynamic structure from JSON file but at the end to make programming easier you need to create local or global structure that will be matching the structure ...
Created on 20 August 2018
8. Create XLSX file from internal table in background v2
(Tricks)
...                                     r_aggregations = salv_table->get_aggregations( ) ).         catch cx_salv_msg.           return.       endtry.     else.       lt_fcat = it_fieldcat.     endif. ...
Created on 01 June 2018
9. ABAP Favorites Eclipse plugin
(How to...)
... is checking both name and description for the filter to match. After using it a while with long favorites list this is quite handy .   e.Linking views to editor Both views can be linked ...
Created on 29 June 2017
10. Speed up your coding with ABAP in Eclipse (SITWRO 2017 session)
(How to...)
... topic although the session last 10 minutes longer than it should be, as I received lots of question during the session.  I haven't watched whole video, I just checked if the voice was recorded correctly, ...
Created on 28 May 2017
11. Why I like to code in ABAP in Eclipse
(Thoughts)
... C#, HTML ( yes, I know HTML is not programming language ).   xiv.      It gives you warnings about not catched exception classes – you’ll notice it on the right side of the editor   xv.      One place ...
Created on 27 May 2016
12. 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 not ...
Created on 22 February 2016
13. Create fieldcatalog from internal table
(How to...)
...              r_columns      = salv_table->get_columns( ) " ALV Filter             r_aggregations = salv_table->get_aggregations( ) " ALV Aggregations     ).       catch cx_root.     endtry. ...
Created on 08 May 2015
14. Enhanced MB51 Part 6 - ZMB51 program
(Tricks)
...  select-options matnr for mseg-matnr memory id mat matchcode object mat1. select-options werks for mseg-werks memory id wrk obligatory. select-options lgort for mseg-lgort memory id lag. select-options charg for mseg-charg memory id cha. ...
Created on 28 March 2014
15. Characteristic's own input screen - Part 5 - show characteristic's own update scre
(How to...)
...                   ).           if sy-subrc eq 0.           endif.         endif.         try.             create data c_data type handle mo_structure.           catch cx_sy_create_data_error. ...
Created on 14 November 2013
16. Characteristic's own input screen - Part 4 - Move screen values to reference dat
(How to...)
...              endcase.             assign component 'OPTLOW' of structure  to .             if sy-subrc eq 0.               case -atcod.                 when 0 or 1 or space.                    = 'EQ'. ...
Created on 14 November 2013
17. Characteristic's own input screen - Part 3 - Move reference data values to scree
(How to...)
...                case .                 when 'EQ'.                   -atcod = 1.                 when 'GE'.                   assign component 'OPTHIGH' of structure  to . ...
Created on 14 November 2013
18. Scan program for authority-check
(How to...)
...      catch cx_salv_msg .   endtry.   gr_columns = gr_salv->get_columns( ).   gr_columns->set_optimize( abap_true ).   gr_salv->display( ). *&---------------------------------------------------------------------* ...
Created on 13 July 2013
19. Extend allowed runtime of a program
(Tricks)
... don't want to use it at the moment then you could use FM TH_REDISPATCH with the check_runtime parameter equal to 0. You could also you FM SAPGUI_PROGRESS_INDICATOR for the same purpose but keep in ...
Created on 25 June 2013
20. Selection Screen - Part1 - Parameters
(For beginners)
...  parameters: p_name5  type char2 as listbox visible length 25 user-command lbchange. *"parameter with matchcode object parameters: p_name6  type char2 matchcode object h_t002. * * "event at each output of selection screen ...
Created on 08 June 2013
21. How to select proper configuration entry
(Tips)
...          "so we add score         add f_score to f_current_score.       else.         "there is no match and configuration is not empty         "so we have to go to next line of configuration ...
Created on 31 May 2013
22. Classifications - Part 1 - prepare structure for class data
(How to...)
...    data: mt_classdescriptions type standard table of  bapi1003_catch_r.   data: mt_classlongtexts type standard table of  bapi1003_longtext_r.   data: mt_classcharacteristics type standard table of  bapi1003_charact_r. ...
Created on 17 May 2013
23. Create XLSX/MHTML file from internal table in background
(Tricks)
...          changing           t_table      =  ).       catch cx_salv_msg.     endtry.     "get colums & aggregation infor to create fieldcat     mo_columns  = mo_salv_table->get_columns( ). ...
Created on 12 May 2013
24. Save variant for single selection screen subscreen
(How to...)
...       variant_doesnt_exist            = 7      variant_locked                  = 8      selections_no_match             = 9      others                          = 10                 .       if sy-subrc  0. ...
Created on 23 April 2013
25. Download CV01N/2N/3N documents to PC
(How to...)
...                    no_batch                  = 2                   gui_refuse_filetransfer   = 3                   invalid_type              = 4                   no_authority              = 5                   unknown_error             = 6 ...
Created on 14 April 2013
26. ZIP a file using ABAP
(How to...)
...        catch cx_bcs.         message e445(so).     endtry.   elseif i_soli[] is not initial.     try.         m_solix[] = cl_bcs_convert=>soli_to_solix( it_soli = i_soli ).         m_xstring = cl_bcs_convert=>solix_to_xstring( ...
Created on 13 April 2013
27. Get filename and extension from full path
(How to...)
...    data: m_size type i.   clear m_offset.   m_path = i_path.   find all occurrences of '\' in m_path in character mode   match offset m_offset.   if m_offset ne 0.     add 1 to m_offset. ...
Created on 13 April 2013
28. Link Attachments of Purchase Requisition to Purchase Order
(Tricks)
...          endloop.       catch cx_obl_parameter_error .       catch cx_obl_internal_error .       catch cx_obl_model_error .       catch cx_root.     endtry.   endloop.   sort ft_links by instid_b ascending. ...
Created on 12 April 2013


Łukasz Pęgiel
VARIANT CONTENTS MB51 ALV Grid in the nutshell Field catalog - outputlen IXML DOCUMENT ALV GRID LVC TRANSFER FROM SLIS ZCL FALV COLUMN - column fcat settings TEACH ABAP GUI ALV GRID OPR PROVIDE MTK chart designer RESET REJ ALLOWED EXPONENT Secure call of starting new task using RM FREE SESSION CHECK SET SCROLL INFO VIA ALV GRID IN THE NUTSHELL UPPER CASE DFIELDNANE How to select proper configuration entry SAPGUI PROGRESS INDICATOR FILL MDPA EBAN FIELDCATALOG TVCPLAP SALV TABLE COMMIT WORK DELETE USER SETTINGS FCAT ABAP Other checks on purchase requisition state VRM VALUES FILENAME Field catalog - exponent Scan program for authority-check Basic Information FOR FIRST DISPLAY TVCPLAK BOM MSC7 ABAP4 CALL TRANSACTION SCMS STRING XSTRING SUM SYMBOL SAVE Get filename and extension from full path ICON SCAN ABAP-SOURCE PLUGIN ECLIPSE ADT Delete Routing - piece of cake EDIT MASK Field catalog - convexit GET SELECTED COLUMNS #SAPTechEd 2016 Barcelona JSON PERIOD AND DATE CONVERT
  • Laserowe usuwanie blizn Tychy
  • Laserowe usuwanie zmarszczek 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
  • Create XLSX file from internal table in background v2
  • FALV (Fast ALV Grid)
  • ATC Pseudo Comments list
  • Call standard F4 search help with customized parameters
  • Dynamic GUI STATUS & TITLE with ABAP code
  • Create fieldcatalog from internal table
  • Link Attachments of Purchase Requisition to Purchase Order
  • GOS - How to add business documents at creation of object
  • Endless loop in BADI ME_PROCESS_PO_CUST
  • Create a nice looking chart with CL_GUI_CHART_ENGINE - Part 3 - Chart Data and render
  • How to access private or protected data and methods of CL_GUI_ALV_GRID
  • 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.