• 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. <span class="highlight">ZDEMO</span>_FALV14 - Popup calls
(FALV (Fast ALV Grid))
...  report zdemo_falv14. data: sflight type standard table of sflight. parameters: p_defau  radiobutton group gr1 default 'X',             p_set    radiobutton group gr1,             p_rowst  type i, ...
Created on 06 January 2016
2. <span class="highlight">ZDEMO</span>_FALV13 - Mix demo + own screen and container
(FALV (Fast ALV Grid))
...  report zdemo_falv13. types: begin of t_sflight.        include type sflight. types: style type lvc_t_styl,        end of t_sflight. data: sflight type standard table of t_sflight. select * up to 100 rows into corresponding fields of table @sflight ...
Created on 06 January 2016
3. <span class="highlight">ZDEMO</span>_FALV12 - Error log
(FALV (Fast ALV Grid))
... when the errors are gone, also container of errors is hidden. Check out the video. "! This is demo for FALV with error log "! done by Lukasz Pegiel for http://abapblog.com report zdemo_falv12. ...
Created on 06 January 2016
4. <span class="highlight">ZDEMO</span>_FALV11 - Editable Grid settings
(FALV (Fast ALV Grid))
...  "! done by Lukasz Pegiel for http://abapblog.com report zdemo_falv11. types: begin of t_sflight.         include type sflight. types:  styles type lvc_t_styl,         end of t_sflight.  ...
Created on 06 January 2016
5. <span class="highlight">ZDEMO</span>_FALV10 - Color Settings
(FALV (Fast ALV Grid))
... set colors for cells, rows and columns using FALV "! This is demo for FALV full screen with color settings "! done by Lukasz Pegiel for http://abapblog.com report zdemo_falv10. types: begin of t_sflight. ...
Created on 06 January 2016
6. <span class="highlight">ZDEMO</span>_FALV09 - Cell settings
(FALV (Fast ALV Grid))
... methods. In following example, cell settings are set at hotspot click. "! This is demo for FALV with cell settings "! done by Lukasz Pegiel for http://abapblog.com report zdemo_falv09. types: begin of t_sflight. ...
Created on 06 January 2016
7. <span class="highlight">ZDEMO</span>_FALV08 - Mass replace function
(FALV (Fast ALV Grid))
...  report zdemo_falv08. data: sflight type standard table of sflight. start-of-selection.   select * up to 100 rows   into corresponding fields of table @sflight   from sflight. ...
Created on 06 January 2016
8. <span class="highlight">ZDEMO</span>_FALV07 - Columns (field catalog) settings
(FALV (Fast ALV Grid))
...  report zdemo_falv07. data: sflight type standard table of sflight. start-of-selection.   select * up to 100 rows   into corresponding fields of table @sflight   from sflight. ...
Created on 06 January 2016
9. <span class="highlight">ZDEMO</span>_FALV06 - Grid Layout settings + "Mark" fiel
(FALV (Fast ALV Grid))
... all / deselect all function. "! This is demo for FALV full screen with layout changes "! done by Lukasz Pegiel for http://abapblog.com report zdemo_falv06. types: begin of t_sflight,          mark type bcselect. ...
Created on 06 January 2016
10. <span class="highlight">ZDEMO</span>_FALV05 - Adding/Removing/Disabling grid toolbar
(FALV (Fast ALV Grid))
...  "! done by Lukasz Pegiel for http://abapblog.com report zdemo_falv05. data: sflight type standard table of sflight. class lcl_test definition inheriting from zcl_falv.   public section. ...
Created on 06 January 2016
11. <span class="highlight">ZDEMO</span>_FALV04 - Full Screen with fully dynamic GUI Status
(FALV (Fast ALV Grid))
...  report zdemo_falv04. data: sflight type standard table of sflight. class lcl_test definition inheriting from zcl_falv.   public section.   protected section.     "redefinition of event handler ...
Created on 06 January 2016
12. <span class="highlight">ZDEMO</span>_FALV03 - Full Screen with GUI Status Partly Dynamic
(FALV (Fast ALV Grid))
...  report zdemo_falv03. data: sflight type standard table of sflight. class lcl_test definition inheriting from zcl_falv.   public section.   protected section.     "redefinition of event handler ...
Created on 06 January 2016
13. <span class="highlight">ZDEMO</span>_FALV02 - Full screen with redefinitions
(FALV (Fast ALV Grid))
...  "! done by Lukasz Pegiel for http://abapblog.com report zdemo_falv02. data: sflight type standard table of sflight. class lcl_test definition inheriting from zcl_falv.   public section. ...
Created on 05 January 2016
14. <span class="highlight">ZDEMO</span>_FALV01 - Standard full screen FALV
(FALV (Fast ALV Grid))
...  report zdemo_falv01. data: sflight type standard table of sflight. start-of-selection.   select * up to 100 rows   into corresponding fields of table @sflight   from sflight. ...
Created on 05 January 2016
15. ALV Grid in the nutshell: Field catalog - col_id - ALV control: Column ID
(ALV Grid in the nutshell)
... a demo program (ZDEMO_AIN_CL46) to show you, how the COL_ID is changing on a base of COL_POS. On the selection screen you can find two radio-buttons.   Figure 120 ZDEMO_AIN_CL46 Selection ...
Created on 08 June 2020
16. ALV Grid in the nutshell: Field catalog - sp_group - Group key
(ALV Grid in the nutshell)
... then this setting of field catalog has no impact on display.   For my demo program ZDEMO_AIN_CL43, I’ve created a field catalog with REF_TABLE filled for all fields, so it is easier to understand ...
Created on 18 April 2020
17. ALV Grid in the nutshell: Field catalog - reprep - ALV control: Value is selection criterion for rep./rep.intf.
(ALV Grid in the nutshell)
... and column name doesn’t need to be the same). Figure 101 Fieldcatalog of ZDEMO_AIN_CL41S   Selection-screen of receiver program is defined as follows: Figure 106 Receiver program ...
Created on 13 April 2020
18. ALV Grid in the nutshell: Field catalog - reptext – Heading
(ALV Grid in the nutshell)
... in ZDEMO_AIN_CL40     As you can see, grid looks much better with the column headers, also proper naming of the columns will help the users to better understand the values of the column.  ...
Created on 13 April 2020
19. ALV Grid in the nutshell: Field catalog - lowercase - Lowercase letters allowed/not allowed
(ALV Grid in the nutshell)
... lowercase, if the value of the parameter is empty, then it will always convert the entered value to uppercase.   Figure 96 Results of zdemo_ain_cl39 with lowercase turned on     ...
Created on 13 April 2020
20. 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
21. ALV Grid in the nutshell: Field catalog - inttype - ABAP data type (C,D,N,...)
(ALV Grid in the nutshell)
... fields will be also field and the difference on the screen will be not that huge.   Figure 93 Fieldcatalog of the ZDEMO_AIN_CL37 for Internal ABAP type T Possible internal ABAP types ...
Created on 18 December 2019
22. ALV Grid in the nutshell: Field catalog - datatype
(ALV Grid in the nutshell)
...    Figure 90 ZDEMO_AIN_CL36 Selection screen with data type Figure 91 ZDEMO_AIN_CL36 Result of report with TIMS data type   I’ve tried to enter data in TIME format ...
Created on 11 December 2019
23. ALV Grid in the nutshell: Field catalog - rollname
(ALV Grid in the nutshell)
... the demo program I’ve used data element S_CONN_ID to show you how does it work. Figure 85 ZDEMO_AIN_CL35 Selection Screen   On the first sight you can notice that if you’ll use ROLLNAME, ...
Created on 12 September 2019
24. ALV Grid in the nutshell: Field catalog - tooltip
(ALV Grid in the nutshell)
... very helpful for explaining the user the meaning of the column. Figure 81 ZDEMO_AIN_CL34 Tooltip of an column     Additionally if you’ll not use SELTEXT field, then the value ...
Created on 12 September 2019
25. ALV Grid in the nutshell: Field catalog - seltext
(ALV Grid in the nutshell)
...  Figure 79 ZDEMO_AIN_CL33 Column description in the layout popup   In case the TOOLTIP field is empty, the value from SELTEXT will be also used as tooltip and will appear when you ...
Created on 12 September 2019
26. ALV Grid in the nutshell: Field catalog - convexit
(ALV Grid in the nutshell)
... Conversion Exits In the example program ZDEMO_AIN_CL32 I’ve setup column CONNID to use conversion exit NUMCV. As you see you don’t put the full name of the FM into the CONVEXIT field, it only assumes ...
Created on 29 July 2019
27. ALV Grid in the nutshell: Field catalog - outputlen
(ALV Grid in the nutshell)
... you create it manually you can setup it to whatever value you want.   Figure 72 ZDEMO_AIN_CL31 Output length for field CITYFROM   My experience shows that it is useful when you ...
Created on 29 July 2019
28. ALV Grid in the nutshell: Field catalog - tech
(ALV Grid in the nutshell)
... you need to set its value to ‘X’.   Figure 70 ZDEMO_AIN_CL30 Setting of Field as Technical   Such setting is very helpful when you have to store some additional values in the ...
Created on 29 July 2019
29. ALV Grid in the nutshell: Field catalog - no_out
(ALV Grid in the nutshell)
...  Figure 68 ZDEMO_AIN_CL29 hiding of columns In this case I’ve also filled the REPTEXT column, in order to show you that it is possible to move the columns to display. If I wouldn’t do that, ...
Created on 29 July 2019
30. ALV Grid in the nutshell: Field catalog - no_sum
(ALV Grid in the nutshell)
... It will not only not show the sum, but also it will forbid to set it the GUI.   Figure 66 ZDEMO_AIN_CL28 DO_SUM for DISTANCE field   Once user will try to summarize the values ...
Created on 28 July 2019
  • Start
  • Prev
  • 1
  • 2
  • Next
  • End


