Request update to Cube

Hello,
I'm facing one issue. There was error in delta update to cube. Hence we deleted the request from cube and edited the data in PSA.
Now using "Start update immediately" option for PSA, I was trying to update the data back in cube. This had worked earlier. But today I'm getting the error - "request available in cube". I've checked the same, but this request is not present in cube (i've checked in cube under manage > request.
How can i update the data?
Thanks in advance.

hi gaurav,
one easy way to check is.
use the transaction rsrq give the request id and find out the  where abouts of request.
go to psa check where used list.
if u get no infoprovider then the request is yet to update in any infoprovider.
moreover iu will see a symbol in PSA that indicates the status of request.
ie a gear like symbol indicates it is updated to a infoprovider.
hope this helps.
reward points if helpful.
bye

Similar Messages

  • Pushing a request from PSA..but says.."Request is already updated in cube"

    Guys,
    Pushing a request from PSA..but says.."Request is already updated in cube". I have deleted before scheduling from psa...i could see the request in yellow/not yet completed list.
    I am couldnt find the request in the cube...but while pushing from psa it says"request already updated".
    Pls Advice,,,Thanks!

    Ganesh,
    Goto Infocube Manage --> Reconstruction Tab --> select request --> Reconstruct and try..
    Hope it Helps
    Srini

  • Unable to delete a request from a Cube which is loaded by Open hub to flat

    Hi,
    We have one Cube from which we are transferring data to a flat file by open hub.
    the DTP for the OPEN HUB is delta DTP.
    Now when i am trying to delete a request from Cube its not allowing me.
    Its giving error as request is already updated to the target so delete the request from target first.
    I tried deleting the open hub request entry from RSBKREQUEST table.
    but still its not deleting the request from the Cube.
    Can you please help me in solving this problem.
    Thanks in Advance,

    I think request is having datamart, which is not allowing it to delete.
    You can try to reset (delete)  the datamart by clicking on it in cube request and then try to delete.
    Or if it does not work, you can delete it from RSICCONT table, which will delete the request from cube also.

  • ABAP to Delete and Reinsert/Reconstruct Requests in a Cube

    I need to write an ABAP that will selectively delete requests from a cube and then reinsert them.   The purpose of this exercise is to execute a modified update rule between the DSO and the Cube.
    I found FM RSSM_DELETE_REQUEST which will delete a request.  
    However I need the following:
    1) A table that will provide the individual request numbers that I want to delete
    2) A FM that will Reconstruct those requests. (There is no "RSSM_RECONSTRUCT_REQUEST) that I can find
    As for #1 above, supposedly table RSREQDONE is supposed to have all the requests.  However I can't find any rows in this table that provide me the request numbers in the Cube I am deleting them from.

    Are you talking about selective delete and reload?
    because if you need to load the data with a new/modified update rule, then i dont know if deleting the request and reinserting or reconstructing (- assuming thats what you mean) the requests will reflect or calculate the values differently based on the new update rule.
    However you could do a selective delete and reload.
    Selectively delete the data for whatever period/selection you require and reload it from the DSO.
    Wont this solve your problem
    Hope it helps
    Regards
    Joe

  • Compression Status of a Request in the cube

    Dear Experts,
    Can you please let me know  How can I check the compression status of a Request in Inventory cube.
    for example i have  a request loaded from 2lis_03_bx data source into the 0ic_c03  and i would like to know how the request has been compressed, i.e using the marker update or with out using the marker update option ?
    is there any way to know about it ?
    regards
    Krishna Mohan

    Hi Tibollo,
    Thanks for your answer and i could abel to find the log as you said. and below is the information i have found in the log
    " Aggregation of InfoCube 0IC_C03 to request 180698
    Mass insert for marker initialization executed (51050 data records)
    P-DIMID 625 deleted from table /BI0/D0IC_C03P (InfoCube 0IC_C03)
    Request 180698 was summarized correctly
    DB Statistics: 00000000 selects, 00000000 inserts, 00000000 updates, deletes 00000000
    Request with P-Dimid 180698 from InfoCube 0IC_C03 deleted (51050 data records)
    Aggregation of InfoCube 100033 to request 180698
    InfoCube 0IC_C03 Successfully Compressed Up To Request 180,698 "
    But how can we know while compressing the request it has used the NO MARKER UPDATE is Set or Not
    which one of the above messages states that and how.
    regards
    Krishna Mohan

  • End routine Works fine but missing some records while updating to cube.

    Hi All
    I have an issue here... My End routine works fine and I even debugged by putting the breakpoint and It fetches data from dso. strangely when I run my DTP the load is successful but I can see some of the records are missing. but there is data in dso and also when i debug the code it fetches the values for particular fields.
    My requirement is I have a cube 'A' and under it DSO1 and  I need six more fields from dso2. Now I made a look up for these six fields in End routine. My routine works fine and so the DTP Is Green. My issue is I cant see these six fields updated for some of the records.
    PLZ put some light on it!!!!!!!!!!!!!!!!!

    Hi Naveen & Jaya
    Thanks for your quick response. Below is my code logic in end routine.
    METHOD end_routine.
    *=== Segments ===
        FIELD-SYMBOLS:
          <RESULT_FIELDS>    TYPE tys_TG_1.
        DATA:
          MONITOR_REC     TYPE rstmonitor.
    $$ begin of routine - insert your code only below this line        -
    ... "insert your code here
    data: lv_result_package like line of RESULT_PACKAGE,
          l_tabix type sy-tabix.
    loop at RESULT_PACKAGE into lv_RESULT_PACKAGE.
       l_tabix = sy-tabix.
    Update lot/decision attributes Lot/Decision ( ZQM_O04 ) DSO
       read table itab_qm_o04 into itab_qm_o04_wa
           with key insp_lot = lv_result_package-insp_lot.
       if sy-subrc = 0.
         lv_result_package-ivaluation = itab_qm_o04_wa-ivaluation.
         lv_result_package-catcode_ud = itab_qm_o04_wa-catcode_ud.
         lv_result_package-catgrp_ud = itab_qm_o04_wa-catgrp_ud.
         lv_result_package-/bic/zcattp_ud = itab_qm_o04_wa-/bic/zcattp_ud.
         lv_result_package-/b41/s_usuddate = itab_qm_o04_wa-/bic/gqmuddat.
         lv_result_package-/b41/s_usudcdate = itab_qm_o04_wa-/bic/gqmudcdt.
       endif.
       modify RESULT_PACKAGE FROM lv_RESULT_PACKAGE INDEX l_tabix.
    endloop.
    Well based on the insp_lot in ZQM_O03( DSO1) the logic above gets the six fields from ZQM_O04(DSO2) and feeds the cube.
    The Insp_lot has multiple records in DSO1 based on specific characteristic and so the cube. This Logic gets all these six fields
    from DSO2 which has single record per insp_lot and feeds the cube which has multiple records on insp_lot based on a specific characteristic. For some reason some of the records are not been updated to cube.
    waiting for your valuable response.....
    Thank You,
    Abhishek Yeachni

  • How to delete the duplicate requests in a cube after compression.

    Hi experts,
        1. How to delete the duplicate requests in a cube after compression.?
        2. How to show a charaterstics and a keyfigure side by side in a bex query output?
    Regards,
    Nishuv.

    Hi,
    You cannot delete the request as its compressed as all the data would have been moved to E table ..
    If you have the double records you may use the selective deletion .
    Check this thread ..
    How to delete duplicate data from compressed requests?
    Regards,
    shikha

  • BW: Error during Delete Overalpping requests from a cube 0PCA_C01

    Hello Experts
    For the past 1 week, I am getting the following error in a process chain when trying to do Delete Overlapping requests from a cube.
    The error I am getting is:
    The chain failed while deleting the overlapping requests from 0PCA_C01 with an error messages "Error when deleting requests for comparison request" & "Deletion of request REQU_DBC7DZ51QY from data target 0PCA_C01 failed"
    CL_RSDRD_REQ_PHYS_DEL:REQUEST_DELETE RSDU_FACT_REQUID_DELETE SQL-ERROR: 0
    reqdel_infocube_with_aggr-0PCA_C01 CL_RSDRD_REQ_PHYS_DEL:REQUEST_DELETE RSDU_FACT_REQUID_DELETE
    Deletion of request REQU_DBCFVY9N1691OYQYNCMUGCSGM(290265) from InfoCube 0PCA_C01 terminated
    Error deleting request REQU_DBCFVY9N1691OYQYNCMUGCSGM from InfoCube 0PCA_C01. Exception: Unknown error
    Any suggestions on how to fix this problem permanently..i mean any SAP Note to be applied or any adjusting the database tables?
    Thanks
    Jyothi

    Hi Jyothi,
      This error usually comes because of presence of zombie ./ bad request. I would suggest you to check few of the tables and search for your request "REQU_DBCFVY9N1691OYQYNCMUGCSGM" in them if you are able to find it then delete that entry from there, there after you should not face error. Check if the request mentioned above is present in the below mentioned tables? If yes delete them from there.
    RSREQICODS, RSTSODS, , RSICCONT, RSODSACTREQ.
    Also check if the notes mentioned in the below thread are applicable in your case?
    Error when deleting requests in cube
    Thanks

  • BW:  Error during Delete Overalpping requests from a cube

    Hello, I am getting the following error in a process chain for the last few days when trying to do Delete Overlapping requests from a cube.   If I do a "repeat" the chain completes successfully.  
    The error I am getting is:
    Error when deleting requests for comparison request REQU_4MNC5NXH00MJI1LRHAFV3I3BH
    Deletion of request REQU_4MQ0NT0ISDRZA444OQRDBGC3X from data target ZZCCA_C11 failed
    Any suggestions on how to fix this problem?
    Thanks.

    Hi Sam,
    The job might be failing because the request might me compressed. Take the request id from the error message(for instance
    REQU_4MQ0NT0ISDRZA444OQRDBGC3X here) and check whether this request is compressed in the target ZZCCA_C11 or not.
    If it is compressed then the data target deletion step will fail obviously.
    If this is the case then change the setting of the compression step in the PC to compress the requests loaded 15 days back or whichever you feel comfortable.
    If this is not the case then please check the job log once why the deletion is failing.
    Hope this helps.
    Regards,
    Vijay.

  • Data not loading /updating into cube 0lc_c03

    Dear Friends,
    I extracted data for three data sources i.e. 2lis_03_bx,
    2lis_03_bf,2lis_03_um i got data in BW PSA with out any
    error but that data is not updating in cube 0lc_c03
    i have done settings at r/3 at t.code mcnb,SBIW and I had make NDI flag active at t.code FIBF. do i need to right.
    at SBIW I have done like this settings: Inventory controlling
    1,Determine Industry sector I have selected Standard (core).
    2,Transaction key maintenance for SAP BW I have selected application MM and operat all i.e. 0,1,2,3,4,5,6........all of MM and saved
    3,Then stock initialization.
    and deleted setup table data for inventory controlling
    and after assigning keys I again loaded setuptable.
    I am geting data in r/3 rsa3 and in BW PSA with out errors for all three data sources but not geting in cube
    but at data source 2lis_03_um update rules there are few key figures with out green light i.e. 'x' but update rules are active please guide me do ineed to write
    any update rule level routines please guide me.
    please guide me how to get data into cube.
    Thanks in Advances
    rafeeq ahmed
    <b></b>

    Hi rafeeq,
    Are you using business content update rules or custom.
    check each rule seperately. do a simulation on the data load, if you feel the update rules are correct.
    Check if your validity table is maintained.
    hope it helps.
    kris

  • Delete request in a cube

    I have to delete a request in a cube. Unfortunately it isn't possible. I get a error message "Data target has already got request 25.445; deletion not permitted".
    Do you have an idea what is wrong?
    Thanks!

    Hi Kiev,
    You will need to delete the request from the further data target that is being loaded from this cube first, and then only can you delete the request from the cube.
    Hope this helps...

  • Delete overlapping requests from info cube

    Hello
    I am getting a issue sometimes where the process chain fails to delete a request from the cube on the conditions i have given in this process type. Now i have been digging into this but cannot find much of why would this happen.
    Please can someone tell me if this is a known issue to you. Also please can someone give me some details on which program name gets generated when we pull this process type in a  process chain. what i mean is what is the program running for this process chain as i want to debug and see how does this process type delete the request.
    thanks

    check the class CL_RSSM_REQUDEL and method IF_RSPC_EXECUTE~EXECUTE

  • Deleting a request from a cube

    Hi Experts
    I deleted few(old) requests from a cube in quality server. They got deleted, after some time i checked back. Those request are appeared in the request tab with a tick mark under compression status in InfoCube. I am confused !!!
    Can any you clear my doubt...
    Thanks
    Pavan

    Hi RMK,
    is it the same ID-Pavan used by you above??anyways...
    I guess we are dealing here with two scenarios..
    1)If it was Infocube than the solution above i suggested holds true
    2)Ifs its ODS ,the physical requests are still there because you deleted the CHANGE LOG data for those requests...so now there is no WAY you can delete those request PHYSICALLY !!!
    Please check to verify/confirm the same..
    the only way to get rid of those contents is through the SELECTIVE DELETE for those request ..
    However;even after selective delete those request would appear physically in the manage TAB of the ODS ..but if you go to the ACTIVE table content for that ODS  ,the data wont be there ,its deleted.so you can reconcile the reports now.
    Hope it Helps
    Chetan
    @CP..

  • Does invoice correction request updates inventory?

    I am creating a new invoice correction document type which has a Debit Memo instead of Credit Memo (standard) subsequently, now my question if there is a correction in quantity - DOES THE INVOICE CORRECTION REQUEST UPDATES THE INVENTORY?

    Hi,
    Absolutely yes, as long as the invoice correction is related to the quantity, it must affect the stock value in SAP system.
    BR
    Tao

  • No of requests in a cube....

    Hi All,
    Please let me know is there any FM or program to know total no. of requests in a cube and (bit greedy) total no of requests that are rolled up..
    Note: please any other table except rsmdatastat_ext
    Thanks...
    help will be  appreciated..

    Hi Aadil,
    Use Table RSREQICODS.
    In TABNAME: put your Cube or ODS name or Infoobject(as Infoprovider) and you will get all the request loaded.
    And RNSIDLAST while give you the request id.
    You can make a count of that simple ABAP code.
    Select count( RNSIDLAST ) from RSREQICODS where TABNAME = 'your infoprovider'.
    Regards,
    Sandeep

Maybe you are looking for

  • SRM 7.0 Process-controlled Workflow not starting

    Hi, I have problems with implementing an own process-controlled workflow. The "Sample BC Set for Process Level Definition" /SAPSRM/C_SC_600_001_SP04 is working fine. However I do not succeed in triggering a customer Process Schema for BUS2121. The (f

  • Auto indenting in dreamweaver cs6

    why the code dont auto indent in dreamweaver i use the latest cs6, as an example the table code below it should indent the tr tag some spaces more than the parent table tag but it dont i need to do it manually so am i missing something ? <table> <tr>

  • Original and Duplicate invoices. History tab.

    Hi, I need to create a pdf file (invoice) with a watermark that apears conditionaly in the layout. The watermark is (Original, Duplicate). I can't get that information from the xml file (Datasource) im using to generate the invoice. Everytime I sched

  • Sql query and dual table

    Hi, 1. Do dual table take any physical space in the database or it is only logically present? 2. Suppose a table contains 100 rows. Write a query to return 42,43,44 rows. Thanks, Mrinmoy

  • Where can I download iMovie 9?

    Where can I download iMovie 9?