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

Search for:
Search Only:

Page 1 of 2

1. Save <span class="highlight">message</span> with attachment in Outlook's Draft
(Tricks)
In previous post I've shown how to zip file directly on PC without using CL_ABAP_ZIP, this time I will show you how easy is to use OLE2_OBJECT to create an MS Outlook message with attachment and save ...
Created on 16 April 2013
2. ALV Grid in the nutshell: Field catalog - Hotspot - ALV control: SingleClick-sensitive
(ALV Grid in the nutshell)
... implementation of the method. In my example I simply read the clicked cell content and I display a message on the screen. The index of row of clicked cell you’ll find in structure E_ROW_ID in the field ...
Created on 27 April 2020
3. ALV Grid in the nutshell: Field catalog - intlen - Internal Length in Bytes
(ALV Grid in the nutshell)
As the description says, the meaning of that field is to set the internal length of the field in Bytes. During my whole career as ABAP Developer, I had never filled that field manually. Usually you’ll ...
Created on 13 April 2020
4. ALV Grid in the nutshell: Field catalog - rollname
(ALV Grid in the nutshell)
... If not, or if the ROLLNAME will be empty, you’ll receive the message “No documentation available” when you’ll press F1 on a grid cell. Figure 84 Result of F1 with empty ROLLNAME   In ...
Created on 12 September 2019
5. ALV Grid in the nutshell: Field catalog - no_sum
(ALV Grid in the nutshell)
As you can imagine from the name, NO_SUM does mostly opposite what DO_SUM, but in more secure way. If you don’t want that the field is allowed to be summarized, then set the value of this field to ‘X’. ...
Created on 28 July 2019
6. ATC Pseudo Comments list
(Tips)
...  GET/SET parameter not entered in TPARA EXISTS   CL_CI_TEST_EXTENDED_CHECK 600 W T100 MESSAGE not defined MG_MISSING   CL_CI_TEST_EXTENDED_CHECK ...
Created on 26 September 2018
7. Creating ABAP type definition from JSON structure (JSON2ABAPtype)
(How to...)
...            not_supported_by_gui   = 2           others                 = 3       ).       if sy-subrc  0.         message id sy-msgid type sy-msgty number sy-msgno                    with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4. ...
Created on 20 August 2018
8. ABAP Favorites Eclipse plugin
(How to...)
...  Classes Interfaces Function Groups Function Modules Tables Views Message Classes When you double-click on one of this objects then they will be opened in new Editor tab. c.Adding/Changing/Deleting ...
Created on 29 June 2017
9. Copying is not poss.because an entry is missing in Table TVCPL VL473
(How to...)
... data with 301 - which is a special routine for delivery header without reference. I've run my code again, and I was surprised that I have still the same error message. But when I double clicked ...
Created on 15 February 2017
10. Re-explode or delete purchase order line subcontracting BOM
(Tricks)
...      class-methods: explode_po_bom importing value(i_order)         type ebeln                                             value(i_position)      type ebelp                                             value(i_show_messages) type abap_bool default abap_false ...
Created on 04 February 2017
11. Deletion of subcontracting BOM in Purchase Requisition
(Tricks)
... the re-exploding the BOM, the difference is that FM ME_COMPONENTS_MAINTAIN is called with parameter i_vorga = 'D'  and message check at the end is bit different.     report zabdelprbom. ...
Created on 03 February 2017
12. Re-explosion of subcontracting BOM in Purchase Requisition
(Tricks)
... how to do this in backgroud. The solution was to run FM ME_COMPONENTS_MAINTAIN and ME_COMPONENTS_UPDATE_PREPARE in correct way together with message handler to not interrupt whole process. Here you can ...
Created on 02 February 2017
13. How to handle CL_GUI_ALV_GRID events in SALV
(Tricks)
...      ).     if sy-subrc  0. *     message id sy-msgid type sy-msgty number sy-msgno *                with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.     endif.     sender->register_delayed_event( ...
Created on 09 October 2016
14. Send mail in BADI or User-Exit without commiting
(Tricks)
... only when sending emails but also during adding of attachments. In this case it's really not safe to use this class in BADIs or User-Exits, but there is one replacement for CL_BCS -> CL_BCS_MESSAGE. ...
Created on 22 February 2016
15. ZDEMO_FALV13 - Mix demo + own screen and container
(FALV (Fast ALV Grid))
...        others                 = 4   ).   if sy-subrc  0. *   message id sy-msgid type sy-msgty number sy-msgno *              with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.   endif.     falv_stand->gui_status->add_button( ...
Created on 06 January 2016
16. ZDEMO_FALV04 - Full Screen with fully dynamic GUI Status
(FALV (Fast ALV Grid))
...          call function 'POPUP_DISPLAY_MESSAGE'           exporting             titel = 'Popup'   " Title             msgid = '00'             msgty = 'S'             msgno = '001'             msgv1 = 'Button 1 clicked'. ...
Created on 06 January 2016
17. ZDEMO_FALV03 - Full Screen with GUI Status Partly Dynamic
(FALV (Fast ALV Grid))
...          call function 'POPUP_DISPLAY_MESSAGE'           exporting             titel = 'Popup'   " Title             msgid = '00'             msgty = 'S'             msgno = '001'             msgv1 = 'Button 1 clicked'. ...
Created on 06 January 2016
18. ZDEMO_FALV02 - Full screen with redefinitions
(FALV (Fast ALV Grid))
...      case e_column_id-fieldname.       when 'SEATSMAX'.         call function 'POPUP_DISPLAY_MESSAGE'           exporting             titel = 'Hotspot is working'   " Title             msgid = '00' ...
Created on 05 January 2016
19. How to copy BOM using CEWB Function Modules
(How to...)
... do it yourself in your programs if this will be necessary.   report zabcopybom. data: c_bom_class_data      like bom_class_data,       e_ecm_data_error_type type cpcc_message_type. selection-screen begin of block b01 with frame title text-b01. ...
Created on 28 October 2015
20. The SIN of progress indicator
(Tricks)
...    endif.   message i001(00) with 'Done'. Please note that suppressing should be done before first call of progress indicator as in other case the parameter SIN will no longer be checked ...
Created on 19 August 2015
21. Dynamic GUI STATUS & TITLE with ABAP code
(Tricks)
...        exceptions         button_already_filled  = 1         button_does_not_exists = 2         icon_and_text_empty    = 3         others                 = 4     ).     if sy-subrc  0. *     message id sy-msgid type sy-msgty number sy-msgno ...
Created on 11 July 2015
22. CL_PROGRESS_INDICATOR VS direct call of SAPGUI_PROGRESS_INDICATOR
(Tips)
... remember I was always using SAPGUI_PROGRESS_INDICATOR FM to display such messages on the screen. When used inside loops I often was manually dividing current tabix by selected variable (for example 1000) ...
Created on 28 April 2015
23. Popup with multi-select ALV
(How to...)
...        ).     if sy-subrc  0.       message id sy-msgid type sy-msgty number sy-msgno       with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.     else.       call method go_popup_grid->set_ready_for_input ...
Created on 29 April 2014
24. Mass replace popup for ALV grid
(Tips)
...       others                = 3             .   if sy-subrc  0. * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.   endif. endfunction. ...
Created on 27 April 2014
25. GOS - How to add business documents at creation of object
(Tricks)
...        others             = 4          ).   if sy-subrc  0. * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO *            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.   endif.   loop at mt_connections assigning . ...
Created on 25 April 2014
26. GOS - Link Business Documents from PR to PO
(Tricks)
...    exceptions     not_found          = 1     error_authorithy   = 2     error_parameter    = 3     others             = 4     ).   if sy-subrc  0. * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO ...
Created on 25 April 2014
27. EWB Components allocation to routing operation (multilevel BOM)
(How to...)
...  *       text *----------------------------------------------------------------------* form check_entries.   clear g_error.   if  p_path  is initial .     message s001(00) with 'Fill path!' display like 'E'. ...
Created on 18 April 2014
28. Enhanced MB51 Part 6 - ZMB51 program
(Tricks)
...          exceptions          it_data_missing         = 1          it_fieldcat_lvc_missing = 2          others                  = 3         .       if sy-subrc  0. *       message id sy-msgid type sy-msgty number sy-msgno ...
Created on 28 March 2014
29. Characteristic's own input screen - Part 5 - show characteristic's own update scre
(How to...)
...      if sy-subrc  0. * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.     endif.     if i_set_val_from_object is not initial and        i_object is not initial              and ...
Created on 14 November 2013
30. Characteristic's own input screen - Part 4 - Move screen values to reference dat
(How to...)
...                      exceptions                       overflow       = 1                       others         = 2.                   if sy-subrc  0. * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO ...
Created on 14 November 2013
  • Start
  • Prev
  • 1
  • 2
  • Next
  • End


