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

Search for:
Search Only:

Page 1 of 2

1. ATC Pseudo Comments <span class="highlight">list</span>
(Tips)
... the list of the pragmas and pseudo comments for SLIN checks.   Pseudo Comment Pragma Finding Description ARGCHECKED  ...
Created on 26 September 2018
2. ALV Grid in the nutshell: Field catalog - sp_group - Group key
(ALV Grid in the nutshell)
... with any desired characteristic, for example, in report to list materials with all master data from client, plant and sales organization level, you could use the origin of the columns as a group factor. ...
Created on 18 April 2020
3. ALV Grid in the nutshell: Field catalog - reprep - ALV control: Value is selection criterion for rep./rep.intf.
(ALV Grid in the nutshell)
... 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 report ...
Created on 13 April 2020
4. ABAP Extensions - Automatic Logon
(How to...)
... node, you are able to add new client to the list.   When you right-click on client node, then you can create additional users or you can delete the client node.        When you ...
Created on 04 January 2020
5. 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, but bellow ...
Created on 24 June 2019
6. Create XLSX file from internal table in background v2
(Tricks)
...        field-symbols:  type standard table.       assign lt_data->* to .       try.           cl_salv_table=>factory(           exporting             list_display = abap_false           importing ...
Created on 01 June 2018
7. CMD_EI_API deletes contact persons?
(Tips)
... note 1421352 - FAQ: Customer cockpit, which was explaining the SPRO path for customizing view. ( I could use as well where used list on table, but I was curious about the SPRO path).        ...
Created on 13 August 2017
8. ABAP Favorites Eclipse plugin
(How to...)
... active editor/GUI, the folder will be visible. If you’ll make your folder project dependent then it will appear on the list only if your active editor/GUI is linked to the same SAP system.   On ...
Created on 29 June 2017
9. Re-explode or delete purchase order line subcontracting BOM
(Tricks)
...      r_messages = message_handler->get_list_for_bapi( ).     commit work.     if i_show_messages eq abap_true.       message_handler->show( im_amodal = abap_true ).     endif.   endmethod. ...
Created on 04 February 2017
10. Deletion of subcontracting BOM in Purchase Requisition
(Tricks)
...          i_number = eban-banfn       tables         t_mdlb   = mdlb_tab.     message_handler->co_handler_stop( ).     data(messages) = message_handler->get_list_for_bapi( ).     if not line_exists( messages[ msgty = 'E' ] ). ...
Created on 03 February 2017
11. Re-explosion of subcontracting BOM in Purchase Requisition
(Tricks)
...        exporting         i_number = eban-banfn       tables         t_mdlb   = mdlb_tab.     message_handler->co_handler_stop( ).     data(messages) = message_handler->get_list_for_bapi( ). ...
Created on 02 February 2017
12. Why I like to code in ABAP in Eclipse
(Thoughts)
... once you put your cursor into variable or method name, directly all occurrences of it will be marked on the side of editor, so you don’t need to use where used list inside the object or program and you ...
Created on 27 May 2016
13. Direct access quality notification attachments from action box
(How to...)
... used and then GOS manager is used to call directly attachment list. FUNCTION Z_AB_QM_SHOW_ATTACHMENT. *"---------------------------------------------------------------------- *"*"Local Interface: ...
Created on 22 October 2015
14. Mass replace popup for ALV grid
(Tips)
...        leave program.     when 'MASS_REPLA'.       call function 'Z_AB_MASS_REPLACE_ALV'         exporting           io_grid   = go_alv    " ALV List Viewer         changing ...
Created on 27 April 2014
15. GOS - Link Business Documents from PR to PO
(Tricks)
... we have list of all business documents we can insert link to it to PO with  cl_alink_connection=>insert. Importing: I_PURCHASE_REQUISITION Type EBAN-BANFN I_PURCHASE_ORDER Type EKKO-EBELN Implementation: ...
Created on 25 April 2014
16. EWB Components allocation to routing operation (multilevel BOM)
(How to...)
...  *&---------------------------------------------------------------------* *&      Form  load_task_list2 *&---------------------------------------------------------------------* *       text *----------------------------------------------------------------------* ...
Created on 18 April 2014
17. ESDUS, ESRUO - MM settings table - Part 3/3
(Tricks)
... DISPLAY X MIGO: Display Overview (X = display, empty  = hidden) MIGO_TREE WIDTH 160 MIGO: Overview tree width MIRO ITEM_LIST_VERSION 7_6310 MIRO: Invoice Items Layout MIRO REFERENZBELEGTYP 1 MIRO: Default ...
Created on 14 April 2014
18. ESDUS, ESRUO - MM settings table - Part 2/3
(Tricks)
... FMs.   ESDUS table keeps parameters mostly for MM transactions, here is the list of t-codes for which I found some entries inside ESDUS: - IA05 - MB24 - MB25 - MB51 - MB52 - MB59 - MB5TD - ...
Created on 09 April 2014
19. ESDUS, ESRUO - MM settings table - Part 1/3
(Tricks)
... with a list of last used object for given user or if parameter IUNAME is not passed then for current user. Two additional parameters MAXANZ and MAXSTORE are responsible for clearing ESRUO table, if number ...
Created on 31 March 2014
20. Enhanced MB51 Part 6 - ZMB51 program
(Tricks)
We have all needed methods and implicit enhancement is also created so we can create a program to call MB51. We have to create a structure for ALV and include in it type t_list from our class which I've ...
Created on 28 March 2014
21. Enhanced MB51 Part 5 - Export from MB51
(Tricks)
... them. Enhancement must be done at the end of form process_list.      I'll create a method to do the export inside MB51 with only one changing parameter, which will check if we're calling MB51 from ...
Created on 28 March 2014
22. Enhanced MB51 Part 4 - Call MB51
(Tricks)
I've got method to get selection screen parameters to table so I can call MB51 by submitting program RM07DOCS. Of course if I do that without any changes of parameters then I would get not this list ...
Created on 27 March 2014
23. Enhanced MB51 Part 2 - Structure for data
(Tricks)
... and to get back the results.    I will need a type for the structure which will be used as a base type to all copy / move functions from MB51 to class and program. Bellow you'll find a type t_list ...
Created on 27 March 2014
24. Enhanced MB51 Part 1 - Goal and prerequisites
(Tricks)
... the structure "list" Then in the second step you should add enhancement at the end of the form process_list and fill your own fields in table list[] with data. If you'll do ...
Created on 24 March 2014
25. Download
(Download)
Here is the list of NUGG files which you can upload to your SAP system with SAPLink:
Created on 17 August 2013
26. Scan program for authority-check
(How to...)
... nugg file. report  zab_authorization_check_list. types: begin of t_alv,         program type trdir-name,         objct type   xuobject,         fiel1 type   xufield,         valu1 type   sstringwa, ...
Created on 13 July 2013
27. Custom selection-screen fields for MD07/MS07
(Tips)
... wants to be more precise in filtering or when the responsibility is set not only on a base of MRP controller. Fortunately SAP gives us the possibility to call MD07 and MS07 with our own list of materials ...
Created on 16 June 2013
28. Selection Screen - Part1 - Parameters
(For beginners)
...  *"parameter with modify group parameters: p_carri4 type scarr-carrid modif id gr1. *"listbox parameter parameters: p_name4  type char2 as listbox visible length 25 modif id gr1. *"listobx parameter with user-command ...
Created on 08 June 2013
29. How to select proper configuration entry
(Tips)
...    fo_conf_str ?= cl_abap_elemdescr=>describe_by_name( 'ZCONF' ).   "lets get fields for table   fo_conf_str->get_ddic_field_list( *    exporting *      p_langu                  = SY-LANGU ...
Created on 31 May 2013
30. Classifications - Part 4 - example of use
(How to...)
...  endif. The result of such code is, but the most important things you can find while debugging.   This is the list of components of our dynamic structure from cl_abap_structdescr.     Here is the result ...
Created on 26 May 2013
  • Start
  • Prev
  • 1
  • 2
  • Next
  • End


Łukasz Pęgiel
FIELDCATALOG SYM BAPI CLASS READ ALV Grid in the nutshell Field catalog - domname - Domain name SALV CONTROLLER METADATA GTGET SLIS Speed-up your Eclipse installation GUI ALV GRID VARIANT CONTENTS Field catalog - exponent ALV GRID IN THE NUTSHELL FALV REUSE Function Module or Method TABLE VIRTUALBOX DARKEST DARK THEME SEARCH RM07DOCS PERIOD AND DATE CONVERT OUTPUT GUI STATUS ALV GRID FIELDNAME DELETE USER SETTINGS ABAP DEVELOPMENTS TOOLS SAVE SET SELSCREEN STATUS BOM COPY ZCL CMD CUSTOMER BATTLESHIPS ABAP Extensions - Automatic Logon BCS Field catalog - rollname LVC FCAT Delete Routing - piece of cake CONVEXIT MB51 DFIELDNANE ECLIPSE CLAF OBJECTS SCAN ABAP-SOURCE CVIC MAP CONTACT ATC FRONTEND SERVICES EXECUTE BINARY RELATION CREATE COMMIT PROVIDE ITM PATH VL473 SAP Community Events APPEND COM OBJCL GETDETAIL ALINK CONNECTION GTFIND cookies AUTHORITY-CHECK API LOOP AT SCREEN ABAP in Eclipse NOLIST Field catalog - currency FIX COLUMN RSBCS EXAMPLE EMAIL SIMPLE OPR PURCHASE
  • 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.