How to design Customized ALV report like normal report !

Hello Friends,
              I like to design a ALV report, with sub headers, sub totals, summary total and other summary details like percentage sale, which is not relavent to the fields displayed in the ALV.
I know it is possible to get total of the displayed field, but is it possible to design flexible ALV report like normal report.
Could U please provide example code, if available.
Thank you,
Senthil

HI,
Just check this example.
REPORT  ZLAXMI_ALVEXER2  MESSAGE-ID ZZ                       .
*& TABLES DECLARATION                                                  *
TABLES: VBAK.
*& TYPE POOLS DECLARATION                                              *
TYPE-POOLS: SLIS.
*& INTERNAL TABLE DECLARATION                                          *
DATA: BEGIN OF ITAB OCCURS 0,
       ICON TYPE ICON-ID,
       VBELN LIKE VBAK-VBELN,
       AUDAT LIKE VBAK-AUDAT,
       VBTYP LIKE VBAK-VBTYP,
       AUART LIKE VBAK-AUART,
       AUGRU LIKE VBAK-AUGRU,
       NETWR LIKE VBAK-NETWR,
       WAERK LIKE VBAK-WAERK,
    END OF ITAB.
*INTERNAL TABLE FOR FIELD CATALOG
DATA: WA_FIELDCAT TYPE SLIS_FIELDCAT_ALV,
    IT_FIELDCAT TYPE SLIS_T_FIELDCAT_ALV.
IT_FIELDCAT TYPE STANDARD TABLE OF SLIS_FIELDCAT_ALV
           WITH HEADER LINE,
*INTERNAL TABLE FOR EVENTS
DATA:    IT_EVENT TYPE SLIS_T_EVENT,
      WA_EVENT TYPE SLIS_ALV_EVENT,
*INTERNAL TABLE FOR SORTING
      IT_SORT TYPE SLIS_T_SORTINFO_ALV,
      WA_SORT TYPE SLIS_SORTINFO_ALV,
*INTERNAL TABLE FOR LAYOUT
      WA_LAYOUT TYPE SLIS_LAYOUT_ALV.
*& VARIABLE DECLARATION                                                *
DATA : V_REPID TYPE SY-REPID,
       V_PAGNO(4) TYPE N,
       V_DATE(8)  TYPE C.
*& CONSTANTS                                                           *
CONSTANTS: C_X TYPE C VALUE 'X'.
*& SELECTION SCREEN                                                    *
SELECTION-SCREEN: BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-001.
SELECT-OPTIONS: S_VBELN FOR VBAK-VBELN,
                S_VBTYP FOR VBAK-VBTYP DEFAULT 'C'.
SELECTION-SCREEN: END OF BLOCK B1.
SELECTION-SCREEN: BEGIN OF BLOCK B2 WITH FRAME TITLE TEXT-002.
SELECTION-SCREEN : BEGIN OF LINE.
SELECTION-SCREEN  COMMENT 1(20) TEXT-003.
PARAMETERS: P_LIST RADIOBUTTON GROUP RAD1 DEFAULT 'X'.
SELECTION-SCREEN : END OF LINE.
SELECTION-SCREEN : BEGIN OF LINE.
SELECTION-SCREEN COMMENT 1(20) TEXT-004.
PARAMETERS: P_GRID RADIOBUTTON GROUP RAD1.
SELECTION-SCREEN : END OF LINE.
SELECTION-SCREEN: END OF BLOCK B2.
AT SELECTION-SCREEN.
  PERFORM VALIDATE_SCREEN.
*& START OF SELECTION                                               *
START-OF-SELECTION.
  CLEAR: ITAB, ITAB[].
V_REPID = SY-REPID.
  PERFORM GET_DATA.
  PERFORM DISPLAY_DATA.
*& END OF SELECTION                                                    *
END-OF-SELECTION.
*--DO ALV Process
  V_REPID = SY-REPID.
*--Sort the Output Fields
  PERFORM SORT_FIELDS.