Łukasz Pęgiel
ALV GRID GUI HTML EDITOR READ USER OBJECTS MB51 FLAG Create a nice looking chart with CL GUI CHART ENGINE - Part 3 - Chart Data and render Speed up your coding with ABAP in Eclipse SITWRO 2017 session ECLIPSE PLUGIN ZCL FALV COLUMN - column fcat settings ABAP4 CALL TRANSACTION FIELDCATALOG ALV Grid in the nutshell Field catalog - just SAPGUI SET FUNCTIONCODE PERIOD AND DATE CONVERT OUTPUT INTTYPE COC1 FEATURE CHECK DESCRIBE NAME LVC FCAT GOS MANAGER ALV GRID IN THE NUTSHELL DARKEST DARK THEME REUSE ALV GRID DISPLAY BINARY RELATION CREATE COMMIT ADT ALINK CONNECTION UI2 JSON HEADER HANDLE SELECTION-SCREEN FUNCTION KEY ZDEMO FALV12 - Error log ECLIPSE ITM PROVIDE LOAD COMPLEX TSK FIELDNAME CHANGE CREATED VARIANT MSC7 SAVE Convert date to and from external date type Basic Information SALV CONTROLLER METADATA GTGET SLIS Enhanced MB51 Part 4 - Call MB51 IXML DOCUMENT GOS - Link Business Documents from PR to PO Copying is not poss FALV13 - Mix demo own screen and container AUTHORITY-CHECK ABAP EXTENSIONS SBCS SEND UPDATE SETTINGS CMD API Field catalog - key ESDUS APPEND
  • 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.