All Records not showing in Report

Hi All,
U just solved my amount problem....
But now i gives my earlier problem again, means displaying only 1 rows, when i executing for 1 month in selection criteria...and amount showing right total of all records...
example---
Document No......Doc. date.......P.date........Vendor..........Name.........Tax Code.........Base Amt....... Tax Amt........Ven. Ref.........P. Doc...
5500000022 .......22.04.2008 ...28.04.2008....1011............XXXXXXX........NB..................500,000............25,000.............A-102.......4500034463
This Document No. is my 1st Document no. (5500000022)..
Here Base Amount (500,000) & Tax Amount (25,000) is the total of more than 100 records total but showing in Single Row...(This rows showing the only 1st record)...
Here what is the problem in my program...where i m wrong in clearing the itab or itab2...
please let me know...
I m again sending my corrected Program...
Code-----
REPORT  zak_form_c4 NO STANDARD PAGE HEADING LINE-SIZE 125  .
TABLES : bsik,bkpf,bseg,j_1imovend,lfa1,t001,t005u,bsak,ekko,bsis, ekkn, anla, anlc.
TYPE-POOLS : slis.
DATA : BEGIN OF itab OCCURS 0,
       hkont LIKE bseg-hkont, "Gl account
       mwskz LIKE bseg-mwskz, "Tax Code
       dmbtr LIKE bseg-dmbtr, "Amount
       buzei LIKE bseg-buzei, "line item
       ebeln LIKE bseg-ebeln, "Purchasing Document
       ebelp LIKE bseg-ebelp, "line item nbr
       hwbas LIKE bseg-hwbas, "Base amount
       shkzg LIKE bseg-shkzg, "Debit/Credit code
       belnr LIKE bsik-belnr, "Document number
       gjahr LIKE bsik-gjahr, "Fiscal Year
       bldat LIKE bsik-bldat, "Document Date
       budat LIKE bsik-budat, "Posting Date
       lifnr LIKE bsik-lifnr, "Vendor number
       xblnr LIKE mkpf-xblnr, "Ven invoice nbr
       name1(25),                                           "name1
       ort01 LIKE lfa1-ort01,   "City
       j_1ilstno LIKE j_1imovend-j_1ilstno,  " Vendor tin nbr
       regio LIKE lfa1-regio, "Region Code
       bezei LIKE t005u-bezei, "Region desc
       dmbtr1 LIKE bseg-dmbtr, "Amount
       hwbas1 LIKE bseg-hwbas, "Base amount
END OF itab.
DATA : BEGIN OF itab3 OCCURS 0.
        INCLUDE STRUCTURE itab.
DATA:END OF itab3.
DATA : wa LIKE LINE OF itab.
DATA : BEGIN OF itab1 OCCURS 0.
        INCLUDE STRUCTURE itab.
DATA:END OF itab1.
DATA : BEGIN OF itab2 OCCURS 0.
        INCLUDE STRUCTURE itab.
DATA:END OF itab2.
***********************************Purchase order history
DATA:   BEGIN OF bet OCCURS 50.
        INCLUDE STRUCTURE ekbe.
DATA:   END OF bet.
DATA:   BEGIN OF bzt OCCURS 50.
        INCLUDE STRUCTURE ekbz.
DATA:   END OF bzt.
DATA:   BEGIN OF betz OCCURS 50.
        INCLUDE STRUCTURE ekbez.
DATA:   END OF betz.
DATA:   BEGIN OF bets OCCURS 50.
        INCLUDE STRUCTURE ekbes.
DATA:   END OF bets.
DATA:   BEGIN OF xekbnk OCCURS 10.
        INCLUDE STRUCTURE ekbnk.
