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

Search for:
Search Only:

Page 1 of 2

1. SAP Script error <span class="highlight">with</span> percentages using decimal field
(Tips)
... in the SAP Script form, but without effect. I was also trying to repeat this on different installations and funny fact was that it was not working on 7.40 with SP5 but with SP16 it was ok, with the same ...
Created on 03 June 2017
2. Speed up your coding <span class="highlight">with</span> ABAP in Eclipse (SITWRO 2017 session)
(How to...)
Bellow you can find the record of my session "Speed up your coding with ABAP in Eclipse"  at SAP Inside Track Wrocław 2017, which took place on 27th of May. During the session I was not able to cover whole ...
Created on 28 May 2017
3. A new hope for dark side <span class="highlight">with</span> Darkest Dark Theme for Eclipse
(How to...)
Dark theme is available in Eclipse since a long time, but there were many problems with easy setting of all colors in editors, windows and popups. Sometimes you had to even adjust your system settings ...
Created on 27 February 2017
4. Send mail in BADI or User-Exit <span class="highlight">with</span>out commiting
(Tricks)
... This class only collects the data, and when send method is run then calling a FM SBCS_SEND with destination NONE, or SBCS_SEND_UPDATE in update task, depending what attributes are passed to the class. ...
Created on 22 February 2016
5. ZDEMO_FALV04 - Full Screen <span class="highlight">with</span> fully dynamic GUI Status
(FALV (Fast ALV Grid))
... disabled you need to enable them with show method of dynamic gui status.   "! This is demo for FALV full screen with fully dynamic GUI STATUS "! done by Lukasz Pegiel for http://abapblog.com ...
Created on 06 January 2016
6. ZDEMO_FALV03 - Full Screen <span class="highlight">with</span> GUI Status Partly Dynamic
(FALV (Fast ALV Grid))
... to GUI status (in case of full screen display). Screen contains default grid buttons + 19 empty slots for custom buttons.   "! This is demo for FALV full screen with partly dynamic GUI STATUS "! done by Lukasz Pegiel for http://abapblog.com ...
Created on 06 January 2016
7. ZDEMO_FALV02 - Full screen <span class="highlight">with</span> redefinitions
(FALV (Fast ALV Grid))
... how to use FALV when you want to use event handlers by your own.  "All" events are handled so you just need to redefine proper method starting from evt_*   "! This is demo for FALV with redefinition of hotspot event handler ...
Created on 05 January 2016
8. Dynamic GUI STATUS & TITLE <span class="highlight">with</span> ABAP code
(Tricks)
... usually one to five buttons.    So what I want to present to you today is a way to create buttons dynamically at program runtime without a need to create GUI STATUS and GUI TITLE for each program. In fact ...
Created on 11 July 2015
9. Popup <span class="highlight">with</span> multi-select ALV
(How to...)
If you imported NUGG file from previous article you could be surprised that there is one additional FM available called Z_AB_POPUP_GRID_MULTI_SEL. This FM can be used to call a popup with ALV grid which ...
Created on 29 April 2014
10. Call standard F4 search help <span class="highlight">with</span> customized parameters
(How to...)
During creation of selection screen or normal screen for your program you declare some fields and you want to use with them standard search help but with some modification like putting values to one of ...
Created on 07 June 2013
11. Create a nice looking chart <span class="highlight">with</span> CL_GUI_CHART_ENGINE - Part 3 - Chart Data and render
(How to...)
... some data but I will use dummy one just to show you how to create the chart, you can replace this part with loop on your internal table or even better change it in the way that you'll pass internal ...
Created on 06 May 2013
12. Create a nice looking chart <span class="highlight">with</span> CL_GUI_CHART_ENGINE - Part 2 - Customization
(How to...)
In part one for this tutorial I quickly shown you how to create a chart customizing using Chart Designer, in this part I will show how I store and use such customizing. For the beginning I'll tell ...
Created on 04 May 2013
13. Create a nice looking chart <span class="highlight">with</span> CL_GUI_CHART_ENGINE - Part 1 - Chart Designer
(How to...)
At the beginning of my work with SAP I was disappointed with the charts that was available in standard transactions. In fact I am still :) But when I have to create own program with nice looking chart ...
Created on 03 May 2013
14. Save message <span class="highlight">with</span> 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
15. Zipping in IZArc <span class="highlight">with</span> ABAP directly on PC
(Tricks)
From time to time you have to work on files that are stored in user PC, like when you're working with SOI (SAP Office Integration) for example. All operations that are done are save directly to a file ...
Created on 15 April 2013
16. ALV Grid in the nutshell: Field catalog - col_id - ALV control: Column ID
(ALV Grid in the nutshell)
... screen   When you select the first option - “COL_ID filled”,  the FCAT will be created with manual COL_ID.   Figure 121 ZDEMO_AIN_CL46 FCAT with manual COL_ID   As you will ...
Created on 08 June 2020
17. ALV Grid in the nutshell: Field catalog - Hotspot - ALV control: SingleClick-sensitive
(ALV Grid in the nutshell)
...  Once done, you should create handler for the event and notify ALV grid about it. To do so, you need to declare a method (named hotspot_click in my example) with the addition FOR EVENT HOTSPOT_CLICK ...
Created on 27 April 2020
18. ALV Grid in the nutshell: Field catalog - sp_group - Group key
(ALV Grid in the nutshell)
... then this setting of field catalog has no impact on display.   For my demo program ZDEMO_AIN_CL43, I’ve created a field catalog with REF_TABLE filled for all fields, so it is easier to understand ...
Created on 18 April 2020
19. ALV Grid in the nutshell: Field catalog - reprep - ALV control: Value is selection criterion for rep./rep.intf.
(ALV Grid in the nutshell)
Before writing this part, I was never using Report-Report Interface, so probably it is not common scenario to do so, or it is not used with the systems I had possibility to use. But anyway I’ve made a ...
Created on 13 April 2020
20. ALV Grid in the nutshell: Field catalog - reptext – Heading
(ALV Grid in the nutshell)
... then if you explicitly don’t set the SELTEXT and TOOLTIP fields, ALV will automatically copy the content of REPTEXT into those fields. Figure 98 Field catalog with automatic and manual REPTEXT ...
Created on 13 April 2020
21. ALV Grid in the nutshell: Field catalog - lowercase - Lowercase letters allowed/not allowed
(ALV Grid in the nutshell)
... lowercase, if the value of the parameter is empty, then it will always convert the entered value to uppercase.   Figure 96 Results of zdemo_ain_cl39 with lowercase turned on     ...
Created on 13 April 2020
22. Downloading Exchange Rates from NBP (National Bank of Poland)
(How to...)
...               table_number       TYPE string,              date_of_publishing TYPE string,              currencies         TYPE STANDARD TABLE OF currency WITH DEFAULT KEY,            END OF exchange_rate, ...
Created on 06 April 2020
23. 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
24. ABAP Extensions - Automatic Logon
(How to...)
... for the project and allow you to do right click and select the user with which you want to logon. If you double click on the user name, you'll get the popup with the possibility to put the password ...
Created on 04 January 2020
25. ALV Grid in the nutshell: Field catalog - inttype - ABAP data type (C,D,N,...)
(ALV Grid in the nutshell)
... in NW 7.52 SP04 ABAP Type Description C Character String N Character String with Digits ...
Created on 18 December 2019
26. ALV Grid in the nutshell: Field catalog - datatype
(ALV Grid in the nutshell)
... Floating Point with Scaling (obsolete) DF34_DEC Decimal Floating Point Stored in BCD Format DF34_RAW Decimal Floating Point ...
Created on 11 December 2019
27. 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
28. ALV Grid in the nutshell: Field catalog - convexit
(ALV Grid in the nutshell)
... 40 in S/4 HANA, and if it contains only numbers (for example 123),  then the internal value is stored with leading zeros, for example 000000000000000123 in ECC system. As you can imagine reading 123 is ...
Created on 29 July 2019
29. ALV Grid in the nutshell: Field catalog - outputlen
(ALV Grid in the nutshell)
... have a field that have maximum length of few characters but the description of the column is long. In such case with OUTPUTLEN you can decide if you want to adjust the column width to the width of the ...
Created on 29 July 2019
30. ALV Grid in the nutshell: Field catalog - tech
(ALV Grid in the nutshell)
... with the AUTHORITY-CHECK, just assume that you want to display one or two columns only to specific users that have the authorization for it ( like simple sales margin). After checking the authorization, ...
Created on 29 July 2019
  • Start
  • Prev
  • 1
  • 2
  • Next
  • End