*--Build Field catalog for the Output fields
PERFORM BUILD_FIELDCAT.
*--Set the Layout for ALV
  PERFORM SET_LAYOUT.
*&      Form  GET_DATA
      text
TO GET THE DATA FROM TABLES INTO ITAB
FORM GET_DATA .
  SELECT VBELN
         AUDAT
         VBTYP
         AUART
         AUGRU
         NETWR
         WAERK
         INTO CORRESPONDING FIELDS OF TABLE ITAB
         FROM VBAK
         WHERE VBELN IN S_VBELN AND
         AUDAT > '04.04.2005'
         AND NETWR > 0.
  LOOP AT ITAB.
    IF ITAB-NETWR < 10000.
      ITAB-ICON = '@08@'.
    ELSEIF ITAB-NETWR > 10000 AND ITAB-NETWR < 100000.
      ITAB-ICON = '@09@'.
    ELSEIF ITAB-NETWR > 100000.
      ITAB-ICON = '@0A@'.
    ENDIF.
    MODIFY ITAB INDEX SY-TABIX.
  ENDLOOP.
ENDFORM.                    " GET_DATA
*&      Form  sort_fields
FORM SORT_FIELDS .
  CLEAR WA_SORT.
  WA_SORT-FIELDNAME = 'VBTYP'.
  WA_SORT-SPOS = '1'.
  WA_SORT-UP = 'X'.
  APPEND WA_SORT TO IT_SORT.
  CLEAR WA_SORT.
  WA_SORT-FIELDNAME = 'NETWR'.
  WA_SORT-SPOS = '2'.
  WA_SORT-UP = 'X'.
  WA_SORT-SUBTOT = 'X'.
  APPEND WA_SORT TO IT_SORT.
ENDFORM.                    " sort_fields
*&      Form  build_fieldcat
*FORM BUILD_FIELDCAT .
IT_FIELDCAT-COL_POS    = '1'.
IT_FIELDCAT-FIELDNAME  = 'ICON'.
IT_FIELDCAT-KEY        = 'X'.
IT_FIELDCAT-OUTPUTLEN  = '10'.
IT_FIELDCAT-SELTEXT_L  = 'LIGHT'.
APPEND IT_FIELDCAT.
CLEAR  IT_FIELDCAT.
IT_FIELDCAT-COL_POS    = '2'.
IT_FIELDCAT-FIELDNAME  = 'VBELN'.
IT_FIELDCAT-KEY        = 'X'.
IT_FIELDCAT-OUTPUTLEN  = '10'.
IT_FIELDCAT-SELTEXT_L  = 'SALES DOC NUMBER'(009).
APPEND IT_FIELDCAT.
CLEAR  IT_FIELDCAT.
IT_FIELDCAT-COL_POS    = '3'.
IT_FIELDCAT-FIELDNAME  = 'AUDAT'.
IT_FIELDCAT-KEY        = 'X'.
IT_FIELDCAT-OUTPUTLEN  = '4'.
IT_FIELDCAT-SELTEXT_L  = 'DOCUMENT DATE'(010).
APPEND IT_FIELDCAT.
CLEAR  IT_FIELDCAT.
IT_FIELDCAT-COL_POS    = '4'.
IT_FIELDCAT-FIELDNAME  = 'VBTYP'.
IT_FIELDCAT-KEY        = 'X'.
IT_FIELDCAT-OUTPUTLEN  = '4'.
IT_FIELDCAT-SELTEXT_L  = 'CATEGORY'(011).
APPEND IT_FIELDCAT.
CLEAR  IT_FIELDCAT.
IT_FIELDCAT-COL_POS    = '5'.
IT_FIELDCAT-FIELDNAME  = 'AUART'.
IT_FIELDCAT-OUTPUTLEN  = '4'.
IT_FIELDCAT-SELTEXT_L  = 'DOCUMENT TYPE'(012).
APPEND IT_FIELDCAT.
CLEAR  IT_FIELDCAT.
IT_FIELDCAT-COL_POS    = '6'.
IT_FIELDCAT-FIELDNAME  = 'AUGRU'.
IT_FIELDCAT-OUTPUTLEN  = '12'.
IT_FIELDCAT-SELTEXT_L  = 'Order reason'(013).
APPEND IT_FIELDCAT.
CLEAR  IT_FIELDCAT.
IT_FIELDCAT-COL_POS    = '7'.
IT_FIELDCAT-FIELDNAME  = 'NETWR'.
IT_FIELDCAT-OUTPUTLEN  = '12'.
IT_FIELDCAT-SELTEXT_L  = 'NET VALUE'(014).
APPEND IT_FIELDCAT.
CLEAR  IT_FIELDCAT.
IT_FIELDCAT-COL_POS    = '8'.
IT_FIELDCAT-FIELDNAME  = 'WAERK'.
IT_FIELDCAT-OUTPUTLEN  = '12'.
IT_FIELDCAT-SELTEXT_L  = 'SD DOC CURR'(015).
APPEND IT_FIELDCAT.
CLEAR  IT_FIELDCAT.
*ENDFORM.                    " build_fieldcat
*&      Form  set_layout
FORM SET_LAYOUT .
  IF P_LIST = C_X .
    WA_LAYOUT-WINDOW_TITLEBAR = 'LIST DISPLAY'(016).
    WA_LAYOUT-ZEBRA = 'X'.