DATA:   END OF xekbnk.
DATA : w_container TYPE scrfname VALUE 'CL_GRID',
       w_cprog TYPE lvc_s_layo,
       g_repid LIKE sy-repid,
       w_save TYPE c,
       w_exit TYPE c,
       cl_grid TYPE REF TO cl_gui_alv_grid,
       cl_custom_container TYPE REF TO cl_gui_custom_container,
       it_fld_catalog TYPE slis_t_fieldcat_alv,
       wa_fld_catalog TYPE slis_t_fieldcat_alv WITH HEADER LINE ,
       layout TYPE slis_layout_alv,
       col_pos  LIKE sy-cucol ,
       alvfc TYPE slis_t_fieldcat_alv.
SELECTION-SCREEN : BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.
PARAMETERS       :  hkont LIKE bseg-hkont OBLIGATORY. "GL Code
*SELECT-OPTIONS   : hkont FOR bseg-hkont .
SELECT-OPTIONS   : belnr FOR bsik-belnr .
SELECT-OPTIONS   : gjahr FOR bsik-gjahr .
SELECT-OPTIONS   : bldat FOR bsik-bldat.
SELECT-OPTIONS   : budat FOR bsik-budat.
SELECTION-SCREEN : END OF BLOCK b1.
PERFORM fill_catalog1 USING:
'HKONT'    'ITAB2'    'G/L Code' ,
'BELNR'    'ITAB2'    'Document Number',
'GJAHR'    'ITAB2'    'Year',
'BLDAT'    'ITAB2'    'Doc. date' ,
'BUDAT'    'ITAB2'    'Posting Date',
'LIFNR'    'ITAB2'    'Vendor',
'NAME1'    'ITAB2'    'Name',
'EBELN'    'ITAB2'    'Purchasing Document',
'MWSKZ'    'ITAB2'    'Tax Code',
'HWBAS'    'ITAB2'    'Base Amount',
'DMBTR'    'ITAB2'    'Tax Amount',
'XBLNR'    'ITAB2'    'Vendor Inv. No.'.
SELECT DISTINCT hkont belnr gjahr bldat budat INTO CORRESPONDING FIELDS OF TABLE itab
                  FROM bsis
                  WHERE bukrs = '1000'
                  AND hkont = hkont
                  AND belnr IN belnr
                  AND gjahr IN gjahr
                  AND bldat IN bldat
                  AND budat IN budat.
SORT itab BY belnr.
LOOP AT itab.
  SELECT * FROM bseg WHERE belnr = itab-belnr  AND gjahr = itab-gjahr
                                               AND bukrs = '1000'
                                               AND ( ebeln <> ' ' OR hkont = hkont ).
    IF sy-subrc = 0.
      itab-buzei = bseg-buzei.
      itab-mwskz = bseg-mwskz.
      IF bseg-ebeln <> ' '.
        itab-ebeln = bseg-ebeln.
        itab-ebelp = bseg-ebelp.
        MODIFY itab.
      ENDIF.
      IF bseg-hkont = hkont.
        itab-shkzg = bseg-shkzg.
        itab-hwbas = bseg-hwbas.
        itab-dmbtr = bseg-dmbtr.
        IF itab-shkzg = 'H'.
          itab-dmbtr = itab-dmbtr * ( -1 ).
        ENDIF.
        MOVE-CORRESPONDING itab TO itab2.
        APPEND itab2.
      ENDIF.
    ENDIF.
  ENDSELECT.
ENDLOOP.
LOOP AT itab2.
  SELECT SINGLE * FROM ekko WHERE ebeln = itab2-ebeln.
  IF sy-subrc = 0.
    itab2-lifnr = ekko-lifnr.
  ENDIF.
  CALL FUNCTION 'ME_READ_HISTORY'
    EXPORTING
      ebeln  = itab2-ebeln
      ebelp  = itab2-ebelp
      webre  = 'X'
    TABLES
      xekbe  = bet
      xekbz  = bzt
      xekbes = bets
      xekbez = betz
      xekbnk = xekbnk.
  itab2-xblnr = bet-xblnr.
  SELECT SINGLE * FROM lfa1 WHERE lifnr = itab2-lifnr.
  itab2-name1 = lfa1-name1.
  itab2-ort01 = lfa1-ort01.
  itab2-regio = lfa1-regio.
  SELECT SINGLE * FROM t005u WHERE bland = itab2-regio
                              AND spras = 'EN'
                              AND land1 = 'IN'.
  itab2-bezei = t005u-bezei.
  SELECT SINGLE * FROM  j_1imovend WHERE lifnr = itab2-lifnr.
  IF sy-subrc = 0 .
    itab2-j_1ilstno = j_1imovend-j_1ilstno.  " Vendor tin nbr
  ENDIF.
  MODIFY itab2.
