Error in Drilled down ALV Report.

Hi all
i am creating a single level drilled down report , in that in the first screen i am displaying the header detials , in the second level i am displaying the item detial of the particular line..
While processing the second level i am getting a dump like
A PERFORM was used to call the routine "USER_COMMAND" of the program
"SAPLSLVC_FULLSCREEN".
This routine contains exactly 1 formal parameters, but the current
call contains 2 actual parameters.
parameters.
here is my code :
FORM USER_COMMAND USING R_UCOMM LIKE SY-UCOMM.
CASE R_UCOMM.
WHEN '&IC1'.
PERFORM BUILD_CATALOG_EKPO.
PERFORM EVENT_EKPO.
PERFORM POPULATE_EVENT_EKPO.
PERFORM DATA_EKPO.
PERFORM BUILD_LIST.
PERFORM DISPLAY_EKPO.
ENDCASE.
ENDFORM.
*&      Form  BUILD_CATALOG_EKPO
      text
-->  p1        text
<--  p2        text
FORM BUILD_CATALOG_EKPO .
  WA_FIELDCAT-TABNAME = 'ITAB_EKPO'.
  WA_FIELDCAT-FIELDNAME = 'EBELN'.
  WA_FIELDCAT-SELTEXT_M = 'PO NO.'.
  APPEND WA_FIELDCAT TO I_FIELDCAT.
  CLEAR WA_FIELDCAT.
  WA_FIELDCAT-TABNAME = 'ITAB_EKPO'.
  WA_FIELDCAT-FIELDNAME = 'EBELP'.
  WA_FIELDCAT-SELTEXT_M = 'Item No.'.
  APPEND WA_FIELDCAT TO I_FIELDCAT.
  CLEAR WA_FIELDCAT.
    WA_FIELDCAT-TABNAME = 'ITAB_EKPO'.
  WA_FIELDCAT-FIELDNAME = 'MATNR'.
  WA_FIELDCAT-SELTEXT_M = 'Material NO.'.
  APPEND WA_FIELDCAT TO I_FIELDCAT.
  CLEAR WA_FIELDCAT.
    WA_FIELDCAT-TABNAME = 'ITAB_EKPO'.
  WA_FIELDCAT-FIELDNAME = 'WERKS'.
  WA_FIELDCAT-SELTEXT_M = 'PLANT.'.
  APPEND WA_FIELDCAT TO I_FIELDCAT.
  CLEAR WA_FIELDCAT.
    WA_FIELDCAT-TABNAME = 'ITAB_EKPO'.
  WA_FIELDCAT-FIELDNAME = 'LGORT'.
  WA_FIELDCAT-SELTEXT_M = 'Storage Loc.'.
  APPEND WA_FIELDCAT TO I_FIELDCAT.
  CLEAR WA_FIELDCAT.
    WA_FIELDCAT-TABNAME = 'ITAB_EKPO'.
  WA_FIELDCAT-FIELDNAME = 'MENGE'.
  WA_FIELDCAT-SELTEXT_M = 'Quantity.'.
  APPEND WA_FIELDCAT TO I_FIELDCAT.
  CLEAR WA_FIELDCAT.
    WA_FIELDCAT-TABNAME = 'ITAB_EKPO'.
  WA_FIELDCAT-FIELDNAME = 'MEINS'.
  WA_FIELDCAT-SELTEXT_M = 'UNIT.'.
  APPEND WA_FIELDCAT TO I_FIELDCAT.
  CLEAR WA_FIELDCAT.
ENDFORM.                    " BUILD_CATALOG_EKPO
*&      Form  EVENT_EKPO
      text
-->  p1        text
<--  p2        text
FORM EVENT_EKPO .
CALL FUNCTION 'REUSE_ALV_EVENTS_GET'
EXPORTING
  I_LIST_TYPE           = 0
IMPORTING
   ET_EVENTS             = V_EVENTS
EXCEPTIONS
  LIST_TYPE_WRONG       = 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.                    " EVENT_EKPO
