• 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. ALV Grid in the nutshell: Field catalog - reprep - ALV control: Value is selection criterion for rep./rep.intf.
(ALV Grid in the nutshell)
... or Transaction. Probably depending on the installed version of your system, or addons, the list of the interfaces may be longer. Anyway I’ve focused here on a simple example of calling another ABAP ...
Created on 13 April 2020
2. ABAP Extensions - Automatic Logon
(How to...)
... he possibility to put the password in.   The popup is very simple to use. Once you enter the password, you can choose if you want to store the password in plain text or encrypted.  ...
Created on 04 January 2020
3. ALV Grid in the nutshell: Field catalog - tech
(ALV Grid in the nutshell)
... be used 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
4. ALV Grid in the nutshell: Field catalog
(ALV Grid in the nutshell)
... method. In table below you’ll find the list of all fields used in field catalog with its dictionary type and description. Some of the fields are quite simple to explain, some are harder, ...
Created on 24 June 2019
5. ALV Grid in the nutshell: Basic Information
(ALV Grid in the nutshell)
... you don’t have to do that. You can create it also before calling the screen, like in the simple example of using CL_GUI_CUSTOM_CONTAINER that you can find in Figure 1 and in demo program ZDEMO_AIN_CL01. ...
Created on 24 June 2019
6. SAP Fiori - HTTP request failed403,,CSRF token validation failed
(How to...)
... h it. That's why when I've heard that I need to create an simple app in Fiori to create new incident in our helpdesk system.    Normally it looks very simple both from backend and UI p ...
Created on 06 June 2019
7. ATC Pseudo Comments list
(Tips)
... g DB OP (&1) found CI_SEL_NESTED CI_SROFC_NESTED CL_CI_TEST_DB_OPS_IN_LOOPS DBREAD_S E Simple Nested Reading DB OP (&1) found CI_SEL_NESTED CI_SROFC_N ...
Created on 26 September 2018
8. ABAP Favorites Eclipse plugin
(How to...)
... olders then please don't care about folderID attribute. It will be added once the XML file will be parsed by the plugin. 4.Installation Installation of add-on is quite simple. You can do it with ...
Created on 29 June 2017
9. Why I like to code in ABAP in Eclipse
(Thoughts)
... as you want the keywords, making for example select, insert, delete, modify or method more visible. Just a simple thing but changes that much!     viii.      Going out ...
Created on 27 May 2016
10. Send mail in BADI or User-Exit without commiting
(Tricks)
... It means you can use it also in BADIs or User-Exits where commits are not welcomed.         You can find sample programs in SAP: RSBCS_EXAMPLE_EMAIL or RSBCS_EXAMPLE_EMAIL_SIMPLE, ...
Created on 22 February 2016
11. ZDEMO_FALV01 - Standard full screen FALV
(FALV (Fast ALV Grid))
... shows how fast and simple is to use FALV. A table is passed to factory method , title is updated and then full screen grid displayed   "! This is demo for FALV standard fast call ...
Created on 05 January 2016
12. FALV (Fast ALV Grid)
(FALV (Fast ALV Grid))
...  least some of you can also use it.   Advantages   Fast CL_GUI_ALV_GRID creation Replacement of REUSE_ALV_GRID_DISPLAY and REUSE_ALV_GRID_DISPLAY_LVC for a sim ...
Created on 04 January 2016
13. FALV (Fast ALV Grid) - First blood
(FALV (Fast ALV Grid))
... more than alpha release.    Basically what I try to get from this class:   Fast CL_GUI_ALV_GRID creation Replacement of REUSE_ALV_GRID_DISPLAY and REUSE_ALV_GRID_DISPLAY_LVC for a simple ...
Created on 28 December 2015
14. How to teach ABAP ???
(Thoughts)
... repeat it so many times that sometimes we can omit simplest solutions!   5. Be a master and a work mate   To keep good atmosphere don't stand always as a master or teacher, be a work ...
Created on 24 November 2015
15. Battleships game (two players)
(How to...)
... sure know from analog version.  Game is very simple, firstly you have to build your own map with ships. Just to remind you, there are 2 submarines, 2 destroyers, 1 cruiser, 1 battleship and 1 ...
Created on 10 January 2015
16. GOS - Link Business Documents from PR to PO
(Tricks)
... As I said, it's quite simple if you know class cl_alink_connection. Firstly we need to check if any business document is attached to PR, I will do it with method cl_alink_connection=>find. ...
Created on 25 April 2014
17. Characteristic's own input screen - Part 1 - Convert Values To Float
(How to...)
... see all mentioned methods and example of their usage. You can also find the code in attached NUGG file for easier import to your system. Ok so let's start with simple method to convert values from ...
Created on 31 August 2013
18. Endless loop in BADI ME_PROCESS_PO_CUST
(Tips)
... I've created simple structure with ebelp and "set" fields on a base which I know if I had to run setting of conditions or not.  Maybe it's not the nicest solution but it works ...
Created on 06 June 2013
19. Classifications - Part 4 - example of use
(How to...)
As I promised I will show how to use the methods we've prepared in previous parts of this tread. I will write simple program that calls the method get_objects_of_class and then loops through the ...
Created on 26 May 2013
20. Create a nice looking chart with CL_GUI_CHART_ENGINE - Part 3 - Chart Data and render
(How to...)
... create an xml data container which in fact can be written using simple concatenate statement but it's not nice to change and easy to mess. So after we receive an xml with data then I will pass ...
Created on 06 May 2013
21. Refresh ALV GRID and keep position and current cell
(Tricks)
... rows, we check for the selected cell information refresh_table_display  - then simple refresh of grid set_selected_cells_id   - after refresh it's time to set back all information, ...
Created on 22 April 2013
22. Get filename and extension from full path
(How to...)
... SAP cannot help you, then you have to helpyourself with ABAP. There is a really simple way to split filename/extension without any restrictions known from standard FM. Here is a code for a method, but ...
Created on 13 April 2013
23. Free global data of a program at once
(Tricks)
...   Method definision is simple, just the table with exluded objects and program name.    class-methods free_global_data       importing         !it_exclude type tt_ra_scompo_name optional ...
Created on 10 April 2013
24. About me
(Static pages)
... r SAP development and configuration.  I started with creation of some simple reports but with time my code started to look better than at beginning. Even if you look on this blog, you'll notice t ...
Created on 08 April 2013
Łukasz Pęgiel
ESRUO SET SELECTED ROWS ALV GRID FIELDCATALOG DELETE USER SETTINGS REFRESH TABLE DISPLAY ALV Grid in the nutshell Field catalog - cfieldname HOW TO START WITH ALV ABAP STRUCTDESCR READ REPTEXT GUI ALV GRID IXML ENCODING BAPI OBJCL GETDETAIL ICON Save message with attachment in Outlook's Drafts ALV GRID IN THE NUTSHELL GOS SERVICE TOOLS MB51 FLAG TECH Customer BAPI AUTHORITY-CHECK MANAGER ADT How to teach ABAP ELEMDESCR ZDEMO FALV11 - Editable Grid settings PRAGMA ESDUS SUM How to select proper configuration entry SALV LVC FCAT BCS MESSAGE CLAF OBJECTS CLASS CONTROLLER METADATA GTGET SLIS COMPONENTS RSDBRUNT FIELDNAME MS07 COVEXT ESRUO - MM settings table - Part 2 VRM VALUES Field catalog - lzero HANDLER ABAP4 CALL TRANSACTION Field catalog - no zero TVCPLAK Enhanced MB51 Part 4 - Call MB51 Field catalog - fieldname UTIL EXPORT TO MEMORY ID COL SCMS BINARY XSTRING Selection-Screen Function Key in Form SAP WebIDE Downloading Exchange Rates from NBP National Bank of Poland GET FRONTEND MB51 ENHANCEMENT SELSCREEN STATUS LOWER CASE ALINK CONNECTION GTUPDATE SAVE AUTOMATIC LOGON Field catalog - ifieldname
  • 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.