Multi provider not pulling data

Hi All,
I have 2 data targets ,1 is 0PA_C01 cube and 2nd is a custom DSO.i created a multi provider on top of them and made the identification process properly for chars and keyfigs.in my case 0HRPOSITION is the common char between the two data targets.when i see for the data in listcube transaction it is showing only data related to the cube it is not showing DSO related data.
In the list cube transaction info provider column is showing only 0PA_C01.
Please suggest me if i am missing something.
Thanks
Sri

Thanks Mr M & Singh
both of your suggestions are valid but no use in my case,0hrposition is having data in both data targets.if i copy 1 position value into another data targets it is showing values,it means there is a problem at multi provider level.
**the multi provider not  at all pulling the second data target values ,i tested with some other data targets in all the cases values for only one data target are coming.
i am in BI 7.0 SP20.
can someone suggest more inputs?
Thnaks
Sri
Edited by: super trooper on Feb 13, 2009 11:45 AM

Similar Messages

  • Scheduling siebel BI report not pulling data

    Hi Gurus,
    i have created report in Siebel with BI publisher, My report is working fine when i am running report from the icon. But when the same report running with scheduling option not pulling data in to my report. Is any other properties to set like viewmode something or user properties under integration object? If anyone have tried please provide me the steps.
    Thanks in advacne,
    Regards,
    madhv

    Hi ,
    Please check the following :-
    Is an appropriate summarization level defined?
    Are fixed values stored in the definition of the summarization level?
    Is the use of a summarization level necessary?
    Was test mode activated in summarization level maintenance ?
    Are the summarization levels in status "active" ?
    Please have a detailed look into the SAP OSS Note :  67342 - CO-PA: No summarization level found which contains detials explanations and solutions for the issue ..
    Kindly revert back for any further clarifications
    Regards
    Sarada

  • FKK_INSTPLN_HEAD table extractor 0FC_IPL_HEAD_01 not pulling data.

    Hello Experts,
    Can any one help me understand what am I not doing correct or what needs to be done.
    My understanding is that for table FKK_INSTPLN_HEAD, 0FC_IPL_HEAD_01 is the standard extractor. However when I check in RSO2(R/3) the extractor refers to :
    Table/View : DFKKIPBW_HEAD
    ExtractStruct : FKKIPBW_HEAD
    Which in turn is not pulling data from the installment plan header table as it should.
    Kindly suggest if there an existing extractor for installment plan header table?
    How to go about resolving this issue.
    rgds
    Imran

    Hi,
    With the help of an ABAPer :
    While running the extractor in RSA3, get into the debugging mode by typing /h in the t-code box.
    Analyze why ypur extractor is not picking up data from the table...
    Hope you get some idea............
    Regards,
    Suman

  • Multi provider not activating

    hi,
    i have a multi provider which is based on two non cumulative cubes
    both the cubes are active and consistent
    now when i create multiprovider top of those cubes i am getting this error
    'define the characteristics of the validity table for non-cumulatives'     
    how to proceed futher
    how can this come if both cubes are consistent and active ?
    please suggest me
    i will assign points

    Hi Venkat,
    Check in the non cumulative cubes whether you have maintained the validity table and the reference characteristics for the validity table or not!
    Go to the change mode in info cube and from extras select maintain non cumulative values and check whether you have maintained it or not!
    if not maintain it and then activate!
    Regards
    Ram

  • Infospke not pulling data from the cube

    Hi,
          Though there is data in the cube ,when I say start extraction the infospoke is pulling zero records .But I see a file created but I am not able to see the data.In the monitor it says 0 record extracted.
        I have done this first time in the new upgrade system where I changed the server name.
    Thanks

    Hi,
    Check out the layout definition(Data column) for the corresponding planning level and also you can check the <b>planning area</b> value whether it corresponds to your cube name ..
    Also make a cross check with the <b>listcube</b> for your corresponding restriction which you have made in planning level..
    Regards,
    Siva.

  • SAPscript external subroutine - select not pulling data

    Hi all,
    I am calling an external subroutine in my SAPscript. In this subroutine, I am using a simple select statement:
    * get sales order number
      SELECT vbelv posnv
        FROM vbfa
        INTO CORRESPONDING FIELDS OF TABLE it_so
         WHERE vbeln = gv_deldoc
           AND posnn = gv_posnr.
    The problem is no data is being pulled into it_so. I have confirmed in VBFA (through SE16N) that data exists in the system so this isn't the problem. Are there restrictions with using selects in SAPscript?
    Thanks,
    Edited by: pistols123 on Sep 8, 2011 9:11 PM

    Hi,
    Please refer below code.
    In SAP Script ,SE71: call the subroutine pool program with the below sysntax.
    /: PERFORM GET_DATA IN PROGRAM ZXXXX
    /: USING &XXXX-MATNR&
    /: CHANGING &V_YYYY&
    /: CHANGING &V_YYY2&
    /: ENDPERFORM
    Using Parameter will be the input in the subroutine pool to fetch the data.
    Changing Paramter will be the your output to pass the data into SAP Form.
    now goto SE38,and create a subroutine pool program with the name ZXXXX,follow the below code.
    FORM get_data TABLES tbl_in  STRUCTURE itcsy
                           tbl_out STRUCTURE itcsy.
    READ TABLE tbl_in INDEX 1.
      IF sy-subrc EQ 0.
        XXXX-Matnr = tbl_in-value.
    "Pass it through the conversion exit CONVERSION_EXIT_ALPHA_INPUT before SELECT."
    CALL FUNCTION 'CONVERSION_EXIT_ALPHA_OUTPUT'
      EXPORTING
        input         = gv_deldoc
    IMPORTING
       OUTPUT        = gv_deldoc
    SELECT vbelv posnv
        FROM vbfa
        INTO (l_vbelv,l_posnv)
         WHERE vbeln = gv_deldoc
           AND posnn = gv_posnr.
    READ TABLE tbl_out INDEX 1.
      IF sy-subrc = 0.
        MOVE l_vbelv TO tbl_out-value.
        MODIFY tbl_out INDEX 1.
      ENDIF.
      READ TABLE tbl_out INDEX 2.
      IF sy-subrc = 0.
        MOVE l_posnv TO tbl_out-value.
        MODIFY tbl_out INDEX 2.
      ENDIF.
    Moderator message - Welcome to SCN. But please do not ask for "rewards"
    Regards,
    VSNM
    Endform.
    Edited by: Rob Burbank on Sep 8, 2011 4:18 PM

  • Form Server Submit Form QPAC - Not pulling data

    Hello everyone,
    I wanted to see if anyone has encountered problems using the above QPAC.
    My situation is as follows
    1) User sends PDF back. PDF is sent back to workflow as a PDF (not XDP)
    2) Form Server Submit Form is setup to extract the data from the form and put it in a document variable
    However, that is not happening. I do know that the document is not broken when it is received from the Email Receiver QPAC (I've used the Avoka Document Extract QPAC to test the form itself) however for whatever reason, the variable is still empty after it is processed.
    Any thoughts are appreciated!
    Thanks,
    Rob

    Hi Nico
    Some background. When Adobe first launched LiveCycle, the first capabilities they needed to expose was encapsulated as Forms Server, and it provided:
    1. Rendering a form. This would take a PDF or XDP file, plus some xml data, merge them together, and produce a PDF file.
    2. Handling a form submission. This would take the data from an http request coming from a Submit button on a form, process it, and extract the XML data.
    The Forms "Submit" QPAC is basically the submission API encapsulated as a QPAC. If you want to know exactly what it does, the best place to look is the LiveCycle Forms documentation.
    So, to your question:
    If a document variable contains a PDF form, you can use the Form Submit QPAC to extract the XML data.
    A form variable is really just the XML data for a form, plus a reference to the PDF or XDP file that should be used for displaying the data - so if you assign the extracted XML to the appropriate node in the form variable, it should work.
    I hope this long ramble is helpful.
    Howard
    http://www.avoka.com

  • Custom tabular form for multi-row not saving data

    Ok, before anyone asks, yes, I did read the how-to:-)
    I have a custom tabular form, which I did cause I need to use popups and the popups that you can use in the wizard tabular form does not display the text but rather the value underneath it.
    It returns data rather nicely and when I go and update values I can tell it is changing the fields underneath. I put a process in that will display the values in text fields on the form (for one row only) and I see them changing from what is already there and with the proper values.
    However, when I do that the data that is displayed then gets reverted back to what it was previous to the update but reports that the process was successful.
    I have also tried to insert but that is basically doing the same thing. Can anyone guide me.
    SQL to generate the tablular form...
    SELECT x.sak_release_db
    , x.sak_object
    , x.sak_release
    , x.sak_participant
    , x.sak_csr
    FROM
    (SELECT htmldb_item.hidden(1,sak_release_db) sak_release_db
    , htmldb_item.popupkey_from_query(2, sak_object,
    'SELECT b.nam_schema||''.''||a.nam_technical as table_name , b.sak_object
    FROM system_object a
    , database_table b
    WHERE a.sak_object = b.sak_object') as sak_object
    , htmldb_item.hidden(4,sak_release) sak_release
    , htmldb_item.popupkey_from_query(5, sak_participant,
    'SELECT nam_first || '' '' || nam_last as name, sak_participant FROM co_participant') sak_participant
    , htmldb_item.popupkey_from_query(7, sak_csr,
    'SELECT external_id|| ''-''||id_split as co, sak_csr FROM co') sak_csr
    FROM release_db_xref
    UNION ALL
    SELECT htmldb_item.hidden(1,NULL) sak_release_db
    , htmldb_item.popupkey_from_query(2, NULL,
    'SELECT b.nam_schema||''.''||a.nam_technical as table_name , b.sak_object
    FROM system_object a
    , database_table b
    WHERE a.sak_object = b.sak_object') as sak_object
    , htmldb_item.hidden(4,NULL) sak_release
    , htmldb_item.popupkey_from_query(5, NULL,
    'SELECT nam_first || '' '' || nam_last as name, sak_participant FROM co_participant') sak_participant
    , htmldb_item.popupkey_from_query(7, NULL,
    'SELECT external_id|| ''-''||id_split as co, sak_csr FROM co') sak_csr
    FROM dual) x
    Process to verify that I have the correct global fields: (Type: PL/SQL anonymous block, Process Point: On Submit - After Computations and Validations)
    begin
    :P3_2 := replace(htmldb_application.g_f02(1),'%'||'null%',NULL);
    :P3_5 := replace(htmldb_application.g_f05(1),'%'||'null%',NULL);
    :P3_7 := replace(htmldb_application.g_f07(1),'%'||'null%',NULL);
    end;
    Process to do the insert/update. Note, I hardcoded the value in the where clause but I was originally using the global value for g_f01 (i also tried putting a commit in there for fun) (Type: PL/SQL anonymous block, Process Point: On Submit - After Computations and Validations):
    -- Update the RELEASE_DB_XREF table
    FOR i IN 1..htmldb_application.g_f01.count
    LOOP
    IF htmldb_application.g_f01(i) IS NOT NULL THEN
    UPDATE release_db_xref
    SET sak_object = replace(htmldb_application.g_f02(i),'%'||'null%',NULL)
    , sak_participant = replace(htmldb_application.g_f05(i),'%'||'null%',NULL)
    , sak_csr = replace(htmldb_application.g_f07(i),'%'||'null%',NULL)
    WHERE sak_release_db = 22;
    ELSE
    IF htmldb_application.g_f02(i) IS NOT NULL THEN
    INSERT INTO release_db_xref
    (sak_object
    ,sak_release
    ,sak_participant
    ,sak_csr)
    VALUES
    (replace(htmldb_application.g_f02(i),'%'||'null%',NULL)
    ,htmldb_application.g_f04(i)
    ,replace(htmldb_application.g_f05(i),'%'||'null%',NULL)
    ,replace(htmldb_application.g_f07(i),'%'||'null%',NULL));
    END IF;
    END IF;
    END LOOP;

    Florian,
    Checkboxes are different from other HTML form items. When you have a text box for example, there's always a value send to the server when submitting. Even if that value is NULL. When you have a checkbox however, you only get the value if the checkbox is checked. It's not posted to the server when it is not checked. That's the general behavior of HTML forms and not specific to Oracle HTML DB.
    When working with tabular forms in HTML DB, you can access your form values using the htmldb_application.g_f0x arrays. Now if you have for example 10 rows in your form, then you'll get ten elements in your array for text boxes, select lists, etc. For checkboxes however you'll only get as many elements as you have rows checked. If I read your update and insert code correctly, you're trying to use the checkbox arrays the same way you use the arrays based on other item types. My recommendation would be to use Yes/No select lists instead of checkboxes or at least use select lists initially to get it working and then work on properly processing the checkboxes.
    Some general information about working with checkboxes in tabuar forms can be found here:
    http://www.oracle.com/technology/products/database/htmldb/howtos/checkbox.html#CHECKBOX_IN_REPORT
    Hope this helps,
    Marc

  • MSS PCR form not pulling data for a user

    Hi All,
    On Organizational/Position Change Form(on Portal)  one of the user don't see the data in the dropdowns in this form.
    But for other users it is working just fine. The user not able to see the data in drop down can access other PCR's.
    I was wondering if there is a way we can test the form for the same user in the backend. If we can test him in the backend and the values are being populated for this user then there is a Portal problem.
    Can you please tell me how can we test this form for this user in the backend.
    Thanks in Advance,
    Joe

    hi ,
    You can put external breakpoint in the BADI method and try debugging it  by opening adobe form from
    portal.
    thanks ,
    sahiba

  • Multi provider not active

    hi folks,
    when i try to activate my multiprovider with 2 basic cubes it is giving a message "the data target is not saved as active".
    plz could someone help me out with the issue.
    regards,
    axel

    Hi!
    Check out for Active Status of your Basic Cubes...if they are actively available,check out the multiprovider configuration......
    Best Regards
    Sunil.
    Message was edited by: sunil choudari

  • U0094Generate Export data Source" form multi provider.

    Hi,
    If  we give the context menu to the multi provider we get an option that ”Generate Export data Source”. That means is it possible to generate the data source from multi provider. If  yes , then we will load data from one multi provider to another data target.
    How can we see the data in Multiprovider.
    Regards,
    Venkata Sharma

    A Multiprovider has no storage of data.
    But you use a query build on top of it, and see the data from the Datatargets that are used on that Multiprovider (can be cubes, info-objects, info-sets).
    I am working in BI 7.0 and I don't have the option of generating the export datasource!
    Hope it's clear now.

  • Report is not getting data from Remote cube thru Multi Provider

    Hi SAPians
    I ve strucked up with a Problem in The Reconciliation Report in BW3.5
    The Report was built on a Multi Provider, which was created on Basic and Remote Cubes .
    Both cubes have same Data Source and all the Objects were in Active version and found good.
    When I m executing the Report ,I m only getting the data from the Basic cube and no data is coming from Remote Cube.
    I ve checked the char " 0Infoprov " in Multi Provider and It was assigned with the both the cubes.
    What might be the problem
    Please help me in this regard
    Thanks in advance
    Regards
    Arjun

    Hi
    In the Reconciliation multiprovider, include 0INFOPROVIDER = Remote cube.
    If data still not coming, you can be sure connectivity with Source system of the Remote cube is the issue
    Check with basis to solve the connectivity issue.
    Ensure Remote cube is consistent
    Bye

  • Multi provider is not getting exact data.

    Hi Experts,
    I am working on BW, I have created a Multi provider with three cubes and one ODS, I have added total 16 objects in this Multi provider, while I am executing this Multi provider in LISTCUBE it is showing only four fields data, all fields are having data but in listcube 12 fields are showing empty.
    How can i get the remaining fields data also,
    Please help me to get the data,
    Helpful answer will be appreciated with full points.
    Thanks in advance,
    Venkat.

    Hi,
    Check that there is data in the cube that is available for reporting.
    Try to include 0INFOPROV in the query to verify the InfoProvider from which data is being pulled.
    Try a LISTCUBE on the cube to see that it contains data as per the filters, or selections in the query.
    Also check this link..
    Multiprovider showing data from only one underlying object?
    Hope this helps u..
    Best Regards,
    VVenkat...

  • How to see data in the multi-provider ?

    We have a multiprovider with the key figure as total stock, and its given as a non-cumulative kf which has a check mark next to it. Its getting data from the infocube to it, I mean there are 4 infocubes and 1 ods to the multi-provider. If I right click and see the infocube or the multi-provider and select the fields by rite click and I am unable to see the total stock kf. But if I click the actual multiprovider and click display instead of display data, I am able to see the keyfigures folder, if i expand that I see stock quantity folder and many other folders. If I expand stock quantity folder, there are 3 kf's ztotalstock, 0isstock and 0recstock. In those ztotalstok is non-cumulative checked. And I am unable to see the kf value when i rite click on the mp. So any suggestion to display the data by selecting a posting date in the mp. What my guess is , will there be any internal table/view to display the mp data. Please let me know any suggestions.
    Thanks for your time,

    Prasanth, entering the mp name in LISTCUBE is same as right click on the mp and click on display data, where it will give the selecting criteria for the fields. But here both will display the same fields, that is not my case. I am unable to see one of the key figure which is inside the mp, have you opened any mp. Please right click on it and choose display and then go to the key figures folder , if you open that you have lot of folders in it based on the category. IN my case its the stock kf folder and if you expand that there are three kf's out of the three, one is ztotal stock which is declared as non-cumulative kf, rite next to it, option is checked. So I think that is the reson we are not able to see ztotalstock kf , no matter in the listcube or display data option on the mp. Hope you got my situation. I know how to see the data in the multi-provider or infocube. But in this case its not displaying that ztotal stock keyfigure, but in the reporting we can see the data on the mp. My question is why am I not able to see the selection for that ztotal stock key figure , either in listcube or rite clik display data option. Did anybody face this situation.
    Thank You,

  • Multi provider data

    Hi,
    We have a Multi Provider which is built on a Master data object and a DSO.
    We included 2 navigational attributes of the master data object in the Multi Provider.
    But the Multi Provider is not displaying any data for the Navigational attributes.
    When we check the master data object, we have 2 records for one product .
    one record has all the values are filled in and the 2nd record is not filled up with values.
    Our Multi Provider is picking up the 2nd record for each product.
    But in query, we have display the values.
    Please suggest us how to get these values in the Multi Provider.
    Thanks & Regards,
    Jyothi.

    Hi Jyothi,
    Multiprovider works on Union functionality and it fetches data from all the underlying infoproviders. In case of navigation attributes data is displayed in the query from actual master data objects, you do not need to include the master data object in multiprovider for using navigation attributes.
    Once navigation attributes are marked for available for reporting in underlying infoprovider they will be available in query and data shown will be from masterdata infoobject.
    Just check that you have activated master data infoobject properly and then see the query output. Finally check if there is any filter in report.
    Regards,
    Durgesh.

Maybe you are looking for