*&      Form  POPULATE_EVENT_EKPO
      text
-->  p1        text
<--  p2        text
FORM POPULATE_EVENT_EKPO .
READ TABLE V_EVENTS INTO WA_EVENT WITH KEY NAME = 'TOP_OF_PAGE'.
IF SY-SUBRC EQ 0.
WA_EVENT-FORM = 'TOP_OF_PAGE'.
MODIFY V_EVENTS FROM WA_EVENT TRANSPORTING FORM WHERE NAME = WA_EVENT-FORM.
ENDIF.
ENDFORM.                    " POPULATE_EVENT_EKPO
FORM F_TOP_OF_PAGE.
  CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
    EXPORTING
      IT_LIST_COMMENTARY       = IT_LISTHEADER
   i_logo                   =
   I_END_OF_LIST_GRID       =
ENDFORM.
*&      Form  DATA_EKPO
      text
-->  p1        text
<--  p2        text
FORM DATA_EKPO .
DATA:RS_SELFIELD TYPE SLIS_SELFIELD.
READ TABLE ITAB_EKKO INTO WA_EKKO INDEX RS_SELFIELD-TABINDEX.
SELECT EBELN EBELP MATNR WERKS LGORT MENGE MEINS
FROM EKPO
INTO CORRESPONDING FIELDS OF TABLE ITAB_EKPO
WHERE EBELN = WA_EKKO-EBELN.
DATA :ID_ITEM_COLOR.
LOOP AT ITAB_EKPO INTO WA_EKPO.
ID_ITEM_COLOR = ID_ITEM_COLOR + 1.
IF ID_ITEM_COLOR = 8.
   ID_ITEM_COLOR = 1.
ENDIF.
CONCATENATE 'C' ID_ITEM_COLOR '10' INTO WA_EKPO-LINE_COLOR_ITEM.
MODIFY ITAB_EKPO FROM WA_EKPO TRANSPORTING LINE_COLOR_ITEM.
ENDLOOP.
ENDFORM.                    " DATA_EKPO
*&      Form  DISPLAY_EKPO
      text
-->  p1        text
<--  p2        text
FORM DISPLAY_EKPO .
CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
EXPORTING
  I_INTERFACE_CHECK                 = ' '
  I_BYPASSING_BUFFER                = ' '
  I_BUFFER_ACTIVE                   = ' '
   I_CALLBACK_PROGRAM                 = V_REPID
  I_CALLBACK_PF_STATUS_SET          = ' '
  I_CALLBACK_USER_COMMAND           = 'USER_COMMAND '
  I_CALLBACK_TOP_OF_PAGE            = 'TOP_OF_PAGE'
  I_CALLBACK_HTML_TOP_OF_PAGE       = ' '
  I_CALLBACK_HTML_END_OF_LIST       = ' '
  I_STRUCTURE_NAME                  =
  I_BACKGROUND_ID                   = ' '
   I_GRID_TITLE                      = I_TITLE_EKPO
  I_GRID_SETTINGS                   =
  IS_LAYOUT                         =
   IT_FIELDCAT                       = I_FIELDCAT[]
  IT_EXCLUDING                      =
  IT_SPECIAL_GROUPS                 =
  IT_SORT                           =
  IT_FILTER                         =
  IS_SEL_HIDE                       =
  I_DEFAULT                         = 'X'
  I_SAVE                            = ' '
  IS_VARIANT                        =
   IT_EVENTS                         = V_EVENTS
  IT_EVENT_EXIT                     =
  IS_PRINT                          =
  IS_REPREP_ID                      =
  I_SCREEN_START_COLUMN             = 0
  I_SCREEN_START_LINE               = 0
  I_SCREEN_END_COLUMN               = 0
  I_SCREEN_END_LINE                 = 0
  IT_ALV_GRAPHICS                   =
  IT_HYPERLINK                      =
  IT_ADD_FIELDCAT                   =
  IT_EXCEPT_QINFO                   =
  I_HTML_HEIGHT_TOP                 =
  I_HTML_HEIGHT_END                 =
