UNCAUGHT_EXCEPTION on load data for 0PU_C02 infocube

Hi Everybody, I am trying to load data into 0PU_C02 infocube from 0PU_O31 ODS, but the system shows me a problem in the log (ST22), the message includes:
"UNCAUGHT_EXCEPTION" "CX_RSR_X_MESSAGE"
"SAPLRRMS" or "LRRMSU13"
"RRMS_X_MESSAGE"
Thanks for your help...

The below threads will help you to solve the issue.
Short dump while loading statistics data - 'CX_RSR_X_MESSAGE'
Short dump u201CCX_RSR_X_MESSAGEu201D with cube 0PS_C031
Loading  2lis_11_VAITM  thowing error CX_RSR_X_MESSAGE

Similar Messages

  • Steps for loading data into the infocube in BI7, with dso in between

    Dear All,
    I am loading data into the infocube in BI7, with dso in between. By data flow looks like....
    Top to bottom:
    InfoCube (Customized)
    Transformation
    DSO (Customized)
    Transformation
    DataSource (Customized).
    The mapping and everything else looks fine and data is also seen in the cube on the FULL Load.
    But due to some minor error (i guess), i am unable to see the DELTA data in DSO, although it is loaded in DataSource through process chains.
    Kindly advise me, where did i miss.
    OR .. Step by step instructions for loading data into the infocube in BI7, with dso in between would be really helpful.
    Regards,

    Hi,
    my first impulse would be to check if the DSO is set to "direct update". In this case there is no Delta possible, because the Change log is not maintained.
    My second thought would be to check the DTP moving data between the DSO and the target cube. If this is set to full, you will not get a delta. It is only possible to create one DTP. So if you created one in FULL mode you can't switch to Delta. Just create the DTP in Delta mode.
    Hope this helps.
    Kind regards,
    Jürgen

  • Load data from an infocube into other infocube

    Hi guys....i try to load data from an infocube to other infocube.....i generated the infosource for export without problems i can visulize the datasource in my BW System assigned well...but how i can run the extraction from one infocube into the other?
    I view that in ODSs there's an option to run load of data into datatargets but in the infocube i can´t find this option......
    is there anything else to do?
    Regards

    The Infosurce and Datasource was linked automatically i can see this in Source System Myself but i can´t see it  in Infosources Tab and i can´t create a Infopackage....that´s my problem

  • Load data to 0SD_C03 infoCube issue with 0MATERIAL

    Hi experts,
    I m loading data to 0SD_C03 InfoCube and while executing the DTP I faced the erreur saying that the material data in the PSA (2LIS_11_VAITM) exceeds the length of the 0MATERIAL InfoObject! knowing that the source field MATNR and the InfoObject 0MATERIAL have the same length = 18.
    I tried also to load the master data into the 0MATERIAL InfoObject but the DTP fails ...
    Thank's for your help.
    Abdess,

    Hi Karaman,
    Through user exsit, I tried to modify the data from 2LIS_11_VAITM and replace the material number by another more short. in the InfoPackage selection, I restricted the data from 2 LIS_11_VAITM, plz see below:
    When I execute the DTP to load data into 0SD_C03, it gives me the same error!!
    Any help please.
    Abdess,

  • Loading data for Cube Characteristics

    Hi Experts,
    I have basic questions on loading of data for InfoCube characterisctis.
    1.Suppose I have 6 dimensions and total 26 characteristics are in dimensions.Do I need to load master data for 26 characteristis.
    2.I have master data InfoProvider say 0Customer ,it does have navigational attributes and display attributes.Do I need to define Navigational attribute as a Master data Infoprovider and load data for them or any other way.
    Please clarify my doubts which I am facing in my project now.I will awarded for all inputs.
    Thanks,
    Rani
    Edited by: Rani on Aug 24, 2008 4:18 AM

    Hi,
    Actually its not really clear what your doubt is... If you question is whether you can load data to infocube without maintaining master data for the characteristics - the answer is yes. You can do that; just make sure that you do not tick the option of checking master data while loading.

  • Can we load data for all levels in ASO?

    Hi All,
    Im creating cube in ASO
    can i load data for all levels in ASO
    we can load data for all Levels In BSO but in ASO i need confirmation????
    and one more
    wat is the consider all levels option in ASO is used for ? wat is the purpose?
    Can any one help ,it would be appriciate.
    Thanks

    In an ASO cube you can only load to level zero
    The consider all levels if used for aggregation hints. It allows you to tell the aggregation optimizer to look at all levels when deciding if aggregation needs to be done on the dimension

  • Can we load data for all levels in ASO cube

    Hi All,
    Can we load data for all levels of members in ASO cube in 9.3.1.
    Regards

    Yes you can load data for all levels in an ASO cube in any version HOWEVER, none of the upper level data in any cube will be there when you look for it. You will get a warning message in the load because ASO cubes don't store data at upper levels. It is the same as loading data into dynamic calc members in BSO cube. It will do the load without compalints, but there will be no data there (At least you get the warning in ASO)

  • Problem in Loading data for clob column using sql ldr

    Hi,
    I am having problem in loading data for tables having clob column.
    Could anyone help me in correcting the below script for ctrl file inorder to load the data which is in mentioned format.
    Any help really appreciated.
    Table Script
    Create table samp
    no number,
    col1 clob,
    col2 clob
    Ctrl File
    options (skip =1)
    load data
    infile 'c:\1.csv'
    Replace into table samp
    fields terminated by ","
    trailing nullcols
    no,
    col1 Char(100000000) ,
    col2 Char(100000000) enclosed by '"' and '"'
    Data File(1.csv)
    1,asdf,"assasadsdsdsd""sfasdfadf""sdsdsa,ssfsf"
    2,sfjass,"dksadk,kd,ss""dfdfjkdjfdk""sasfjaslaljs"
    Error Encountered
    ORA-01461: can bind a LONG value only for insert into a LONG column
    Table sampThanks in advance

    I can't reproduce it on my 10.2.0.4.0. CTL file:
    load data
    INFILE *
    Replace into table samp
    fields terminated by ","
    trailing nullcols
    no,
    col1 Char(100000000) ,
    col2 Char(100000000) enclosed by '"' and '"'
    BEGINDATA
    1,asdf,"assasadsdsdsd""sfasdfadf""sdsdsa,ssfsf"
    2,sfjass,"dksadk,kd,ss""dfdfjkdjfdk""sasfjaslaljs"Loading:
    SQL> Create table samp
      2  (
      3  no number,
      4  col1 clob,
      5  col2 clob
      6  );
    Table created.
    SQL> host sqlldr scott/tiger control=c:\temp\samp.ctl log=c:\temp\samp.log
    SQL> select * from samp
      2  /
            NO
    COL1
    COL2
             1
    asdf
    assasadsdsdsd"sfasdfadf"sdsdsa,ssfsf
             2
    sfjass
    dksadk,kd,ss"dfdfjkdjfdk"sasfjaslaljs
            NO
    COL1
    COL2
    SQL> SY.

  • Error while loading data to an Infocube from 0EC_PCA_1 extractor

    Hi,
    I am trying to load data to the infocube form the extarctor 0EC_PCA_1(Profit centre:Transaction Data on Acounts).It is giving the following error.
    Error message from the source system
    Diagnosis
    An error occurred in the source system.
    System Response
    Caller 09 contains an error message.
    Further analysis:
    The error occurred in Service API .
    Refer to the error message.
    Please provide your inputs.
    Thanks in advance!!!

    Hi,
    The following is the total error message.
    Extraction (messages): Errors occurred
    Error occurred in the data selection
    Error 4 when starting the extraction program     
    Errors in source system     
    The data extraction is terminated.
    Thanks,
    Bhagyarekha.

  • SPP - Unable to load data for numeric parts

    Hi all,
    We have been trying to upload data from a flat file for a set of numeric parts and have been unsuccessful in doing so. We get an error "No valid item to load into APO-BI". We have been successful in loading data for alphanumeric parts.
    We suspected that this may be due to the output format for product number we specified in SPRO (not checked lexicographic). This has resulted in the system attaching leading zeros to the product number. The setting however cannot be changed once a numeric product has been created in the system. We were not able to delete the product (for which we started a separate thread).
    Would appreciate if someone could share if there is a workaround to this problem ?
    Best Regards
    Mitesh

    The Problem got resolved as we were able to delete the numeric part numbers and then checking the "lexicographic" option in "Specify Output format of Product Numbers".

  • How to load data from one Infocube to another request by request using DTP

    Hi All,
    I have a scenario where we are maintaining backup Infocube B for Infocube A.  User loads data from a flat file many times a day in different requests.  We need to maintain backup of the Infocube A on weekly basis.  i.e data to be refreshed with delta update from cube A to cube B.  There are some situations where user deletes some of the requests in Infocube A randomly after use.  Will this change effect in back up cube B when performed data refresh from cube A to cube B.  i.e. this functionality is similar to reconstruct in BW 3.5.  Now we are running on BI 7.0 SP 9.
    Can anyone answer this ASAP.
    Many Thanks,
    Ravi

    You cannot load request by request, " Get Data By Request " DTP loads request by request on " First In First Out " basis. You can run some Pseudo/Fake DTP's if you dont want to load data from a particular request.
    If the user deletes a request from Cube A, it wont be loaded to Cube B but if it is already loaded in Cube B and later the user deletes the request from Cube A you have to delete the request frm Cube B. Inorder to monitor request by request run DTP with   " Get Data By Request set.

  • Can't load data to a InfoCube

    Hi,
    I'm using minisap BW NW2004s with supportpackge 008. I created a infocube with all components necessary to upload a file to it: source system, data source, infopackge, transformation (datasource to infosource), infosource, transformation( infosource to infocube) and the infocube. All components are ok and active, but when I push the button "Start" in the infopackge it send me a message "Data was requested" but nothings happen, no record on the monitor and the infocube remains empty. I can read and display the file on the datasource. Can you help me?
    Thanks a lot!
    Marcus

    Hi Marcus,
    I think you ignored the DTP(data transfer protocol) which is used to  load the data from the datasource to the cube. Create a DTP for the transformations and load the data from the DTP it is like infopackage and loads the data within the BI system.
    In BI-7 infopackage does'nt load data upto the cube it only loads data into the datasource(PSA) from here on u need to use the DTP to load the data.
    Hope this helps,
    regards

  • Help in loading data from an infocube to another

    all,
    i have been trying to load data from a consolidation infocube of one BW system to a similar infocube in another BW system
    I managed to load data by identifying the fist system as the source system
    the challenge that i m facing is as follows
    the first infocube has approx 70000 records; while when i uploaded the data approx only 20000 records got updated
    would appreciate help on why this has happened
    thanks for your time

    Hi,
       Are you using Open hub interface?
       If yes, then the structure/datamodel of the two infocubes are same?
       If both the infocubes are having the same structure, then did you apply any transformation (custom)logic,selection field values in the infospoke definition ?
       If the all the above are true, then do check the the status overview of the executed infospokes grouping by logical target system, destination, infospoke and day.
       And also double click to access single request log and then drill down to record count and errors.
    regards,
    ravi

  • Error While loading data for LIS InfoSources.

    Hi All,
    I am repeatedly receiving load failure errors while loading data using 2lis_01_s001 (This is the case with all the InfoSources).
    The error message is:
    An error occurred in the source system.
    Note
    If the source system is a Client Workstation, then it is possible that the file that you wanted to load was being edited at the time of the data request. Make sure that the file is in the specified directory, that it is not being processed at the moment, and restart the request.
    in our Quality system, we disabled the LIS Updation to No Update(R3) and loaded data and then again changed the Update Mode for No Updating to Asynchronous Update(R3). But now we are doing dataloading in Production. How to proceed. Should we have to disable the LIS Updating whenever we have to load the loads from R3 to BW.
    Regards
    Jay

    Hi Jayanthy,
    Pls. check the order of the fields in the two set up tables for the S001 structure. The order of fields in both the tables should be the same.
    You can see the structure in the TCode - SE11.
    If the order is different, then you bneed to ask the BASIS person to change the order so that the order of fields in both the setup tables is same. This should fix the issue.
    Thanks,
    Raj

  • Data missing while loading data for 2lis_06_inv

    Hi,
    We are loading data  in data-source 2LIS_06_inv from R3 system. While checking data, it was found that there is data difference between RSA7 and PSA level of data-source.
    Ex: I am getting 498 data-records in RSA7 for 2lis_06_inv , but I am getting 495 data-records at PSA level of data-source in BW level.
    That means 3 records are missing. Also run-time exceed error is showing but data is loaded successfully in system.
    Could you please help ?
    Thanks in advance
    Devesh Varshney

    Hi Suchitra,
    I have checked data-source:
    1) There is no selection is given in init selection.
    2) Last changed is done on 10 jan
    3) no user exit is return for data-source
    How can we check issue with function module which is used in data-source since it is standard data-source.
    Please help.
    Thanks in advance
    Devesh Babu