Łukasz Pęgiel
FIELDCATALOG IXML ENCODING BAPI CLASS READ ALV GRID IN THE NUTSHELL How to teach ABAP ZCL CMD CUSTOMER SCMS XSTRING BINARY cookies TOOLTIP COPY TSK GET GLOBALS FROM SLVC FULLSCR ALV Grid in the nutshell LVC FCAT ZDEMO FALV07 - Columns field catalog settings UI2 JSON EMPHASIZE TEACH ABAP ALV GRID ABAP IN ECLIPSE FALV Dynamic GUI STATUS TITLE with ABAP code SALV CONTROLLER METADATA GTGET VRM SET VALUES OUTB DELIVERY CREATENOREF Field catalog - edit mask RM07DOCS PLUGIN ABAP in Eclipse DYNAMIC STATUS - for full screen or popup CURRENCY AT SELECTION-SCREEN OUTPUT Field catalog - domname - Domain name ICON COMPONENTS UPDATE PREPARE SLIS GUI ALV GRID SAVE Endless loop in BADI ME PROCESS CUST SUBTOTAL TEXT F4IF SHLP DESCR ROWMARK Why I like to code in ABAP in Eclipse VIDEO SAP TechEd 2016 ALINK CONNECTION GTINSERT SBCS SEND INTTYPE COLUMN - column fcat F4 Help for external date FIX COLUMN TVCPLAP CVIC MAP CONTACT JSON2ABAPtype DOC LOOP AT SCREEN ELEMENT LOAD
  • 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)
  • Call standard F4 search help with customized parameters
  • ATC Pseudo Comments list
  • 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.