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

Search for:
Search Only:

Page 1 of 2

1. How to...
(Category)
Have you were lacking sometimes the documentation of a FM or BAPI or a manual how to do things that should be possible to do easily but you cannot find it nowhere? If yes I hope you can find what you'r ...
Created on 09 April 2013
2. Downloading Exchange Rates from Central Bank of Turkey
(How to...)
... 856</CrossRateOther>     </Currency> </Tarih_Date>   Now there are two main ways to convert XML, you can parse XML using for example CL_XML_DOCUMENT clas ...
Created on 06 April 2020
3. ALV Grid in the nutshell: Field catalog - rollname
(ALV Grid in the nutshell)
The main functionality of the ROLLNAME is to provide a data element that will be responsible for showing F1 help on the grid cell. If in data element the documentation is available, then it will be shown. ...
Created on 12 September 2019
4. ALV Grid in the nutshell: Field catalog - fix_column
(ALV Grid in the nutshell)
... document number. When you setup the value of this field to ‘X’, then the column(s) will be always visible. While scrolling the fields after the last field which has this flag will be moving left or right. ...
Created on 28 July 2019
5. 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
6. ZCL_CMD_CUSTOMER -> Wrapper for CMD_EI_API classes
(How to...)
... n instal this class (and all supporting ones) with abapGit https://github.com/fidley/Customers.  As there is no much documentation about this class yet, I will extend this article in futu ...
Created on 06 June 2019
7. Creating ABAP type definition from JSON structure (JSON2ABAPtype)
(How to...)
... lass.   In the example of usage I'll use sample JSON from TFS API documentation   {   "count": 3,   "value": [     {       "id": ...
Created on 20 August 2018
8. Retro ASCII symbols in ALV Grid table
(How to...)
... m to display all that I have found on 7.50 SP2 NW system.    report zab_alv_symbols. parameters: dummy as checkbox. initialization. data(grid) = new cl_gui_alv_grid( i_parent =  new cl_gui_docking_containe ...
Created on 03 June 2018
9. Copying is not poss.because an entry is missing in Table TVCPL VL473
(How to...)
... nal settings :-)    Bellow you can find piece of code which I used to create outbound delivery without reference document.     method create_delivery_wo.     data:    error_log     type                   bapiret ...
Created on 15 February 2017
10. Re-explode or delete purchase order line subcontracting BOM
(Tricks)
... Category         im_po_number = i_order    " Document Number       importing         ex_result    = data(po_ ...
Created on 04 February 2017
11. Why I like to code in ABAP in Eclipse
(Thoughts)
... table, type, etc. ) and all information about it will be fetched and shown in a pop-up. You can easily copy the types of FM parameters or preview the ABAPDoc and standard documentation   ...
Created on 27 May 2016
12. Send mail in BADI or User-Exit without commiting
(Tricks)
Everybody sends mails from SAP, some are still using old FM SO_NEW_DOCUMENT_ATT_SEND_API1 but some CL_BCS class. This class is really powerful but it has one disadvantage - it does commit work, and ...
Created on 22 February 2016
13. ZCL_FALV_LAYOUT - layout settings
(FALV (Fast ALV Grid))
...      methods set_object_key importing value(iv_value) type bds_typeid .     methods set_doc_id importing value(iv_value) type bds_docid  ...
Created on 10 January 2016
14. How to teach ABAP ???
(Thoughts)
... really useful to have such document. If you don't have it, then create it. It will take a while, but once done it's done.    After such lecture your young Padawan should be able to write ...
Created on 24 November 2015
15. GOS - How to add business documents at creation of object
(Tricks)
When you open standard transaction you may be surprised sometimes that although you're able to attach standard attachments while creating document, you're not able to attach business document at ...
Created on 25 April 2014
16. GOS - Link Business Documents from PR to PO
(Tricks)
... we also need a a method to link business documents of PR to PO. This is not so hard as we have in disposition class cl_alink_connection which allows to do such operations. Of course the time when you're ...
Created on 25 April 2014
17. ESDUS, ESRUO - MM settings table - Part 3/3
(Tricks)
... you open one of the MM t-codes like ME22N, ME51N or MIGO you see that always you got on the screen one of the latest open document there. Sometimes not last but one of the lasts and you want to make it ...
Created on 14 April 2014
18. ESDUS, ESRUO - MM settings table - Part 1/3
(Tricks)
Let's discus following scenarios with MM standard transactions: When you open one of the MM t-codes like ME22N, ME51N or MIGO you see that always you got on the screen one of the latest open document ...
Created on 31 March 2014
19. Enhanced MB51 Part 6 - ZMB51 program
(Tricks)
...  Selection-options which are the same as in MB51 should be coded with the same names so we can pass them to RM07DOCS by method call_mb51_static. I used REUSE_ALV here just to be able to do it faster, but ...
Created on 28 March 2014
20. Enhanced MB51 Part 5 - Export from MB51
(Tricks)
I can already call MB51 from previously created method but still I need to add an implicit enhancement into RM07DOCS so I'll be able to export results from MB51 and leave the program without displaying ...
Created on 28 March 2014
21. 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
22. Enhanced MB51 Part 3 - Get selection parameters
(Tricks)
As I have needed types I can start to create methods which I need. Firstly fast method the read select-option data from any program which will call our class. I will use here FM RS_REFRESH_FROM_SELECTOPTIONS . ...
Created on 27 March 2014
23. Enhanced MB51 Part 2 - Structure for data
(Tricks)
... a type t_list which contains most of the fields which are available in MB51 (structure list in RM07DOCS). Just after t_list you'll find type tt_list which is just table type for t_list.  ...
Created on 27 March 2014
24. Enhanced MB51 Part 1 - Goal and prerequisites
(Tricks)
... both needs - additional fields and direct display of ALV grid. So I started to dig and debug to see what is possible to do and these possibilities I found: Copy program RM07DOCS (MB51) to Z-one ...
Created on 24 March 2014
25. Reset rejection of Purchase Requisition
(How to...)
...       data: fo_req        type ref to if_purchase_requisition.   data: f_document    type mepo_document. ...
Created on 24 March 2014
26. How to check if for purchase requisition rejection can be reset?
(How to...)
Working with Purchase Requisitions in ABAP is quite pleasant job, but sometimes it's not so easy like with other documents types. You cannot easily say if Requisition is rejected and can be reset ...
Created on 18 March 2014
27. Characteristic's own input screen - Part 6 - move reference data to bapi structures
(How to...)
...          importing *         CLASSBASICDATA       = CLASSBASICDATA *         CLASSDOCUMENT        = CLASSDOCUMENT ...
Created on 16 November 2013
28. Characteristic's own input screen - Part 5 - show characteristic's own update screen
(How to...)
...          document_info        = ' '         excl_knowledge       = ' ' ...
Created on 14 November 2013
29. Characteristic's own input screen - Part 2 - Clear Initial Line
(How to...)
...          language             = sy-langu         document_info        = ' ' ...
Created on 31 August 2013
30. Classifications - Part 1 - prepare structure for class data
(How to...)
...  *     CLASSDOCUMENT        = CLASSDOCUMENT *     CLASSADDITIONAL      = CLASSADDITIONAL ...
Created on 17 May 2013
  • Start
  • Prev
  • 1
  • 2
  • Next
  • End
