Bw multiprovider problem

hi all, i have a problem with a multiprovider. I activated 0FIAR_C03 cube in order to execute balance aging for customers. I want to calculate top N costemers' balance aging so I created a sales cube based on an S9* info structure. both cubes have right values and I can report them. but when I want to calculate the aging report with sales amount from multiprovider, sales data isn't coming. I want to see
customer, sales amount, balance, time range1, time range 2.....
when I look the data from LISTCUBE, I can see sales data. when I debug with RSRT, it gives DBMAN 143 mistake about SAP Note 489135. i found its explanation from sdn. it is below. what should I do?
Reason and Prerequisites
The problem occurs in the BW BEX component and is related to a query.
Solution
First, execute the query via the RSRT transaction. If the problem also occurs there, it is usually related to the BW BEX OT component.
If you remove the 'RSRT classic' indicator in the
RSRT transaction, you will be able to access the
context menu (as in BEx Analyzer) and to navigate through the component.
When you encounter ET/OT problems, check if you can
find relevant notes on the "SAPNet - R/3 front end" (OSS) for the BW BEX ET/OT components.
For ET problems, the information in note 137153 is also important:
- Front end patch
- Versions of the front end programs (sapbexc.xla -> note 197460)
Often, an OLAP trace (note 112458) can be helpful
(for both ET and OT), especially if additional
navigation steps are required for reproducing the problem.
List all the information mentioned above in any
problem notification.

