• 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 - symbol
(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. ALV Grid in the nutshell: Field catalog
(ALV Grid in the nutshell)
...  icon type lvc_icon ALV control: Output as icon symbol type lvc_symbol  ...
Created on 24 June 2019
3. Selection-Screen Function Key in Form, Function Module or Method
(Tricks)
... RRENT_SCREEN'.     field-symbols: <current_screen> type sydb0_screen.     assign (current_screen) to <current_screen>.     if sy-subrc eq 0 and i_button between 1&n ...
Created on 21 November 2018
4. ATC Pseudo Comments list
(Tips)
... RSOR_LOST   CL_CI_TEST_EXTENDED_CHECK 2605 E Use of ASSIGN or UNASSIGN on field symbol forbidden LOOP_ASSIGN   CL_CI_TEST_EXTENDED_CHECK ...
Created on 26 September 2018
5. Creating ABAP type definition from JSON structure (JSON2ABAPtype)
(How to...)
... nbsp;display.     cl_demo_output=>display( create_types( ) ).   endmethod.   method check_object.     loop at i_abap_type->components assigning field-symbol( ...
Created on 20 August 2018
6. Retro ASCII symbols 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
7. Create XLSX file from internal table in background v2
(Tricks)
... .       field-symbols: <tab> type standard table.       assign lt_data->* to <tab>.       tr ...
Created on 01 June 2018
8. Copying is not poss.because an entry is missing in Table TVCPL VL473
(How to...)
... ameter(s)     append lines of error_log to bapi_log.     loop at error_log assigning field-symbol(<err>) where type ca& ...
Created on 15 February 2017
9. Re-explode or delete purchase order line subcontracting BOM
(Tricks)
... _handle.     header = order->get_data( ).     data(items) = order->get_items( ).     loop at items assigning field-symbol(<i ...
Created on 04 February 2017
10. How to handle CL_GUI_ALV_GRID events in SALV
(Tricks)
...      assign fcat[ fieldname = 'CARRID' ] to field-symbol(<fcat>).     if sy-subrc eq 0.       <fcat>-edit = abap_true. ...
Created on 09 October 2016
11. ZCL_FALV_COLUMN - column (fcat) settings
(FALV (Fast ALV Grid))
...        importing         value(iv_value) type lvc_icon .     methods set_symbol       importing ...
Created on 10 January 2016
12. How to teach ABAP ???
(Thoughts)
... 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 whenever it's possible as this is better for performance" ...
Created on 24 November 2015
13. How to copy BOM using CEWB Function Modules
(How to...)
...        loop at e_itm_class_data assigning field-symbol(<itm>).     "! Copy Item         ...
Created on 28 October 2015
14. Direct access quality notification attachments from action box
(How to...)
...    field-symbols: <gos> type ref to cl_gos_manager.   assign (gos_path) to <gos>.   if <gos> is assigned and <gos> is not initial. ...
Created on 22 October 2015
15. Dynamic GUI STATUS & TITLE with ABAP code
(Tricks)
...      assign component iv_button of structure buttons to field-symbol(<bt>).     if <bt> is assigned. ...
Created on 11 July 2015
16. Create fieldcatalog from internal table
(How to...)
...      data: table type ref to data.     create data table like it_table.     assign table->* to field-symbol(<table>). ...
Created on 08 May 2015
17. Popup with multi-select ALV
(How to...)
...  field-symbols: <gt_popup_outtab> type standard table. 2) Then you need to create GUI status with Cancel and Enter Buttons 3) You may also want to create a title for the popup ...
Created on 29 April 2014
18. Mass replace popup for ALV grid
(Tips)
...  data: g_okcode type sy-ucomm. field-symbols: <fcat> type lvc_s_fcat. field-symbols: <any> type any. define add_param_descr. ...
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: <toavo> type toav0. ...
Created on 25 April 2014
20. GOS - Link Business Documents from PR to PO
(Tricks)
...    data: m_object type toav0-object_id.   field-symbols: <toavo> type toav0.   check i_purchase_requisition is not initial and i_purchase_order is not initial. ...
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: <assign> like line of gt_assignment. ...
Created on 18 April 2014
22. Enhanced MB51 Part 6 - ZMB51 program
(Tricks)
...  form pre-selection.   field-symbols: <marc> 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)
... calling MB51 from 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: <list> type any, ...
Created on 28 March 2014
24. Enhanced MB51 Part 4 - Call MB51
(Tricks)
... method call_mb51_static.   field-symbols: <list> type any,   <expt> type standard table,   <expl> type any. ...
Created on 27 March 2014
25. Range to search in lower case fields
(Tricks)
...  *"--------------------------------------------------------------------   field-symbols: <low> type any.   field-symbols: <sign> type any. ...
Created on 13 March 2014
26. Characteristic's own input screen - Part 7 - save characteristic value to database
(How to...)
... OPTIONAL value( I_CHANGE_NUMBER ) TYPE BAPI1003_KEY-CHANGENUMBER OPTIONAL -> Change Number  Exception: NO_DATA   Implementation: method save_charact_from_ref_data.     field-symbols: ...
Created on 17 November 2013
27. Characteristic's own input screen - Part 6 - move reference data to bapi structures
(How to...)
...      field-symbols: <ms> type any,                    <any> type any, ...
Created on 16 November 2013
28. Characteristic's own input screen - Part 4 - Move screen values to reference data
(How to...)
...   method move_screen_val_to_ref_data.     field-symbols: <ms> type any,                    <any> type any, ...
Created on 14 November 2013
29. Characteristic's own input screen - Part 3 - Move reference data values to screen
(How to...)
... NO_DATA_TO_CHANGE Implementation:  method move_ref_data_to_screen_val.     field-symbols: <ms> type any,                    <any> type any, ...
Created on 14 November 2013
30. Characteristic's own input screen - Part 2 - Clear Initial Line
(How to...)
... there.   Importing: IT_API_CHAR TYPE TT_API_CHAR -> Table type for structure api_char_tab Implementation:   method clear_initial_line_api_vari.     field-symbols: <ws> type any table. ...
Created on 31 August 2013
  • Start
  • Prev
  • 1
  • 2
  • Next
  • End
