Some data from RSDDSTAT_OLAP missing in 0TCT_C01 cube

Hi,
I need to analyze the performance of some BW queries, especially the trend of their runtime. From the SAP technical content, the InfoCube 0TCT_C01 sounds the least obscure and it looks like it should contain the data I need. When looking at view RSDDSTAT_OLAP then I can find performance data for my 3 sample queries:
select infoprov, objname, count(distinct stepuid) steps, min(starttime), max(starttime)
from sapsr3.rsddstat_olap
where objname in ('KBBH420M4_Q001A','KHBBH420_M9_Q002_WT','HBBH590M2_Q001')
group by infoprov, objname
order by infoprov, objname;
INFOPROV             OBJNAME                          STEPS MIN(STARTTIME)  MAX(STARTTIME)
HBBH420M4            KBBH420M4_Q001A                     24 20110513 090737 20110527 102029
HBBH420M9            KHBBH420_M9_Q002_WT                139 20110503 095420 20110531 053834
HBBH590M2            HBBH590M2_Q001                      12 20110502 135242 20110531 081404
The data is loaded daily from from RSDDSTAT_OLAP to the technical content InfoCubes. There are many rows in 0TCT_C01 spanning all calendar days, but not a single entry about InfoProv HBBH420M4 , HBBH420M9, HBBH590M2  (as seen in key KEY_0TCT_C014). There is also not a single entry about Queries KBBH420M4_Q001A, KHBBH420_M9_Q002_WT, HBBH590M2_Q001 (as can be seen in key KEY_0TCT_C016). For many other queries the data is loaded without problems into InfoCube 0TCT_C01.
The recording of statistics (RSA1 u2192 Tools u2192 BW Statistics for InfoProviders) is activated for these queries just like for all other queries.
What could be the reason why I am missing data on these three specific queries in InfoCube 0TCT_C01?
(If you are wondering: I am a SQL programmer, not a BW consultant, so I prefer to code my SQL queries manually.)
Regards,
Mark

Hi Sesh,
Field 0TCTTIMSTMP has a converstion routine at the info-object level. It stores the value in UTC but when displayed it undergoes conversion and displays in system zone.
Thanks and Regards,
Srilatha

