Debugging data load from ODS to InfoCube?

Hi Expert,
I got some errors when I load data from ODS to Cube. I tried to simulate the load, but I got No data in PSA table. I checked mt Infopakage, it is only update Datatarget directly. How can I debug in this situation. I have only that choice "Data Target only" How can I select update Cube through PSA? Thanks in advance!
Weidong

Hi robert,
Thanks for your reply! Do I have to delete the old one? It looks like that system generated two Infopackages - One is full update and another one is Initial update. I think that I have to delete both of them and re-created both, right? Thanks  a lot!
Weidong

Similar Messages

  • Data Load from ODS to Infocube

    Hi All,
    I have been trying to load Data from Standard ODS (activated from Business Content) to InfoCube (activated from Business Content). The records are present in ODS and it has been activated. However, when the load was scheduled and run for the Infocube, the data did not show up in the "Infocube" content and "Fact Table" as well. When I looked at Infocube->Manage->Requests, it showed transferred records as 21 (same as shown in the "monitor" of the existing request) and added records as 0. Similarly for other requests in the cube, it showed the same way. The only difference was the number of records (eg 178 or 48, etc). The number of entries for Fact table was 0 and the it is not compressed. The cube name is 0BBP_C02. Can any of you come up with an idea towards the solution to this problem.
    Thanks

    Hi Saura,
    Check start routines in the cube URs.
    For example, in my system for 0BBP_SC ODS object as infosource I see the start routine:
      LOOP AT DATA_PACKAGE.
        IF NOT ( DATA_PACKAGE-BBP_RELSC = 'I1129'
    *    if shopping cart is approved
          AND DATA_PACKAGE-BBP_ORIGIN = 'B' ).
    * and record originates in BBP
          DELETE DATA_PACKAGE.
        ENDIF.
      ENDLOOP.
    As you can see, records not conforming some conditions are deleted.
    The similiar routines you can find in another URs.
    Best regards,
    Eugene

  • Load from ODS into InfoCube gives TIME-OUT runtime error after 10 minutes ?

    Hi all,
       We have a full load from ODS into InfoCube and it was working fine till the last week upto with 50,000 records. Now, we have around 70,000+ records and started failing with TIME_OUT runtime error.
       The following is from the Short Dump (ST22):
       The system profile "rdisp/max_wprun_time" contains the maximum runtime of a
    program. The current setting is 600 seconds. Once this time limit has been exceeded, the system tries to terminate any SQL statements that are currently being executed and tells the ABAP processor to terminate the current program.
      The following are from ROIDOCPRMS table:
       MAXSIZE (in KB) : 20,000
       Frequency       :  10
       Max Processes : 3
      When I check the Data Packages under 'Details' tab in Monitor, there are four Data Packages and the first three are with 24,450 records.  I will right click on each Data Package and select 'Manual Update' to load from PSA. When this Manual Update takes more than 10 minutes it is failing with TIME_OUT again.
      How could I fix this problem, PLEASE ??
    Thanks,
    Venkat.

    Hello A.H.P,
    The following is the Start Routine:
    PROGRAM UPDATE_ROUTINE.
    $$ begin of global - insert your declaration only below this line  -
    TABLES: /BIC/AZCPR_O0400, /BIC/AZCPR_O0100, /BIC/AZCPR_O0200.
    DATA: material(18), plant(4).
    DATA: role_assignment like /BIC/AZCPR_O0100-CPR_ROLE, resource like
    /BIC/AZCPR_O0200-CPR_BPARTN.
    $$ end of global - insert your declaration only before this line   -
    The follow definition is new in the BW3.x
    TYPES:
      BEGIN OF DATA_PACKAGE_STRUCTURE.
         INCLUDE STRUCTURE /BIC/CS8ZCPR_O03.
    TYPES:
         RECNO   LIKE sy-tabix,
      END OF DATA_PACKAGE_STRUCTURE.
    DATA:
      DATA_PACKAGE TYPE STANDARD TABLE OF DATA_PACKAGE_STRUCTURE
           WITH HEADER LINE
           WITH NON-UNIQUE DEFAULT KEY INITIAL SIZE 0.
    FORM startup
      TABLES   MONITOR STRUCTURE RSMONITOR "user defined monitoring
               MONITOR_RECNO STRUCTURE RSMONITORS " monitoring with record n
               DATA_PACKAGE STRUCTURE DATA_PACKAGE
      USING    RECORD_ALL LIKE SY-TABIX
               SOURCE_SYSTEM LIKE RSUPDSIMULH-LOGSYS
      CHANGING ABORT LIKE SY-SUBRC. "set ABORT <> 0 to cancel update
    $$ begin of routine - insert your code only below this line        -
    fill the internal tables "MONITOR" and/or "MONITOR_RECNO",
    to make monitor entries
       clear DATA_PACKAGE.
       loop at DATA_PACKAGE.
          select single /BIC/ZMATERIAL PLANT
             into (material, plant)
             from /BIC/AZCPR_O0400
             where CPR_EXT_ID = DATA_PACKAGE-CPR_EXT_ID
             and ( MATL_TYPE = 'ZKIT' OR MATL_TYPE = 'ZSVK' ).
           if sy-subrc = 0.
              DATA_PACKAGE-/BIC/ZMATERIAL = material.
              DATA_PACKAGE-plant = plant.
              modify DATA_PACKAGE.
              commit work.
           endif.
           select single CPR_ROLE into (role_assignment)
                         from /BIC/AZCPR_O0100
                         where CPR_GUID = DATA_PACKAGE-CPR_GUID.
            if sy-subrc = 0.
              select single CPR_BPARTN into (resource)
                         from /BIC/AZCPR_O0200
                         where CPR_ROLE = role_assignment
                         and CPR_EXT_ID = DATA_PACKAGE-CPR_EXT_ID.
                   if sy-subrc = 0.
                      DATA_PACKAGE-CPR_ROLE = role_assignment.
                      DATA_PACKAGE-/BIC/ZRESOURCE = resource.
                      modify DATA_PACKAGE.
                      commit work.
                   endif.
              endif.
           clear DATA_PACKAGE.
           endloop.
    if abort is not equal zero, the update process will be canceled
      ABORT = 0.
    $$ end of routine - insert your code only before this line         -
    Thanks,
    Venkat.

  • Summing up key figure in Cube - data load from ODS

    Hello Gurus,
    I am doing a data load from ODS to cube.
    The records in ODS are at line-item level, and all needs to be summed up at header level. There is only one key-figure. ODS has header and line-item fields.
    I am loading only header field data ( and not the item-field data) from ODS to Cube.
    I am expecting only-one record in cube ( for all the item-level records) with all the key-figures summed up. But couldn't see that.
    Can anyone please explain how to achieve it.
    I promise to reward points.
    =====
    Example to elaborate my point.
    In ODS
    Header-field  item-field   quantity
    123                301          10
    123                302           20
    123                303           30
    Expected record in Cube
    Header-field       Quantity
       123                    60  
    ====================
    Regards,
    Pramod.

    Hello Oscar and Paolo.
    Thanks for the reply. I am using BW 7.0
    Paolo suggested:
    >>If you don't add item number to cube and put quantity as adition in update rules >>from ODS to cube it works.
    I did that still I get 3 records in cube.
    Oscar Suggested:
    >>What kind of aggregate do you have for your key figure in update rules (update >>or no change)?
    It is "summation". And it cannot be changed. (Or at least I do not know how to change it.)
    There are other dimensions in the cube - which corresponds to the field(s) in ODS.
    But, I just mentioned these two (i.e. header and item-level) for simplicity.
    Can you please help?
    Thank you.
    Pramod.

  • Direct vs Indirect data load from ODS - InfoCube

    We know that there are two options to load data from ODS to InfoCube:
    1. Direct load:
    If the ODS setting is checked with the option of "Update data targets from ODS object automatically", then when loading data to ODS, then the data also can be loaded to the InfoCube, in this way, only one InfoPackage is needed to load data to the ODS, then the InfoCube can be filled with data automatically.
    2. Indirect load:
    If the ODS setting is NOT checked with the option of "Update data targets from ODS object automatically", then not only the InfoPackage to load the data to the ODS is needed, but also the InfoPackage to load data from the exported datasource of the ODS to the InfoCube is needed to be created in order to load the data from ODS to the InfoCube.
    I wonder what are the pro and con between the above two loading methods from ODS to InfoCube.
    Welcome to every BW expert inputs!

    HI Kevin,
    Direct Loads or rather Automated Loads are usually used where u need to load data automatically into the final data target. And it has no dependencies.This process has less of maintenance involved and u need to execute a single infopackage to send data to the final data target.
    But Indirect Loads are usually used when u have a number of dependencies and this ODs object is one of the object in a process chain. So if u require the this ODS data load wait till some other event has been executed , then indirect loads are used through process chains.
    Regards,
    JAsprit

  • Data tranfer from ods to infocube

    Hi Friends,
    I have created ODS and infocube, the data was loaded on ods sucessfully , but when tried to transfer the data from ods to infocube, the error comes. the update rules and data flows are shown correctly as in FUFU book.
    the errors comes as check the load and after that the infopackage ask to delete the init request in same cube.
    can anyone suggest the right way of tranferring the data from ODS to INFOCUBE and the issues to check.
    Kind Regards,
    Irfankhan

    Hi
    Recheck whether you have the request Activate data in ods (odsrcactivate data & Activate Data automatically while ods creation & odsmanageRequest tab -- request -- Activate)
    If the Data is there in Active Data table then try to update the same with Update Rules.
    While Info Package from ods--Cube -- the Info Package Selection should be Delta ( Init is already there in your cube as I have seen the error message you mentioned)
    the update From ods to Cube
    Via Info Package -- Data Target Tab -- Schedule it with options Delta --
    Info Package -- Monitor -- Update Manually (Wheel)
    Adding it in Process chain
    Hope it helps and clear

  • Data Extraction from ODS to Infocube

    Hi.
    How will you extract data from ODS to Infocube. what is process ?
    please explain....

    Hi,
    as the no.. of records arelot more then your usual loading ..
    so it will take mmuch more time today ..but make sure that the job is running fine..
    You can create load the data by creating selection  but at this point i dont think you can do this.. because for this you have to kill the job ..may be some changes would have been happened
    in the Ip thats why its picking more records..
    hope this helps you ...
    Reagds,
    shikha

  • Delta loading from ODS to InfoCube

    Hai
    Im extracting the data from the custom table into ODS and doing full load everytime for loading delta.
    how can load the only delta from the ODS to InfoCube. what are the setting for this one
    pls let me know
    kumar

    Hai <b>Ravi</b>...
    <u><b>Load the Data From ODS to InfoCube</b></u>:
    Clck as right Click in the Specified ODS.....
    Select the Option " Update ODS Data in Data Target "......
    Then You able to load the Data to any type of DataTarget's(either ODS, InfoCube)
    <i><b>removed</b></i>...
    <u><b>BalajeeKannan</b></u>

  • Data transfer from ODS to InfoCube

    How to transfer data from ODS to InfoCube ? Where exactly do I have to create the
    Infopackage or is it auto-generated ?

    Hi,
    If you are using BI 7.0 then do the following:
    Create Transformation from ODS to Cube by right clicking on cube.
    then create DTP in cube and execute it.
    No need to create infopackage again.
    regards,
    Pruthvi R

  • Data loading from ODS to CUBE

    Hi All,
    I have loaded data from ODS to CUBE. now i have requirement to add some fields in the standard cube. so, for testing purpose i have created copy of the original and created transformation . now when i try to load data from ODS it shows me no more data available . while data is already there in ODS.
    now what should i do ? i don't want to delete data from original cube. is there any other way to load data through transformation ?
    Regards,
    Komik Shah

    Hi,
    Check the DTP of old cube n see whether its Delta. If yes then check whether any one of the foll is check:
    1) get delta only once
    2) get data by request.
    If 1 is checked then delta wont come for the second cube as it says to get delta once and delta is already in one of the cube.
    Generally both should be unchecked but can vary as per requirements.
    Now for your new DTP, i dont think it will aloow you to change to FULL.
    If its allowing you to select FULL, then select it and select from acive table.
    try to load and see.
    regds,
    Shashank

  • Data load from ODS to

    A basic question, I am working on a BI7 system but using the 3.5 BC objects for loading purchasing data.
    data source 2LIS_02_ITM
    -> Transfer rule
      -> infosource
        -> update rule
          -> 0PUR_O01
           -> update rule
             -> 0PUR_O02
    from the info package when i schedule the load immidiately (init with data) the data is successfuly loaded into the first ODS 0PUR_O01 but dosen't load into the second ODS 0PUR_O02
    How to do this?

    Hello Ramesh,
    I have some questions on this activation and loading of this DSO.
    1.We are using 7.0 do u still need to use 3.5 Info source/Update/transfer rules?
    2.If I only need to activate 0PUR_O01 DSO, and only data coming from one 2lis_02_itm what are my options
    3.When you activate the Business Content objects "In Data Flow before" How did you deal with Transformations/Transfer & Update rules did u get them from Business content or you have to create them your own.
    4.I hope you are using LO Cockpit.
    Appreciate your Help.
    Thanks
    Jagadish

  • Data loading from ODS toODS

    Hi All,
    Iam having one source ODS and target also ODS.Can u explain when we have to go for
    1. Full Repair.
    2.Full Load.
    3. Delta Load.
    and also pls give the procedure for loading for all the three above said scenarios.
    Points will be awarded suitably for the answers.
    Thanks in advance gurus.
    Regards...
    BW World

    Hi,
    For loading from one ODS to another you use export datasource. Its called a datamart load.
    Full load is generally performed once to load all the historical data.
    After that you do an init load and deltas will follow which will load only the changed or new records frequently.
    Full repair can be said as a Full with selections. But the main use or advantage of Full repair load is that it wont affect delta loads in the system. If you load a full to a target with deltas running you again will have to initialize them for deltas to continue. But if you do full repair it wont affect deltas.
    This is normally done we when we lose some data or there is data mismatch between source system and BW.
    Check the OSS Note 739863 'Repairing data in BW' for all the details
    You need to create an export datasource (8<Source ODS>) and the update rules from Source ODS to target ODS for loading.
    Also InfoPackages for Init, Full/Full repair and Delta loads.
    Loading procedure had been discussed previously in SDN.
    You will get detailed info in SDN.
    Thanks,
    JituK

  • Data loads from ODS TO CUBE

    Hi,
       i have delta loads comming into the ODS. i do full update from ODS to the cube by date range for material moments no. last time when i loaded the data, it loaded few for the date range. rest did not load and sitting at ODS. this is full load and tried to load again. any suggestions...
    sp

    Hi Srinivas,
            check your update rules between ODS and cube whether they are mapped properly(check your date range for the cube load).
             Do a Init load and then do the delta load.
    hope this will help.

  • No data loaded from ODS to Cube

    Hi,
    I am trying to do init with data transfer from 0FIAP_O03 to 0FIAP_C03...
    though there is data in the ODS, nothing is loaded to the cube. It just says
    No data available
    Diagnosis
    The data request was a full update.
    In this case, the corresponding table in the source system does not
    contain any data.
    System Response
    Info IDoc received with status 8.
    Procedure
    Check the data basis in the source system.
    Any suggestions?
    Thanks
    Shalini

    Hi
    "Info IDoc received with status 8" implies that there is no data in the source.
    But as you say, that data is there in  the source(ODS), then there is some inconsistency in the data source and you need to replicate the data source and reactivate that.
    IDoc Status 8 signifies that there is no data in the source and its not any error.
    For more info on idocs check the below link
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/0087780d-81b0-2a10-eb82-86e1062f1a2d
    Also goto sm58 and clear the idoc there.
    Hope this helps
    Regards
    Shilpa

  • Data load from ods to ods

    Hi All,
    I have loaded data from ods1 to ods2...its a delta update.
    In ods2 the request has failed due to short dump. I deleted the request in ods2 hoping to reconstruct it. But i couldn't find  the request in reconstruction tab.
    I tried to run the infopack but its not taking the delta.
    Please help me out...its urgent
    Thanks & Regards
    AP

    hi,
    Reconstruct will only work incase you use pas for loading. By default ods to ods does not have PSA, that is why you cannot reconstruct. your option is to either delete all data in ODS2 and init from ODS1 or reset datamart status in ODS1 and then run normal delta for ods2.
    Award points if helpful
    Sachin