Łukasz Pęgiel
FILL MDPA FROM EBAN LVC FCAT ZDEMO FALV05 - Adding Removing Disabling grid toolbar MEREQ GET FACTORY PRINTOUTS KEY SEL ALV GRID IN THE NUTSHELL TEACH ABAP ALV GRID JSON2ABAPtype TECH FIELDCATALOG CTMS DDB SET VAL OBJECT IXML STREAM Free global data of a program at once SCMS XSTRING BINARY RELATION CREATE COMMIT MB51 Speed-up your Eclipse installation DATE #SAPTechEd 2016 Barcelona ABAP Extensions - Automatic Logon HEADER HANDLE PRETTY PRINTER ENCODING CVAPI DOC GETDETAIL SALV TABLE Scan program for authority-check FALV AT SELECTION-SCREEN OUTPUT How to copy BOM using CEWB Function Modules GOS SERVICE TOOLS GTMOVE LINKED OBJECTS FALV12 - Error log MEREQS LOOKUP SELECTED COLUMNS ZCL DYNAMIC STATUS - for full screen or popup LOWERCASE ALV Grid in the nutshell Field catalog - icon Selection Screen - Part1 - Parameters SAVE USER READ Field catalog - key sel How to handle CL GUI ALV GRID events in SALV MEPO DOCUMENT Field catalog - just VL473 ABAP ZIP FALV07 - Columns field catalog settings SE41 CONTROLLER METADATA GTGET SLIS ABAP in Eclipse PURCHASE ORDER DARK THEME
  • 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
  • EWB Components allocation to routing operation (multilevel BOM)
  • Save message with attachment in Outlook's Drafts
  • 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.