To delete a request from ODS

Hello all,
I am not able to delete the request from ODS .
It gives the error message :no request found in the change log.
how shlould i delete the request??
thnx in advance.
Regards,
Dhanya.

Hello,
thnx sriram n balaji!
i checked my infosource through the prgm:RSAR_PSA_CLEANUP_DIRECTORY
the following message appears in the display log:
PSA: 8ZFIADS11_CA
Version 000 technical name /BIC/B0000043000
Partition 0003
Request Ratio:[Deleted:Total]->1 :2
Records Ratio:[Deleted:Total]->753943 :1507886 ,50 % logically deleted
Partition 0004
Request Ratio:[Deleted:Total]->0 :1
Records Ratio:[Deleted:Total]->0 :753943 ,0 % logically deleted
what should i infer from this ?
can anyone please tell me the step by step procedure to delete the request.
Regards,
Dhanya.

Similar Messages

  • Need to delete a request from ODS

    HI
    i need to delete a request from ODS Full update,It failed.I forced it to activate for testing and the request turned green.But iam not able to delete the request now as the job log says it has incorrect status and now not able to change the QM action of Request as it has already been activated.Now how do i delete this request.
    Thanks
    RAJ

    Hai,
    I think your request has been partially activated so you are not able to delete the request.
    If u really need that request to be deleted then see that there sholud not be any request above that one.
    Try to make the request red in manage screen and it will pop up a window which is having start no and cancel click no
    and then try to delete the request.
    If not need that request make the qm status red and leave it the data will be available for reporting.
    Regards.
    Vikram Singh

  • Selective deletion of request from ODS which is activated and updated

    Hi all,
    I would like to delete the request from ODS which is activated and updated into data targets, i.e if i have three resquests 1,2,3 which are activated  and loaded into cube..now i would like to delete the between (2) request from ods, it says we have to delete latest first(3) , cant we delete this 2 nd request by doing some sort of settings plz let me know if any body got come to know this...plz
    Many thanks in advance,
    BRB

    Hi
    Did you look at the Online-Docu (link above)? In the administration of the ODS (I think menue 'Manage' in an english environment -> I've none at the moment) where you see each loaded package there you have a button right of the request id (status of data mart). If you press on this a dialog screen appears. There you can press on the trash icon. This resets the delta queue for the specific request.
    You have to do this for request 3 and 2. Then you can delete the request nr. 2. The bw system will then delete this request from the active data and from the change log. After this you can schedule the delta load again. This process will load request nr. 3 to the connected InfoCubes.
    If you do not reset the delta queue you will not be able to load request nr. 3 from the change log.
    As I supose you want not to delete request nr. 3 because of some long duration to upload and activate the whole request again.
    This works fine. I've done the last weeks often because we loaded request with 3 million records and more.
    Regards,
    H.J.

  • Can we delete particular request from ODS

    Hi All,
    Can't we delete particular request from ODS?
    there are dozen of successful requests in ODS, when i deleted one successful request from the middle, all the subsequent requests lost the tick which indicates they are updated to cube. Is there any way that i can undo this one?
    can we do selective request(successful) deletion from ODS?
    Thanks in advance.
    Robyn.

    Hi Samara,
    what i was trying to do is re-arranging the requests according to chronological order, which are not in. imagine the scenario
    ODS requests      cube request
    5         ->             E
    4         ->             D
    2         ->             B
    3         ->             C      
    1         ->              A
    what iam trying to do is put them in sequence
    ODS request        cube request
    5                           E
    4                           D
    3                           C
    2                           B
    1                           A
    If i delete 3rd ODS request put it over 2 it won't accept as the request number is lesser than that of 2nd request.
    can we reconstruct any request from reconstruction tab or just the latest request?
    How does this effect the data which is already updated to cube from ODS?
    Regards,
    Robyn.
    Message was edited by:
            Robyn Hoggard
    Message was edited by:
            Robyn Hoggard

  • Problem in deleting the request from ODS......

    Hi,
    I am not able to delete one INIT request from the ODS. This request was taking long time and eventually it turned to RED. Data was there in PSA but I deleted the request and thought of doing the fresh load .
    Problem is that although I have deleted the request from the ODS , it is again coming back to ODS . I have started the fresh load. AS the previous also coming to this ODS its taking long time to load the data.
    Can some body let me know how to STOP/DELETE the old request??  I have already turned everything to RED QM status , overall status etc. but still its not getting stoped.
    Thanks Jeetu

    Hi Jeetu,
    Even though u find the job and cancel it or delete it the data load will not stop untill it loads the entire data!
    Hope there will be large volume of data !
    Until the data load is complete wait and then delete the request and then delete the init and start the fresh load!
    I too faced the same issue but i am helpless i could not stop the data load inthe middle!
    If you found any solution for this let me also know
    Thanks
    Ram

  • Delete overlapping requests from ODS

    Hi,
    Since it iss not possible to delete overlapping requests from an ods by any automated process like in info cube.
    Can we still delete overlapping request using abap code or the only way to do it is to delete  data (selective deletion) in a start routine.
    Any tips would be helpful

    Hi ,
    Try the following logic to delete the ovelapping requests from a particular data source.
    *& Report  ZV_DELETE_REQS                                              *
    *&Description:This program is for deletion of eixsting Full requests   *
    *&            from ODS                                                                     *
    REPORT  ZV_DELETE_REQS.
    data: RSICCONT like rsiccont,
          rsseldone like rsseldone.
    data: begin of i_req occurs 0,
          rnr like RSICCONT-rnr,
          end of i_req.
    refresh i_req.
    select * from RSICCONT UP TO 2 ROWS
                      where ICUBE  = 'ZCS_D10'
                      order by TIMESTAMP descending.
      i_req-rnr = rsiccont-rnr .
      append i_req.
      clear i_req.
    endselect.
    loop at i_req.
      select single * from RSSELDONE where RNR eq i_req-rnr and
                      source in ('0CO_OM_OPA_5',
                                 '0CS_OM_OPA_1').
      if sy-subrc eq 0.
        CALL FUNCTION 'RSSM_DELETE_REQUEST'
          EXPORTING
            REQUEST                    = i_req-rnr
            INFOCUBE                   = 'ZCS_D10'
          EXCEPTIONS
            REQUEST_NOT_IN_CUBE        = 1
            INFOCUBE_NOT_FOUND         = 2
            REQUEST_ALREADY_AGGREGATED = 3
            REQUEST_ALREADY_COMDENSED  = 4
            NO_ENQUEUE_POSSIBLE        = 5
            OTHERS                     = 6.
        IF SY-SUBRC <> 0.
          MESSAGE ID sy-MSGID TYPE 'I' NUMBER sy-MSGNO
              WITH sy-MSGV1 sy-MSGV2 sy-MSGV3 sy-MSGV4.
        else.
          message i799(rsm1) with i_req-rnr 'deleted'.
        ENDIF.
        do.
          select single * from RSICCONT where ICUBE  = 'ZCS_D10'
                                          and  rnr    = i_req-rnr.
          if sy-subrc ne 0.
            exit.
          endif.
        enddo.
      endif.
    endloop.
    hope it helps....
    regards,
    raju

  • Deactivate delta update before deleting the request from ODS

    Hi all,
    Happy New Year wishes to all.
    I have a scenario, where I am feeding the data to ODS from flat file and from ODS to Cube. Here ODS is a Data mart. Flat file to ODS full update and ODS to Cube First Initialization and Delta.
          I deleted the latest request from ODS, at the I got the message dialog box and it is saying that
    “Request 98888 already retrieved by data target BWVCLNT”
    “Delta update in data target BWVCLNT must be deactivate before deleting the request
    “Do you want to deactivate the delta update in data target BWVCLNT?
    So I pressed Execute changes, then after I loaded the data in to ODS and when I am trying to load the data into Cube, once I pressed execute button it is displaying the message dialog box like
    “Delta request is incorrect REQXXXXXXX in the monitor”
    “A repeat needs to be requested”
    “Data target still include delta request REQXXXXX”
    “If the repeat is now loaded, then after the load”
    “There could be duplicate data in the data targets”
    “Request the repeat?”
    After execute changes it is showing only “zero” Records only.
    What is that mean and why zero records it is displaying instead of delta records.
    Anybody faces this type of problem please let me know. This is somewhat urgent to me
    Thanks and Regards
    Satish Chowdary

    <i>Hi Satish,
    First Switch off the ODS ( automatic Update of Datatarget ) , though not really necessary. delete the Req from the Infocube, then delete from the ODS . Now delete the Init Req from the Infopackage for datamart infopackage.then Do an Init without datatransfer into Infocube. Later load data into ODS and then go for delta update to Infocube.
    I hope this helps.
    Thanks,
    Krish
    Dont Forget to assign Points.</i>
    Dude, you just repeated my answer I gave a few hours ago. Are you hungry for points?

  • Problem in deleting a request from ODS

    Hi,
    i am trying to delete a request (not activated) from ODS, when i checked in SM37 for the status of the job it shows as Cancelled, but when i see for the request in ODS, the requested is deleted, could anyone please let me know why job in SM37 is cancelling when the request is actually deleting,
    This is not the case with activated request.
    please see the worklog of the cancelled job
                                                                                    Job started                                                                        
    Step 001 started (program RSDELPART1, variant &0000000005236, user ID KUMARV1)     
    Delete running: ODS object ZCFORO01, from 512,483 to 512,483                       
    Delete is scheduled; Selection conditions were substituted                         
    Request REQU_45IYZ9A2BQFRW0IUY5EB4MZ9W successfully deleted from ODS object ZCFORO01
    ABAP/4 processor: MESSAGE_TYPE_X                                                   
    <u><b>Job cancelled </b></u>

    Hi Arun,
    Yes the system raises an exception and saying that there is an error in ABAP code, could you please let me know what is the error, i have tried this deletion with 3-4 different ODS and to different systems i.e. in Q, P system
    Abap code as specified by Exception in ST22 transaction
    The termination occurred in the ABAP program "SAPLRSSM_PROCESS" in         
    "RSSM_PROCESS_REQUDEL_ODSO".                                              
    The main program was "RSDELPART1 ".                                                                               
    The termination occurred in line 114 of the source code of the (Include)   
    program "LRSSM_PROCESSU19"                                                
    of the source code of program "LRSSM_PROCESSU19" (when calling the editor  
    1140).                                                                    
    The program "SAPLRSSM_PROCESS" was started as a background job.                                                                               
    Source code extract                                                                               
    000840       endif.                                                        
    000850       append l_s_rnr_del to l_t_rnr_del.                            
    000860     endif.                                                          
    000870     delete l_t_rnr_del where                                        
    000880            rnr = ''.                                                
    000890     loop at l_t_rnr_del into l_s_rnr_del.                           
    000900       l_idx = sy-tabix.                                             
    000910       if l_s_rnr_del-sid is initial.                                
    000920         call function 'RRSI_VAL_SID_SINGLE_CONVERT'                 
    000930           exporting                                                 
    000940             i_iobjnm = '0REQUID'                                    
    000950             i_chavl  = l_s_rnr_del-rnr                              
    000960           importing                                                 
    000970             e_sid    = l_s_rnr_del-sid.                             
    000980       endif.                                                                               
    000990       if l_s_rnr_del-odssid is initial and             
    001000          not l_s_rnr_del-odsrnr is initial.            
    001010         call function 'RRSI_VAL_SID_SINGLE_CONVERT'    
    001020           exporting                                    
    001030             i_iobjnm = '0REQUID'                       
    001040             i_chavl  = l_s_rnr_del-odsrnr              
    001050           importing                                    
    001060             e_sid    = l_s_rnr_del-odssid.             
    001070       endif.                                           
    001080       modify l_t_rnr_del from l_s_rnr_del index l_idx. 
    001090       if l_min_sid > l_s_rnr_del-odssid.               
    001100         l_min_sid = l_s_rnr_del-odssid.                
    001110       endif.                                           
    001120     endloop.                                           
    001130     if sy-subrc <> 0.                                  
         >       message x000.                                    
    001150     endif.

  • Unable to delete the request from ODS

    Hi All,
    I have loaded a request to ODS from flat file and the load got success, the request is activated and is available for reporting. Now the problem is i want to delete the request, but the  request is not deleting.
    I tried to delete the request by going in to the cube manage and changed the QM status and the technical status to red and delete, but it is not deleted.
    Thanks in advance for your reply

    Hi Prem,
    If the ods has datamart status & has been used to load data to a cube, then u cant delete the ods request. In this case, first, change the QM status of the request in the cube to red (delete) & then it wud be possible to go with the deletion of ods request.
    Also check this thread as well
    Request unable to delete from ODS.
    Regards,
    R.Ravi

  • Delete PSA request from ODS

    Hello Guys,
    I need to know how can I delete the PSA request number generated when request is activated
    This request is type:  ODSR_*
    I need to delete this request in order to activate again the data of my ODS reuqest ID, because a problem the activation terminated unsuccessfully, and know I see the request in red, and with the request for reporting available.
    I want to delete it, because if I activate the request again, there is going to consume more space in my table space of ODSD.
    thanks in advance

    Ok, thanks for your help.
    One more question.
    The first activation failed, and when I saw the table space for ODSD, it decreased for about 1GB, my question is, if I reactivate the request, is going to consume another 1GB for the table space???
    Thats why I want to first delete the PSA request that generates when activated data, in order to recover that space that was consume in the first failed activation.

  • Problem in deleting request from ODS

    Hi,
    I did an init load from newly created update rule for my existing ODS. I cancelled the INIT load as it was taking a long time and tried to delete the request from ODS, but when i deleted the request it is not getting deleted. Under request/DTP it is showing 'Request without Monitor Log: APO Request or Terminated Request Generation'. Can you please tell me how to delete this request.
    Regards,
    Raghavendra.

    Hi,
      The load is from One ODS to another. The problem is i deleted the init, but there is a request in ODS as in mentioned above which i am not able to delete. Help needed.
    Regards,
    Raghavendra.

  • Delete the bad request from ODS.

    Hi,
    i am tring to delete the bad request form ods object but i am unable to delete the request from ods. i am using full uplaod and the processing is "psa and datatarget in parllel. when i check the data in PSA, it is giving "No data packet numbers could be determi request REQU_5SMPS3MTHYJHHUYQ62AM61H89".
    Thanks in advance,
    Kasi.

    Hi KAsi,
    I had a similar issue few weeks back, look in SM50 and chk if there are any processes still running which might lock the object. Also chk in st22 to see if any dumps are created under your login.  If tehre are any processes - you can try to cancel them or ask Basis to help u with it.
    *I guess* - when you hit delete, the delete  icon appears but is not able to lock(enqueue) the object and after sometime the delteion program cannot move forward and hence it returns to original status.
    regards
    Poonam

  • Not able to delete the data from ODS

    Hi All,
    I have ODS which is having some requests . All the requests are being loaded with full update only. When I am trying to delete the requests from ODS,  out of 4 requests 2 requests have been deleted but rest of them are not at all deleting .
    As I am working in Quality system, So I don't have the access to delete request from Table level like RSODSACTREQ, RSICCONT etc...
    Can you give any clue to delete the remaining 2 requests.
    Thanks,

    Hi kavitha,
    Does the Request has data mart status.IF yes try to delete the request from the respective DSO's.
    and try to delete the request.
    are you deleting the Whole data from DSO ? - right click on the DSO and select deleted data from the context menu.
    Regards
    Prashanth K

  • Unable to delete requests from ODS

    Hi Experts,
    I am trying to delete requests fwhich is having some added records rom an ODS. I changed the status of QM to RED and in the monitor screen as well. Now, when I try to select the request and delete, a trash can appears and after hitting the refresh button the reportinng availability appears against the request.
    I deleted the entries in the change log table...then I was able to delete the request from the ODS. Now when I try to reconstruct those deleted requests from the Reconstruct tab by changing the QM status in the monitor to green, the status of these request are in Yellow and there are updated records but the added records are 0. When I try to change the QM status it give s message "Request is already (partially) activated, no further QM action is possible.
    How do I change the request QM status to Green and the get all the added records as there were in previous instead of 0's with out reloading the ods from r/3.
    Thanks in advance,
    HT

    Hello,
             This error may be  RSMPC141 error.
    Please see Note 643880 and Note 849857
    this may occur  becos of loss f records in change log.
    You will need to reload to fix this problem
    regards,
    karthik

  • Unable to delete request from ODS - BW 3.5

    Hi experts,
    I am not able to delete request from ODS in BW 3.5, patch level 21. I put the request red, but it does not help to delete it. The request is full load and quite hudge (16GB). Deleting actually takes too long (several hours), but does not finish, so I cannot tell you any error description. It seems that this job can run forever... I was trying to activate the request before, but because of a tablespace limitations I received some short dumps. That is why I am trying to load it agin in smaller parts. It is strange thou that in Manage/requests tab the request has flag 'available for reporting' but the data cannot be viewed as active (only as new data). Any ideas, OSS notes?
    Thank you,
    Michal

    Hi,
    If you want to delete  requests manually from the ODS tables.
    1. tcode se16.
    2. delete the request in these tables : RSICCONT (delete activated requests OR
    Make the selective deletion of the contents of that request), RSMONICDP, RSODSACTREQ (give the name of the ODS and the
    request ID and delete all the entries pertaining to this selection in that table.), RSODSACTUPDTYPE.
    You can check OSS Notes 947481
    Regards.

Maybe you are looking for

  • How can I login to apex using HR Schema?

    I am new to Apex. I do have logged in my own created schema but I don't know how to login in HR Schema. I have tried various schema names with username HR and password hr but it didn't work. Kindly help me in solving my problem

  • How to populate fields "DocEntry" and "DocNum" in UDT? Those are not UDF.

    I created a UDT with document type. When I populate the data, I don't know how to populate fields "DocEntry" and "DocNum". Those are not UDF. Here is my coding. Can somebody help me out? Dim objUserTable As SAPbobsCOM.UserTable                     ob

  • No signal, no sim-card message

    Hello, iPhone 4 shows me a "No sim-card" message and losing a provider's signal periodically after upgrading to OS6. Can I fix this problem somehow? Thanks in advance. Sergey

  • Bridge monitor size preview

    Feature request..... If you are rebuilding the bridge cache from scratch, it would be valuable to allow and option to allow you to specify the "Generate monitor-size preview"  monitor size.  This would be very useful if you are using an alternate mac

  • Linking Error in OCCI

    hi Guys... please help me... i m new in c++ connectivity with Oracle using OCCI... following is my code which i wrote in Dev C++ using g++ compiler #include <occi.h> using namespace oracle::occi; int main() { Environment *env = Environment::createEnv