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

Search for:
Search Only:

Page 1 of 2

1. ALV Grid in the nutshell: Field catalog - <span class="highlight">output</span>len
(ALV Grid in the nutshell)
OUTPUTLEN can be used to setup the width of the column (if you don’t use automatic column width optimization). When automatically created, usually it have the value of the maximum field width, but when ...
Created on 29 July 2019
2. ALV Grid in the nutshell: Field catalog - inttype - ABAP data type (C,D,N,...)
(ALV Grid in the nutshell)
... table field. But if you’ll have unstoppable need of filling it, then the behaviour of the column will be exactly the same like you would use DATATYPE field, means JUST, OUTPUTLEN, INTTYPE, INTLEN and DD_OUTLEN ...
Created on 18 December 2019
3. ALV Grid in the nutshell: Field catalog - datatype
(ALV Grid in the nutshell)
DATATYPE field has small influence on the way the column is displayed. You can omit this field and then ALV grid will automatically fill this field and additionally JUST, OUTPUTLEN, INTTYPE, INTLEN and ...
Created on 11 December 2019
4. ALV Grid in the nutshell: Field catalog - convexit
(ALV Grid in the nutshell)
... _OUTPUT. _INPUT and _OUTPUT describes if the FM is responsible for converting external value into internal (INPUT) or form internal value into external (OUTPUT).   Figure 75 Search of ...
Created on 29 July 2019
5. ALV Grid in the nutshell: Field catalog - tech
(ALV Grid in the nutshell)
Technical field allows you to do similar thing as NO_OUT, you can hide the field on the output, the difference is that, users are not able to unhide this field. As NO_OUT, in order that TECH field work, ...
Created on 29 July 2019
6. ALV Grid in the nutshell: Field catalog - no_out
(ALV Grid in the nutshell)
NO_OUT is useful when you want to hide the field on the output, but still allow users to unhide it on demand. As lots of fields from field catalog, it can be filled with ‘X’ or space (default). If ...
Created on 29 July 2019
7. ALV Grid in the nutshell: Field catalog - do_sum
(ALV Grid in the nutshell)
DO_SUM is very helpful when you want to assure that some of the numeric fields are summarized directly after the output, without interaction from the user side. In order to do so, just put the ‘X’ or ABAP_TRUE ...
Created on 28 July 2019
8. ALV Grid in the nutshell: Field catalog - edit_mask
(ALV Grid in the nutshell)
If you are familiar with the WRITE statement, then probably you know the EDIT_MASK addition which allows us to do formatting of the output in two different ways, you can apply the same to the EDIT_MASK ...
Created on 28 June 2019
9. ALV Grid in the nutshell: Field catalog - fieldname
(ALV Grid in the nutshell)
... internal table. As I haven’t filled anything in there beside the name of the field, the output will be really poor. We will have data displayed in our grid, but without any descriptions in header, without ...
Created on 24 June 2019
10. ALV Grid in the nutshell: Field catalog - currency
(ALV Grid in the nutshell)
... difference to the output, but there are some exceptions, for example JPY (Japanese Yen) don’t have decimal places. Figure 17 displays value of 42 294 whereas the internal value of field is 422,94. If we ...
Created on 24 June 2019
11. ALV Grid in the nutshell: Field catalog - cfieldname
(ALV Grid in the nutshell)
... should place its name here. The output of the cell will be then based on a currency key kept in the same row of the internal table, in the corresponding field.  In the sample program ZDEMO_AIN_CL09 ...
Created on 24 June 2019
12. ALV Grid in the nutshell: Field catalog - quantity
(ALV Grid in the nutshell)
... in output I’ve modified a bit the table entries, this time field DISTANCE from SPFLI table, where I’ve included decimal places for first row.   Figure 22 Changed entries of SPFLI table in ...
Created on 24 June 2019
13. ALV Grid in the nutshell: Field catalog - round
(ALV Grid in the nutshell)
... 2,5723, so the comma sign was moved left by 3 positions.   Figure 30 ZDEMO_AIN_CL12 Results with 3 as P_ROUND value Also changed output is visible when you use negative values. This time ...
Created on 24 June 2019
14. ALV Grid in the nutshell: Field catalog - exponent
(ALV Grid in the nutshell)
... how the field is displayed in ALV grid. For example, the picture below, shows the results of the ALV output when EXPONENT field was set to 2.   Figure 32 ZDEMON_AIN_CL13 Results with ...
Created on 24 June 2019
15. ALV Grid in the nutshell: Field catalog
(ALV Grid in the nutshell)
... control: Output line (INTERNAL USE) col_pos type lvc_colpos ALV control: Output column fieldname type ...
Created on 24 June 2019
16. ALV Grid in the nutshell: Basic Information
(ALV Grid in the nutshell)
... dummy PARAMETER and I moved the code of creating the container to event AT SELECTION-SCREEN OUTPUT. This way the docking container appears directly after running of the program. As you can see in Figure ...
Created on 24 June 2019
17. Selection-Screen Function Key in Form, Function Module or Method
(Tricks)
... is manipulating the output of the selection screen and also the GUI status.  After some debugging I found interesting global variables there: CURRENT_SCREEN and CURRENT_SCR.  CURRENT_SCREEN contained ...
Created on 21 November 2018
18. Creating ABAP type definition from JSON structure (JSON2ABAPtype)
(How to...)
...  *&---------------------------------------------------------------------* *&      Module  PBO  OUTPUT *&---------------------------------------------------------------------* *       text *----------------------------------------------------------------------* ...
Created on 20 August 2018
19. SAP Script error with percentages using decimal field
(Tips)
... wrong value if the print program was called for the second time.   The first output was OK, 8,00 % as value.       But when I directly show again the preview of the same invoice ...
Created on 03 June 2017
20. How to handle CL_GUI_ALV_GRID events in SALV
(Tricks)
...      endif.   endmethod.   method evh_del_change_selection.     message i001(00) with 'Yupi'.   endmethod. endclass. start-of-selection.   data(output) = new lcl_grid_trick( ). ...
Created on 09 October 2016
21. ZCL_FALV_COLUMN - column (fcat) settings
(FALV (Fast ALV Grid))
...      methods set_outputlen       importing         value(iv_value) type lvc_outlen .     methods set_convexit       importing         value(iv_value) type convexit .     methods set_seltext ...
Created on 10 January 2016
22. ZCL_FALV - explanation of main methods and attributes
(FALV (Fast ALV Grid))
... switch to read only mode.     methods set_readonly.   ADD_BUTTON This methods allows to add button to grid toolbar. Can be use before or after first output. The demo of usage can be found ...
Created on 09 January 2016
23. ZDEMO_FALV13 - Mix demo + own screen and container
(FALV (Fast ALV Grid))
...  *&      Module  PBO  OUTPUT *&---------------------------------------------------------------------* *       text *----------------------------------------------------------------------* module pbo output. ...
Created on 06 January 2016
24. ZDEMO_FALV09 - Cell settings
(FALV (Fast ALV Grid))
... if you have table lvc_t_styl in output table structure. If you want to use FALV way of handling cell settings then you need to firstly set stylefname attribute of layout so then you can use set_cell_xxxx ...
Created on 06 January 2016
25. ZDEMO_FALV06 - Grid Layout settings + "Mark" fiel
(FALV (Fast ALV Grid))
...    falv->title_v1 = 'ZDEMO_FALV06'.   "All layout settings have set method in layout object of FALV   "it can be udated before output or during runtime of program   falv->layout->set_zebra( abap_true  ). ...
Created on 06 January 2016
26. FALV (Fast ALV Grid)
(FALV (Fast ALV Grid))
... with SP5 making SALV editable is not needed as you can fast create ALV Grid which does everything you want. To be clear the big advantage of SALV, to call grid output of table in two, three lines when ...
Created on 04 January 2016
27. Dynamic GUI STATUS & TITLE with ABAP code
(Tricks)
...    call screen 0100. module pbo_0100 output.     zca_ab_dynamic_gui=>show_gui_status( ).     zca_ab_dynamic_gui=>show_title( iv_text1 = | Test Title | ). endmodule. module pai_0100 input. ...
Created on 11 July 2015
28. CL_PROGRESS_INDICATOR VS direct call of SAPGUI_PROGRESS_INDICATOR
(Tips)
... indicator had to be used.  Now with CL_PROGRESS_INDICATOR class and its method PROGRESS_INDICATE you can forget about all this stuff. Importing parameter I_OUTPUT_IMMEDIATELY determines if message will ...
Created on 28 April 2015
29. Popup with multi-select ALV
(How to...)
... In fact we need only PBO and PAI, in which creation of custom container and ALV object will take place and user command will be handled.     PBO / PAI code belllow: module pbo_0501 output.   set pf-status 'STATUS_0501'. ...
Created on 29 April 2014
30. Mass replace popup for ALV grid
(Tips)
... when you call dynamic selection-screen (with parameters like (variable) ) for the first time the output is ok, but the second time you do it in the same runtime of transaction or program then the length, ...
Created on 27 April 2014
  • Start
  • Prev
  • 1
  • 2
  • Next
  • End