Similar Messages

  • Unable to load data from an ODS to a Cube

    Hi all,
    I am traying to load data from an ODS to a cube, and I'm getting the following msg at the bottom of the screen monitor: <b>"No corresponding requests were found for request REQU_BZUH9ZPYNL5XLQNB7K8IQDKFS in the ODS/Cube" Message no. RSBM043.</b>
    I am unable to load the data. The QM status is yellow. When the process starts, on the left hand of the monitor it shows: "0 of 84408 records" which is ok. I load that with this package before and it works well.
    Can you help me what I have to do? I tried to wait but it was the same: no progress and no data in the cube.
    Thank you very much and kind regards,
    MM.
    May be this helps...
    When I look at the status, it says that I have a short dump at BW. It was CALL_FUNCTION_REMOTE_ERROR and the short text is "The function module "SUBST_TRANSFER_UPGEVAL" cannot be used for 'remote'". This short dump occurs very much before I shoot the upload.
    Thanks again.

    Hello MM,
    Can you do the following..
    make the Total status Red Delete the request from cube.
    goto ODS -> Remove the Data Mart Status -> Try loading it again.
    The error message that you get is common when we are trying to run a infopackage with the source object having no new request, (means all the requests available in the source are already moved to the targets). So please try the steps given above.
    Hope it will help!

  • Import some data from one oracle to another...

    Hi Guys,
    we have 2 oracle database servers on 2 different machines with schema.
    I want to import some data from a specific table from one oracle into another oracle.
    what is the way to do that.
    Please help in details
    Imran Baig

    Hi,
    Thanks for the reply.
    Tables are already created in both of the oralce databases only the data varies. I just have to import only few records from one oracle to another with the same user name and table already existing.
    I have tried using database link. I can view records from the other oracle database but as soon as i write an insert command oracle gets held. I cant do anything.
    Is there any other way?
    Imran

  • How to export some data from the tables of an owner with integrity?

    Hi to all,
    How to export some data from the tables of an owner with integrity?
    I want to bring some data from all tables in a single owner of the production database for development environment.
    My initial requirements are: seeking information on company code (emp), contract status (status) and / or effective date of contract settlement (dt_liq_efetiva) - a small amount of data to developers.
    These three fields are present in the main system table (the table of contracts). Then I thought about ...
    - create a temporary table from the query results table to contract;
    - and then use this temporary table as a reference to fetch the data in other tables of the owner while maintaining integrity. But how? I have not found the answer, because: what to do when not there is the possibility of a join between the contract and any other table?
    I am considering the possibility of consulting the names of tables, foreign keys and columns above, and create dynamic SQL. Conceptually, something like:
    select r.constraint_name "FK name",
    r.table_name "FK table",
    r.column_name "FK column",
    up.constraint_name "Referencing name",
    up.table_name "Referencing table",
    up.column_name "Referencing column"
    from all_cons_columns up
    join all_cons_columns r
    using (owner, position), (select r.owner,
    r.constraint_name fk,
    r.table_name table_fk,
    r.r_constraint_name r,
    up.table_name table_r
    from all_constraints up, all_constraints r
    where r.r_owner = up.owner
    and r.r_constraint_name = up.constraint_name
    and up.constraint_type in ('P', 'U')
    and r.constraint_type = 'R'
    and r.owner = 'OWNERNAME') aux
    where r.constraint_name = aux.fk
    and r.table_name = aux.table_fk
    and up.constraint_name = aux.r
    and up.table_name = aux.table_r;
    -- + Dynamic SQL
    If anyone has any suggestions and / or reuse code to me thank you very much!
    After resolving this standoff intend to mount the inserts in utl_file by a table and create another program to read and play in the development environment.
    Thinking...
    Let's Share!
    My thanks in advance,
    Philips

    Thanks, Peter.
    Well, I am working with release 9.2.0.8.0. But the planning is migrate to 10g this year. So my questions are:
    With Data Pump can export data just from tables owned for me (SCHEMAS = MYOWNER) parameterizing the volume of data (SAMPLE) and filters to table (QUERY), right? But parameterizing a contract table QUERY = "WHERE status NOT IN (2,6) ORDER BY contract ":
    1º- the Data Pump automatically searches for related data in other tables in the owner? ex. parcel table has X records related (fk) with Y contracts not in (2,6): X * SAMPLE records will be randomly exported?
    2º- for the tables without relation (fk) and which are within the owner (MYOWNER) the data is exported only based on the parameter SAMPLE?
    Once again, thank you,
    Philips
    Reading Oracle Docs...

  • Extract data from a BW 7.0 cube to a SQL DB using Data Services XI

    Hi Gurus,
    We are trying to extract data from a BW 7.0 cube to a SQL DB using Data Services XI, the issue is that we can not read text without making "joins" between SID in the fact table and the master data tables. Do you know if it is posible to read text in a natural way?
    Best Regards

    Thanks Wondewossen,
    As you know, the DataStores (Data Services) provide access to:
    1.-Tables
    2.-Functions
    3.-IDOCs
    4.-Open Hub Tables
    We are trying to extract data using the first one (Tables), not using Open Hub.
    Best Regardas

  • Goto: How to export some data from the tables of an owner with integrity?

    Hi to all,
    Help please: How to export some data from the tables of an owner with integrity?
    My thanks in advance,
    Philips

    Thanks, Peter.
    Well, I am working with release 9.2.0.8.0. But the planning is migrate to 10g this year. So my questions are:
    With Data Pump can export data just from tables owned for me (SCHEMAS = MYOWNER) parameterizing the volume of data (SAMPLE) and filters to table (QUERY), right? But parameterizing a contract table QUERY = "WHERE status NOT IN (2,6) ORDER BY contract ":
    1º- the Data Pump automatically searches for related data in other tables in the owner? ex. parcel table has X records related (fk) with Y contracts not in (2,6): X * SAMPLE records will be randomly exported?
    2º- for the tables without relation (fk) and which are within the owner (MYOWNER) the data is exported only based on the parameter SAMPLE?
    Once again, thank you,
    Philips
    Reading Oracle Docs...

  • Memory full. Delete or Remove some data from C: Ph...

    Last night i deleted my messages in my inbox and sent box.
    afterwards i didn't do anything else and suddenly just stopped working. i turned it off and turned it back on and it came up with
    Memory full. Delete or Remove some data from C: Phone Memory.
    and then every so often would come up with system error
    i tried going into things like the photos or video and internet and apps pages to view them but it would just freeze and not do anything...
    i recieved some text that were sent like 3 hours before when i thought it was working and i could text back as when you go to reply you can't go into the screen to start touch screen typing....
    i finally got into the C: drive by connecting to my comp and deleting stuff even though the C: is not full it keeps coming up with this...
    i can't connect to comp and PC suite has never worked to try and update software or something and it now doesn't have the settings to go on internet itself to get updates. i have got vodafone to text me configs for internet but it says its already saved and it still doesn't work...
    any ideas peeps???

    Visit this link:
    /discussions/board/message?board.id=smartphones&thread.id=120841&view=by_date_ascending&page=1
    Throw some kudos, they mean a lot to us
    Cheers,
    DeepestBlue
    5800 XpressMusic (Rock Stable) | N73 Music Edition (Never Say Die) | 1108 (Old and faithful)
    If you find any post useful, click on the Green "Kudos" Button on the left to say Thank You...

  • N82: Memory full. Delete some data from phone memo...

    memory full. delete some data from phone memory
    i deleted all of the messages in inbox and in memory card. i also tried *#7370#. stil the memory is full. i check the phone memory status everytime i delete the messages and it will show available memory for about 30kb. when i restart the phone and check the phone memory, it will indicate that it has 0 kb left. i didn't installed any application in it.
    Message Edited by katnix on 13-Jul-2008 01:39 PM

    proper advice???? that's the advice i gave, take it or leave it. it's not for you tell me what's proper or not.
    i don't remember seeing your name in the thread above, and i don't remember you TELLING me before that you don't want to format.
    now just not to go into alot of words. there is a better way you can use to talk to people. because we are trying to help. if you like what we suggest, fine, if not, wait for another suggestion or come with one yourself.
    if you have a registery cleaner or a temp file cleaner for symbian , please be so kind to offer it's name here.
    Fear not those who argue but those who dodge

  • HT4061 I need to download some data from my phone prior to restoring it to the last backup. When connecting to itunes to download photo's it is suggesting I restore the phone. Is there a workaround?

    Hi,
    I need to download some data from my iphone prior to backing it up. When connecting to itunes it is suggesting I restore it now. I will lose quite an amount of data if I cannot find a workaround. Is there any way to get access to contacts, notes and photo's before I restore the phone?
    Phone details are: model: A1429
    FCC:       ID   BCG-E2599A
    IC            579C-E261DA
    IMEI:      013412004666230
    Cheers

    Thanks for the update. I went through the restore process and all the data I thought I would lose was there. The data must have been copied straight away before the update failed over.
    Cheers
    John.

  • Report missing some data from dataset

    Hi
    I populate my report using a dataset and most of the time the report generation is successful.
    but after a while (3-5 reports) I start getting missing data in the report. Either the png blobs do not get printed or some other string fields. Usually the same strings are missing.
    If I continue generating reports after that I get "report could not be submitted for background processing" error or since I use some fields for formatting I get errors corresponding to those formulas where I try to use the missing fields.
    I have checked the dataset before SetDataSource and it is complete, images and all.
    Is there some way to restart the embedded crystal reports thread/process programmatically from c#? if the problem is because of memory fragmentation, this might solve the problem.
    I use crystal reports basic 2008 for visual studio 2008.
    Kind regards
    //Gunnar

    In a memory intensive environment like this, it is possible that we will run into these issues. The thing is - as I understand these tings, Microsoft does not let a 3rd party just go out and use the dataset. E.g.; the Crystal Reports engine is forced to make a copy of the dataset and use that. So, now you've chewed up more memory again. It would be interesting to do four things;
    1) monitor the memory and see if there is a particular value at which it is more likely to get the issue
    2) take out the report and dataset into another sample app that is not using these x-rays and see if you duplicate the issue there
    3) see if CR 2008 (12.x) handles the memory better. As these versions go, there are always improvements. I am not aware of a particular "thing" done to the report engine or database engine in this respect, but it may be worth trying. An eval of CR 2008 can be downloaded from here:
    http://www.sap.com/solutions/sapbusinessobjects/sme/freetrials/index.epx
    Once you have installed the above, check the version (Help | About). If the version is not 12.3.0.601, download SP 3 from here:
    https://smpdl.sap-ag.de/~sapidp/012002523100007123572010E/cr2008_sp3.exe
    4) rather than using datasets, would it be possible to write the data into some database temp table and consume the data from there?
    Ludek

  • Error in uploading data from FIAP ODS to FIAP CUBE

    We are trying to upload data from FIAP line item ODS to FIAP CUBE. However it is showing zero records updated for a long time. We tried deleting and repeating the same but again it is showing zero records only. The monitor status is yellow.
    Following message is coming on the screen.
    Missing message: Number of sent records
    Regards
    Renu Gurumurthy

    Hi Renu,
    Find the below search link which helps u lot...
    https://www.sdn.sap.com/irj/sdn/advancedsearch?cat=sdn_all&query=missingmessage%3ANumberofsent+records&adv=false&sortby=cm_rnd_rankvalue

  • IP Exit Planning function copy data from cca to pca planning cubes

    Hello All,
    I have a requirement where I have to copy the characteristics and keyfigures of CCA plan cube data to pca plan cube data.The infoobjects in CCA aggregation level are are {0amount,0costcenter,0costelement,version,0calmonth,0infoprovider} which needs to be copied to corresponding infoobjects in PCA level  {0amount,0profitcenter,0account,0version,0calmonth,0infoprovider}.
    The CCA and PCA aggregation level are built on the top of the multiprovider.
    I can do it using the fox coding but 0costelement cannot be mapped to 0account as these two are different fields.Since I have to copy the values of 0costelement to 0account , I was wondering how can I do it using the exit function.
    As I have never used the exit function before, I was wondering if somebody can help me out with this.
    By the way, I have read the forums and figured out to create a class in se24 and use interface
    IF_RSPFLA_SRVTYPE_IMP_EXE and since I am generating some records , will be using the method IF_RSPLFA_SRVTYPE_IMP_EXEC~INIT_EXECUTE.
         By the way , I read in the forums where there are methods/function modules which can copy data from one aggregation level to another aggregation level.Anyways, can you tell how can I loop thru the records of CCA aggregation level and copy the records to the PCA aggregation level.
    Edited by: nazeer on Feb 22, 2009 12:04 PM

    This thread might help you.
    https://forums.sdn.sap.com/click.jspa?searchID=22634973&messageID=5317176

  • MS SQL database needs to run mdx query to analysis services to retrieve data from a BPC 10 Netweaver cube(view only)

    We are in the process of migrating from BPC7 SP12 Microsoft sql server to BPC10 netweaver on a sql server with BW7.4 and need to integrate our home grown data warehouse which is on a Microsoft sql server.  The data warehouse currently connects to BPC7 using integration services/analysis services and runs mdx queries to analysis services to retrieve data from the BPC7 cube (view only).  Please provide documentation on how to create this same integration with our data warehouse using BPC10 netweaver on a sql server.

    When you were setting up your ODBC data source for
    the Text driver, did you click on the "Options"
    button? There's a lot of options in there that I
    didn't understand at first glance.Yes I clicked on the options button, but the only thing there is dealing with file extensions. I left it set to the default.
    I have since tried closing my connection after I insert a record, I then try executeQuery, but still no luck. Seems strange that I can write to the file but not read from it. If any thing I'd expect the opposite problem.
    I have also tried using the class "JoltReport" from the sun tutorial instead of my own with the same result.
    Message was edited by:
    Hentay

  • Error while loading data from write optimized ODS to cube

    Hi All,
    I am loading data from a write optimized ODS to cube
    I have done Generate Export Datasource
    schedulled the info packge with 1 selection for full load
    then it gave me following error in Transfer IDOCs & TRFC
    Info IDOC 1: IDOC with errors added
    Info IDOC 2: IDOC with errors added
    Info IDOC 3: IDOC with errors added
    Info IDOC 4: IDOC with errors added
    Data packege 1 arrived in BW Processing : selected number does not agree with transferred number
    Processing below is green
    shows update of  4 new records to Datapackage 1.
    Please provide inputs for the resolution
    Thanks & Regards,
    Rashmi.

    please let me know, What more details you need?
    If I click F1 for error details i get following message
    Messages from source system
    see also Processing Steps Request
    These messages are sent by IDoc from the source system. Both the extractor itself as well as the service API can send messages. When errors occur, several messages are usually sent together.
    From the source system, there are several types of messages that can be differentiated by the so-called Info-IDoc-Status. The IDoc with status 2 plays a particular role here; it describes the number of records that have been extracted in a source system and sent to BI. The number of the records received in BI is checked against this information.
    Thanks & Regards,
    Rashmi.

  • How to delete some data from GLPCA table

    Dear Friends,
    We have extracted some data in GLPCA table via the ECPA component. We
    want to delete these records ( Doc type and Posting date is known).
    However we do not want other data already existing the GLPCA to be
    deleted. Is there some Std SAP Trx for deletion of partial/select data
    from EIS tables.
    Please explain us clearaly how we can delete these records.
    Your quick reply for this issue is highly appreciated.
    Thanks & Regards,
    Naveen Kumar.

    Hello,
    Please check the use of the report ZDELETE_PCA_DATA_BUKRS (mentioned in the SAP note 1174360), to delete totals from GLPCT.
    I am not sure of any deletion reports for GLPCA table.
    If you open the Source code of this program, you can see the following information :
    "This report provides a possibility to delete actual and plan
    *& postings on company code level as an alternative for transaction
    *& 0KE1."
    I do not have much information on this report as, personally I haven't used this anytime. Please run in 'Test Run' mode first and look for the results.
    I hope this helps.
    Thanks and regards,
    Suresh Jayanthi.

Maybe you are looking for

  • Is there a workaround to make my PowerBook not spit out dvds?

    powerbook g4   Mac OS X (10.4.8)   Since I updated to OSX10.4.8 recently my reader spits out dvds I have burned on my external Lacie burner using Toast 6.1.1 Titanium. This never used to happen. I've read previous posts on this topic but nothing sugg

  • Why do we allocate space for a new object???

    When we create a new object, we instantiate it. Why do we do this. I read that we are allocating space for it. What is allocating space and why is it necessary??

  • Flat file test files

    Hi Does anyone out there have an example of a flat file that can be changed for testing. The files we are tesing are: IN: Ship Notice/Manifest (856/DESADV) IN: Shipment and Billing Notice (857) OUT: Shipping Schedule (862/DELJIT) Hope you can help Ia

  • Moved my laptop and now I can't connect to the router

    I'm a novice at this - but that didn't stop me from setting up a wireless network  - it was very easy, everything went fine and was working great for months.  I took the laptop out of the house and used it at another location.  When I brought the lap

  • Can't find this JCheckBox property

    I have a JCheckBox in a table. I have written a custom Renderer which sets the background and foreground corectly depending on if the checkbox was checked or not. However, when I check the checkbox and hold the mouse button down, the cell background