• 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're ...
Created on 09 April 2013
2. GOS - How to add business <span class="highlight">doc</span>uments 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
3. GOS - Link Business <span class="highlight">Doc</span>uments from PR to PO
(Tricks)
... 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 copying ...
Created on 25 April 2014
4. Download CV01N/2N/3N <span class="highlight">doc</span>uments to PC
(How to...)
You might have a task to use or download one or all files attached to document saved via CV01N transaction. This is not a big deal really, you just need to use some FMs available in standard of SAP like  ...
Created on 14 April 2013
5. Downloading Exchange Rates from Central Bank of Turkey
(How to...)
... parse XML using for example CL_XML_DOCUMENT class, or you can create a transformation that will convert the XML into internal table. I've choosen the second option in this example, as I've never done ...
Created on 06 April 2020
6. 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
7. 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
8. 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
9. ZCL_CMD_CUSTOMER -> Wrapper for CMD_EI_API classes
(How to...)
... 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 future with more details, ...
Created on 06 June 2019
10. Creating ABAP type definition from JSON structure (JSON2ABAPtype)
(How to...)
... documentation   {   "count": 3,   "value": [     {       "id": 297,       "rev": 1,       "fields": {         "System.AreaPath": "Fabrikam-Fiber-Git",         "System.TeamProject": "Fabrikam-Fiber-Git", ...
Created on 20 August 2018
11. Retro ASCII symbols in ALV Grid table
(How to...)
... 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_container( ...
Created on 03 June 2018
12. Copying is not poss.because an entry is missing in Table TVCPL VL473
(How to...)
... to create outbound delivery without reference document.     method create_delivery_wo.     data:    error_log     type                   bapiret2_t,              dates         type standard table of bapidlvdeadln, ...
Created on 15 February 2017
13. Re-explode or delete purchase order line subcontracting BOM
(Tricks)
...        exporting         im_tcode     = 'ME23N'         im_trtyp     = 'A'    " Transaction Type         im_aktyp     = 'A'    " Activity Category         im_po_number = i_order    " Document Number ...
Created on 04 February 2017
14. Why I like to code in ABAP in Eclipse
(Thoughts)
... in a pop-up. You can easily copy the types of FM parameters or preview the ABAPDoc and standard documentation   v.      Refactoring – well, this function is really one of the nicest, select ...
Created on 27 May 2016
15. 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 not ...
Created on 22 February 2016
16. ZCL_FALV_LAYOUT - layout settings
(FALV (Fast ALV Grid))
...      methods set_doc_id importing value(iv_value) type bds_docid .     methods set_template importing value(iv_value) type bds_filena .     methods set_language importing value(iv_value) type lang . ...
Created on 10 January 2016
17. How to teach ABAP ???
(Thoughts)
... 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 "Hello World" programs ...
Created on 24 November 2015
18. ESDUS, ESRUO - MM settings table - Part 3/3
(Tricks)
... 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 always last. ...
Created on 14 April 2014
19. 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
20. Enhanced MB51 Part 6 - ZMB51 program
(Tricks)
... 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 ALV OO can be used ...
Created on 28 March 2014
21. 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
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 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
24. Enhanced MB51 Part 2 - Structure for data
(Tricks)
... 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
25. 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 and to ...
Created on 24 March 2014
26. Reset rejection of Purchase Requisition
(How to...)
...    data: fo_req        type ref to if_purchase_requisition.   data: f_document    type mepo_document.   data: fo_resetable type ref to if_releasable_mm.   data: f_success     type mmpur_bool. ...
Created on 24 March 2014
27. 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 by ...
Created on 18 March 2014
28. Characteristic's own input screen - Part 6 - move reference data to bapi structure
(How to...)
...  *         CLASSDOCUMENT        = CLASSDOCUMENT *         CLASSADDITIONAL      = CLASSADDITIONAL *         CLASSSTANDARD        = CLASSSTANDARD           return               = ms_return         tables ...
Created on 16 November 2013
29. Characteristic's own input screen - Part 5 - show characteristic's own update scre
(How to...)
...          default_values       = ' '         language             = sy-langu         document_info        = ' '         excl_knowledge       = ' '         i_called_from_ddb    = ' ' ...
Created on 14 November 2013
30. Characteristic's own input screen - Part 2 - Clear Initial Lin
(How to...)
...          document_info        = ' '         excl_knowledge       = ' '         i_called_from_ddb    = ' '       tables         imp_characteristics  = it_api_char[]         exp_values           = mt_api_vali[] ...
Created on 31 August 2013
  • Start
  • Prev
  • 1
  • 2
  • Next
  • End
Łukasz Pęgiel
SALV TABLE GUI ALV GRID SAP WebIDE ZDEMO FALV05 - Adding Removing Disabling grid toolbar MD07 ECLIPSE FIELDCATALOG SET SELECTED CELLS SAP DEVELOPMENT TOOLS FOR ECLIPSE LVC FCAT JSON2ABAPtype ALV GRID Reset rejection of Purchase Requisition PROGRESS INDICATOR FALV08 - Mass replace function FILENAME CVAPI DOC CHECKOUTVIEW CONTROLLER METADATA GTGET SLIS RESET REJ ALLOWED Scan program for authority-check READ USER SETTINGS ALV GRID IN THE NUTSHELL FALV SAP TechEd Developer Hero 2016 CUSTOM CONTAINER MAT BOM CREATE COPY IXML PARSER ALV Grid in the nutshell Field catalog - convexit ALINK CONNECTION QM ATTACHMENTS Field catalog - key sel ZCL MEPO151 INTLEN BINARY RELATION GTREAD LINKS BINRELS CTMS DDB VAL FROM OBJECT GET DDIC FIELD LIST FALV Fast ALV Grid - First blood ROWS HOW TO START WITH ALV MB51 ESRUO - MM settings table - Part 2 SAVE MS OUTLOOK Classifications - Part 2 - Get Object Details TEXT STREAM FACTORY ADT SUBTOTAL OBJECTS ABAP Field catalog - emphasize cookies COL POS Field catalog - col pos VIRTUALBOX KKEK
  • 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.