Łukasz Pęgiel
SCAN ABAP-SOURCE TOOL ACCESS SALV CONTROLLER METADATA GTGET LVC FIELDCATALOG ABAP ZIP ZCL FALV COLUMN - column fcat settings PROGRESS INDICATOR VS direct call of SAPGUI INDICATOR ALV GRID IN THE NUTSHELL FCAT JSON2ABAPtype CTMS CLASS DDB SAVE SAPGUI SAP Community Events INIT USER SETTINGS ALV GRID RSDBRUNT LAYOUT - layout settings MEREQS EBAN LOOKUP ALV Grid in the nutshell Field catalog - symbol GUI ALV GRID SET VALUE ONLINE APPEND OBJECTS acrTYC BCS COMPONENTS UPDATE PREPARE HOW TO START WITH ALV XML STARTING NEW TASK SCMS XSTRING BINARY OPR ALLOCATION PROVIDE INTTYPE COC1 FEATURE CHECK STRING GUI HTML EDITOR TECH F4IF START REQUEST ESDUS SAP DEVELOPMENT TOOLS FOR ECLIPSE FILL MDLB FROM RM07DOCS ABAP FAVORITES BOM ELEMDESCR Classifications - Part 2 - Get Object Details COL Field catalog - rollname MS OUTLOOK Field catalog - col pos SUM RELEASABLE REFRESH SELECTOPTIONS EXPONENT DOCKING CONTAINER CUSTOM TOTEXP MB51 BAPI EXCHANGERATE CREATE ABAP in Eclipse
  • 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

  • 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
  • ALV Grid in the nutshell: Field catalog - rollname

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 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
  • Subtotal lines of ALV GRID OO as content separator
  • Create fieldcatalog from internal table
  • Endless loop in BADI ME_PROCESS_PO_CUST
  • ATC Pseudo Comments list
  • EWB Components allocation to routing operation (multilevel BOM)
  • 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.