Maybe you are looking for

  • Need help with a few things in Photoshop CS4

    1) When I change a photo, I click to save, up pops the JPEG Options box, which has been set to 12 since last year. Today, it suddenly changes itself to 6 for no good reason. Each and every photo I change, I have to now tell it 12, not 6. How do I get

  • I have read various threads on installing Win XP on my iMac

    Hi All I have read various threads on installing Win XP on my iMac, i have tried on 2 seperate ocations to install win XP Pro on the partition created by bootcamp but in each instance the install failed. I get to the part of the installation where yo

  • Concurrency for JMS Sender Adapter - Async/Sync Bridge

    Hi, We have implemented a number of Async/Sync bridges using JMS Adapters, and are encountering problems scaling the solution. Async-Sync Bridge Scenario: JMS Sender Adapter -> Integration Server -> Sync ABAP Proxy (CRM) ->  JMS Receiver Adapter The

  • Registration of SMD agent

    I have encountered this error when we are trying to register the SMD agent (a few tries already) As we still cannot see the SMD agent running from our SolMan server I have tried to search in SDN and SAP Note on this error but cannot find any hints. A

  • Instrument showing up in MAX but not in executable

    Hello, I am using two HP34401A's to do some measurements, and I am transferring the program from a laptop with full labview to a desktop computer with only the run time engine.  The instruments are showing up in the MAX of the desktop, but when I run