Łukasz Pęgiel
ALV GRID FIELDCATALOG GUI ALV GRID ALV GRID IN THE NUTSHELL Enhanced MB51 Part 6 - ZMB51 program IXML ENCODING CVIC MAP CONTACT PROGRESS INDICATOR VS direct call of SAPGUI INDICATOR ALV Grid in the nutshell Field catalog - no sum ABAP Code Retreat ABAP DEVELOPMENT TOOLS IN ECLIPSE CHART ENGINE MEPO151 cookies Endless loop in BADI ME PROCESS CUST READ USER OBJECTS SE41 SAVE CTMS DDB SET VALUE ONLINE ZDEMO FALV12 - Error log RSDBRUNT MB51 ENHANCEMENT LZERO Scan program for authority-check SETTINGS ELEMENT TIMER RM07DOCS SALV UTIL By Topic CUSTOM CONTAINER Customer BAPI SELECT HTML VIEWER BAPI OBJCL GETDETAIL FALV11 - Editable Grid settings COMPONENTS MAINTAIN JSON2ABAPtype Field catalog BCS MESSAGE zero DELETE TSK COMMIT WORK QFIELDNAME Field catalog - tech LVC FCAT DYNAMIC GUI STATUS TABLE ISTREAM TOOLTIP FALV GUI HTML EDITOR Enhanced MB51 Part 2 - Structure for data ECLIPSE BATTLESHIPS Field catalog - tabname LEX Field catalog - qfieldname KKEK CONVERT FLOAT CURR REFRESH FROM SELECTOPTIONS MB51 OLE2 OBJECT CURRENT CELL VIA DOCUMENT
  • Laserowe usuwanie blizn Tychy
  • Laserowe usuwanie zmarszczek 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
  • Create XLSX file from internal table in background v2
  • FALV (Fast ALV Grid)
  • Call standard F4 search help with customized parameters
  • ATC Pseudo Comments list
  • Dynamic GUI STATUS & TITLE with ABAP code
  • Create fieldcatalog from internal table
  • 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
  • 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
  • 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.