• 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. GOS - How to add business documents at creation of <span class="highlight">object</span>
(Tricks)
... this time. It's because business documents needs to have specified an object to which it is linked and in case of GOS for standard transactions it's always called without object id (in creation ...
Created on 25 April 2014
2. Classifications - Part 3 - get all <span class="highlight">object</span>s assigned to class
(How to...)
In previous article ( Classifications - Part 2 - Get Object Details ) I've created a method to get characteristics values for an object to our dynamic structure, in this part I will show how to use ...
Created on 18 May 2013
3. Classifications - Part 2 - Get <span class="highlight">Object</span> Details
(How to...)
  In the first part I show how to create a structure on a base of class characteristics, now I will describe how to get the characteristics values for a object and how to fill the structure we've created ...
Created on 18 May 2013
4. ALV Grid in the nutshell: Field catalog - Hotspot - ALV control: SingleClick-sensitive
(ALV Grid in the nutshell)
... to show the details of the clicked object, or to move to a transaction in which the object can be modified. As you can imagine, setting column as a HOTSPOT is very easy, you need to pass only the ABAP_TRUE ...
Created on 27 April 2020
5. ALV Grid in the nutshell: Field catalog - inttype - ABAP data type (C,D,N,...)
(ALV Grid in the nutshell)
As you can imagine, INTTYPE is just a presentation of DATATYPE in internal SAP format in most of cases. I wrote most of cases because it can also say if the field in internal table is a reference to other ...
Created on 18 December 2019
6. ALV Grid in the nutshell: Field catalog
(ALV Grid in the nutshell)
... (semantic domain) dragdropid type lvc_ddid ALV control: Drag&Drop handle for DragDrop object mac type ...
Created on 24 June 2019
7. Selection-Screen Function Key in Form, Function Module or Method
(Tricks)
Have you received someday an error from your ABAP object saying that "The statement SELECTION-SCREEN is not allowed within FORM routines and function modules." and you wondered why it is blocked to manipulate ...
Created on 21 November 2018
8. ATC Pseudo Comments list
(Tips)
... object not entered in table TOBJ AUTH_OBJ_OK   CL_CI_TEST_EXTENDED_CHECK 302 W Wrong number of authorization fields AUTH_FLD_NO   CL_CI_TEST_EXTENDED_CHECK ...
Created on 26 September 2018
9. Creating ABAP type definition from JSON structure (JSON2ABAPtype)
(How to...)
...        importing         i_comp          type abap_compdescr         value(i_data)   type ref to data         value(i_parent) type  abap_abstypename         i_level         type i.     methods check_object ...
Created on 20 August 2018
10. ABAP Favorites Eclipse plugin
(How to...)
...  a.Available views The plugin contains two separate views Favorites and Favorties Dev Objects. The difference between then is that in Favorites view you can create two kind of folders and in Favorites ...
Created on 29 June 2017
11. How to handle CL_GUI_ALV_GRID events in SALV
(Tricks)
... you can make your SALV editable and you can handle all the events you want from underlying cl_gui_alv_grid object.   What you need to do, is to set handler for event after_refresh for all instances of ...
Created on 09 October 2016
12. Why I like to code in ABAP in Eclipse
(Thoughts)
... the objects in code then you’re in heaven. In eclipse once you want to jump to method or function definition or implementation, you don’t have to save your current work and move to other, you just Ctrl ...
Created on 27 May 2016
13. ZCL_FALV_LAYOUT - layout settings
(FALV (Fast ALV Grid))
...      methods set_no_keyfix importing value(iv_value) type lvc_nokfix .     methods set_frontend importing value(iv_value) type lvc_front .     methods set_object_key importing value(iv_value) type bds_typeid . ...
Created on 10 January 2016
14. ZCL_FALV_COLUMN - column (fcat) settings
(FALV (Fast ALV Grid))
... as you expected but once you've displayed results and you modify fcat table then you need to use method set_frontend_fieldcatalog to affect grid object. That's why if you'll use Column object ...
Created on 10 January 2016
15. ZCL_FALV - explanation of main methods and attributes
(FALV (Fast ALV Grid))
...  BUILT_IN_SCREEN APPLICATION_LOG_EMBEDDED SUBCLASS_TYPE   CREATE This is a factory method which you need to use to create FALV object.      I_PARENT If ...
Created on 09 January 2016
16. ZDEMO_FALV07 - Columns (field catalog) settings
(FALV (Fast ALV Grid))
... the we can use standard old technique of getting frontend field catalog and then manipulating the entries or we can use column method which returns zcl_falv_column object and then using this object we ...
Created on 06 January 2016
17. ZDEMO_FALV06 - Grid Layout settings + "Mark" fiel
(FALV (Fast ALV Grid))
... some layout settings - like zebra, then you can use layout object which contains setters for all layout fields. Additionally in this object we have "Mark field" which changes behaviur of standard select ...
Created on 06 January 2016
18. How to teach ABAP ???
(Thoughts)
... selection-screens,  screens,  dictionary objects, object oriented programming, alv grid, FM, FG, and so on.  After person is familiar with all of this then you can start to share some info about basic ...
Created on 24 November 2015
19. Direct access quality notification attachments from action box
(How to...)
...    assign (gos_path) to .   if  is assigned and  is not initial.     data(object) = value borident( objkey = i_viqmel-qmnum ).     select single qmtyp into data(qmtyp)     from tq80     where qmart eq i_viqmel-qmart. ...
Created on 22 October 2015
20. CL_PROGRESS_INDICATOR VS direct call of SAPGUI_PROGRESS_INDICATOR
(Tips)
...      i_processed          = sy-index    " Number of Objects Already Processed     i_total              = p_times1    " Total Number of Objects to Be Processed     i_output_immediately = abap_true    " X = Display Progress Immediately ...
Created on 28 April 2015
21. Popup with multi-select ALV
(How to...)
... In fact we need only PBO and PAI, in which creation of custom container and ALV object will take place and user command will be handled.     PBO / PAI code belllow: module pbo_0501 output.   set pf-status 'STATUS_0501'. ...
Created on 29 April 2014
22. Mass replace popup for ALV grid
(Tips)
...    4) Last needed FM is the one which will be called directly from ALV. As import parameter we need cl_gui_alv_grid object and as a changing parameter we need out output table to be able to update it directly.  ...
Created on 27 April 2014
23. GOS - Link Business Documents from PR to PO
(Tricks)
... the PO is save with your some background job or you can try to insert the object directly to the GOS of purchase order.  I didn't do direct attachment to GOS of PO but as I mention in the comments ...
Created on 25 April 2014
24. EWB Components allocation to routing operation (multilevel BOM)
(How to...)
...    append fs_mbm_matnr to fs_mbm_sel_type-matnr.   concatenate 'I' 'EQ' i_werks into fs_mbm_werks.   append fs_mbm_werks to fs_mbm_sel_type-werks. * objects for loading ...
Created on 18 April 2014
25. ESDUS, ESRUO - MM settings table - Part 3/3
(Tricks)
...   To be sure you get last document you have to select data from ESRUO table directly, sort it by timestamp and get last object. Then update setting of default document for transaction, in my example for ...
Created on 14 April 2014
26. ESDUS, ESRUO - MM settings table - Part 2/3
(Tricks)
... ACTION is responsible for the identification of program or transaction or object for which the settings are stored. ELEMENT keeps the setting key (name) and ACTIVE keeps the value.    Usage and names ...
Created on 09 April 2014
27. ESDUS, ESRUO - MM settings table - Part 1/3
(Tricks)
... cases you'll want to look at tables: ESRUO (MM: Recently Used Objects) ESDUS (MM: Dynamic User Settings)  and to function group MLSO which provides you few nice FM to handle entries in this tables:  ...
Created on 31 March 2014
28. Enhanced MB51 Part 6 - ZMB51 program
(Tricks)
...  select-options matnr for mseg-matnr memory id mat matchcode object mat1. select-options werks for mseg-werks memory id wrk obligatory. select-options lgort for mseg-lgort memory id lag. select-options charg for mseg-charg memory id cha. ...
Created on 28 March 2014
29. Reset rejection of Purchase Requisition
(How to...)
...    "get requisition factory   if c_factory is initial.     call function 'MEREQ_GET_FACTORY'       importing         ex_factory = c_factory.   endif. * Create header object ...
Created on 24 March 2014
30. How to check if for purchase requisition rejection can be reset?
(How to...)
... checking EBAN table. You have to use OO PR objects to be able to do so. Bellow you can find a method how to check if you can reset the rejection of the requisition done in the WF.    Importing: I_BANFN TYPE ...
Created on 18 March 2014
  • Start
  • Prev
  • 1
  • 2
  • Next
  • End