*-- ALV LIST DISPLAY
    PERFORM LIST_DISPLAY TABLES ITAB.
*-- ALV GRID DISPLAY
  ELSEIF P_GRID = C_X.
    WA_LAYOUT-WINDOW_TITLEBAR = 'GRID DISPLAY'(017).
    WA_LAYOUT-ZEBRA = 'X'.
    PERFORM GRID_DISPLAY TABLES ITAB.
  ENDIF.
ENDFORM.                    " set_layout
*&      Form  list_display
FORM LIST_DISPLAY  TABLES   P_ITAB .
  CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
    EXPORTING
      I_CALLBACK_PROGRAM = V_REPID
      IS_LAYOUT          = WA_LAYOUT
      IT_FIELDCAT        = IT_FIELDCAT[]
      IT_SORT            = IT_SORT[]
      I_SAVE             = 'U'
    TABLES
      T_OUTTAB           = ITAB
    EXCEPTIONS
      PROGRAM_ERROR      = 1
      OTHERS             = 2.
  IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
  ENDIF.
ENDFORM.                    " list_display
*&      Form  GRID_DISPLAY
FORM GRID_DISPLAY  TABLES   P_ITAB .
  CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
    EXPORTING
      I_CALLBACK_PROGRAM = V_REPID
      IS_LAYOUT          = WA_LAYOUT
      IT_FIELDCAT        = IT_FIELDCAT[]
      IT_SORT            = IT_SORT[]
      IT_EVENTS          = IT_EVENT
    TABLES
      T_OUTTAB           = ITAB
    EXCEPTIONS
      PROGRAM_ERROR      = 1
      OTHERS             = 2.
  IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
  ENDIF.
ENDFORM.                    " GRID_DISPLAY
*&      Form  VALIDATE_SCREEN
      text
-->  p1        text
<--  p2        text
FORM VALIDATE_SCREEN .
  DATA: LV_VBELN LIKE VBAK-VBELN.
  IF NOT S_VBELN IS INITIAL.
    SELECT VBELN
    INTO LV_VBELN
    UP TO 1 ROWS
    FROM VBAK
    WHERE VBELN IN S_VBELN.
    ENDSELECT.
    IF SY-SUBRC <> 0.
      MESSAGE E000 WITH 'INVALID SALES DOC'.
    ENDIF.
  ENDIF.
ENDFORM.                    " VALIDATE_SCREEN
*&      Form  display_data
      text