ENDLOOP.
SORT itab2 BY belnr.
LOOP AT itab2.
  DATA : cnt TYPE i,
         cnt1 TYPE i.
  itab1-dmbtr1 = itab1-dmbtr1 + itab2-dmbtr.
  itab1-hwbas1 = itab1-hwbas1 + itab2-hwbas.
  AT END OF belnr.
    cnt = sy-tabix.
    cnt1 = cnt - 1.
    DO cnt1 TIMES.
      DELETE itab2.
    ENDDO.
    CLEAR itab2.
    itab2-dmbtr = itab1-dmbtr1.
    itab2-hwbas = itab1-hwbas1.
    MODIFY itab2 TRANSPORTING dmbtr hwbas .
  ENDAT.
ENDLOOP.
layout-zebra = 'X' .
layout-colwidth_optimize(1) = 'X'.
CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
  EXPORTING
    i_callback_program = 'ZAK_FORM_C4'
    is_layout          = layout
    it_fieldcat        = it_fld_catalog
    i_default          = 'X'
    i_save             = 'A'
  TABLES
    t_outtab           = itab2
  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.
*&      Form  FILL_CATALOG1
      text
     -->P_FIELDNAME  text
     -->P_REF_TABLE  text
     -->P_SCRTEXT    text
FORM fill_catalog1  USING   p_fieldname TYPE any
                            p_ref_table TYPE any
                            p_scrtext   TYPE any.
  CLEAR : wa_fld_catalog.
  wa_fld_catalog-fieldname  = p_fieldname.
  wa_fld_catalog-tabname    = p_ref_table.
  wa_fld_catalog-seltext_s  = p_scrtext.
  wa_fld_catalog-seltext_m  = p_scrtext.
  wa_fld_catalog-seltext_l  = p_scrtext.
wa_fld_catalog-datatype = 'CURR'.
  wa_fld_catalog-outputlen = 20.
  APPEND wa_fld_catalog TO it_fld_catalog.
ENDFORM.                    " fill_catalog1.
Plz let me know...
Thanks

Hello Prince,
I just want that my code will show single time records..and Sum of base Value and Tax amount...
You want to summarise Base Value and Tax amount per document, right
I am making a very very small modification to the declaration of ITAB:
DATA :
BEGIN OF itab OCCURS 0,
belnr LIKE bsik-belnr, "Document number "--> Add here
buzei LIKE bseg-buzei, "line item "--> Add here
hkont LIKE bseg-hkont, "Gl account
mwskz LIKE bseg-mwskz, "Tax Code
dmbtr LIKE bseg-dmbtr, "Amount
" buzei LIKE bseg-buzei, "line item "--> Delete Here
ebeln LIKE bseg-ebeln, "Purchasing Document
ebelp LIKE bseg-ebelp, "line item nbr
hwbas LIKE bseg-hwbas, "Base amount
shkzg LIKE bseg-shkzg, "Debit/Credit code
" belnr LIKE bsik-belnr, "Document number "--> Delete here
gjahr LIKE bsik-gjahr, "Fiscal Year
bldat LIKE bsik-bldat, "Document Date
budat LIKE bsik-budat, "Posting Date
lifnr LIKE bsik-lifnr, "Vendor number
xblnr LIKE mkpf-xblnr, "Ven invoice nbr
name1(25), "name1
ort01 LIKE lfa1-ort01, "City
j_1ilstno LIKE j_1imovend-j_1ilstno, " Vendor tin nbr
regio LIKE lfa1-regio, "Region Code
bezei LIKE t005u-bezei, "Region desc
dmbtr1 LIKE bseg-dmbtr, "Amount
hwbas1 LIKE bseg-hwbas, "Base amount
END OF itab.
And modified the code as below:
DATA:
V_DMBTR TYPE DMBTR,
V_HWBAS TYPE HWBAS.
LOOP AT ITAB2.
  V_DMBTR = V_DMBTR + ITAB2-DMBTR.
  V_HWBAS = V_HWBAS + ITAB2-HWBAS.
  AT END OF BELNR.
    ITAB2-DMBTR = V_DMBTR.
    ITAB2-HWBAS = V_HWBAS.
    APPEND ITAB2 TO ITAB3.
    CLEAR: ITAB2, V_DMBTR, V_HWBAS.
  ENDAT.
