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

Search for:
Search Only:

Page 1 of 2

1. Characteristic's own input screen - Part 7 - <span class="highlight">save</span> characteristic value to databas
(How to...)
Now it's time to save the values entered into database. I will use here previously created method to move data from reference structure to BAPI tables, then I will read values from database to see ...
Created on 17 November 2013
2. <span class="highlight">Save</span> variant for single selection screen subscreen
(How to...)
When building a program with multiple selection screens sometimes it may be needed to save the variant with entries only for one of the subscreens and not for the others. If you want to do that you have ...
Created on 23 April 2013
3. <span class="highlight">Save</span> message with attachment in Outlook's Draft
(Tricks)
In previous post I've shown how to zip file directly on PC without using CL_ABAP_ZIP, this time I will show you how easy is to use OLE2_OBJECT to create an MS Outlook message with attachment and save ...
Created on 16 April 2013
4. ALV Grid in the nutshell: Field catalog - intlen - Internal Length in Bytes
(ALV Grid in the nutshell)
... then although I’ve entered the value of ‘12’ into the column, system didn’t allowed me to save it.   Figure 94 Error in edit mode caused by wrong value of field INTLEN (ZDEMO_AIN_CL38) ...
Created on 13 April 2020
5. Downloading Exchange Rates from Central Bank of Turkey
(How to...)
... to create an RFC destination (lets call it here Z_DESTINATION_TO_TCMB), as on many servers you need to provide credentials for PROXY and it is safer to keep it saved inside RFC destination, than in your ...
Created on 06 April 2020
6. ALV Grid in the nutshell: Field catalog - no_out
(ALV Grid in the nutshell)
... you set it to ‘X’, then as long as user will not unhide it and save it to the ALV variant, it will not be visible on the screen. But as said before it can be unhide using the display options.   ...
Created on 29 July 2019
7. ALV Grid in the nutshell: Field catalog - col_pos
(ALV Grid in the nutshell)
This field is responsible for setting up columns in proper order while displaying the grid without using of saved layout. It may be useful if you don’t allow your users to save their own or global grid ...
Created on 24 June 2019
8. ZCL_CMD_CUSTOMER -> Wrapper for CMD_EI_API classes
(How to...)
... 'LastName' ).     contact->set_addr_firstname( 'FirstName' ).     customer->save( ). catch zcx_cmd_customer. endtry.   Changing of contact person using contact person number: parameters: ...
Created on 06 June 2019
9. SAP Fiori - HTTP request failed403,,CSRF token validation failed
(How to...)
...    Then in WebIDE I've changed the call of the function behind the save button to use Read method.      On the backend side I've redefined the get_entity method for the inscidentSet ...
Created on 06 June 2019
10. Speed-up your Eclipse installation
(How to...)
...  -XX:+AggresiveOpts -Xmn2048m -Xss128m Once done, save your changes and run Eclipse. In my case it has speed up 4 times during the launching of the Eclipse. I also feel that it's working more ...
Created on 15 November 2018
11. How to extend the time between SAP license installations on NPL
(Tricks)
... make a backup of the *.vbox file, just in case :-)   Now edit the VBOX file by adding in ExtraData node one additional element that you can copy bellow and save.   ...
Created on 03 August 2018
12. CMD_EI_API deletes contact persons?
(Tips)
... a while I've found out that I have to call additionally the method update_modules and now the customer was saved. But now all contact persons for customer where deleted, even when I was not passing ...
Created on 13 August 2017
13. Copying is not poss.because an entry is missing in Table TVCPL VL473
(How to...)
... which was visible in error details and I user routine 302 for data transfer of item data without reference order.    Once saved I rerun the program and finally I received positive result.      ...
Created on 15 February 2017
14. 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
15. WYSIWYG HTML Editor in ABAP
(Tricks)
... to SAP. ZCL_HTML_EDITOR class, which is attached to this post, raises an event whenever someone click on save button in the editor, so you can easily handle it and then use new HTML for your purposes. ...
Created on 20 January 2016
16. ZCL_FALV - explanation of main methods and attributes
(FALV (Fast ALV Grid))
...  Attributes: FC_BACK FC_UP FC_EXIT FC_CANCEL FC_MASS_REPLACE FC_SAVE FC_PRINT FC_FIND FC_FIND_NEXT FC_FIRST_PAGE FC_LAST_PAGE FC_PREVIOUS_PAGE FC_NEXT_PAGE ...
Created on 09 January 2016
17. ZDEMO_FALV13 - Mix demo + own screen and container
(FALV (Fast ALV Grid))
...    falv_stand_copy->variant-report = sy-repid.   falv_stand_copy->layout_save = 'X'.   falv_stand_copy->layout->set_zebra( abap_true  ).   falv_stand_copy->display( ).   "copy of falv with own local redefinition ...
Created on 06 January 2016
18. ZDEMO_FALV06 - Grid Layout settings + "Mark" fiel
(FALV (Fast ALV Grid))
...    "it will check/uncheck checkbox instead of selecting/deselecting rows   if p_usemar eq abap_true.     falv->set_mark_field( 'MARK' ).   endif.   "user Layout option save changed to user-specific only ...
Created on 06 January 2016
19. ZDEMO_FALV04 - Full Screen with fully dynamic GUI Status
(FALV (Fast ALV Grid))
... Status in case of full screen FALV. When you use full dynamic GUI status then you're allowed to use up to 35 button slots. Default buttons like SAVE, BACK, UP, EXIT, PRINT,... are already set. If they are ...
Created on 06 January 2016
20. How to copy BOM using CEWB Function Modules
(How to...)
... and then use it for copying items to our target BOM in 'CS_CL_S_ITM_CREATE_BY_COPY'. At the end, when everything is fine, use FM 'CP_CC_S_SAVE' to save your changes and commit your work. ...
Created on 28 October 2015
21. Dynamic GUI STATUS & TITLE with ABAP code
(Tricks)
... function text with pattern ZCA_AB_DYNAMIC_GUI=>BUTTONS-Fxx where Fxx you have to replace by current function code. Additionally to application toolbar, fill also function keys for save, up, back, exit, ...
Created on 11 July 2015
22. Popup with multi-select ALV
(How to...)
...  *      i_consistency_check           = i_consistency_check *      i_structure_name              = i_structure_name       is_variant                    = gs_popup_variant       i_save                        = space ...
Created on 29 April 2014
23. GOS - How to add business documents at creation of object
(Tricks)
... name to it. At save (or after save) you can move attachments and business documents from temporary object to final one.    The question is what will happen when you'll attach business document to temporary ...
Created on 25 April 2014
24. 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
25. EWB Components allocation to routing operation (multilevel BOM)
(How to...)
... (CP_CL_P_OPR_ALLOCATION_PROVIDE). We need to do it in order to delete current allocation. 4) Deletion is done with CM_CL_P_COM_DELETE and saved with CP_CC_S_SAVE. Deletion is committed as in other case ...
Created on 18 April 2014
26. ESDUS, ESRUO - MM settings table - Part 3/3
(Tricks)
...  *  isave           = 'X' * TABLES *   IESDUS          = IESDUS  exceptions    not_found       = 1    others          = 2           . if sy-subrc eq 0. endif. call function 'ES_APPEND_USER_SETTINGS' ...
Created on 14 April 2014
27. ESDUS, ESRUO - MM settings table - Part 2/3
(Tricks)
... value in IACTIVE. If you want to save the settings directly to DB then you need to set the flag in ISAVE parameter, in other case you'll need to call FM ES_SAVE_USER_SETTINGS later. call function 'ES_APPEND_USER_SETTINGS' ...
Created on 09 April 2014
28. ESDUS, ESRUO - MM settings table - Part 1/3
(Tricks)
... ES_READ_USER_OBJECTS ES_APPEND_USER_OBJECTS ES_DELETE_USER_OBJECTS ES_SAVE_USER_OBJECTS ES_READ_USER_SETTINGS ES_APPEND_USER_SETTINGS ES_SAVE_USER_SETTINGS ES_DELETE_USER_SETTINGS As you can ...
Created on 31 March 2014
29. Enhanced MB51 Part 6 - ZMB51 program
(Tricks)
...        it_fieldcat              = gt_fcat[] *     it_special_groups        = gd_tabgroup *     it_events                = gt_events *     is_print                 = gd_prntparams       i_save                   = 'A' ...
Created on 28 March 2014
30. Characteristic's own input screen - Part 8 - example of use&#160;...
(How to...)
...          no_values_found           = 3         error_creating_table      = 4         others                    = 5            ).     if sy-subrc eq 0.       zcl_abapblog_com_classific=>save_charact_from_ref_data( ...
Created on 17 November 2013
  • Start
  • Prev
  • 1
  • 2
  • Next
  • End
Łukasz Pęgiel
ALV GRID LVC FCAT How to teach ABAP OPR PROVIDE MTK GUI ALV GRID Dynamic GUI STATUS TITLE with ABAP code FIELDCATALOG SET SELECTED CELLS PRAGMA BAPI OBJCL GETDETAIL RSDBRUNT ALV GRID IN THE NUTSHELL SCMS STRING XSTRING MB51 FLAG Battleships game two players VARIANT CATALOG ALV Grid in the nutshell Field catalog - cfieldname CHANGE CREATED CFIELDNAME ABAP IN ECLIPSE GOS SERVICE TOOLS GTMOVE LINKED OBJECTS INTTYPE Field catalog - do sum TRANSFER FROM SLIS IXML DOCUMENT Classifications - Part 4 - example of use Field catalog - symbol APPEND USER Delete Routing - piece of cake ALINK CONNECTION GTDELETE Field catalog - round COMMIT WORK JUST RSBCS EXAMPLE EMAIL SIMPLE UPPER CASE ISOLATE SELSCREEN SALV TABLE MMIM REP CUST SYNTAX-CHECK CVIC MAP CONTACT ABAP in Eclipse SUBTOTAL TEXT DFIELDNANE LOWER CASE CHART ENGINE RM07DOCS #EC INFO CALL TRANSFORMATION Free global data of a program at once VRM VALUES SCROLL VIA ENCODING BOM COPY Field catalog - rollname LOAD COMPLEX TSK
  • 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.