-->  p1        text
<--  p2        text
FORM DISPLAY_DATA .
  DEFINE M_FIELDCAT.
    ADD 1 TO WA_FIELDCAT-COL_POS.
    WA_FIELDCAT-FIELDNAME   = &1.
    WA_FIELDCAT-REF_TABNAME = 'VBAK'.
    WA_FIELDCAT-DO_SUM      = &2.
    WA_FIELDCAT-CFIELDNAME  = &3.
    APPEND WA_FIELDCAT TO IT_FIELDCAT.
  END-OF-DEFINITION.
DATA:
    LS_FIELDCAT TYPE SLIS_FIELDCAT_ALV,
    LT_FIELDCAT TYPE SLIS_T_FIELDCAT_ALV.
  M_FIELDCAT 'ICON' ''  ''.
  M_FIELDCAT 'VBELN' ''  ''.
  M_FIELDCAT 'AUDAT' ''  ''.
  M_FIELDCAT 'VBTYP' ''  ''.
  M_FIELDCAT 'AUART' ''  ''.
  M_FIELDCAT 'AUGRU' ''  ''.
  M_FIELDCAT 'NETWR' 'C' 'WAERK'.
  M_FIELDCAT 'WAERK' ''  ''.
ENDFORM.                    " display_data
Regards
Laxmi

