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

Search for:
Search Only:

Page 1 of 2

1. ALV Grid in the nutshell: Field catalog - <span class="highlight">sym</span>bol
(ALV Grid in the nutshell)
This field has similar functionality like ICON but instead of better looking icons, you can choose to display old-style ASCII symbols from type-pool SYM. Like in an example of ICON you have to setup the ...
Created on 24 June 2019
2. Retro ASCII <span class="highlight">sym</span>bols in ALV Grid table
(How to...)
The ALV Grid hides inside itself possibility to use ASCII symbols. All you need to do is to mark the one of fields in field-catalog as symbol and then use constants defined in TYPE-POOL SYM in order to ...
Created on 03 June 2018
3. ALV Grid in the nutshell: Field catalog
(ALV Grid in the nutshell)
...  lvc_icon ALV control: Output as icon symbol type lvc_symbol ALV control: Output as symbol checkbox ...
Created on 24 June 2019
4. Selection-Screen Function Key in Form, Function Module or Method
(Tricks)
...    endmethod.   method change_function_visibility.     data: current_screen type string value '(RSDBRUNT)CURRENT_SCREEN'.     field-symbols:  type sydb0_screen.     assign (current_screen) to . ...
Created on 21 November 2018
5. ATC Pseudo Comments list
(Tips)
...    CL_CI_TEST_EXTENDED_CHECK 2605 E Use of ASSIGN or UNASSIGN on field symbol forbidden LOOP_ASSIGN   CL_CI_TEST_EXTENDED_CHECK 3200 E Index ...
Created on 26 September 2018
6. Creating ABAP type definition from JSON structure (JSON2ABAPtype)
(How to...)
...    endmethod.   method display.     cl_demo_output=>display( create_types( ) ).   endmethod.   method check_object.     loop at i_abap_type->components assigning field-symbol().       data(field) = |i_data->|. ...
Created on 20 August 2018
7. Create XLSX file from internal table in background v2
(Tricks)
...        field-symbols:  type standard table.       assign lt_data->* to .       try.           cl_salv_table=>factory(           exporting             list_display = abap_false           importing ...
Created on 01 June 2018
8. Copying is not poss.because an entry is missing in Table TVCPL VL473
(How to...)
...          created_items = created_items    " Generated Delivery Items         return        = error_log.    " Return Parameter(s)     append lines of error_log to bapi_log.     loop at error_log assigning field-symbol() where type ca 'EAX'. ...
Created on 15 February 2017
9. Re-explode or delete purchase order line subcontracting BOM
(Tricks)
...      loop at items assigning field-symbol().       item = -item->get_data( ).       if item-ebelp eq i_position.         exit.       else.         clear item.       endif.     endloop.  ...
Created on 04 February 2017
10. How to handle CL_GUI_ALV_GRID events in SALV
(Tricks)
...        importing         et_fieldcatalog = data(fcat)    " Field Catalog     ).     "setting editable fields     assign fcat[ fieldname = 'CARRID' ] to field-symbol().     if sy-subrc eq 0. ...
Created on 09 October 2016
11. ZCL_FALV_COLUMN - column (fcat) settings
(FALV (Fast ALV Grid))
...      methods set_symbol       importing         value(iv_value) type lvc_symbol .     methods set_checkbox       importing         value(iv_value) type lvc_checkb .     methods set_just       importing ...
Created on 10 January 2016
12. How to teach ABAP ???
(Thoughts)
... you should get use to, and there have to be proper answer for that. You cannot tell "Because I want you to do it", you must explain what are the reasons to it, for example: "use field-symbols ...
Created on 24 November 2015
13. How to copy BOM using CEWB Function Modules
(How to...)
...          others           = 2.     if sy-subrc eq 0.       data: i_itm_class_data_new type itm_class_data.       data: i_alternatives_new type cscl_alt_tb_type.       loop at e_itm_class_data assigning field-symbol(). ...
Created on 28 October 2015
14. Direct access quality notification attachments from action box
(How to...)
...  *"----------------------------------------------------------------------   constants: gos_path type string value '(SAPLSWUG)GO_GOS_MANAGER'.   field-symbols:  type ref to cl_gos_manager. ...
Created on 22 October 2015
15. Dynamic GUI STATUS & TITLE with ABAP code
(Tricks)
...      assign component iv_button of structure buttons to field-symbol().     if  is assigned.       if  is initial.          = button.         if iv_allowed eq abap_true.           show_button( iv_button = iv_button ). ...
Created on 11 July 2015
16. Create fieldcatalog from internal table
(How to...)
... LVC field catalog implementation   method lvc_fcat_from_internal_table.     data: table type ref to data.     create data table like it_table.     assign table->* to field-symbol().     try.         cl_salv_table=>factory( importing ...
Created on 08 May 2015
17. Popup with multi-select ALV
(How to...)
...  data: gt_popup_fcat             type lvc_t_fcat. data: g_popup_question          type char70. field-symbols:  type standard table. 2) Then you need to create GUI status with Cancel and Enter Buttons ...
Created on 29 April 2014
18. Mass replace popup for ALV grid
(Tips)
...  data: g_fieldname type string. data: g_okcode type sy-ucomm. field-symbols:  type lvc_s_fcat. field-symbols:  type any. define add_param_descr.   concatenate 'P_DESC' &1 into g_fieldname. ...
Created on 27 April 2014
19. GOS - How to add business documents at creation of object
(Tricks)
...    data: mt_connections type standard table of toav0.   data: ms_toavo type toav0.   field-symbols:  type toav0.   check i_purchase_requisition is not initial and i_temp_object is not initial. ...
Created on 25 April 2014
20. GOS - Link Business Documents from PR to PO
(Tricks)
... method gos_alink_copy_link_pr_to_po.   data: mt_connections type standard table of toav0.   data: ms_toavo type toav0.   data: m_object type toav0-object_id.   field-symbols:  type toav0.  ...
Created on 25 April 2014
21. EWB Components allocation to routing operation (multilevel BOM)
(How to...)
...  data: gt_return type bapiret2_t. data: gs_return type bapiret2. data: g_error type c. field-symbols:  like line of gt_assignment. field-symbols:  like line of gt_plan. selection-screen begin of block exc with frame title text-exc. ...
Created on 18 April 2014
22. Enhanced MB51 Part 6 - ZMB51 program
(Tricks)
...  *       text *----------------------------------------------------------------------* form pre-selection.   field-symbols:  like gs_marc.   if s_ekgrp[] is not initial or s_dispo[] is not initial ...
Created on 28 March 2014
23. Enhanced MB51 Part 5 - Export from MB51
(Tricks)
... our class and if yes then it will copy results of MB51 to memory and leave the program. it_list type any table Implementation: method export_list_to_memory.   field-symbols:  type any,                   type any. ...
Created on 28 March 2014
24. Enhanced MB51 Part 4 - Call MB51
(Tricks)
... -> list with results from MB51 Implementation: method call_mb51_static.   field-symbols:  type any,    type standard table,    type any.   data: m_flag type c value 'X'.   data: mt_list type tt_list. ...
Created on 27 March 2014
25. Range to search in lower case fields
(Tricks)
...  *"     REFERENCE(ER_RANGE) TYPE  STANDARD TABLE *"--------------------------------------------------------------------   field-symbols:  type any.   field-symbols:  type any.   field-symbols:  type any. ...
Created on 13 March 2014
26. Characteristic's own input screen - Part 7 - save characteristic value to databas
(How to...)
... I_CHANGE_NUMBER ) TYPE BAPI1003_KEY-CHANGENUMBER OPTIONAL -> Change Number  Exception: NO_DATA   Implementation: method save_charact_from_ref_data.     field-symbols:                     type bapi1003_alloc_values_char, ...
Created on 17 November 2013
27. Characteristic's own input screen - Part 6 - move reference data to bapi structure
(How to...)
...  CT_OBJVALUESCHAR TYPE TT_BAPI1003_ALLOC_VALUES_CHAR CT_OBJVALUESCURR TYPE TT_BAPI1003_ALLOC_VALUES_CURR Exceptions: NO_DATA_TO_PASS  Implementation:   method move_ref_data_to_bapi_tables.     field-symbols:  type any, ...
Created on 16 November 2013
28. Characteristic's own input screen - Part 4 - Move screen values to reference dat
(How to...)
...      field-symbols:  type any,                     type any,                     type any table,                     type any,                     type any,                     type api_vali. ...
Created on 14 November 2013
29. Characteristic's own input screen - Part 3 - Move reference data values to scree
(How to...)
...   method move_ref_data_to_screen_val.     field-symbols:  type any,                     type any,                     type any,                     type any table,                     type any, ...
Created on 14 November 2013
30. Characteristic's own input screen - Part 2 - Clear Initial Lin
(How to...)
...    Importing: IT_API_CHAR TYPE TT_API_CHAR -> Table type for structure api_char_tab Implementation:   method clear_initial_line_api_vari.     field-symbols:  type any table.     data: mt_api_vali type  tt_api_vali. ...
Created on 31 August 2013
  • Start
  • Prev
  • 1
  • 2
  • Next
  • End
