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

Search for:
Search Only:

1. ZCL_CMD_<span class="highlight">CUST</span>OMER -> Wrapper for CMD_EI_API classes
(How to...)
If you know CMD_EI_API class, you are aware of its power. It's very helpful for the manipulation of customer master data, all master data including contacts. I have played with this class many times and ...
Created on 06 June 2019
2. <span class="highlight">Cust</span>om selection-screen fields for MD07/MS07
(Tips)
You may noticed that standard transaction MD07 and MS07 offers basic filters on selection-screen which allows user to select materials they are responsible for, the problem comes when in your company users ...
Created on 16 June 2013
3. Call standard F4 search help with <span class="highlight">cust</span>omized parameters
(How to...)
... Help value( IT_DDSHIFACES ) TYPE DDSHIFACES -> Complete Interface of Search Help for Screen Exporting: ET_VALUESTYPE TFW_DDSHRETVAL_TAB -> Return Selected Values Implementation: method f4_with_customized_params. ...
Created on 07 June 2013
4. Endless loop in BADI ME_PROCESS_PO_<span class="highlight">CUST</span>
(Tips)
If you have to adjust conditions for your purchase order line and if during the use of method if_purchase_order_item_mm~set_conditions in BADI ME_PROCESS_PO_CUST you receive an error MEPO151 "Data ...
Created on 06 June 2013
5. Create a nice looking chart with CL_GUI_CHART_ENGINE - Part 2 - <span class="highlight">Cust</span>omization
(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
6. ALV Grid in the nutshell: Basic Information
(ALV Grid in the nutshell)
... can be used: Custom container Splitter container Docking container Dialogbox container   1. Custom container Custom container can be created with a class CL_GUI_CUSTOM_CONTAINER, ...
Created on 24 June 2019
7. ALV Grid in the nutshell
(ALV Grid in the nutshell)
... programs. This is of course OK for the start but later on it happens very often that our customers (internal or external) want to have some additional functionalities of the grid and due to restrictions ...
Created on 24 June 2019
8. Selection-Screen Function Key in Form, Function Module or Method
(Tricks)
... the five custom function codes on selection-screen? Well, definitely I have and it was really annoying as I wanted to be able to dynamically assign the slection-screen function key depending if it's already ...
Created on 21 November 2018
9. ATC Pseudo Comments list
(Tips)
...  MG_TYPE_UN MG_TYPE_UNDEF Incorrect type for MESSAGE command MG_USER MG_USER Message in customer ...
Created on 26 September 2018
10. Creating ABAP type definition from JSON structure (JSON2ABAPtype)
(How to...)
...    method constructor.     converter = new #( ).   endmethod.   method create_results_editor.     if results_editor is initial.       results_editor = new #( parent = new cl_gui_custom_container( container_name = 'CC_OUTPUT' ) ) . ...
Created on 20 August 2018
11. CMD_EI_API deletes contact persons?
(Tips)
I'm big fan of CMD_EI_API and VMD_EI_API classes. I use them to create, update and delete customer and vendor master data, including contact persons, partners and all data you have in XD02/XK02 transaction. ...
Created on 13 August 2017
12. A new hope for dark side with Darkest Dark Theme for Eclipse
(How to...)
... opinion, so for you the default settings may looks ok. There is also one big added value for Darkest Dark Theme: during installation you get also icon editor which can be used to customise all icons in ...
Created on 27 February 2017
13. ZDEMO_FALV14 - Popup calls
(FALV (Fast ALV Grid))
... popup. When you mark FALV as popup version then you can use default size or you can customize size. This demo shows how. "! This is demo for FALV standard fast call of pppup "! done by Lukasz Pegiel for http://abapblog.com ...
Created on 06 January 2016
14. ZDEMO_FALV13 - Mix demo + own screen and container
(FALV (Fast ALV Grid))
...    set pf-status 'DYNAMIC_STATUS_PART' of program 'SAPLZFALV'.   if falv_screen is initial.     falv_screen ?= lcl_test=>create( exporting       i_parent = new cl_gui_custom_container( container_name = 'CC_MAIN' ) ...
Created on 06 January 2016
15. ZDEMO_FALV03 - Full Screen with GUI Status Partly Dynamic
(FALV (Fast ALV Grid))
The latest version of each part of FALV can be found on github repository https://github.com/fidley/falv which you can use in abapGit for easier up to date handling.    Demo for adding custom buttons ...
Created on 06 January 2016
16. Direct access quality notification attachments from action box
(How to...)
...  *"  IMPORTING *"     VALUE(I_VIQMEL) LIKE  VIQMEL STRUCTURE  VIQMEL *"     VALUE(I_CUSTOMIZING) LIKE  V_TQ85 STRUCTURE  V_TQ85 *"  TABLES *"      TI_IVIQMFE STRUCTURE  WQMFE ...
Created on 22 October 2015
17. AiE (ADT) dark theme settings
(How to...)
Today I've got a question from Custodio de Oliveira (hope you don't mind mentioning) about Dark Eclipse settings which I'm using. As I know that settings colors in Eclipse for ADT is a pain, ...
Created on 16 July 2015
18. Popup with multi-select ALV
(How to...)
...  data: go_popup_custom_cont      type ref to cl_gui_custom_container. data: go_popup_grid             type ref to cl_gui_alv_grid. data: gs_popup_layout           type lvc_s_layo. data: gs_popup_variant          type disvariant. ...
Created on 29 April 2014
19. Mass replace popup for ALV grid
(Tips)
...  endfunction. Now you can call FM Z_AB_MASS_REPLACE_ALV and get different parameters in the popup if you select different column in ALV grid.   Demo report (please create screen 0100 with custom ...
Created on 27 April 2014
20. GOS - Link Business Documents from PR to PO
(Tricks)
... of Attachments article you can connect to GOS from class CL_PO_HEADER_HANDLE_MM which contains method GET_GOS_MANAGER. You can do it for example in PROCESS_ITEM method of ME_PROCESS_PO_CUST . You'll ...
Created on 25 April 2014
21. Enhanced MB51 Part 1 - Goal and prerequisites
(Tricks)
It think that some of you involved in MM or PP had already a request or need to add some fields to MB51 or to call it directly with ALV grid instead of old style view. I also had such request and it contained ...
Created on 24 March 2014
22. How to select proper configuration entry
(Tips)
When you will want to create a customization table for your program but you want to do it that way that you want to have many key fields and some of them can be empty which would mean that this is valid ...
Created on 31 May 2013
23. Create a nice looking chart with CL_GUI_CHART_ENGINE - Part 3 - Chart Data and render
(How to...)
... table. In the method provided bellow I firstly create custom container object (cl_gui_custom_container) to place the chart in it, then I create chart engine (cl_gui_chart_engine), then using if_xml I ...
Created on 06 May 2013
24. Create a nice looking chart with CL_GUI_CHART_ENGINE - Part 1 - Chart Designer
(How to...)
... then it's no longer a problem as we can use CL_GUI_CHART_ENGINE together with chart designer provided by SAP. Chart designer is a tool which allows you to create a customizing for your chart and save ...
Created on 03 May 2013
25. Free global data of a program at once
(Tricks)
...  types: t_scompo_name type line of tt_ra_scompo_name .       type-pools abap . constants cname_cl_gui_custom_container type abap_abstypename value '\CLASS=CL_GUI_CUSTOM_CONTAINER'.  constants cname_cl_gui_textedit type abap_abstypename value '\CLASS=CL_GUI_TEXTEDIT'.  ...
Created on 10 April 2013
Łukasz Pęgiel
Customer BAPI MB51 SALV TABLE ALV GRID ALV GRID IN THE NUTSHELL GUI FRONTEND SERVICES EXECUTE GUI TITLE APPEND USER OBJECTS IXML STREAM FACTORY REPREP FIELDCATALOG ALV GRID ESDUS INFO ABAP ELEMDESCR LZERO SCMS XSTRING BINARY EDITOR WITH STATUS GOS SERVICE TOOLS RELATION CREATE COMMIT FILENAME SAPGUI PROGRESS INDICATOR MDC7 SET FUNCTIONCODE LVC FCAT ALINK CONNECTION SAP CONVERT CSV FORMAT SLIN JSON2ABAPtype ZIP a file using ABAP HTML VIEWER Configure RSBCS EXAMPLE EMAIL SIMPLE PRINTOUTS SEARCH CONVEXIT REFRESH DISPLAY EXTENSION ALV Grid in the nutshell Field catalog - tabname DARKEST DARK THEME READ TEXT Field catalog - dfieldname Fieldname for column group Field catalog - fieldname SUBTOTAL TVCPLAK ABAP HTML Field catalog - do sum SUM EDIT MASK CTMS DDB VALUE INTERNAL BAPI CLASS DARK THEME HAS VALUES LOAD COMPLEX BOM FREE SESSION CHECK
  • 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
  • FALV (Fast ALV Grid)
  • Call standard F4 search help with customized parameters
  • Dynamic GUI STATUS & TITLE with ABAP code
  • Create XLSX file from internal table in background v2
  • ATC Pseudo Comments list
  • Create fieldcatalog from internal table
  • Create a nice looking chart with CL_GUI_CHART_ENGINE - Part 3 - Chart Data and render
  • 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
  • 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.