Łukasz Pęgiel
FIELDCATALOG REFRESH FROM SELECTOPTIONS OLE2 OBJECT REUSE ALV GRID DISPLAY FALV BINARY RELATION CREATE Mass replace popup for ALV grid ZIP a file using ABAP ALV GRID IN THE NUTSHELL CVIC MAP CONTACT ESRUO ABAP DEVELOPMENTS TOOLS ZCL LAYOUT - layout settings RELEASABLE CHANGE CREATED VARIANT KKB SELECTIONS READ ALV Grid in the nutshell USER INFO The SIN of progress indicator SMP DYNTXT Extend allowed runtime of a program LVC FCAT CMD API EXTRACT APPEND OBJECTS COPY TSK DELETE SETTINGS COMP REQUIREMENT DATE SALV COLUMNS TABLE GUI ESDUS API deletes contact persons CTMS CLASS DDB ALV POPUP MEREQ GET FACTORY RM07DOCS Dynamic GUI STATUS TITLE with ABAP code GAME ZDEMO FALV02 - Full screen with redefinitions Field catalog - lzero ALV GRID VIRTUALBOX Field catalog - dfieldname Fieldname for column group Field catalog - reprep - ALV control Value is selection criterion for rep rep intf Classifications - Part 2 - Get Object Details Download chart designer QUANTITY RELEASE ALLOWED UTIL GOS MANAGER SAVE LOAD COMPLEX ITM BAPI EXCHANGERATE COMPONENTS UPDATE PREPARE MTK INTLEN
  • 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
  • Create XLSX file from internal table in background v2
  • Dynamic GUI STATUS & TITLE with ABAP code
  • ATC Pseudo Comments list
  • Create fieldcatalog from internal table
  • Link Attachments of Purchase Requisition to Purchase Order
  • GOS - How to add business documents at creation of object
  • 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
  • Endless loop in BADI ME_PROCESS_PO_CUST
  • 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.