Łukasz Pęgiel
LOAD COMPLEX BOM KEY GUI CHART ENGINE ALV GRID IN THE NUTSHELL PRETTY PRINTER FIELDCATALOG CTMS DDB SET VALUE ONLINE RECEIVE RESULTS FROM FUNCTION ABAP ELEMDESCR ALV Grid in the nutshell Field catalog - fix column ABAP TEST COCKPIT ALV GRID VRM VALUES BCS Field catalog - fieldname LVC FCAT READ USER SETTINGS ALV GRID MSC7 FALV ESRUO SCMS STRING XSTRING BINARY ZDEMO FALV11 - Editable Grid settings Get filename and extension from full path SAVE TRANSFER SLIS TYPEDESCR FALV06 - Grid Layout settings Mark field The SIN of progress indicator Field catalog - exponent Range to search in lower case fields Mass replace popup for ALV grid SYMBOL SELECTED CELLS PURCHASE REQ FACTORY OLE2 OBJECT MS07 OBJECTS F4IF GET SHLP DESCR ROWS APPEND FRONTEND SERVICES EXECUTE Field catalog - symbol Field catalog - outputlen RM07DOCS How to handle CL GRID events in SALV COC1 FEATURE CHECK DATE CONVEXIT SELTEXT CLAF CLASS FROM SALV AGGREGATIONS VL473 SAP WebIDE Enhanced MB51 Part 1 - Goal and prerequisites TABLE FOR FIRST DISPLAY Field catalog - col
  • 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.