• 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 - 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
2. 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
3. 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 ...
Created on 29 July 2019
4. ALV Grid in the nutshell: Field catalog - outputlen
(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
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)
... of 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)
... not make 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 ...
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 ...
Created on 24 June 2019
13. ALV Grid in the nutshell: Field catalog - round
(ALV Grid in the nutshell)
... you can see 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 ...
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 ...
Created on 24 June 2019
15. ALV Grid in the nutshell: Field catalog
(ALV Grid in the nutshell)
...  lvc_rowpos ALV control: Output line (INTERNAL USE) col_pos type lvc_colpos ALV control: Output column  ...
Created on 24 June 2019
16. ALV Grid in the nutshell: Basic Information
(ALV Grid in the nutshell)
... OUTPUT. This way the docking container appears directly after running of the program. As you can see in Figure 8, the grid is displayed on the left side of the SCREEN, while on the right side you can find ...
Created on 24 June 2019
17. Selection-Screen Function Key in Form, Function Module or Method
(Tricks)
... tion-screen then program RSDBRUNT is called which is manipulating the output of the selection screen and also the GUI status.  After some debugging I found interesting global variables there: CU ...
Created on 21 November 2018
18. Creating ABAP type definition from JSON structure (JSON2ABAPtype)
(How to...)
... ----* *&      Module  PBO  OUTPUT *&---------------------------------------------------------------------* *      &nbs ...
Created on 20 August 2018
19. SAP Script error with percentages using decimal field
(Tips)
...  the tax percentage, was showing wrong value if the print program was called for the second time.   The first output was OK, 8,00 % as value.       But when  ...
Created on 03 June 2017
20. How to handle CL_GUI_ALV_GRID events in SALV
(Tricks)
...    data(output) = new lcl_grid_trick( ).   output->create_salv( ). The result output would be like this:   Althought you can make it ...
Created on 09 October 2016
21. ZCL_FALV_COLUMN - column (fcat) settings
(FALV (Fast ALV Grid))
...          value(iv_value) type lvc_tech .     methods set_outputlen       importing         value(iv_value) type lvc_outlen . ...
Created on 10 January 2016
22. ZCL_FALV - explanation of main methods and attributes
(FALV (Fast ALV Grid))
... d toolbar. Can be use before or after first output. The demo of usage can be found in ZDEMO_FALV05.  IV_FUNCTION User command IV_ICON Icon for button, for exam ...
Created on 09 January 2016
23. ZDEMO_FALV13 - Mix demo + own screen and container
(FALV (Fast ALV Grid))
... ------------------------------* *&      Module  PBO  OUTPUT *&---------------------------------------------------------------------* *  &n ...
Created on 06 January 2016
24. ZDEMO_FALV09 - Cell settings
(FALV (Fast ALV Grid))
... are possible 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 ...
Created on 06 January 2016
25. ZDEMO_FALV06 - Grid Layout settings + "Mark" field
(FALV (Fast ALV Grid))
... 6'.   "All layout settings have set method in layout object of FALV   "it can be udated before output or during runtime of p ...
Created on 06 January 2016
26. FALV (Fast ALV Grid)
(FALV (Fast ALV Grid))
... you're at least on 7.40 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 o ...
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 ...
Created on 11 July 2015
28. CL_PROGRESS_INDICATOR VS direct call of SAPGUI_PROGRESS_INDICATOR
(Tips)
... of progress 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 ...
Created on 28 April 2015
29. Popup with multi-select ALV
(How to...)
... 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)
... it? Well, 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 ...
Created on 27 April 2014
  • Start
  • Prev
  • 1
  • 2
  • Next
  • End
Łukasz Pęgiel
SALV CONTROLLER METADATA MS07 LVC FCAT GUI HTML VIEWER REJECTION ALLOWED FIELDCATALOG ATC Pseudo Comments list ZDEMO FALV09 - Cell settings CTMS DDB HAS VALUES INTERNAL COC1 FEATURE CHECK Dynamic GUI STATUS TITLE with ABAP code ABAP DEVELOPMENT TOOLS IN ECLIPSE SCMS XSTRING BINARY ESRUO RESET REJ IXML ISTREAM Downloading Exchange Rates from NBP National Bank of Poland LOAD COMPLEX TSK ALV GRID MAT BOM CREATE COPY FALV AUTOMATIC LOGON ZCL Copying is not poss IFIELDNAME ALV Grid in the nutshell Field catalog - round ABAP STRUCTDESCR ALV GRID DYNAMIC STATUS - for full screen or popup ISOLATE SELSCREEN LOWER CASE GOS SERVICE TOOLS GAME SBCS SEND UPDATE MMIM REP CUST ESDUS SEARCH ALV GRID IN THE NUTSHELL Field catalog - lzero GET OBJECTS CLASS UI2 JSON KKEK CONVERT FLOAT CURR The SIN of progress indicator AGGREGATIONS SET SCROLL INFO VIA COLUMN - column fcat settings RELEASABLE BAPI OUTB DELIVERY CREATENOREF Reset rejection of Purchase Requisition cookies MB51 ENHANCEMENT
  • 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
  • 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
  • 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.