Maybe you are looking for

  • Wireless Network seems to be separate from wired.

    I have a new WRT54G-TM router. I have two desktops connected to two of the Lan ports and various wireless devices,including a laptop, Nintendo Wii, VOIP phone, and a Tivo. Everything works as far as being able to connect to the internet. The problem

  • How to use a Template in reports as in Forms ?

    Goal: I need to use reuse a common code in all of my reports. Current scenario: I need to display Report title, database name and report REP file name in the header of each report. So if I change at one place it should be reflected at all he places I

  • Problem Installing HP Officejet J4580 Full Feature Software and Driver

    Hallo ! I recently installed a new 2T harddrive and performed a clean install of Windows 7 Home Premium 64-bit on my e-Machine Model ET-1331-g-05w. The clean install of Windows 7, installation of the e-Machine drivers, und 325+ Microsoft  Updates was

  • Bridge unable to read ARW raw files.

    My Bridge CS5 is reading jpegs but not the ARW raw files from my Sony camera. I have downloaded the image data converter ver.4.2.02. I have Camera_Raw_6_2. What do I need?

  • Syncing iphone on more than one computer (not at same time!)

    I am travelling and had to replace my iphone.  The laptop I am travelling with has the same itunes account (and thus library) as my main computer at home. Instead of manually downloading the purchased music I have in the icloud (which is not the comp