• 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

Search

Total: 21 results found.

Search for:
Search Only:

1. Enhanced MB51 Part 5 - <span class="highlight">Export</span> 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
2. ATC Pseudo Comments list
(Tips)
...  DYN_DB N Dynamic DB-Access (&1) CI_FLDEXT_OK   CL_CI_TEST_FIELD_EXT EXPORT N EXPORT (&1) CI_FLDEXT_OK   CL_CI_TEST_FIELD_EXT ...
Created on 26 September 2018
3. How to copy BOM using CEWB Function Modules
(How to...)
... its export parameters in FM 'CS_CL_S_MAT_BOM_CREATE_BY_COPY', which is doing copy of a header data. Once it's done we have to get source items from memory using 'CS_CL_P_ITM_PROVIDE', ...
Created on 28 October 2015
4. The SIN of progress indicator
(Tricks)
...      set parameter id sin field sin_0.     "A call of which will set up parameter prog_indi_mode in FG SGUI     call function 'SAPGUI_PROGRESS_INDICATOR'       exporting         percentage = 100 ...
Created on 19 August 2015
5. Mass replace popup for ALV grid
(Tips)
...        exporting         p_status  = space         p_program = sy-repid       tables         p_exclude = ft_exclude.   endif. endform.                    "set_ss_status *&---------------------------------------------------------------------* ...
Created on 27 April 2014
6. EWB Components allocation to routing operation (multilevel BOM)
(How to...)
...    cl_gui_frontend_services=>file_open_dialog(   exporting *      window_title            = window_title     default_extension       = 'XLS' *      default_filename        = default_filename ...
Created on 18 April 2014
7. ESDUS, ESRUO - MM settings table - Part 2/3
(Tricks)
...  call function 'ES_READ_USER_SETTINGS'   exporting     iaction       = 'PurchaseOrder' *   IUNAME        = IUNAME *   IDB           = IDB *   ILIKE         = ILIKE   tables ...
Created on 09 April 2014
8. Enhanced MB51 Part 6 - ZMB51 program
(Tricks)
... as well as SALV. If you copy the code bellow and you'll have problems with excel export, then you'll have ot remove it or install to your SAP abap2xlsx classes which I used in this function.   ...
Created on 28 March 2014
9. Enhanced MB51 Part 4 - Call MB51
(Tricks)
... which I want (ALV kind) and MB51 would display its results on screen. That's why I need to export to memory some flags, first two must be set to be able to achieve form process_list in RM07DOCS and ...
Created on 27 March 2014
10. Enhanced MB51 Part 1 - Goal and prerequisites
(Tricks)
... your coding here then your data should be displayed on the screen.   Do implicit enhancement in RM07DOCS to export results of MB51 to memory and read it in external program - and this path I've chosen ...
Created on 24 March 2014
11. Characteristic's own input screen - Part 5 - show characteristic's own update scre
(How to...)
... SY-DATUM -> date for characteristics value I_STRUCTURE TYPE REF TO CL_ABAP_STRUCTDESCR OPTIONAL -> structure of classification for reference data Exporting: ET_VALUES TYPE TT_API_VALI -> table with update ...
Created on 14 November 2013
12. Characteristic's own input screen - Part 2 - Clear Initial Lin
(How to...)
... with previously filled data by CTMS_DDB_SET_VALUE_INTERNAL then for multiple value characteristic I was always receiving one additional line to these which was passed by me in export parameters. The funny ...
Created on 31 August 2013
13. Custom selection-screen fields for MD07/MS07
(Tips)
... using dummy transaction codes MDC7 and MSC7. All you need to do is to prepare a table of type MDMWX, export it to memory 'START_MD07' and call dummy t-code. Bellow you can find an example of the ...
Created on 16 June 2013
14. Selection Screen - Part1 - Parameters
(For beginners)
...    fs_values-key  = 'K4'.   fs_values-text = 'Text of K4'.   append fs_values to ft_values.   call function 'VRM_SET_VALUES'     exporting       id              = f_name ...
Created on 08 June 2013
15. Endless loop in BADI ME_PROCESS_PO_CUST
(Tips)
...          endloop.         "check if we changed something         if f_cond_changed is not initial.           "if yes then we set conditions           f_item->set_conditions( exporting im_conditions = ft_conditions[] ). ...
Created on 06 June 2013
16. Copy routing (create on a base of existing one)
(Tricks)
...    append f_tsk_plnal_selection to f_tsk_selection-plnal. * load source routing into EWB   call function 'CP_CC_S_LOAD_COMPLEX_BY_TSK'     exporting       i_class                        = 'P' ...
Created on 26 May 2013
17. Create XLSX/MHTML file from internal table in background
(Tricks)
... MHTML excel (like in ALV->Export to Spreadsheet). In newest version we're able save the file directly to XLSX also. In a method shown bellow you can see that to create Excel file you need to only pass internal ...
Created on 12 May 2013
18. Delete Routing - piece of cake
(How to...)
...  * load objects into EWB   call function 'CP_CC_S_LOAD_COMPLEX_BY_TSK'     exporting       i_class                        = 'P'       i_classes_in_workarea          = f_classes_in_workarea ...
Created on 18 April 2013
19. Zipping in IZArc with ABAP directly on PC
(Tricks)
... "parameter for IZArc to add file "check sytem variables for program files   cl_gui_frontend_services=>environment_get_variable(         exporting           variable             = 'PROGRAMFILES' ...
Created on 15 April 2013
20. Download CV01N/2N/3N documents to PC
(How to...)
... zip all files into zip container Exporting: ET_FILES TYPE CVAPI_TBL_DOC_FILES -> Table with all files found in document  ET_XSTRING TYPE TT_XSTRING -> TT_XSTRING -> Table of xstrings (each file in separated ...
Created on 14 April 2013
21. Free global data of a program at once
(Tricks)
...    data: m_classname type abap_abstypename.   "selecting global data names   call function 'RS_PROGRAM_INDEX'     exporting       pg_name             = i_program *   WITHOUT_TREE        = ' ' ...
Created on 10 April 2013


Łukasz Pęgiel
ECLIPSE DARK THEME IXML OSTREAM SAP TechEd GUI ALV GRID Use Scan program for authority-check SUM Dynamic GUI STATUS TITLE with ABAP code FALV Fast ALV Grid - First blood CTMS DDB SET VALUE INTERNAL FALV ALV Grid in the nutshell Field catalog - round LVC FCAT PURCHASE REQUISITION ALV GRID IN THE NUTSHELL SALV AGGREGATIONS BAPI OBJCL GETDETAIL SAVE USER OBJECTS Configure Create fieldcatalog from internal table Secure call of starting new task using RM FREE SESSION CHECK FIELDCATALOG READ TechEd TEXT ABAP AUTOMATIC LOGON PROCESS CUST ZDEMO FALV13 - Mix demo own screen and container MB51 Function Module or Method ABAP DEVELOPMENT TOOLS IN ECLIPSE CHART ENGINE PRINTOUTS LOWERCASE Unlock yourself on the DEV system REFRESH FROM SELECTOPTIONS ZIP Convert date to and from external date type How to handle CL GRID events in SALV BOM COPY Classifications - Part 4 - example of use Field catalog - tooltip ALV GRID ZERO INFO GET SCROLL VIA ABAP DEVELOPMENTS TOOLS MESSAGE HANDLER FILL MDPA EBAN BOM SMP DYNTXT PARAMETERS TVCPLAP EXCHANGERATE CREATE SAP TechEd 2016 REUSE MERGE GOS - Link Business Documents from PR to PO CMD API COL
  • 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.