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

Search for:
Search Only:

1. Range to <span class="highlight">search</span> in lower case fields
(Tricks)
... a range of the possible values to be able to fulfill the task. Here is how to do it quite fast by doing FM:   function z_ab_prep_val_for_case_search. *"-------------------------------------------------------------------- ...
Created on 13 March 2014
2. Call standard F4 <span class="highlight">search</span> help with 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
3. ALV Grid in the nutshell: Field catalog - convexit
(ALV Grid in the nutshell)
... exits, you can find the by searching of FM that begins with CONVERSION_EXIT_*. You’ll notice that after the second underscore there is a five characters name of the conversion exit, and then _INPUT or ...
Created on 29 July 2019
4. ALV Grid in the nutshell: Field catalog - fieldname
(ALV Grid in the nutshell)
This field is one of the basic ones in field catalog. It contains the fieldname of internal table that will be used in our grid. Although LVC_T_FCAT is standard table, then this field should be treated ...
Created on 24 June 2019
5. Speed-up your Eclipse installation
(How to...)
... ( even if the connection to SAP backend was fast).  So I've started to search for possibilities to speed-up at least the starting time of the Eclipse. I've found few videos on the YouTube as well ...
Created on 15 November 2018
6. ATC Pseudo Comments list
(Tips)
...  901 N Undefined search help SEARCH_HELP_OK   CL_CI_TEST_EXTENDED_CHECK 903 N Initial value check for field type VALUE_OK   CL_CI_TEST_EXTENDED_CHECK ...
Created on 26 September 2018
7. CMD_EI_API deletes contact persons?
(Tips)
... any contact related values to the main structure. This was really strange behaviour for me. So as always in such kind of situations I've started to search for solution in SCN, then in OSS notes, but I failed. ...
Created on 13 August 2017
8. ABAP Favorites Eclipse plugin
(How to...)
... I've started to search the web for the eclipse plug-in developments so I could get some more information about it. It was hard time for me, I've stopped this few times until I said, no this cannot be that ...
Created on 29 June 2017
9. A new hope for dark side with Darkest Dark Theme for Eclipse
(How to...)
... and tabs of editor.   Project explorer is more fancy too.      Search history:   Transport organizer:     Problems:   Templates:   Breakpoints: ...
Created on 27 February 2017
10. How to access private or protected data and methods of CL_GUI_ALV_GRID
(Tricks)
... or methods declared. Quite strange, isn't it?     When you'll search were this interface is used then you'll notice that it's helping to get access to private grid data. So why not to ...
Created on 26 May 2016
11. AiE (ADT) dark theme settings
(How to...)
... tabs.     The view which will come will not be the best. As only Eclipse theme has changed but not the ADT color settings.     You can now go to Windows->Preferences, search for color settings and try ...
Created on 16 July 2015
12. Battleships game (two players)
(How to...)
... table under AB id. Additionally gui timer has started to run, and at end of the event FINISHED method to search partner for you is run. If it founds one, then you start to play, if not then the timer is ...
Created on 10 January 2015
13. Popup with multi-select ALV
(How to...)
...          sort ft_row_no by row_id ascending.         create data ft_table_ref like ct_outtab.         assign ft_table_ref->* to .         [] = ct_outtab[].         loop at  assigning .           read table ft_row_no with key row_id = sy-tabix binary search transporting no fields. ...
Created on 29 April 2014
14. Mass replace popup for ALV grid
(Tips)
...      read table ft_mass_sel_columns[] with key fieldname = -fieldname transporting no fields." binary search.     if sy-subrc eq 0.       add 1 to f_num.       add_param_descr: f_num -scrtext_s. ...
Created on 27 April 2014
15. EWB Components allocation to routing operation (multilevel BOM)
(How to...)
...                                                           binary search.     if sy-subrc eq 0.       "read operation data       read table ft_opr_class_data assigning  with key plnal = -plnal ...
Created on 18 April 2014
16. ESDUS, ESRUO - MM settings table - Part 2/3
(Tricks)
... object. You always have to pass IACTION parameter - so the name of searched configuration.  IUNAME if passed then FM returns settings for passed user, if parameter is not supplied then in default caller ...
Created on 09 April 2014
17. Enhanced MB51 Part 6 - ZMB51 program
(Tricks)
...      read table gt_blpp into gs_blpp                             with key belnr = -mblnr binary search.     if sy-subrc eq 0.       gs_alv-verid = gs_blpp-verid.     endif.     read table gt_marc into gs_marc ...
Created on 28 March 2014
18. Characteristic's own input screen - Part 7 - save characteristic value to databas
(How to...)
...                                                                      binary search.       if sy-subrc ne 0.         f_different = 'X'.       endif.     endloop.     loop at ft_allocvaluescharnew assigning . ...
Created on 17 November 2013
19. Custom selection-screen fields for MD07/MS07
(Tips)
...      loop at gt_mdma assigning .       read table gt_vendor assigning  with key matnr = -matnr       binary search.       if sy-subrc eq 0.         move -matnr to mdmwx-matnr.         move -werks to mdmwx-werks. ...
Created on 16 June 2013
20. Load variant to single subscreen (selection screen)
(How to...)
...          " clear current content of selection fields         loop at ft_params into fs_params.           read table ft_sscr with key name = fs_params-selname binary search transporting no fields. ...
Created on 02 May 2013
21. Delete Routing - piece of cake
(How to...)
Not once, not twice I've search for a solution to do changes in routings (task lists) in some wise way. I hate BDC but in this case I thought that there is no other solution. Fortunately I was wrong ...
Created on 18 April 2013
22. Link Attachments of Purchase Requisition to Purchase Order
(Tricks)
...                read table ft_polinks with key instid_b = fs_link-instid_b                                              binary search                                              transporting no fields. ...
Created on 12 April 2013
23. Free global data of a program at once
(Tricks)
...                                      and   type eq 'D'                                     and   name na ''.     read table mt_tokens with key str = -name                                   transporting no fields binary search. ...
Created on 10 April 2013


Łukasz Pęgiel
ALV GRID IN THE NUTSHELL GUI ALV GRID Range to search in lower case fields SAVE USER OBJECTS FIELDCATALOG HOW TO START WITH ALV ABAP TABLEDESCR ALV Grid in the nutshell Basic Information SCMS XSTRING BINARY FALV MESSAGE HANDLER LVC COL CMD API Field catalog - tech POPUP FCAT ESRUO PURCHASE REQUISITION ZDEMO FALV01 - Standard full screen FALV SE41 RSFUNC TXT ALV GRID ICON ABAP DEVELOPMENT TOOLS IN ECLIPSE By Topic Classifications - Part 2 - Get Object Details APPEND PRAGMA INFO API deletes contact persons Field catalog - dfieldname Fieldname for column group SET SELSCREEN STATUS OUT FALV10 - Color Settings ABAP IN ECLIPSE SELECTED ROWS LOAD COMPLEX BOM FRONTEND SERVICES GTFILE EXIST RSBCS EXAMPLE EMAIL MEREQS EBAN LOOKUP ABAP HTML Configure RM07DOCS MS OUTLOOK MB51 ENHANCEMENT #SAPTechEd 2016 Barcelona ABAP DEVELOPMENTS TOOLS Dynamic GUI STATUS TITLE with ABAP code KKEK CONVERT FLOAT CURR GOS SERVICE TOOLS IXML DOCUMENT CTMS DDB HAS VALUES INTERNAL MEPO FALV12 - Error log Field catalog - col id - ALV control Column ID PRINTOUTS SYMBOL REPREP SLIN CFIELDNAME
  • 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.