• 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
TVCPLAP CHECKBOX ESDUS ALV GRID SAP SCRIPT Save message with attachment in Outlook's Drafts FREE SESSION CHECK COC1 FEATURE GUI ALV GRID SALV TABLE ALV GRID IN THE NUTSHELL QFIELDNAME LVC FCAT TVCPLAK GET OBJECTS CLASS TOTEXP MDC7 FIELDCATALOG How to handle CL GRID events in SALV SCAN ABAP-SOURCE SELTEXT SIGN HEADER HANDLE Enhanced MB51 Part 2 - Structure for data ICON Copying is not poss F4IF START VALUE REQUEST FALV CVAPI DOC GETDETAIL ZDEMO FALV08 - Mass replace function ESRUO COL POS ALV Grid in the nutshell Field catalog - emphasize DARKEST DARK THEME Download SAVE USER SETTINGS ABAP STRUCTDESCR ADT AiE dark theme settings ROWMARK PERIOD AND DATE CONVERT OUTPUT SCMS STRING XSTRING Field catalog - checkbox CTMS DDB SET ONLINE Field catalog - no zero ISOLATE SELSCREEN How to copy BOM using CEWB Function Modules Endless loop in BADI ME PROCESS CUST STATUS Field catalog - tabname Enhanced MB51 Part 6 - ZMB51 program INTTYPE Field catalog - currency GUI STATUS chart designer COVEXT COMPONENTS UPDATE PREPARE Convert date to and from external date type INFO ESRUO - MM settings table - Part 3 ITM CREATE
  • 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 a nice looking chart with CL_GUI_CHART_ENGINE - Part 3 - Chart Data and render
  • Create fieldcatalog from internal table
  • GOS - How to add business documents at creation of object
  • Link Attachments of Purchase Requisition to Purchase Order
  • Endless loop in BADI ME_PROCESS_PO_CUST
  • Subtotal lines of ALV GRID OO as content separator
  • 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.