Hi Dhanya, thanks for your reply.
query doesn't give any error. when I look from LISTCUBE, 0INFOPROV characteristic takes two values (one for sales cube, one for fi cube).
I matcehed 0CALDEY (SD time) with 0NETDUEDATE (FI time). 0DEBITOR (FI) with OCUSTOMER (SD).for sales data, some of the FI values are empty becouse sales cube doesn't have these charactheristic (as an axample posting key.) but the other values are coming. there isn't any problem about FI data. the report based on a SAP exit variable 0P_KEYDT. I restricted sales aomunt key figure with this variable: 0PKEYDT - (0P_KEYDT -365) (the last year's sales amount). even I don't restrict, it doesn't calculate any value...
actually I defined a seperate report for sales data. it is calculating with multiprovider but when I try to get the sales amount in the aging report, it is not calculating.

Similar Messages

  • MultiProvider not reading data

    Hi all,
    I am using a Multiprovider to integrate the data from a DSO and an InfoCube. But is not not reading the data from the DSO.
    Here is the Structure:
    Infocube : SALESCUBE
    Dimensions:
    Transaction:
    TRNSCN_ID: Transaction id
    Customer:
    CUST_ID: Customer ID
    And I have 3 keyfigures called PRC_MAT, SAL_QUANT, REV
    DSO: SAL_LOC
    Key field: TRNSCN_ID
    Data field: SALES_REG
    Now In my multiprovider, in assignment of TRNSCN_ID I have slected both the infocube and the DSO. Yet when I read the data it shows data only from the infocube.
    The columns under 'SALES_REG' are blank (When i do "Display Data" for the multiprovider in SAP BI GUI ) and BExAnalyzer shows 'Not Assigned''
    I checked the data in both the DSO and the Infocube and the data under TRNSCN_ID is consistent in both and I have loaded it from the same source.
    I did some some investigation and II think the issue is in the sql query genereted by the multiprovider: 
    select
    [S1].[/BIC/CUST_ID]
    AS [K____16106]
    [S2].[/BIC/TRNSCN_ID]
    AS [K____16123]
    ,  [F].[/BIC/PRC_MAT]   AS [K____16107]
    ,  [F].[/BIC/REV]   AS [K____16108]
    ,  [F].[/BIC/SAL_QUANT]   AS [K____16109]
    FROM
    [/BIC/FSALESCUBE] [F]
    JOIN
    [/BIC/DSALESCUBE1] [D1]
    ON
    [F].[KEY_SALESCUBE1]
    = [D1].[DIMID]
    JOIN
    [/BIC/SCUST_ID] [S1]
    ON
    [D1].[SID_CUST_ID]
    = [S1].[SID]
    JOIN
    [/BIC/DSALESCUBE4] [D4]
    ON
    [F].[KEY_SALESCUBE4]
    = [D4].[DIMID]
    JOIN
    [/BIC/STRNSCN_ID] [S2]
    ON
    [D4].[SID_TRNSCN_ID]
    = [S2].[SID]
    JOIN
    [/BIC/DSALESCUBEP] [DP]
    ON
    [F].[KEY_SALESCUBEP]
    = [DP].[DIMID]
    where
    [DP].[SID_0CHNGID]
    = 0
    ) ) AND  ( (
    [DP].[SID_0RECORDTP]
    = 0
    ) ) AND  ( (
    [DP].[SID_0REQUID]
    <= 2000000250
    The DSO is not mentioned anywhere in the query.
    Here are 2 unresolved threads with the same issue created by others:
    Multiprovider Problem
    Re: Multiprovider Issue
    Please help out if you have any idea.
    Thanks,
    Nikhil

    Hi Vikram,
    Thanks. This has partly solved the problem. It sows data from both the infocube and DSO but it comes in 2 rows, not 1.
    To do this, I created this new structure:
    Infocube: IC_REV
    Dimensions: TRNSCN_ID
    Keyfigures: PRC_MAT, REV, SAL_QUANT
    DSO: LOC_SALE
    Key Field: TRNSCN_ID
    Data Field: TRNS_DATE (Keyfigure), SALE_OFFC, SALES_REG
    I have included all these InfoObjects in the multiprovider.
    On running the query, it displays the data from the infocube and the dso in different rows.
    For example, I have a TRNSCN_ID value "SALE01".
    in the result, It shows 2 rows for "SALE01", one from the infocube and one from the DSO.
    The data for TRNSCN_ID in the infocube and dso is consistent as I have run their DTPs from the same parent DSO (which has all the data) as the source of data for both the Infocube and the DS.
    Here is the SQL if needed:
    select
    [S1].[/BIC/TRNSCN_ID]
    AS [K____16123]
    ,  [F].[/BIC/PRC_MAT]   AS [K____16107]
    ,  [F].[/BIC/REV]   AS [K____16108]
    ,  [F].[/BIC/SAL_QUANT]   AS [K____16109]
    FROM
    [/BIC/FIC_REV] [F]
    JOIN
    [/BIC/DIC_REV1] [D1]
    ON
    [F].[KEY_IC_REV1]
    = [D1].[DIMID]
    JOIN
    [/BIC/STRNSCN_ID] [S1]
    ON
    [D1].[SID_TRNSCN_ID]
    = [S1].[SID]
    JOIN
    [/BIC/DIC_REVP] [DP]
    ON
    [F].[KEY_IC_REVP]
    = [DP].[DIMID]
    where
    [DP].[SID_0CHNGID]
    = 0
    ) ) AND  ( (
    [DP].[SID_0RECORDTP]
    = 0
    ) ) AND  ( (
    [DP].[SID_0REQUID]
    <= 2000000250
    select
    [O1].[/BIC/SALE_OFFC]
    AS [K____16133]
    [O1].[/BIC/TRNSCN_ID]
    AS [K____16123]
    ,  [O1].[/BIC/TRNS_DATE]   AS [K____16129]
    FROM
    [/BIC/ALOC_SALE00] [O1]
    Any idea how to resolve this?
    Thanks,
    Nikhil

  • Data  is not showing in report

    hi all,
        I have loaded data in cube for budget data keyfig ,i created multiprovider on this cube along with other2 cubes,created report on this multiprovider ,problem is data for the budget column is not comming in th  report ?
        i have created scratch report on cube which has budget keyfig  ,but budget column is not comming for the multiprovider report ?
      its very urgent pls waiting for replies?i will assing points

    Hi Sneha,
    Did you check, whether your cube has got the Budgeted values..
    and also check all the key comibinations of the Cube while creating the
    multiprovider..
    If you are not getting budget value in the cube itself, then you need to check in
    PSA, transfer structure as well as in RSA3 .
    Hope it helps..
    Cheers,
    Pattan.

  • Multiprovider Query Problem

    Hi Gurus,
    The scenario is that there are 2 inficubes, one with order data and other with delivery data. The cube with order data has the requested delivery date and the delivery cube has the actual delivery date. The problem is that I have a query on a multiprovider (on top of the 2 cubes). So when I output the query data by the sales order number, the result is fine, but when I drill down on any of the dates mentioned above ( they are free characteristics in the query), the result splits up into 2 records. For Eg.
    Sales Order     Req Del Date  Act Del Date  Order Qty  Shipped Qty
    12345               03/03/08         -                    5                 -
                                   -           06/03/08            -                5
    What can I do to get the result in one row?
    I will reward points for any help.
    Thanks

    This is the behavior of the multiprovider, since the actual goods issue date is not part of the orders cube, then it will create a second record. There are a couple solutions you could get around to this:
    1. You could merge the data in one DSO before you actually load it to the data target. To do this, you could update fields you need to the orders ods from the delivery ods.
    2. You could create an infoset between the two cubes if you are in 7.0, otherwise, you could create infoset using the underlying ods and create a query from the infoset: performance wise this is not recommended.
    3. If you want to solve the issue report level, there is what is called constant selection and you can make the actual goods issue date as a constant selection and you can get one line.
    /people/prakash.darji/blog/2006/09/19/the-hidden-secret-of-constant-selection
    I would recommend the last option,
    thanks.
    Wond

  • Multiprovider data problem

    Hi All,
    I have a multiprovider which is based on two cubes.There are some characterstics which are simliar in cubes like sales doc,item,ship_to,sold_to.The scenario is as follows:- The key figure on which I am reporting is from Cube2 and there is mix of charecterstiics from both the cubes used in the report,The problem is that cube 2 is not having SHIP_TO party informtion for all the sales doc,items but Cube1 always has ship_to info.So while reporting for some records blank value is coming for ship_to which coild be avoided if the report always take ship_to from Cube1.How it can be achieved?

    HI ,
    you can overcome this issue , follow the steps in the how to document by sreekanth
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/70dcd7b5-6a3d-2d10-c984-e835e37071a2?quicklink=index&overridelayout=true
    Hope this helps,
    Sathya

  • Multiprovider transport problem

    Hello Friends ,
    While transporting the  multiprovider from BW Development to BW Testing system I am getting following error in the Log display of BW Testing System,
    R3TRMPRO***(Multiprovider name) was repaired in this system.
    The log display for the Delevelopment system shows messages 'Feedback after export or import'--'Successfully Completed'
    But the problem occurs in BW Testing system ,
    and we are getting the above error message ,
    Import--(8) Ended with errors
    please suggest solution .
    Thanks in advance.

    Hello A.H.P ,
    Thanks for valuable suggestion.
    I think someone has directly repair this multiprovider in Testing system.
    I will do the required steps as suggested by you.
    Agains thanks very much .
    Message was edited by: Amol Kulkarni

  • Problem with Report on Multiprovider

    Hi All,
    I am getting key fig value more than the expected value in the report output, Report is on Multiprovider, I have checked in to cubes, values in the cubes and reports are same,
    I have checked in TR and UR there is no routines, But Data source is enhanced in the R/3 and extracting the data to BW.
    How to find why we are getting more values in the report   :?:
    Plz give some inputs to solve this problem.
    Thanks
    Sreeu

    Hi
    I have checked data in the Multiprovider, In the MP contain KF (No of days) values high (more then 365 days), that’s the reason am getting KF values high in the report,
    Actually report is used for analyzing the Premise (Char) values w, r to Number of days for one fiscal year, but report is showing Number of days more than the 365 days on one fiscal year .
    Can any one plz advice why we are getting No .of days more then 365 days?
    Thanks
    Sreenu

  • Problem in Multiprovider

    Dear All,
    I am creating a report on Multiprovider to analyze Plan vs Actual amount.
    Plan data is sitting in one cube and actual data is sitting in another cube.
    Now both individual cubes data are correct.
    I have combined both cubes by MP. Now there are some issue with it.
    When i see the report at GL(General ledger ex :- 446100, 45100) level char then plan data and actual data are getting picked up correctly, but the moment i include some other char like profit center or cost center then the actual amount does not come properly. It shows all zero.
    Note only for few records data are getting picked up correctly.
    Information:-
    Structure of Actual cube:- Source is r/3.
    1) ZCOSTCENTER -- Direct map to the source.
    2)Profit center-- Direct map to the source.
    3)GL CODE-- Direct map to the source.
    4) Function code-- Given by the user as a flat file and is an attribue of the Cost center. In update rules i have applied read from master rule.
    5) Business Area -- Direct input from the source.
    6)Amout
    7)Year
    8)Posting Period
    Structure of Plan cube:- Note source of the plan data is flat file.
    1) GL code-- Direct map to the source.
    2) Function code-- Direct input from the source.
    3)Profit center-- Direct input from the source.
    4) Business Area -- Direct input from the source.
    5)Amout
    6)Year
    7)Posting Period
    Need some pointers regarding the same.
    I have selected the common objects present in both the cube during identificaton but still its not working. Only at GL level data are matching perfectly fine.
    Thanks & Rgds,
    Anup.

    Hi Prakash,
    Thanks for you reply.
    1) Check Profit centres are mapped properly or not in MP.
    Ans:- Since PC is coming from the both the source i have checked both the cubes in the MP.
    2)And also check the available PC in both the cubes, how many are there.
    Ans:- In plan cube we have just taken some test data and only 2 (unique)profit center are there but it is occuring at 15 cells whereas there are more numbers of unique profit centers in the actual cube.
    Check the data with individual chars keeping total.
    ANS: at GL level total data are matching and even without any char selected the total amount of actual and plan are matching. but the problem is when we insert some more characteristics.
    Thanks & Rgds,
    Anup

  • Problem in Multiprovider Query

    Hi Experts,
                I had developed an query on Multiprovider, which is on MM & PP Cube. In the Query Designer,i had created some new selection with  two characteristics restriction ( MOvement Type & Trans/Ev Type) and with a key figure.In the restriction part first i have'nt restricted any "#" value.when I run the query i'm not able to see any value as an output.But If I restrict with "#"..I'm able to see values only to #.
    But there are Characteristics values for the restriction value.
    Please help me to over come this problem.
    Regards,
    SPS

    SPS,
    First I would ask you to validate your multiprovider , are you sure that the joins are right ?
    One way to check the same is to have data from all concerned objects in one query and this should include the field(s) of union ( which you have specified in the identification part )
    If you get the data in one single row without any mismatches , then your design is right and you can go ahead with trouble shooting the query.
    Arun
    Assign points if useful

  • KYF problem in a multiprovider

    Hi sdn,
    I merely replaced one infocube with another but identical one in the Multiprovider definition. But now the data from that infocube is not coming in when I look through Listcube. Selection tab shows that the key figures is properly linked.
    What am I missing?
    Thanks.
    Saf.

    Bhanu, I figured out the problem. I wasn't picking up any char from this cube. That is why it was not showing anything from it.
    I am okay now.
    Saf.

  • Problem with Dimension created in Multiprovider

    Hi,
    I have a multiprovider which has 5 Infocubes in it.  There are seperate reports on both Infocube & Multiprovider.  I added 2 new fields in a Infocube under a new dimension.  I need this 2 fileds to be added to the Reports too.  When i open the Query written on Infocube in Query Designer, i could see the fields on the left panel under the new dimension.
    But, when i open the Query written on Multiprovider, i was not able to see the fields.  So, i went to the Multiprovider in Backend, created a new dimension in the Multiprovider and added the 2 fields there.  Now, i was able to see the fields in the Query written on Multiprovider too.  I could see the changes reflecting in both the Queries.  I did this in BI Development system.
    Now the problem comes when transporting the Object to BI Quality system.  When transporting the request, the transport is getting failed with the Error message "Dimension ZFIAA_MC14 not used; please delete".  This is the dimension i have created in the Multiprovider.  Now, if i delete the dimension in the Multiprovider the Multiprovider query will get affected.  If i dont delete the dimension, the request cant be moved to BI Quality system.  I am confused on how to proceed now.
    Can anybody suggest me on what to do now?  Thanks for your time.
    Regards,
    Murali

    Try to assign the infoobjects in that dimension to the respective infocube to fetch the data.
    This can be done by right click on the infoobject and select assign-- check the check box of relevant info provider.
    2. Transport first the infocube. then transport the Multi provider will resolve the issue.
    Hope this helps.
    Regards,
    Reddy

  • Compounding consistency problem not ensured problem in multiprovider

    I have a multiprovider MP1 which has  CUBE1 & CUBE2 as its particiapting cubes. 
    Both of these cubes has infoobject 0FUND which is compounded with 0FM_AREA and I have included both( 0FUND & 0FM_AREA) of these infoobjects in MP1 and mapped it.
    Infoobject 0FUND has attribute called MNGUNIT. I have enabled attribute MNGUNIT as navigational in multiprovider and  mapped it to same attribute from CUBE1, but to different attribute  called RESP_FC of different infoobject COSTOBJ from CUBE2 . Both MNGUNIT & RESP_FC are reffrenced to same infoobject definitiion which is also compunded with 0FM_AREA.
    MP1 syntax check gives a message that, "compounding consistency for infoobject COSTOBJ__RESP_FC not ensured". I have already tried mapping COSTOBJ__0FMA_REA from both the cubes , but it still gives same error message.
    Any solution to this problem.
    Regards
    MB

    Hi Madhukar
    Do you mean COSTOBJ is compounded with 0FM_AREA?
    I think even in that case it will be a problem as your FM area is identified from 0FUND.
    Regards
    Anindya

  • Basic problem in Multiprovider

    Hi,
    I have created multiprovider on 2 ODS Objects.
    Example:
    The structure and data in <b>My 1st ODS</b>:
    DOCNO    CUSTID    INV_AMOUNT    AMOUNT_PAID
    1001         C01         500                    200
    The structure and data in <b>My 2nd ODS</b>:
    DOCNO    MATID    ORD_QTY    DELIV_QTY
    1001         M01        100             60
    Now I constructed my Multiprovider.
    In identification, I have selected 'Create Recommendations'.
    Then, All check boxes were selected automatically.
    <b>My problem is:</b>
    In my query,
    If I select <b>only 'DOCNO' in rows</b> and all keyfigures ibn columns, my out put is:
    DOCNO    INV_AMOUNT    AMOUNT_PAID    ORD_QTY    DELIV_QTY
    1001        500                    200                      100              60
    It is Fine.
    But, when I <b>include CUSTID and/or MATID</b> in my query...
    DOCNO CUSTID MATID  INV_AMOUNT  AMOUNT_PAID  ORD_QTY  DELIV_QTY
    1001  C01    #      500         200         # #
    1001  #      M01 # # 100 60                                       
    This is my problem. It is showing in two lines.
    But I need my report to show all in one line as:
    DOCNO CUSTID  MATID  INV_AMOUNT  AMOUNT_PAID ORD_QTY  DELIV_QTY
    1001      C01       M01      500                 200                    100            60
    Please suggest how can I get this.
    Regards,
    Sailaja.
    Message was edited by:
            Hima Sailaja

    Hi Hima,
    Not sure about the actual requirement for the report . If only related records are to be fetched ( ie. if one docno is not available in ods 1 then that docno line should be eleminated from the report )
    Then creating infoset (Inner Join) instead of going for multiprovider.
    And issue should get resolved.
    Hope that helps.
    Regards
    Mr Kapadia

  • Problem with multiprovider key figure

    Hi all,
    I have Infocubes according to reporting division and a multiprovider built on these Infocubes.
    There is a key figure NET_SALES,the value of which differs in the Infocube and multiprovider.When i check the infocube data independently,the value of the key figure looks ok but when i try to display data in multiprovider with the same conditions,the value of the key figure is incorrect.
    Can anyone please help me out with this?
    Regards,
    Suchitra

    Then make sure that you are analyzing it correctly. Multiprovider will show only values which is coming from the cube.
    Do one thing, uncheck the other three and check for only one cube. Now, you match the data. If its correct, do it for all the region. It may help you to diagnose where is the problem.
    Thanks...
    Shambhu

  • Multiprovider report problem

    Let me explain you the Multiprovider report with example .
    Multiprovider is created based on Basic cube and DSO . Basic cube has Billing doc number in line item dimension .
    DSO has Billing document number , Item number and Partner function as primary key.
    I have Created one diemension on Multiprovider where I have assigned Billing document number , and other 2 data fields from DSO which are not available in Cube .  Is it correct design ?
    DSO have below records ..  - Doc no , Item and PF are primary key of DSO .
    Billing doc no      Partner function     Personal Number    Customer number
    100                                 ER                                1
    100                                 Y1                                                              555
    100                                  Y2                                                              111
    In Cube I have below records -
    Billing doc no     Sales Org          Netvalue            Total sale         
    100                      001                      $ 3000               $3200
    200                        001                    $ 5000                $5100
    When I execute the report based on MP by partner function i should get below result.
    Billing doc   PF    Personal Number    Customer number  Netvalue   Total sales
    100             ER         1                              555                       3000          3200
    Is it possible ?
    Let me know if my question is not clear .
    Regard

    Hi
    Multiprovider is a union of infoproviders.So you can achieve the report you want by building a Multiprovider with the Cube and DSO.You have to assign the Billing doc no to both Cube and DSO during the craetion of the Multiprovider.
    When you execute the report on the MP on Purchase Order, all the values of Billing doc no will be fetched from both cube and DSO(as MP is a union).
    According you can set a filter to fetch only specfic data from a specific part-provider of the Multiprovider.
    Also At query Designer level a InfoObject : 0INFOPROV will be available which will give and option to fetch the data only from a specifi part provider of MP if required.
    help link : http://help.sap.com/saphelp_erp2004/helpdata/EN/52/1ddc37a3f57a07e10000009b38f889/content.htm
    Hope this helps!!
    Regards, Hyma

Maybe you are looking for

  • Mapping question: How to only pass on a certain number of characters?

    I'm mapping a phone number from the idoc to the XML file. I only want to send the first 12 characters of a phone number. For example, if the phone comes in as, "123-456-7890 Ext 44", I only want to send "123-456-7890". I thought I could use the subst

  • Deleting Duplicates in iTunes following 7.7 download

    download of the new version was not successful, with resulted in me having to create my library again. Upshot is that I now have 6500 duplicate files, does anybody know a shortcut that would delete have them - will take ages to hand select each one.

  • DB-Link Performance Issues

    Hello, Does anyone know of any performance issues with regards to db-links? If I execute queries right on the database, they're pretty fast. When I execute them from the other server using a db-link, some queries are slow and some aren't. I can't pin

  • Workflow attachment icon not showing

    I have a help desk question. A user no longer sees the attachment icon in SBWP while others do. This workflow item does have an email and a document attached. Is there a setting I am missing?

  • UI Component AddChild Not Showing Up?

    Hi,   I have a code here where I read in the information from an XML file, and try to make shapes by plotting them to the screen. The problem is, it looks like it knows where each coordinate each shape goes, it is not showing up on the screen. What i