ENDLOOP.
CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
EXPORTING
i_callback_program = 'ZAK_FORM_C4'
is_layout = layout
it_fieldcat = it_fld_catalog
i_default = 'X'
i_save = 'A'
TABLES
t_outtab = itab3 "itab2 --> Use ITAB3 instead of ITAB2
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.
BR,
Suhas
Edited by: Suhas Saha on Jan 13, 2009 3:23 PM

Similar Messages

  • Records not showing in Report

    Hi All,
    I'am facing peculair issue, We have an issue where inventory is showing in -ve.
    From 2LIS_03_BF we are loading the data to DSO, from DSO again to Cube.
    I can see Reocrds in Cube for a certian Plant , Storage Location and Material combinations....when I gave same selection criteria in Report the records are not shown in Report. I have checked Query designer too if there are any condition applies but there are no conditions as such expet Special Process Indicator K is excluded.
    so i checked Special process indicator for that material but its not K.......its Blank.
    Inorder to recover the issue, I have selectivdely deleted the material, Plant and Storage location combination and reloaded the data to cube and compreessed the request without checking No marker Update.
    Please need inputs here.
    SujanR

    Hi,
    Use 2LIS_03_BX, 2LIS_03_BF, 2LIS_03_UM to 0IC_C03 Cube and design the report.
    Use :See the steps how to load the data to 0IC_C03.
    Treatment of historical full loads with Inventory cube
    Setting up material movement/inventory with limit locking time
    See some importent SAP Notes in Invventory Lods.
    Note 747037 - Update of before images in ODS objects
    Note 752492 - Non cumulative keyfigures are incorrectly allowed in ODS
    Note 581778 - ODS capability of extractors from inventory management
    Note 684465 - BWVORG for purchasing data sources
    Note 417703 - Missing duplicate record during extraction with 2LIS_03_BF
    Note 929378 - 2LIS_03_BF, 2LIS_03_BX, 2LIS_03_UM and BI 2004s
    Note 745788 - Non-cumulative mgmnt in BW  Verifying and correcting data
    Note 352762 - Collective note purchasing extractors and setup
    Note 353042 - Howto Activate transaction key (PROCESSKEY)
    Note 352344 - Process key + reversals in Inventory Management
    Note 586163 - Composite Note on SAP R3 Inventory Management in SAP BW
    Thanks
    Surendra Kumar Reddy Koduru

  • Records Not Showing Up On Report

    I'm using Crystal XI
    I can take the query from "Show SQL Query..." and paste it into a query screen in SQL Server 2008 management studio and retrieve the correct records.  However, the report itself does not contain all the records the should have been returned.
    To the best that I can figure, the records where a transaction date (date/time field) is null is not showing up on the report.  I only display the field, do not do any calculations based on the field. 
    It is part of the record selection formula, where I test for the field to be between start/end parameters or is null (which produces the correct SQL query as I stated above)
    So why are the records not showing up on the report, and more importantly, how do I get them to show up?
    TIA

    It already was set to "Exception for Nulls"
    On the other hand, just on a whim, I tried reversing the order of the query from what it was:
    {MyQuery.Company = {?Company}
        And
        {MyQuery.Transaction_Date} In {?Start/End Date}
        Or
        IsNull({MyQuery.Transaction_Date})
    To:
    {MyQuery.Company = {?Company}
        And
        IsNull({MyQuery.Transaction_Date})
        Or
        {MyQuery.Transaction_Date} In {?Start/End Date}
    And that seemed to work.  I'm not sure why it will work in the Mangement Studio, but not in Crystal Reports, but at least it works.
    Thanks for the tug in the right direction.

  • Help: Records not showing when cube is placed under the Multiporivider

    Hi Experts,
    I have a Cube called Bcube with char Plant,calm year/month, material and Key Figure, Pqty
    When I generate a report on this Cube, everything looks fine and I see plants, year, etc in the report
    There are 2 other cubes:
    MCube also has char Plant,calyear/month, material and Key Figure: Pqty, Sqty, TQty, AQty
    DCube also has same as BCube: with char Plant,calyear/month, material and Key Figure Pqty
    When I place all three cubes under the multiprovider, the values from the BCube does not show up in reports
    e.g. in a simple report such as
    Row       :  Plant
    Columns:  Pqty, Sqty, TQty, AQty
    In the Multiprovider, under the Indentification of Characteristics, I checked the boxes for all three cubes whenever the same charactertic in all cubes showed up for identification: e.g..
    InfoProvider  InfoObject
    Bcube----
    Plant
    MCube-------Plant
    DCube -
    Plant
    and same for. e.g. 0Calyear
    and same for Key Figures, e.g. I checked all 3 boxes  for PQty which exists in each of the cubes
    1. Why is my data for BCube not showing when reporting against the multiprovider?
    2. what does it mean by checking the 3 boxes for Plant? and checking the 3 boxes for 0Calyear.
    Thanks

    Hi,
    regarding your questions:
    1. When I run listcube against the multiprovider, I only went to the output list to select the fields I needed in the output; then entered the particular cube e.g. BCube in the infoprovider field. That was it (NO other selection) and I got the described results I explained earlier. If you have a specific test for me to try, please let me know.
    2. Please find the settings in both characteristics and key figures for all cubes in the MULTIPROVIDER maintenance screen:
    Characteristic Assighment:
    0calyear -- 3 boxes checked for BCube, DCube & MCube
    Plant -- 3 boxes checked for BCube, DCube & MCube
    0Material-- 3 boxes checked for BCube, DCube & MCube
    Key Figure selection
    PQty-- 3 boxes checked for BCube, DCube & MCube
    Sqty --checked for DCube, this key fig is ONLY in DCube
    TQty--checked for DCube, this key fig is ONLY in DCube
    AQty--checked for DCube, this key fig is ONLY in DCube
    I hope this helps you to guide me.
    Or, were you referring to mappings in the transformations?
    Thanks

  • How to delete the all records in Ztable from report program

    Hi Guys,
    Good Day!
    How to delete all records in Ztable from report program(Means I want to clean Ztable records from report program) .  Please send me the code.
    Thanks & Regards,
    Reddy

    Use this.
    DELETE { {FROM target [WHERE sql_cond]}
           | {target FROM source} }.
    *But before deleting the rows please check if this Ztable is being used in any other programs or used by others.
    Check "where-used-list"
    in se11 give the table name
    utilities- where-used list.
    I hope this helps.
    thanks.

  • Date not showed when report is viewed in PDF .

    Hi,
    We have a text field that shows the date on which the report is running.Date is not showed when report is viewed in PDF.But in HTML we can view them . Can any one help me out?
    Totally there are four pages for the report.

    I have observed the PDF driver iin EPM 11.1.2.x is not up-to-date and technically the Date (Text) is there just like in HTML. However, when you increase the View (Zoom in), it eventually does show up.
    I have chatted with Oracle Support, and they will not address it with a patch for now.

  • HT4914 I turn on the iTunes Match in my iphone3GS, but the itme of "show all musics" not show up and turn on, so when I open musics in my iPone3GS, the musics seems not be matched with iClouds.

    Dear Sirs,
    I turn on the iTunes Match in my iphone3GS, but the itme of "show all musics" not show up and turn on, so when I open musics in my iPone3GS, the musics seems not be matched with iClouds.I means it doesn't work on.

    Hello there Jameskuo47,
    In researching the issue you are experiencing I found an article that should help get your iTunes Match content to your iPhone. The name of the article is iTunes: How to add a computer or iOS device to iTunes Match and you can find it here: http://support.apple.com/kb/ht4913.
    This section specifically:
    To add an iOS device to iTunes Match
    On your iOS device, go to Settings > Music.
    Note:
    iTunes Match requires iOS 5.0.1 or later; you can find the
    latest iOS software here'
    Tap the iTunes Match switch to On.To access your music in iCloud, open the Music Player app on your device.
    Your music in iCloud will be integrated into your local music library. A download button will appear to the right of any content that you have in iCloud that doesn't already exist on your device.
    Important:
    When enabling iTunes Match on your iOS device, the music library on your iOS device will be deleted and then replaced with your music in iCloud.
    Syncing music with iTunes will be disabled while iTunes Match is enabled on your iOS device.
    By default, when adding an iOS device to iTunes Match, downloading over a cellular network is enabled1. To disable downloading over cellular for iTunes Match, choose Settings > Music > Use Cellular Data > Off.
    All the best,
    Sterling

  • Subreport dropdownlist does not show any report !!

    Just finished preparing two reports, rpt1 (Master), rpt2(SubReport), each a separate report works well. after that i added subreport control to rpt1 and went to SubReport properties to add rpt2 ... but ( Use this report as subreport  ) did not show
    any report in list.

    Hi,
    What happend if you write in the textbox for subreport path, the path, works? what version of Report Builder do you have?
    Raymundo Chapa, MCTS http://www.inavant.mx/blog http://projectaserverzone.blogspot.com/

  • 0IC_C03  Data Not Showing in Report

    Dear Friends,
    We are using SAP BW 3.5. I have a problem with 0IC_C03 Cube.
    Problem is:
    Data is transfered to BW i can see the data from Cube --> Contents.
    But when i create a report i am unable to see only that particaluar data which dont
    have storage location.
    Can anybody help me why its not showing that specific data which dont
    have storage location.
    and on other hand we can see the data from Cube -->Contents
    Regards,
    malik

    Yes i am taking care of marker.
    all data is ok excep 13 records which have no storage location.
    and only these 13 records are not showing in the report and thats why
    my stock is not tele with R/3.
    Any other hint.
    regrds,
    Malik

  • Retrieve All records and display in Report using CAML query in Report Builder if Parameter value is blank

    Hello Experts,
    i have created a report where i have one parameter field where user will pass parameter(e.g. EmpId). As per parameter record will fetched to report if no parameter is passed then it will display all records. I have done it by taking SqlServer Database as datasource.
    by using Following method
    Now i would like to do it by taking Sharepoint List as Datasource. For that what would be the CAML Query.
    Here is my existing CAML query.
    <RSSharePointList xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
      <ListName>Employees</ListName>
      <ViewFields>
        <FieldRef Name="Title" />
        <FieldRef Name="FirstName" />
        <FieldRef Name="LastName" />
        <FieldRef Name="FullName" />
        <FieldRef Name="UserName" />
        <FieldRef Name="Company" />
      </ViewFields>
      <Query>
        <Where>  
    <Eq> 
        <FieldRef Name="Title" />
      <Value Type="Text">    
       <Parameter Name="EmployeeId"/>    
    </Value>
    </Eq>                  
        </Where>
      </Query>
    </RSSharePointList>
    The above code is working if i am passing an employeeId to Parameter. If nothing is passed, it is Not retrieving any record.
    Please suggest
    Thank you
    saroj
    saroj

    Your problem follows the well-established pattern of using an "All" parameter filter in SSRS. There are a few approaches depending on the size of your data. The easiest one is to return all data from CAML and then filter it within SSRS, the following thread
    provides some examples,
    http://stackoverflow.com/questions/18203317/show-all-records-some-records-based-on-parameter-value.
    Other options include passing all of the possible values within the CAML query when "All" is selected, using multiple Report Files to distinguish between both CAML queries, or to use multiple datasets with some logic to show/hide the correct one.
    Dimitri Ayrapetov (MCSE: SharePoint)

  • Values are not showing in report

    Hi,
    I have created a report with EVDRE containing several columns. When I use MemberSet: "SELF" for all columns, it shows me the data I have uploaded correctly.
    However, if I choose "MEMBERS" for any of the columns, the value field is empty. This is totally incorrect as I get several rows with the "MEMBERS" option, and one of the rows contains exactly the same filtering as when I use "SELF" for all columns. So that row should show a value, but it is empty.
    If I choose SUPRESS:Y, it returns 0 rows.
    Example ("SELF" chosen):
    NAMEID, ADDRESS, TIME, SALARY
    A, X1, 2009, 10000
    Example ("MEMBERS" chosen for NAMEID):
    NAMEID, ADDRESS, TIME, SALARY
    A, X1, 2009, (blank)
    B, X2, 2009, (blank)
    C, X3, 2009, (blank)
    Has anyone encountered this before?
    Thanks,
    Sam

    Hey Sam,
    I have some additional questions to help me understand what is going on.
    What other dimensions exist in the application this report is running in, besides NAMEID, ADDRESS, TIME, SALARY?
    What dimensions are in the COLKEYRANGE, besides SALARY?
    What are your expansions set as (SELF, MEMBERS, etc) for the other row/column key dimensions?
    Are you sure that all the other dimensions are not changing when you go from SELF to MEMBERS?  I know this is probably not the case but I thought I would ask anyways.

  • DESCRIPTIONS ARE NOT SHOWED IN REPORT PAINTER

    Hi, I have a problem with the report painter, because i am run the report but i realize that  if the master data(Commitment item ) is not created for the next year  example 2008 and  I am running the report for the year 2007, when the report is generated the report does not show the description of the commitment item ...
    Anyboy has a suggest
    THANKS A LOT!!!
    Pat

    Hello sayujya Patil,
    Thanks for your reply, i have created report in Report Painter, after execution the report i tried in all the parameters under setting menu > report and section layout as well> lead column --> and kept the radio button on key and description, still its not showing the description of the GLs under lead column....
    Please reply...
    Thank You.

  • Description of GL are not showing in Report Painter

    Hello,
      Friends I've made the trail balance in report painter but my problem is the GLs description under lead column are not showing. I checked the lead column and kept the radio button on key and description under report layout but sill its not working. Please suggest...
    Quick reply will be more appreciated.

    Hello sayujya Patil,
    Thanks for your reply, i have created report in Report Painter, after execution the report i tried in all the parameters under setting menu > report and section layout as well> lead column --> and kept the radio button on key and description, still its not showing the description of the GLs under lead column....
    Please reply...
    Thank You.

  • Sales not showing in reports

    Hi all.
    I have an invoice of 15th Nov that contains 2 materials. The issue is that when i run any system report or self developed report, only the sales of first material is showing. No report is showing sales of 2nd materail. I dont know why this is happening. If the invoice contains 2 materials and both of the materials have been despatched then why system is not showing sales of 2nd material.
    Please respond.
    Regards,
    Aisha Ishrat
    ICI Pakistan Ltd.

    Hi
    Pls debug the report with the help of the technical guy.
    1. You could have given a specific material number as input
    2. The item line could be hardcoded in the report.
    3. There can be some other way by which the 2nd material doesnt pass the selection criteria you have set.
    If you sit with an ABAPer, you should be able to solve it in notime.
    Hope this helps.
    Reward if this helps.

  • Charts not showing on report

    I've had crystal reports running for some time on our dedicated Internet server. This has been working OK for the last 10 months.
    I've added a new report which now uses charts however I'm having problems in that the chart does not get displayed. No red cross, just a blank white image with no chart.
    I've reviewed many support forums and as a result have doubled checked all entries in my web.config and file permissions on temporary file locations. Everything seems OK...
    I would point the blame at either something to do with the handlers surrounding CrystalImageHandler.aspx or file permissions, but what I don't understand is that embedded images within the report are working perfectly OK. It is  just the chart which is not showing.
    I double checked the image http location and both my embedded image and chart use the CrystalImageHandler.
    Embedded Image:
    http://mydomain.com/auth/CrystalImageHandler.aspx?dynamicimage=cr_tmp_image_5ba728a0-45a7-4732-938f-9ec0e0f9231a.png
    Chart:
    http://mydomain.com/auth/CrystalImageHandler.aspx?dynamicimage=cr_tmp_image_d4217261-ff67-48d5-97a8-be1fc6bdbe4e.png
    Even tried these in new browser windows. The first address shows, the second just shows a blank image.
    I've tried the exact same report from my local host and it works perfectly ok.
    I've also tried running procmon on the server to try and identify any ACCESS DENIED messages but none are shown.
    Any ideas to what might be wrong?
    Im using Crystal Reports 2008 with .Net 3.5 (Visual Studio 2008) on IIS7 Windows 2008 Server.
    Thanks in advance.
    James

    I tried to register the DLL however,
    regsvr32.exe "c:\Program Files (x86)\Business Objects\BusinessObjects Enterprise 12.0\win32_x86\sscsdk80.dll"
    generates the following windows error:
    The module "c:\Program Files (x86)\Business Objects\BusinessObjects Enterprise 12.0\win32_x86\sscsdk80.dll" failed to load.
    Make sure the binary is stored art the specified path or debug it to check for problems with the binary od dependent .DLL files.
    The application has failed to start because its side-by side configuration is incorrect. Please see the application log for more detail.
    Appliction log entry
    Activation context generation failed for "c:\Program Files (x86)\Business Objects\BusinessObjects Enterprise 12.0\win32_x86\sscsdk80.dll". Dependent Assembly Microsoft.VC80.CRT,processorArchitecture="x86",publicKeyToken="1fc8b3b9a1e18e3b",type="win32",version="8.0.50727.4053" could not be found. Please use sxstrace.exe for detailed diagnosis.
    I've run procmon and examined w3wp.exe on just processes and threads and everthing qappears to be OK, everything reports as SUCCESS. I've uploaded the output here:
    http://www.fastlanesystems.co.uk/tmp/08122010-crystal-chart-issue-procexplorer.txt
    Any other ideas to why this might not be working?
    Thanks
    James

Maybe you are looking for

  • Upgrading the Features framework in SharePoint foundation 2013

    Hi all, I have a question, how can I upgrade the features of Sharepoint foundation 2013. In Sharepoint Health Analyzer, there is an error "missing server side dependencies" and description of this error it has been said that I need to upgrade the fea

  • ITunes could not back up the iPod because the iPod disconnected

    I had and solved a problem similar to the one reported by others: My iPod Touch 5 would not back up to iTunes. I was trying to update the iPod from iOS 8.1.3 to iOS 8.2 using iTunes on my PC and iTunes needed to back up the iPod before installing iOS

  • "Component" vs "Composite"

    I have read several different articles regarding connecting the Apple TV to a TV that the Apple TV has "Component" connections. I have also seen the term "composite" connections used instead of "component". When I look at the rear of an Apple TV I se

  • HOW TO CALL FUNCTION MODULE FROM ABAP4 EDITOR

    HI ! friends I want to call function module from abap 4 editor. is there any shortcut key from edit menu through which if give a function module name then  it calls the function automatically? points will be awarded. Cheers troy

  • Sap b1 roles and responsibilities

    Hi can anyone give me roles and responsibilities of SAP BUSINESS ONE Co-ordinator. cheers, srikanth.