Cube not getting Loaded

Hi Friends,
           I have a cube which is getting loaded for R/3 data source, In the extractor (RSA3) there are records, and after loading the infopackage also the PSA also has records, when I do the upload from my PSA to my cube, the job is also sucessful, but when I check the contents in the cube everything is empty, The requests is marked sucessful and it is avaiable for reporting, everything looks absolutely fine, but there are no records in the cube, can some one guide me please!!
thanks

Hi ,
     I have the following code in my Start Routine :
IF (     DATA_PACKAGE-cppvlc  EQ 0
         AND DATA_PACKAGE-cppvoc  EQ 0
         AND DATA_PACKAGE-cpstlc  EQ 0
         AND DATA_PACKAGE-cpquaou EQ 0
         AND DATA_PACKAGE-cpsvlc  EQ 0 ).
      DELETE DATA_PACKAGE.
      CONTINUE.
ENDIF.
What should I modify this to?? and what does this code mean??

Similar Messages

  • Data is not getting loaded in the Cube

    Hi Experts,
    I had a cube to which I created aggregates and then I deleted the data of the cube and made some changes in it and trying to load the data again from PSA.
    But I'm the data is not getting loaded in to it the cube.
    Can anyone tell me do I have to delete the aggregates before I start a fresh data in to my cube. If yes can you tell me how do i delete it and load it again.
    If it is something else please help me resolve my issue.
    Thanks

    Hi,
    Deactivate the aggregates and then load the data from PSA to Cube.
    And then reactivate the aggregates. While reactivating them you can ask to fill them also.
    Regards,
    Anil Kumar Sharma. P

  • Cube not getting all the data from DSO

    Hi experts ,
       I have a scenario where i have 256 records in the DSO . I am loading the DSO data into Cube .but the cube is getting loaded with 200 records . Can any body help me in this regard ???
    Samir

    Hi samir,
    This might be usual because the records in the cube get aggregated. so u will not add  records in the cube but data will be updated correctly.

  • Monthly sales forecast file upload new combinations not getting loaded.

    For one of our planning areas, I get sales forecast as spread sheet and upload this to the infocube.
    We run CIF daily and monthly also to include all new material.
    When I upload the file when I checked the log everything went fine with 3 warnings for 3 products with message "contents of the infocube not contained in BasicPlobStruc.
    Now these material are already in APO by Sold to party is new and there is no combination to this Sold to party and hence the the data did not get loaded.
    Now my Client wants to change whatever required so that all new combinations data are included in when month end sales forecast is loaded.
    Can you advice what needs to be done as ther are large number of products I wont which are new combinations and as far as my knowledge is concerned , since there is no history CVC's are not automatically created.
    Can anyone advice.

    Hi Siva,
                   To b frank I did not completely understand what you are talking about as you are all over.
    As I understand you are getting excel file for sales forecast and you upload the flat file to cube and generate CVCs based on this cube. You are not able to generate the CVCs for all combinations in the cube.
    "Sold to party is new"-- where is this new? in the cube data?
    "contents of the infocube not contained in BasicPlobStruc." - You get this warning if you have lets say 4 characteristics in your cube and only 3 of them in the planning object structure. This is ok. The rule of thumb is that "Your planning object structure has to be subset of your infocube". Which means that you cannot have 3 characteristics in cube and have all those 3 +1 additional in POS.
    This still does not stop the system from creating all combinations int he cube as CVCs.
    The possible reasons why the combinations(CVCs) are not generated from cube:
    1. If there are empty values in a record like below
    Plant--Materialsales org.-customer---qty.
    P1--M1SO1____----10
    P2--M2SO2C2--
    17
    The system only creates the combination P2M2SO2C2 but leaves out the first combination..Why? you have an empty value and system cannot take it so it leaves it out.
    2. If you are checking the flag "Check SCM master data" in MC62 while CVC creation. The system checks the master data for products, locations and if the product or location does not exist the system doesnot create the corresponding combination.
    Please correct me if I misunderstood you and also do not hesitate to ask more questions for clarity.

  • The custm error page is not getting loaded in TomCat 5.0

    Hi all,
    I am working on a JSF web application deployed in Tomcat 5.0.I was trying to redirect 404 and 500 error pages to custom error pages.But the error pages are not getting loaded and i am getting normal Tocat 404 status page.
    I am giving the web.xml entry for the error page defenition.
    <error-page>
              <error-code>404</error-code>
              <location>/faces/displayErrorpage.jsp</location>
         </error-page>
         <error-page>
              <error-code>500</error-code>
              <location>/faces/SessionExpirepage.jsp</location>
         </error-page>
         <error-page>
              <exception-type>java.lang.Throwable</exception-type>
              <location>/faces/displayErrorpage.jsp</location>
         </error-page>
    Please help me out to solve this problem.Its urgent.I will be greatful for any kind of help.
    Note: The same application working fine,ie,the error page is getting loaded while deploying WAS 6.0.
    Jeevan Edakkunnath.

    That's a specification version. I was asking for the implementation and version. Is it the Sun reference implementation (Sun JSF RI)? If so, which build?
    It works flawlessly here on the latest build of Sun JSF RI 1.1, the 1.1_02. You can get the latest build at [http://javaserverfaces.dev.java.net]. I was using Tomcat 6.0.14 by the way, it might make difference.
    Does it work if you use plain vanilla JSP files and do not pass the request through the FacesServlet? I recall some bugs related to it, but I am not sure anymore if it is related to the JSF implementation or application server used.

  • Images not getting Loaded while running Java Application through jar file

    Hello Friends,
    I have a problem while starting my application.I have written my application using pure java.There is no JSP or anything just pure swings.Mine is a standalone appplication.So i used to run it using a batch file.And when i used to start my application it used to not show me the images.so what i did was i mentioned the starting directory in the properties of the batch file (ie in the start in column field).But that was when i was using weblogic server.And i have lot of people working on the same application.so i used ZAC publisher in weblogic and along with that i used to publish the batch file also.so the users dint have any problem.But now what is my problem is i m trying to use JAVA Webstart instead of weblogic ZAC.Now in webstart what happens is that i have to run the appliaction thru jar file.so where do i mention the class path so that the images get loaded.As of now the imaes are not getting loaded.i feel this is a class path problem.but where do i mention it that is my problem.It would be really helpfule if someone could help me out.
    thanx and regards,
    [email protected]

    try out this
    ImageIcon img1=new ImageIcon(this.getClass().getResource(imagename));
    for exmaple
    Imageicon img1=new ImageIcon(this.getClass().getResource("name1.jpg"));
    dont 4get to include the image files in the jar file

  • Applet does not get loaded when viewed in a browser

    Hi,
    I have an applet,which works fine when I use appletviewer to see it. But from the browser, the applet does not get loaded.
    An error appears at the bottom of the browser that load: class not found.
    Any suggestions...please..
    Thank you....
    Pooja

    If you are using Internet Explorer, you should check to see if your browser is set to use Sun's JRE that came with your download of the SDK. (If you didn't install the JRE, you need to go back and run that on your machine. You can check to see if you are using Java's runtime enviornment (JRE) in Internet Explorer by opening IE and going to Tools --> Internet Options... --> and then going to the Advanced tab. Scroll down and make sure the box next to Java Sun "use Java 2 for <applet>" is checked. If that option is not available, you need to install the JRE.
    If that doesn't help, try using the HTML converter that comes with the SDK. It'll take your current HTML page, and you can customize it to force a download and/or usage of the JRE for applet viewing if for your particular browser.
    Hope one of these helps!

  • Some images are not getting loaded

    I am online tutor. And today i got a problem . Images are not getting loaded and also many things are not getting loaded. But when i use internet explorer i don't have that problem . But i don wanna u internet explrer. Can any one help me. And the site with which i am facing problem is tutor.tutorvista.net

    Please try the instructions in this article: http://support.mozilla.com/en-US/kb/Images+or+animations+do+not+show
    Hope this helps. :)

  • W_DAY_D is not getting Loaded with Enterprise WEEK or FISCAL week informati

    HI Experts,
    We have OBI Application 7.9.6.1 (FIN,SCM,PSA analytics application).
    We are using Oracle EBS 12.0.6 as the source system.
    we are using the Enteprise Calendar in EBS to load the W_DAY_D,but the W_DAY_D is not getting Loaded with Enterprise WEEK or FISCAL week informations,
    does any one have an answer to this question,how to load theEnterprise WEEK or FISCAL week information in the W_DAY_D table??
    We have raised an SR with Oracle Support & got the reply that this is a product BUG & they have internaly raised an Enhancement Request.
    God knows when this will be fixed??
    Can any one provide me with a work around ?/
    Thanks

    Hello:
    Please look at these W_MCAL_PERIOD_D, and W_MCAL_DAY_D Tables for Fiscal information. For more information you can look at the RPD BMM Layer Dim - Date Fiscal Calendar.
    With Regards,
    Mohan

  • MDM 7.1.02.59 : Repository not getting loaded

    We are experincing a problem.
    The problem is Repository is not getting loaded. We have tried the
    below:
    1.#Verify-> Check Repository: 0 fatal and 0 Non-fatal errors.
    2.#Verify-> Repair : 0 fatal and 0 Non-fatal errors were corrected
    We Tried loading the Repository with Immediate and Update Indices
    option. The error we get is:
    Load aborted with error(0xFFAA0300: Table not found).
    We tried restarting the server and database as well. But it gives same
    error.
    Any valubale suggestions on the same will be highly appreciated.
    Thanks in advance .
    Regards,
    Nitin

    Hi Nitin,
    Can you post a list of all the database tables that are connected to this repository?
    You'll have to access the database using a DB client or SQL. The DB schema for this repository should be named similar to the repository name.
    Please be aware that there are two schemas per repository - one with suffix "_Z<3 digits>", one with "_M<3 digits>".
    Best regards,
    Dennis

  • CCM: More than two items in catalog are not getting loaded into CCM

    Hi All,
    We configured CCM to our client and working fine, but  we are able to upload only two items. when we add third item or more items to catalog, these are not getting loaded in to CCM (The catalog is loading find and there is no problem when loading).
    The log shows green, but items are not there in CCM.
    Is any one faced similar problem?
    How can we export master schema from CCM to desktop?
    Thanks,
    Ravi Varma

    It is Supplier catalog
    Ravi

  • Apps imattic not getting loaded on iPad or iPhone

    I down loaded imattic apps from apps store. It got downloaded on the iPad, synced with iPhone as we'll, but the problem is the app imattic does not get loaded with any article it goes to loading and gets stuck there it self, it does not work on iPhone as we'll

    Hello there, vikram80.
    Sounds like your app is stuck downloading on both of your iOS devices. You can try tapping on the application icon to resume the download, as outline in this featured discussion:
    App updates won't download on my...: Apple Support Communities
    https://discussions.apple.com/thread/4111336
    Try tapping the App, so that it changes to Paused instead of Waiting, then tap it again to resume the install.
    Make sure you don't have any paused downloads in other apps either, like the App Store or iTunes Store.
    If that doesn't do it, try resetting or restoring the iPhone.
    via whatheck
    Thanks for reaching out ot Apple Support Communites.
    Cheers,
    Pedro.

  • Info Cube not getting full records

    Hi All,
    I am extracting data from the flat file (60k records..of which most fields have binary values),, am getting the values into data source..but when loading from data source to info cube am not getting total records..
    the load is successful and it is showing as transferred 60k records and added 510 records in the manage tab of the info cube.
    what would be the problem ....any help is appreciated.

    Hi,
    Data with same combination for characterstic is added and only for unique charactersitc value it will give new record.
    Material---Customer-Price
    10002----- C1--
    20
    10002----- C1--
    20
    10002----- C1--
    20
    10002----- C2--
    20
    SO As you can see in flat file 4 records are there but in inofcube it will be only 2
    Data with same combination of charactersitc is added and with unique combo only it will display.
    Hope it clears you.
    Also in addition please check the data in flat file.
    Regards,
    AL

  • Data in the Cube not getting aggregated

    Hi Friends
    We have Cube 1 and Cube 2.
    The data flow is represented below:
    R/3 DataSource>Cube1>Cube2
    In Cube1 data is Stored according to the Calender Day.
    Cube2 has Calweek.
    In Transformations of Cube 1 and Cube 2 Calday of Cube 1 is mapped to Calweek of Cube 2.
    In the CUBE2 when i upload data from Cube1.Keyfigure Values are not getting summed.
    EXAMPLE: Data in Cube 1
    MatNo CustNo qty calday
    10001  xyz     100  01.01.2010
    10001  xyz      100  02.01.2010
    10001  xyz      100   03.01.2010
    10001  xyz     100  04.01.2010
    10001  xyz      100  05.01.2010
    10001  xyz      100   06.01.2010
    10001  xyz      100   07.01.2010
    Data in Cube 2:
    MatNo CustNo qty calweek
    10001  xyz     100  01.2010
    10001  xyz      100  01.2010
    10001  xyz      100   01.2010
    10001  xyz     100   01.2010
    10001  xyz      100   01.2010
    10001  xyz      100   01.2010
    10001  xyz      100   01.2010
    But Expected Output Should be:
    MatNo CustNo qty calweek
    10001  xyz     700  01.2010
    How to acheive this?
    I checked in the transformations all keyfigures are maintained in aggregation summation
    regards
    Preetam

    Just now i performed consisyency check for the cube:
    I a getting following warnings:
    Time characteristic 0CALWEEK value 200915 does not fit with time char 0CALMONTH val 0
    Consistency of time dimension of InfoCube &1
    Description
    This test checks whether or not the time characteristics of the InfoCube used in the time dimension are consistent. The consistency of time characteristics is extremely important for non-cumulative Cubes and partitioned InfoCubes.
    Values that do not fit together in the time dimension of an InfoCube result in incorrect results for non-cumulative cubes and InfoCubes that are partitioned according to time characteristics.
    For InfoCubes that have been partitioned according to time characteristics, conditions for the partitioning characteristic are derived from restrictions for the time characteristic.
    Errors
    When an error arises the InfoCube is marked as a Cube with an non-consistent time dimension. This has the following consequences:
    The derivation of conditions for partitioning criteria is deactivated on account of the non-fitting time characteristics. This usually has a negative effect on performance.
    When the InfoCube contains non-cumulatives, the system generates a warning for each query indicating that the displayed data may be incorrect.
    Repair Options
    Caution
    No action is required if the InfoCube does not contain non-cumulatives or is not partitioned.
    If the Infocube is partitioned, an action is only required if the read performance has gotten worse.
    You cannot automatically repair the entries of the time dimension table. However, you are able to delete entries that are no longer in use from the time dimension table.
    The system displays whether the incorrect dimension entries are still being used in the fact table.
    If these entries are no longer being used, you can carry out an automatic repair. In this case, all time dimension entries not being used in the fact table are removed.
    After the repair, the system checks whether or not the dimension is correct. If the time dimension is correct again, the InfoCube is marked as an InfoCube with a correct time dimension once again.
    If the entries are still being used, use transaction Listcube to check which data packages are affected.  You may be able to delete the data packages and then use the repair to remove the time dimension entries no longer being used. You can then reload the deleted data packages. Otherwise the InfoCube has to be built again.

  • Data is not getting loaded using the Demon for RDA

    Hi friends,
    We are doing a POC for Real Time Data acuisition.
    For this we have copied an exisiting datasource and made it Real Time enabled.
    Replicated the datasource now we can see the new datasource in BW.
    We have created an Init Info Package (This loads only till the PSA).
    Loaded the data using Full DTP to load from PSA to the DSO, this succesfully loaded the data in the DSO.
    After that we Created a Delta Info package and a Delta DTP and assigned them to a Demon and started the demon. But strangely i can see the delta data getting Loaded to the PSA but there is nothing happening on the DTP. When i check the DSO manage there is no Delta request. The only request what we have is the Full load.
    Is there any step or something im missing? please guide me.
    Regards
    BN

    Hi,
    Deactivate the aggregates and then load the data from PSA to Cube.
    And then reactivate the aggregates. While reactivating them you can ask to fill them also.
    Regards,
    Anil Kumar Sharma. P

Maybe you are looking for

  • In Need of PW for factory set 'user user' account so I can complete update! :)

    I bought a macbook from someone else and before they sold it to me, they set the cpu back to factory settings. I need to do a software update but I need a password for the account 'user user' in order to complete it. I have the MAC OS X Install Disc

  • What are the configuration changes required to deploy OEM from one VM host to other?

    Hi, I have oem setup on one host and corresponding database is on another host. Now i want to deploy both EM and database setup on another host, so what are the configuration changes required to run the setup.

  • Need FL-inverter for my Satellite notebook

    Hiya my first post so i hope you can help me? I have done a stupid thing and put a magnet next to my laptop screen and it all went dark, i can see writing behind the screen and it all powers up as it should, I took the laptop to a computer shop and w

  • Setting up a WDS with airport extreme and Belkin router

    Hi, I had my airport extreme base station set up with a linksys router (the common one everyone has) and it worked fine. I moved and now am trying to set it up with a Belkin F5D7234-4, and have not been able to get it to work. I have tried both the W

  • Can you control what BC send to Paypal

    I have a client that is used to having all the order line items in their Paypal emails and they are not happy with these not showing up when someone purchases. Now I have told them that they will get emails from BC with all the order details, and the