Similar Messages

  • How to create custom member in excel BPC report?

    Hi Everyone,
    Hope you are doing good!!
    I have bit confusion on custom member and how to create custom member in excel bpc report.
    Can you please explain me on this with example.
    Thanks,
    Amit

    Hi Amit,
    Take look at below thread might be helpful for you.
    Refer page no 206
    https://help.sap.com/businessobject/product_guides/boeo10/en/EPMofc_10_user_en.pdf
    and
    Best Practices For Reporting Against SAP Business Planning and Consolidation (Powered by SAP HANA), utilizing the EPM Ad…
    Hope this will help you

  • Create subscriptions for Powerview reports like SSRS reports in SharePoint 2010

    Hi,
    I have created the power view reports in SharePoint 2010 and now I want to create an email subscription for Powerview reports like SSRS reports in SharePoint 2010. Is it possible? If not, is there any workaround?
    Thanks,
    Suresh.

    Hi Suresh: 
    Unfortunately, you can't setup subscriptions in PowerView like you can on SSRS. I would suggest you to open up a connect item here and request for this feature - http://connect.microsoft.com/SQLServer
    Hope this helps.
    Faisal Muhammed My Blog

  • Navigate from ALV list to normal Report

    Hi ,
    I am working on a ALV report where it will display the list of materials and by selecting these materials from the list and process them using a custom button , it should take me to the normal report which give the log from that material processing.
    Any ideas navigating from AVL to normal report in the same program would be appriciated.
    Thank you.

    Hi,
    if you use drill down you have to define header print twice:
    TOP-OF-PAGE.
      perform 050print_header .
    END-OF-PAGE.
    TOP-OF-PAGE DURING LINE-SELECTION.
      perform 050print_header .
    END-OF-PAGE.

  • How to use customer exit variable in the report

    Dear All,
    i want to use a standard customer exit variable in the report properties.
    In the Bex Query Designer right hand bottom you will find two buttons "Properties" and "Task". Click on task you will get different option. Choose properties from there and then select "variable sequence tab".
    I need to add a standard variable there. How can i achieve it?
    Appreciate your early help.

    You need to add variable to corresponding charctertic then you can get that varaible for sorting the sequence....
    If 0CUST is the varaible then you need to assign it 0CUSTOMER then 0CUST will be available for the sequence.
    Edited by: shanthi bhaskar on Apr 2, 2009 5:41 PM

  • How to set custom widths for a particular report column?

    how could I set a custom width for a particular report column? Is there a way to do it using css?
    Thank you.

    Hi Leland,
    I have tested this here: [http://apex.oracle.com/pls/otn/f?p=267:18]
    All I have done is add the following into the report's Region Header:
    &lt;style type="text/css"&gt;
    #apexir_EMPNO {width:200px}
    #apexir_ENAME {width:200px}
    #apexir_DEPTNO {width:200px}
    .apexir_WORKSHEET_DATA TR TD {height:100px;}
    &lt;/style&gt;The headers have all be set to be left-aligned. Each column should be 200px wide (even though I'm setting the width on the headers, it will be applied to the entire column unless a cell's contents is wider, in which case the column is made wider). The final entry above adjusts the height of all TDs within the IR table.
    Andy

  • How to design the session window like yahoo messenger by using  Midlet

    Hai all,
    I want to design the session window using midlet, like what we have in yahoo messenger. In yahoo messenger we can add picture to the message, but in Midlet application how to create the images and how to attch with the message. Please, can anyone help me..
    Thanks/Regards
    Bkrishnan

    CustomItem, ImageItem, Form, Canvas,...
    All you need is reading the javadoc and tutorials...

  • WAD - how to design custom sorting of data?

    Hi,
    I have an analysis web item which is mapped to a query i.e a single data provider DP1.
    I have a requirement of disabling the pop up menu that appears on column right click of the report. I have done so. However, I require the sorting feature to be made available to the users. For this I have used a button & selected 'Set Sorting' command from under Characteristics. However, this lets me set sorting only for onw column & cannot be configured as toggle action.
    Plz. let me know how can I implement sorting feature on all columns of the report w/o having the pop-up menu OR if there is a way to have the pop-up menu only display sort option alone.
    Thanks.

    Hi,
    the af:column allows you to group columns
    <af:column>
    <af:column> </af:column>
    <af:column> </af:column>
    </af:clomn>
    Also, in HTML it is easy to assign a background color to cell, e.g. cell with Label 1 is red, Label 2 is green.
    Is there something like this in JSF?
    You can use CSS on the inlineStyl or contentStyle property to dynamically set CSS using EL. You can reference e.g. a managed bean , access the #{row} variable within the managed bean method and return the color based on the value you read for the each row
    Frank

  • How do you mount a device like normal unix?

    Hi,
    I'm trying to secure some files by encrypting a disk image (DMG file). I'm doing everything through the terminal so that I can script it.
    For the first step I want to mount the disk image file. But, I'm struggling to find a way to mount the disk image so that it becomes a normal part of the file system. Under Linux I would do something like this:
    $ mount -t ext3 /dev/hda1 /home/steve/projects/privatemount
    Under Mac OS X, I can't get it to work. I found a hdiutil command but there are all sorts of issues between it and the Finder. The closest I've got is this:
    $ hdiutil attach -verbose -nobrowse -mountpoint /Users/steve/Projects/privmount /Users/steve/Projects/private-encrypted.sparseimage
    Which mounts it as a directory from terminal (great), and doesn't show it up in the Finder as a removable device (great). But, the problem is that you can unmount it (hdiutil detach) while you're accessing the directory i.e editing a file. This is no good because I could lose files (seems like a bug to me). If I edit the file from vim from the command line then lsof shows the file being used. But if you access the file through the Finder i.e edit it with textmate, then lsof doesn't see the file access!
    Does anyone know what the magic incantation is to mount a device from the terminal as you would a normal UNIX, have the Finder not show it as a removable device, and ensure that you can't unmount it while a user is accessing the contents?
    Thanks,
    Steve

    Hi Bill,
    Yeah that works but it shows it as a removable disk (as your second post pointed out). I'm hoping there's a solution where it won't show up as a removable disk. It's just annoying not being able to stitch together a seamless file system from a bunch of disk images!
    Thanks,
    Steve

  • How to display customer name in sales analysis report (item) layout

    Hi,
    Currently I try to run the sales analysis report by item with secondary selection on customer from & customer to.
    Is it possible for the layout to display the customer from & customer to.
    I try to look for the table name OFLT, but I cannot find it.
    My main concern is to display the customer name in the layout for sales analysis by item.
    Thanks

    Hi,
    The table OFLT stores selection criteria for all form. If there is no customer name/code in system PLD, it is very hard to find table or system variable.
    Tried to get customer name, not successful.
    Alternatively can try to create customized query to get additional field in sales analysis report.
    Thanks & Regards,
    Nagarajan

  • How to Design Custom Presentation Folders in Adobe Illustrator

    Any expert can give me idea to design presentation folder in adobe illustrator in CS5. or let me know very low cost ( Affordable ) design service.
    Thanks

    Since you are asking about AI, you need to go to the AI forum.

  • How to Create Custom 0VTYPE (Value Type for Reporting)

    For the project I'm now on. There is a need to "create" or "customize" the Value Type for Reporting. I now there are in a Field Called WRTTP in R/3 (Controlling). Is there a way to create or maintain those "values" for the Field WRTTP so it can be brought to BW as a 0VTYPE Charaterictic Master Data.
    Remember that Master Data should be consistent within the Business Language and the Systems that support it.
    Message was edited by: Jesus Cova Graffe

    Kamal, that's an option, but then it wouldn't be consistent to what R/3 has as Master Data. So we're looking to "customize" the WRTTP values in order to take them from R/3 to BW.
    Message was edited by: Jesus Cova Graffe
    Message was edited by: Jesus Cova Graffe

  • Normal report and ALV report, where exactly both are differs?

    For Normal report and ALV report, where exactly both are differs, I mean from which part the process / coding will differ, pls le me know..?
    Akshitha.

    Hi Akshitha,
    In Normal reports we use formatting techniques to display the report list. We define heading and size everything to display report list. But where as in alv we need not to use any formating there are some function modules which will automatically display output list in LIST  and GRID format.
    In Normal report we cannot make changes to the output list where in ALV report we can change the ALV output display dynamically. You can find lots of options for  the ALV list such as you can download output list into Excel sheet and Sorting options Acending and decending order in ALV but in normal report We need to write syntax in the report to display output list in sorting order.  The ALV report is very easy way to display the output compared to Ordinary report.
    Check below some links which will help you to understand about ALV. If you know about Normal report you can campare by userself the difference.
    Simple ALV report
    http://www.sapgenie.com/abap/controls/alvgrid.htm
    http://wiki.ittoolbox.com/index.php/Code:Ultimate_ALV_table_toolbox
    ALV
    1. Please give me general info on ALV.
    http://www.sapfans.com/forums/viewtopic.php?t=58286
    http://www.sapfans.com/forums/viewtopic.php?t=76490
    http://www.sapfans.com/forums/viewtopic.php?t=20591
    http://www.sapfans.com/forums/viewtopic.php?t=66305 - this one discusses which way should you use - ABAP Objects calls or simple function modules.
    2. How do I program double click in ALV?
    http://www.sapfans.com/forums/viewtopic.php?t=11601
    http://www.sapfans.com/forums/viewtopic.php?t=23010
    3. How do I add subtotals (I have problem to add them)...
    http://www.sapfans.com/forums/viewtopic.php?t=20386
    http://www.sapfans.com/forums/viewtopic.php?t=85191
    http://www.sapfans.com/forums/viewtopic.php?t=88401
    http://www.sapfans.com/forums/viewtopic.php?t=17335
    4. How to add list heading like top-of-page in ABAP lists?
    http://www.sapfans.com/forums/viewtopic.php?t=58775
    http://www.sapfans.com/forums/viewtopic.php?t=60550
    http://www.sapfans.com/forums/viewtopic.php?t=16629
    5. How to print page number / total number of pages X/XX in ALV?
    http://www.sapfans.com/forums/viewtopic.php?t=29597 (no direct solution)
    6. ALV printing problems. The favourite is: The first page shows the number of records selected but I don't need this.
    http://www.sapfans.com/forums/viewtopic.php?t=64320
    http://www.sapfans.com/forums/viewtopic.php?t=44477
    7. How can I set the cell color in ALV?
    http://www.sapfans.com/forums/viewtopic.php?t=52107
    8. How do I print a logo/graphics in ALV?
    http://www.sapfans.com/forums/viewtopic.php?t=81149
    http://www.sapfans.com/forums/viewtopic.php?t=35498
    http://www.sapfans.com/forums/viewtopic.php?t=5013
    9. How do I create and use input-enabled fields in ALV?
    http://www.sapfans.com/forums/viewtopic.php?t=84933
    http://www.sapfans.com/forums/viewtopic.php?t=69878
    10. How can I use ALV for reports that are going to be run in background?
    http://www.sapfans.com/forums/viewtopic.php?t=83243
    http://www.sapfans.com/forums/viewtopic.php?t=19224
    11. How can I display an icon in ALV? (Common requirement is traffic light icon).
    http://www.sapfans.com/forums/viewtopic.php?t=79424
    http://www.sapfans.com/forums/viewtopic.php?t=24512
    12. How can I display a checkbox in ALV?
    http://www.sapfans.com/forums/viewtopic.php?t=88376
    http://www.sapfans.com/forums/viewtopic.php?t=40968
    http://www.sapfans.com/forums/viewtopic.php?t=6919
    Go thru these programs they may help u to try on some hands on
    ALV Demo program
    BCALV_DEMO_HTML
    BCALV_FULLSCREEN_DEMO ALV Demo: Fullscreen Mode
    BCALV_FULLSCREEN_DEMO_CLASSIC ALV demo: Fullscreen mode
    BCALV_GRID_DEMO Simple ALV Control Call Demo Program
    BCALV_TREE_DEMO Demo for ALV tree control
    BCALV_TREE_SIMPLE_DEMO
    BC_ALV_DEMO_HTML_D0100
    <b>Please Reward if useful<b>
    Regards,
    sunil kairam.

  • How to add  customer group(KNVV-KDGRP)in the  standard report?

    Dear  All,
    My customer requirment is that  Customer group (KNVV-KDGRP)wise  should be run  in  FBL5N report AND   Customer group should be shown in  FBL3N report.
    how to add  customer group in the  standard report?
    thanking you,
    regards,
    Rupang shah

    Hi,
    This is what I did for FBL5N with a developer because additional fields configuration does include certain tables.
    BTE1650  available for FBL5N and add a new field into one of those tables as an append structure and then use a BTE to populate the field for FBL5N.
    Hope that this helps
    Kind regards

  • Control Break in normal report regions

    Can I somehow insert kind of a control break for normal report regions?
    I use it within serveral interactive reports. Now I have a normal report region displaying projects of all department. The users want to have them grouped with a sum by department, which would be easy to do within an interactive report using a control break.
    But how can I do this in a normal report region?
    BR & thank you,
    Lena
    Edited by: Lena F on Mar 30, 2011 6:04 AM
    --> already found the solution - sorry :-(
    Edited by: Lena F on Mar 30, 2011 6:18 AM

    Please post solution

Maybe you are looking for

  • Can't print to a HP LaserJet 5000 we've used for years

    We're a design studio with 4 Mac's and have had this HP LaserJet 5000 printer for a longtime and love it. A real work horse and low maintenance. Two of our cpu's are running Mavericks, 2 are running 10.7.5 and the older one is still running 10.5.8. T

  • How to print specific page in smartform !

    Hello Friends,               I like to print specific page in smartform. for Ex. page 4. But when I give page no. 4, the print preview not showing the exact page. Thank you for your time. Senthil

  • How can I get music REMOVED from iTunes Store?!

    I manage a band who has never been signed to a record label however, they had a distribution deal which has since expired and the company went under. Apparently they put a CD up of my band on iTunes Store and items look to have been purchased as the

  • Interface Type "ABAP Dictionary-Based Interface" not generating Interac

    Hi All, I am getting problem in ABAP Adobe interactive forms in ECC6. I tried designing Adobe interactive form by 2 following ways: 1) in SFP -->> Interface Type -->"ABAP Dictionary-Based Interface" 2) in SFP -->> Interface Type -->"XML Schema-Based

  • How to debug JSR168 portlets

    Hi, Is there a way to debug the jsr168 portlets from Jdeveloper, possibly using remote debugging feature? If yes, appreciate step-by-step instruction on this. I have posted a query related to remote debugging here: Remote Debugging (Jdev 10.1.3 to AS