How To make group wise total in Bex report

Hi!!! Guru's
i m doing reporting on SD module, so client wann see the summerised report
on delivarys, senario is the one sale order having the multiple delivery, so the
i have to show the total result for all deliverys agianst the purticular sales order
in one row.i know we can do that at the excel level but hot to do it at the query
design level.highly appreciate u r help on this.
wil asign pts for sure,,,
thanks in adv
Mohan

Hi!!! Trippel K
thanks for reply...
my Q's is how to make the group wise total means, i m going to genaret the
report on delivery delays on cube 0SD_C04 (Delivery Service), in that the the date
is comming from the 2LIS_12_VCITM delivery item data, the schedule line data
from 2LIS_12_VCSCL, when i m getting according to date wise it showing all data from item level n schedule line, the senario is i have to use date from item level n
all delivery from schedule line, so any inputs regarding this, plz let me, wil appecite
u inputs
thanks in adv
Mohan

Similar Messages

  • How to find group wise total in crystal report?

    Dear All,
                       I have to find the total of a Quantity value based on the Item code.How to achieve that in Crystal report.
    Scenario:
    Itemcode   orderno     Qty
    A               1             100
    A               2               20
    A               3               30
    B               1                10
    B               2                20
    Now i have to find the group total based on the Item code: Like A:150    and B:30 which should come like mentioned below
    A                   Total     150
    A               1               100
    A               2                 20
    A               3                 30
    B                    Total      30
    B               1                 10
    B               2                 20
    Can anybody pls tell me how to solve this?

    Hi,,Raghavendra
    I attach new image... Providing better understaning....
    I want to try some steps which are defined above....
    My basic Requirement is ITEMCODE WISE SUM OF QUANTITY.

  • How to print page no/total pges in report programing?

    how to print page no/total pges in report programing?

    Hi
    This is an example:
    In TOP-OF-PAGE you can write:
    WRITE: SY-PAGNO, '/', '-----'.
    When the program has finished to print all data, run a routine like this:
    Declare a variable
    DATA: L_PAGE_COUNT(5) TYPE C,
          V_LINE TYPE I. "The line where page number is written
    * In my example I suppose the page number is always
    * written in the first row of the page.
    V_LINE = 1.
    *  Copy this code to the end of program
    *  Page count will be printed on each page here
      WRITE sy-pagno TO l_page_count LEFT-JUSTIFIED.
      DO sy-pagno TIMES.
        READ LINE V_LINE OF PAGE sy-index.
        REPLACE '-----' WITH l_page_count INTO sy-lisel.
        MODIFY CURRENT LINE.
        ADD 1 TO sy-index.
      ENDDO.
    Max

  • How to make group visble and hidden

    I have to make one group(which consists of some field) visible and hidden on tableselect. Initially that group should not visible and after selecting table those group need to show. How to make it during runtime..Right now i made the table leadselect -1 so it is not selected. So how to make it hidden.
    Thnaks
    Nitya

    Use a calculated attribute (read-only, type=Visibility) and implement the get-method like
    WDVisibility getGroupVisibility(...)
      return wdContext.node<TableDataSource>.getLeadSelection() == IWDNode.NO_SELECTION
        ? WDVisibility.NONE : WDVisibilty.VISIBLE;
    Bind the "visible" property of the group to this attribute.
    Armin

  • How to make a Vertical Total of a multilline item?

    Hello,
    I have a block that contains 12 numeric multiline items. I would like to make a vertical total for each item.
    I tried to make a reference item, it didn't work. i tried also to make it by doing a Sum of my item, it didn't work neither.
    Could someone give me any ideas how to figure it out?
    thanks

    You use Summarized items for this:
    -Create a non-database-block, name it e.g. BL_CONTROL, set the property "Single record" to "Yes".
    -Create a number-item in the block, set the property "Calculation Mode" to "Summary", "Summary function" to "sum", and "Summarized Block" and "Summarized item" to your block/item you want to sum up.
    -Set the property "Query all records" to "Yes" on your database-block.

  • How to make camera sound totally silent?

    I have Nokia E5 smartphone. I want to make camera sound totally off. I've download a patch file but it shows me certificate error. Is there any way to make camera totally off?

    @ic3_fir3_
    You're on the right track.  Phone hacking isn't an acceptable topic in these official forums, but do some more web research or ask on unofficial Symbian site.  I suspect you can still make it work, but sadly the process is harder than it used to be.

  • How to find item wise totals and header wise total using hierarchical ALV

    Hi Friends,
    I came across an issue of finding  item wise total using hierarchical ALV. I am getting header wise total by setting the field catalog. May you help me in finding  Item wise total.
    Regards
    Nikhil.

    hi,
    you must use "w_fieldcat-do_sum = 'X'" and change your layout like :
    w_sort-fieldname = 'FIELD'.
      w_sort-tabname   = 'TABNEME'.
      w_sort-up        = 'X'.
      w_sort-subtot    = 'X'.
      APPEND w_sort TO i_sort.
      CLEAR w_sort.
    you can use detailed code from http://wiki.sdn.sap.com/wiki/display/Snippets/Subtotalsinhirarchial+report.
    regards,
    orhan
    Edited by: goktasor on Jun 1, 2010 11:03 AM (need points : ) )

  • How to make a clip art (diagram )interactive report?

    Hello ABAPers,
                           I want help from you. I have a requirement like ..when i am excuteing a report i should get a clip art and the clipart which i got i have to double click on it there by i should get the details of that clip art. I have succeed till getting the clip art and from here i am not getting the idea how to make the clipart(diagram) active so tht when i am doubleing it i should get the details.
    The code that i am using to get the clip art just copy and execute you will get the output till clipart.
    *& Report  ZCLIPART_IR                                                 *
    REPORT  ZCLIPART_IR.
    START OF DO NOT CHANGE***********************************
    DATA: docking TYPE REF TO cl_gui_docking_container,
          picture_control_1 TYPE REF TO cl_gui_picture,
          url(256) TYPE c .
    DATA: query_table LIKE w3query OCCURS 1 WITH HEADER LINE,
          html_table LIKE w3html OCCURS 1,
          return_code LIKE  w3param-ret_code,
          content_type LIKE  w3param-cont_type,
          content_length LIKE  w3param-cont_len,
          pic_data LIKE w3mime OCCURS 0,
          pic_size TYPE i.
    END OF DO NOT CHANGE***********************
    DATA : sum(4) , num1(4) , num2(4).
    PARAMETERS: p_dummy(4) DEFAULT '4' .
    PARAMETERS: p_dummy1(4) DEFAULT '5' .
    AT SELECTION-SCREEN OUTPUT.
      PERFORM show_pic.
      START-OF-SELECTION.
    *& Form show_pic
    FORM show_pic.
       DATA: repid LIKE sy-repid.
             repid = sy-repid.
      CREATE OBJECT picture_control_1 EXPORTING parent = docking.
      CHECK sy-subrc = 0.
      CALL METHOD picture_control_1->set_3d_border
        EXPORTING
          border = 5.
      CALL METHOD picture_control_1->set_display_mode
        EXPORTING
          display_mode = cl_gui_picture=>display_mode_stretch.
      CALL METHOD picture_control_1->set_position
        EXPORTING
          height = 50
          left   = 40
          top    = 30
          width  = 190.
    CHANGE POSITION AND SIZE ABOVE****************
    IF url IS INITIAL.
    REFRESH query_table.
        query_table-name  = '_OBJECT_ID'.
    CHANGE IMAGE NAME BELOW UPLOADED IN SWO0*****************
        query_table-value = 'ENJOYSAP_LOGO'.
        APPEND query_table.
        CALL FUNCTION 'WWW_GET_MIME_OBJECT'
          TABLES
            query_string        = query_table
            html                = html_table
            mime                = pic_data
          CHANGING
            return_code         = return_code
            content_type        = content_type
            content_length      = content_length
          EXCEPTIONS
            object_not_found    = 1
            parameter_not_found = 2
            OTHERS              = 3.
        IF sy-subrc <> 0.
          MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                  WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
        ENDIF.
        CALL FUNCTION 'DP_CREATE_URL'
          EXPORTING
            type     = 'image'
            subtype  = cndp_sap_tab_unknown
            size     = pic_size
            lifetime = cndp_lifetime_transaction
          TABLES
            data     = pic_data
          CHANGING
            url      = url
          EXCEPTIONS
            OTHERS   = 1.
            ENDIF.
            CALL METHOD picture_control_1->load_picture_from_url
        EXPORTING
          url = url.
    ENDFORM.
    Thks and waiting for your replies.

    Hi ataran,
    in case, your version of iMovie is able to import the footage, have a read here:
    http://www.apple.com/ilife/tutorials/imovie/

  • How to show the units separately in BEx reporting

    My Bex reporting shows the units along with keyfigures. Say 15.45Kgs. i would like to show the units separately in a column. Pl tell me how to do it.

    Hi,
    you can do it. follow the below steps.
    1) create a calculated key figure by assigning the function NODIM to the base key figure (NODIM<base key figure).
    2) Drag and drop the unit info-object ( the unit info-object that is used in the key figure definition) in the rows section.
    3) Hide the base key figure.
    Hope it helps.
    Thanks
    Soumya

  • How to make dynamic search items in a report?

    Hi all,
    I have two questions.
    1. How to make dynamic search (i.e without GO button) field above report to provide dynamic search by words in one field of report query?
    2. How to make similar multiply dynamic search fields on report to provide individual search by selected fields of report with refine capability (i.e any search conditions in different fields must work together as complex WHERE clause)
    Thanks in advance

    hey yuri--
    if i'm understanding your questions correctly, the easiest way to achieve the functionality you're after is to have your query criteria fields submit the page when values are entered/selected. the page should then branch back to itself using the submitted criteria in the query. because you're asking about dynamically adding in your where clause predicates, you should consider using a report region of type "SQL Query (Pl/sql Function Body Returning SQL Query)". that way you can use pl/sql to piece together your query based on the provided criteria.
    so the part of your question i'm not sure of is when your page should submit itself ("without a GO button" as you said). for your first question, it seems to be a simple matter of javascript. you want users to be able to enter search criteria into a field and have that criteria be using in the report. to facilitate that we have a few self-submitting item types such as "SelectList with Submit" and "Text Field (always submits page when Enter pressed)". for your second question, it seems that you should have a Go button for the user to indicate he's done entering in his query criteria. anyhow, that's up to you, i suppose. hopefully this response will give you the concepts you need to implement this as you'd like.
    regards,
    raj
    ps-after re-reading your post, i now realize there's a chance that you wanted users to not have to submit the page at all when filtering their result sets. if that's the case, you'd have to use javascript for that cumbersome feat. google would be a good place to go for that code.

  • How to set default company logo in bex report(analyzer)?

    hi,
    i have a requirement that i need to create default template for my queries in bex analyzer. whenever i execute my query in analyzer the company logo should be on top of the query. i know how to do it in workbook but could you explain me how to set the default company logo in bex reports?
    thanks
    vadlamudi

    See the following document on creating a workbook template with an image: [http://www.researchsummary.ca/bw/Sample_Ch10.pdf]
    In BW, there is a table that stores the default workbook. The following snippet of code allows you to identify a custom workbook template as the default template for all end users.
    *& Report Z_SET_BEX_USER_TEMPLATE *
    *& Program to update all user's default template *
    REPORT Z_SET_BEX_USER_TEMPLATE.
    TABLES: rsrwbtemplate,
            usr01.
    PARAMETER: wbid LIKE rsrwbindex-workbookid.
    SELECT
    FROM
      usr01.
      MOVE: usr01-bname TO rsrwbtemplate-templateuser,
            wbid TO rsrwbtemplate-workbookid = wbid.
      UPDATE
        rsrwbtemplate.
      IF sy-subrc 0.
        INSERT
          rsrwbtemplate.
      ENDIF.
    ENDSELECT.

  • How to change Group Header Font in Crystal report Left Most Group Tree?

    Hi Dears!
    I am using crystal report 10 with C# 2005. I have an issue that i want to change the font of Group Header Text that is visible when we click on Toggle Group Tree button and a tree pane is visible towards the left side of report viewer.Means all the Group Tree Items that are visible when we click  Toggle Group Tree button on Crystal report Viewer.
    I have goggled a lot but unable to find any hint. Any idea or help would be highly appreciated .
    Thanks in advance.

    look for information on drilldowngrouplevel function. this is available in versions 9 and higher.
    i cant test it in mine to give you the syntax, but you would need to create another section and conditionally surpress the section on the drilldowngrouplevel function. hope this helps

  • How to see pure SQL for a Bex Report

    Hi All,
    I need to do troubleshooting on a report and I need to have the pure SQL code of the Bex report. Is there any easy way to get the SQL code for a bex report?
    I appreciate any help with points,
    Regards,

    Hi Mike.
    Try TA RSRT -> Execute and debug -> Display SQL/BIA query.
    Hope it helps.
    BR
    Stefan

  • How to make a Moving total in Query Designer

    Hi,
    I make trend analysis over sales.
    Besides the actual sales figures, I would like to show a Moving Annual Total (MAT).
    I can make this based on a specific period (using an offset of 0 to -11, and so on), but now I want to see the trend over an interval (for instance 12 month).
    I am not able to incorporate the interval values into the period variable.
    Can anybody help me with this?
    Regards,
    Erik Henning

    Tanks again.
    I am able to make a time (Fiscal year period) variable of the type interval to set the limits to my query.
    I also was able to make a time (Fiscal year period) variable to set my offset to 0 to -11.
    The problem is combining those two.
    When I combine them, I have to enter the limit values and a value for the offset variable.
    When I do that, I get the offset value of the period I entered in all the periods within my limits and that is not what I want. I want this offset period variable to use all the periods of my interval.
    Can you tell me how to proceed?
    Erik

  • Group wise Total

    Hi,
    My requirement is to display bank name, company account number and total amount in first line.
    In second line investor names, their account numbers and amount to be credited in their account to be displayed
    In the second line the investors should be grouped like their account categories like "SB" account "CA" account and all.
    i done the things above mentioned
    now the thing is to display the total amount of particular group
    how can i achieve this
    please let me know.
    Thanks,

    Hi,
    Go through this link
    http://download.oracle.com/docs/cd/B25516_06/current/acrobat/115xdoug.pdf
    Go to Page Level Calculation in Bookmarks.

Maybe you are looking for