IMPORTING
  E_EXIT_CAUSED_BY_CALLER           =
  ES_EXIT_CAUSED_BY_USER            =
  TABLES
    T_OUTTAB                          = ITAB_EKPO
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.                    " DISPLAY_EKPO
*&      Form  BUILD_LIST
      text
-->  p1        text
<--  p2        text
FORM BUILD_LIST .
  gd_layout-no_input          = 'X'.
  gd_layout-colwidth_optimize = 'X'.
  gd_layout-totals_text       = 'Totals'(201).
Set layout field for row attributes(i.e. color)
  gd_layout-info_fieldname =      ' LINE_COLOR_ITEM'.
ENDFORM.                    " BUILD_LIST
Arun Joseph

The form USER_COMMAND should have 2 changing/actual parameters which is standard.
Ex:
FORM user_command USING r_ucomm LIKE sy-ucomm 
rs_selfield TYPE slis_selfield.
ENDFORM.

Similar Messages

  • Layout problem for Drill down ALV Report

    Hello Everyone,
                           I have developed a ALV drill down report using the method G_GRID->SET_TABLE_FOR_FIRST_DISPLAY. The problem is what ever layout i save for the primary list 'Screen 100' is effecting my secondary list 'Screen 200'.  User need to save both Screen 100 and Screen 200 layouts independently without affecting each other.
    I am calling  screen 100 as below,
    Call metthod g_grid_100->set_table_for_first_display
      Exporting
       i_Save                                     = 'A'
       is_layout                                 =  ls_layout
       is_Variant                                =   ls_Variant
      Changing
       it_outtab                                  =  ct_poitems
       it_fieldcatalog                           =  lt_fieldcat
      Exceptions
       Invalid_parameter_combimation   = 1
       Program_error                            = 2
       too_many_lines                         = 3
       others                                       = 4.
    Could any body suggest me a way to do this..
    Thanks in advance.
    Regards,
    Shyam.

    Hi,
    Use multiple Layout structure (each alv have its own structure) .
    Note the use of disvariant-log_group .
    DATA: gs_disvariant_1 TYPE disvariant ,
               gs_disvariant_2 TYPE disvariant .
    * Layout-Logical groups
    CONSTANTS: gc_log_group_1 TYPE disvariant-log_group VALUE 'ALV1' ,
                            gc_log_group_2 TYPE disvariant-log_group VALUE 'ALV2' .  
    INITIALIZATION.
      PERFORM at_initialization .
    FORM at_initialization .
    DATA: vari TYPE disvariant-variant .
      PERFORM alv_variant_get_default USING gc_log_group_1 CHANGING gs_disvariant_1 vari .
      PERFORM alv_variant_get_default USING gc_log_group_2 CHANGING gs_disvariant_2 vari .
    ENDFORM.
    FORM alv_variant_get_default
      USING
        log_group TYPE disvariant-log_group
      CHANGING
        disvariant TYPE disvariant
        variant    TYPE slis_vari .
      DATA: ls_disvariant TYPE disvariant.
      ls_disvariant-report = sy-repid .
      ls_disvariant-log_group = log_group .
      disvariant = ls_disvariant.
      CALL FUNCTION 'REUSE_ALV_VARIANT_DEFAULT_GET'
        EXPORTING
          i_save     = 'A'
        CHANGING
          cs_variant = ls_disvariant
        EXCEPTIONS
          not_found  = 2.
      IF sy-subrc = 0.
        disvariant = ls_disvariant.
        variant    = ls_disvariant-variant .
      ENDIF.
    ENDFORM.                    "alv_variant_get_default
    Later....
       CALL METHOD gui_alv_grid_1->set_table_for_first_display
          EXPORTING
            is_layout       = wa_layout
            is_print        = wa_print
            i_save          = 'A'
            is_variant      = gs_disvariant_1
          CHANGING
            it_sort         = it_sort
            it_fieldcatalog = it_fieldcatalog
            it_outtab       = it_alv_grid_1.
      CALL METHOD gui_alv_grid_2->set_table_for_first_display
          EXPORTING
            is_layout       = wa_layout
            is_print        = wa_print
            i_save          = 'A'
            is_variant      = gs_disvariant_2
          CHANGING
            it_sort         = it_sort
            it_fieldcatalog = it_fieldcatalog
            it_outtab       = it_alv_grid_2.     
    Regards.

  • Drill Down ALV Report

    One of my columns in ALV Report has PO# Number. If I double click that I should go to ME22N and edit that particular ALV . How to do this

    hi..
    check this.....
    TYPE-POOLS : SLIS.
    DATA: GS_LAYOUT TYPE SLIS_LAYOUT_ALV,
          G_EXIT_CAUSED_BY_CALLER,
          GS_EXIT_CAUSED_BY_USER  TYPE SLIS_EXIT_BY_USER,
          G_REPID LIKE SY-REPID.
    DATA : GS_VARIANT LIKE DISVARIANT,
           G_SAVE.
    DATA : GT_EVENTS TYPE SLIS_T_EVENT,
           GT_LIST_TOP_OF_PAGE TYPE SLIS_T_LISTHEADER,
           G_STATUS_SET TYPE SLIS_FORMNAME VALUE 'PF_STATUS_SET',
           G_TOP_OF_PAGE TYPE SLIS_FORMNAME VALUE 'TOP_OF_PAGE',
           G_TOP_OF_LIST TYPE SLIS_FORMNAME VALUE 'TOP_OF_LIST',
           G_END_OF_LIST TYPE SLIS_FORMNAME VALUE 'END_OF_LIST'.
    DATA: W_EVENTS TYPE SLIS_ALV_EVENT.
    DATA: T_EVENTS TYPE SLIS_T_EVENT.
    after calucation i m storing my output in Jtab
    PERFORM CREATE_FIELD_CATALOG CHANGING FC_DC.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
      EXPORTING
           I_BACKGROUND_ID    = 'ALV_BACKGROUND'
           I_BUFFER_ACTIVE    = 'X'
           I_CALLBACK_PROGRAM = G_REPID
           IS_LAYOUT          = GS_LAYOUT
           I_SAVE             = G_SAVE
           IS_VARIANT         = GS_VARIANT
           IT_EVENTS          = GT_EVENTS[]
           IT_FIELDCAT        = FC_DC
      IMPORTING
           E_EXIT_CAUSED_BY_CALLER = G_EXIT_CAUSED_BY_CALLER
           ES_EXIT_CAUSED_BY_USER  = GS_EXIT_CAUSED_BY_USER
      TABLES
           T_OUTTAB = JTAB
      EXCEPTIONS
           PROGRAM_ERROR = 1
           OTHERS        = 2.
      FORM CREATE_FIELD_CATALOG CHANGING FC_DC TYPE SLIS_T_FIELDCAT_ALV.
    DATA LS_CAT TYPE SLIS_T_FIELDCAT_ALV WITH HEADER LINE.
    LS_CAT-FIELDNAME = 'VBELN'.
       LS_CAT-TABNAME = 'JTAB'.
       LS_CAT-SELTEXT_M = 'Delivery No'.
       LS_CAT-KEY = 'X'.
       APPEND LS_CAT TO FC_DC.
       CLEAR LS_CAT.
    W_EVENTS-NAME = 'USER_COMMAND'.
    W_EVENTS-FORM = 'SUB3'.
    APPEND W_EVENTS TO gt_EVENTS.
    ENDFORM.
    FORM SUB3 USING UCOMM LIKE SY-UCOMM FIELDS1 TYPE SLIS_SELFIELD.
    READ TABLE JTAB INTO KTAB INDEX FIELDS1-TABINDEX.
    SET PARAMETER ID 'VL' FIELD KTAB-VBELN.
    CALL TRANSACTION 'VL03N' AND SKIP FIRST SCREEN.
    CLEAR KTAB-VBELN.
    ENDFORM.
    i m doing this for VL03N Transaction......& passed the parameter for delivery no,
    same u hv to call me22n & pass the parameter
    for PO parameter id is "BES".
    Regards,
    Arpit.
    Edited by: Arpit Shah on Dec 18, 2007 10:24 AM

  • Drill down in report based on two queries

    Hi,
    I have a problem with drilling down in report which is based on two queries.
    Queries are based on different universes.
    Both queries contains almost the same dimensions but different measures.
    In my report is a calculated measure based on measures from both queries.
    In both universes are the same hierachies.
    When I drill down in report for the first time I have to chose hierarchy  but then data are filtered to the choosen  value only from one query , data from second query are not filtered and the values of calculated measure are incorrect
    How can I solve this issue without adding dimensions belonging to the hierarchies to queries.
    Please help.
    Regards.
    MG

    Hi MG,
    First of all, what do you mean by "Both queries contains almost the same dimensions but different measures"
    "Almost" is not a good word in the IT world, especially when trying to merge/join tables. You need to be exact.
    That sounds like a possible reason for the problem.
    I am also not sure about your question:
    "How can I solve this issue without adding dimensions belonging to the hierarchies to queries."
    You may have to add those dimensions to the queries. Why would you not want to?
    Thanks

  • Unable to Drill Down for Report Designer

    hellooo...I created a report using a query in Report Designer. My query is having a structure in the row and I'm using this query for the report in Report Designer. After I created this report in Report Designer, I assign this report in Web Application Designer and create a navigation pane to link this report for the drill down function. But I have problem on drill down this report in the web template when i click on this navigation pane for the free char i defined. Eg: when i drill down for the char in the free char under the navigation pane item, I cannot perform the drill down horizontally but can perform drill down vertically. After perform drill down, I don't see the values from that char being displayed in the reports. Just wondering report in report designer cannot have any drill down function? or is my query problem due to the structure i defined? thanks alotttt...

    The report designer needs a fixed Column definition ( structures)
    In case of drill across this requirement is not fullfilled.
    This is not changable and is due to design, sorry.
    so you can only drill down.
    best regards,
    Kai

  • Error: "Numeric value entered was too low " -drill down discoverer report

    Hi ,
    We have created a Discoverer drill down report (drill down to another worksheet). We have two worksheets one for the master and and the other for the detail.The parameters are passed to detail sheet (The link information is set using the Manage links option in the Discoverer plus) from the master. This whole thing works fine in dev instance.
    We imported the business area . Deleted the existing file and the opened the new .dis file from local computer and then saved it to db.
    Now the master report runs fine and when we click on the drill down link for the detail we get the following error
    An error occured while handling the event.See the application log for more details.
    - The numerical value entered was too low."
    However the link works fine in plus and desktop in the same instance.
    Kindly help.
    Thanks,
    Shobana

    I hope you're not using Internet Explorer v7.
    It has a specific problem with Disco Viewer, is not certified to work with it, and the error is drilling in Viewer.
    The Oracle bug (metalink) is: 5608740
    This bug prevents the listing of drill items under the drill icon.
    Russ

  • Error while drilling down the data from reports

    Hi friends,
    I have created dimension hierarchies in rpd for drilling down the data.. While i drill down its showing no results at some level when i am clicking on the data.. but when i am clicking on the same levels column header its drilling down properly and i can view the next level for the data item which has shown no results while clicked on it.. Please help me and helps will be appreciated..

    Hi,
    >when i click on 2000 results displaying is no results
    but when i click on the header year its showing the results with 3 for 2000.
    So you are able to drill when you click on header..Go to column properties and make heading interaction to no interaction under column format,put value interaction to default and try to drill clicking on value.
    in RPD i have some derived columns like month .I created month as derived column from date using logical formula and i used this derived columns as the key.. Is it a problem?No I dont think its a problem
    Regards,
    Srikanth

  • Workspace error when drilling down on Essbase Cube

    An Interactive Reporting Service error has occurred.-Failed to acquire requested service.
    (2001)
    We're trying to create OLAP queries in IR to deploy through workspace. When I drill down on any dimension, after deploying to workspace, I get the generic error above. Has anyone seen this error?

    I have created one report using Essbase cubes in OBIEE11G and when I am archiving the same report at one local server and unarchiving it at some other server then at the other server I am facing this error.
    Any replies will indeed be helpful.

  • Error when drill down with essbase hierarchy

    Hi ,
    I am displaying one bar chart with, one Ragged hierarchy dimension "Region" ( structure : total region - > India , US -> India south , US south -> chennai , California) and "revenue" (measure) .
    Sometime's the drill down is happening smoothly (region - > sub region - > city) but sometimes its throwing below error :
    Error Codes: OAMP2OPY:QIKSHNQU
    DXE compiler error. Coordinate in target list must match to*coordinate in group by list. Source name:*
    GroupbyAndCoorTableCompiler::run. XML: <sawxd:expr*xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"**xmlns:sawxd="com.siebel.analytics.web/expressiondxe/v1.1"**xmlns:sawq="com.siebel.analytics.web/querydxe/v1.1"**xsi:type="sawq:groupbyField" refCoorID="5"/>*
    FYI , I have a product prompt attached with this graph . i.e , when user selects "total product" and drilling down its
    working perfectly but when selects "network products" its throwing the mentioned error .
    OBIEE version used : 11.1.1.6.2 (Build 120604.0813 BP1 64-bit)
    essbase version used : 11.1.2.1
    Thanks
    sayak

    I have created one report using Essbase cubes in OBIEE11G and when I am archiving the same report at one local server and unarchiving it at some other server then at the other server I am facing this error.
    Any replies will indeed be helpful.

  • Drill down on report s_alr_87012999

    Hi,
    I'm having trouble tracing a drilldown problem on order reports such as S_ALR_87012999. When drilling down on plan line items an error message saying "No plan line items were selected" appears, yet there is a total against the account code, suggesting there is data there. An authorization check doesn't return any problems. Am I missing anything else?
    thanks

    Ian,
    Are you using ST01 for the auth trace?
    Reading the error message, it did not sound like an authorization error message to me. One way you can rule out whether this is an authorization problem or not, assign the test uid with SAP_ALL , and run the report to see if the error still persists. So you don't waste time on non-security error.
    Hope this help.
    Regards,
    Lye

  • Error when Drill down on top level of hierarchy node

    Hi Gurus,
    The following error occurs when I drill down to a "Actual Line items sub report" using the "top node" of an hierarchy based report .
    But, the same drill down works fine when I drill down using the very sub level of the same hierarchy (without any further levels of hierarchies).
    System error in program SAPLRRK0 and form NACHLESEN_INIT_NODE-01-
    Any help or work around suggestion would be highly appreciated.
    Thanks
    Ajay

    Hi,
    Thanks for the start.
    But, My Hierarchy is already active.
    Any other place to check for?

  • Getting error while drill through a report

    Hi,
    I am getting this following error when I drill through a report and the OFA application freezes. I hope this is problem with the OFA installation.
    (MXMSERR) S does not exist in any attached database.
    What does it mean and what could be the problem ?
    Please let me know how to rectify the problem?
    Thanks
    Murugesan

    Hi,
    If it's not the universe limits, then I think you've hit the "MDX result contains too many cells" (more than 1million) problem.
    So, I suspect a long running query, no filters/variable restrictions, and You've probably got a dump in ST22.
    I don't know what BW you have, but if it is BW 7, do you have Enhancement Pack 01 and SP05<->10  ?
    You should check out all the latest corrections from component BW-BEX-OT-MDX
    the final proof of the pudding would be to enable MDA / SOFA log , capture the MDX SELECT statement and test it in BW MDXTEST - i bet you get the same error there.
    regards,
    H

  • CrystalReportsViewer 2011 rendering errors on drill down.

    Hi
    I am displaying a report containing several groups inside the CrystalReportViewer (version 2011) in ASP.NET 3.5.
    The viewer works fine, however when I try to drill down into a group using the treeview navigator:
    - the whole page is redrawn and it appears to move outside the window (i.e. only part of it is visible, the rest of the page is blank)
    - the Drill event does not fire on the code behind
    This is not the case when drilling down into a group by clicking on it within the report itself.
    Any help is much appreciated.
    Peter
    Edited by: peter__tyler123456 on Nov 21, 2011 5:18 PM

    Hi,
    Uninstall the crystal component you are refering to as Crystal Reports 2011 runtime.
    Install [Crystal Reports for Visual Studio 2010 SP1|http://downloads.businessobjects.com/akdlm/cr4vs2010/CRforVS_13_0_1.exe]on top of Visual Studio 2010.
    Open the crystal report in the CR for VS 2010 bundled designer, preview it and see if it works fine.
    Then create a sample application and try to view the report.
    See if it reproduces the issue.
    Thanks,
    Bhushan.

  • Drill down in reports

    Hi,
    when I want to work with drill downs is this only possible with using hierarchies for the neccessary characteristics?
    I'm working with SAP BW 3.5 and 7.
    Thanks in advance.
    Edited by: saplaz on Jun 23, 2010 11:11 PM

    The report shows for example:
    Risk class 1 customerX 500 Dollar
                        customerY 300 Dollar
                        customerZ 200 Dollar
                        Sum 1000
    after drill down
    Risk class 1.1 customerX 500 Dollar
    Sum 500
    Risk class 1.2 customerY 300 Dollar
    Sum 300
    Risk class 1.3 customerZ 200 Dollar
    Sum 200
    The thing is that I only want to see one row with the risk class like that:
    Risk class 1 1000 Dollar
    after the drill down the other rows should appear
    Rc 1.1 customerX 500 Dollar
    Rc 1.2 customerY 300 Dollar
    Rc 1.3 customerZ 200 Dollar
    Any ideas how this could be done?

  • Drill down in report

    I am looking to add some drill down functionality in one of my reports. Does anyone have an references (books, tutorials, or otherwise) that could provide an example. I'm running Reports 9i. TIA.

    Hi,
    One example you could look at is "Parameter form JSP".
    http://otn.oracle.com/products/reports/htdocs/getstart/examples/index.html
    In the example, you can search for customet name (eg, s%), then from the customer list you select one in order to view all its orders.
    If you want to use the paper layout and output to HTML / HTMLCSS, in that case you can use the Hyperlinks property to create drill-down. You can look at "Building Reports" manual section 2.2.6 for information on Hyperlinks. Create a master report with hyperlinks, and in each hyperlink you can pass the full report command for the detail report with the relevant master infromation, eg, the customer_id or the department_id.
    http://otn.oracle.com/documentation/reports.html
    Navneet.

Maybe you are looking for

  • I cant open apps on my iPhone 4 the touch screen doesn't work.  I have restored my phone and still nothing works.

    I can't open apps on my iPhone.  The touch screen doesn't work.  I have restored it already but it still won't work.  What can I do.

  • Grouping of videos by artist

    Some of my videos are grouped on the iPod Touch by artist, others are not. For example, Sheryl Crow shows up on the list with a heading that states "(7 Videos)", while The Cranberries' videos are listed individually. All were purchased from iTunes. A

  • Problems with messaging

    iv got two issues with my iphone messages 1. sometimes one particular number will not receive messages for around 2 days then all of a sudden will get a flood of texts off me from testing it.. i can still receive the messages from them though 2. some

  • Attach Query Report to Purchase Report.

    Hello Xperts.... I have executed a query report regarding  purchase orders. Now I want to attach that query report in my purchase Reports(Modules -> Purchase A/P -> Purchase Reports) but not in My Menu. Plz reply...Thanx..

  • Pb with getting Dreamweaver evaluation version

    Hello, I downloaded an evaluation version of Adobe Creative Cloud (in 2014, October the 8th), because I wanted to evaluate Dreamweaver before buying it. But in the Apps window, I could never see anything (except the hourglass icon...). I have to say