Łukasz Pęgiel
BAPI CLASS READ USER SETTINGS MB51 GUI ALV GRID AiE DELETE OBJECTS SAPGUI SET FUNCTIONCODE Free global data of a program at once ATC CVAPI DOC CHECKOUTVIEW FIELDCATALOG SUM FALV Create a nice looking chart with CL CHART ENGINE - Part 2 - Customization DYNAMIC GUI STATUS COC1 FEATURE CHECK PRETTY PRINTER Speed up your coding with ABAP in Eclipse SITWRO 2017 session ALV GRID GET SCROLL INFO VIA ALV GRID IN THE NUTSHELL CREATE COM REUSE DISPLAY ATC Pseudo Comments list COL POS LVC FCAT DATE About me IXML ISTREAM ABAP IN ECLIPSE ZCL COLUMN - column fcat settings EXPORT TO MEMORY ID CTMS DDB INIT ADT ALINK CONNECTION GTFIND PERIOD AND CONVERT OUTPUT SELECTION-SCREEN FUNCTION KEY COPY TSK COVEXT ALV Grid in the nutshell Field catalog - no out GLOBALS FROM SLVC FULLSCR CMD CUSTOMER GTDELETE EDITOR TABLE WITH STATUS SALV UTIL GAME APPEND SAP Community Events Copy routing create on a base of existing one SELECTED ROWS RSBCS EXAMPLE EMAIL
  • 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.