Delete infoobject request

Hi,
I need to delete data daily from my infoobject before I load the new data.This is a full load.I have tried using the process types for deleting request in the process chain.They dont work for infoobjects. Can anyone please help me how I can delete the data in the infoobject before my next load using the process chain.
Thanks,
Kal

Hi ,
For deletion from masterdata table you just need one statement in your report .
delete from <tablename>.
you can also add one more condition :
delete from <tablename> where OBJVERS = 'A' .
It will work but you need to check whether you are authorized to do so or not because master data tables are write protected .
Regards,
Jaya Tiwari

Similar Messages

  • How to delete infoobject by transport request?

    Hi experts,
    I want to delete infoobject from productive system by transport request without deleting this infoobject from development system.
    Is it possible? How can I do this?
    Thanks!

    Hi Denis,
    Take an approval to open the production system. While you delete the infoobject  , it will ask for transport request to save under.
    Regards,
    KANTH

  • Can we delete the requests from Infoobject master data

    Hello all,
    we load master data process chains everyday. now when when we right click on the attribute "Manage" then there are lots of requests there.
    Can we delete the older requests from there?
    Does having lot of requests there slow down the performance?
    Thanks in advance

    Ravi,
    Yes we have transactional data also loaded. So you mean I cannot delete the requests from Infoobject ?
    So can we use the given FM and delete master data lets says once a week ?
    I am really confused about this. I tried deleting some of the request from ATTR (Right click on attr and then manage -> select request and delete) and it did actually get deleted so was that wrong thing to do ?
    Thanks for reply

  • Deletion of requests from Infoobject.

    Hi Friends,
    Iam working on daemon and iam trying to delete some requests from infoobject & iam unable to delete.
    the status of requests is yellow, iam unable to make it red.Could you pls suggest me any solution here.
    Thanks in advance,
    Keerthi.

    Hi,
    Can you paste the details of the yellow request here.
    May be some back ground processes are still running, Check the RFC on Sourcesystem side try to Execute the LUWs manually.
    or its process waiting time is still running.

  • Error while deleting a request

    Hi All,
    When trying to delete a request from a master data object an error appears which says:
    Cannot delete request DTPR_* of table RSN* for deletion.
    Please let me know what needs to be done here so that request is deleted.
    This is urgently required..thanks..

    For deleting any master data
    Need to delete first where its referenced to ,so check the where used list for the infoobject and delete the places where that master data is referenced
    Typically - Attributes,Hierarchies,Texts,Transaction data,in Query - Hardcoded master data
    Lots of ways around ,even using database utility ;however that leads to inconsistencies and requires sounds knowledge so wont advocate those steps.
    You can follow below steps -
    R-Click Delete master data ,it wont delete all if its referenced,so now go to
    Tcode - SLG1
    Object = RSDMD
    Subobject = MD_DEL
    Hit execute button
    it will fetch you the log showing all the places(references) where you need to delete the data in order to delete the actual master data.
    After deleting the data from referenced places you can completely delete the master data.
    Hope it Helps
    Chetan
    @CP..

  • InfoObject REQUESTER does not contain alpa-conforming value 1006152

    Hello All,
    I am trying to load data into ODS.
    The load is failing at "Data Package 6" Record # 11140. I am getting following message at the failed record. -
    "InfoObject REQUESTER does not contain alpa-conforming value 1006152".
    I went ahead and checked this record # 11140, in PSA, in Package # 6. There the requester field is populated with "1006152" where it is expecting "Some description".
    I went ahead and changed the START_ROUTINE. with
    LOOP AT DATA_PACKAGE.
      IF NOT DATA_PACKAGE-REQUESTER cs 'S'.
          DELETE DATA_PACKAGE.
      ENDIF.
    ENDLOOP.
    Expecting that these erroneous records will be removed and will get a successful load.
    I am getting the same error message at the same record # and data-package number.
    Any help is highly appreciated.
    Thanks,
    PK.

    Hi
    when u r having such a problem of Alpha numerical error in a particular for a particular record.Then u just write a Fomula into that Particular formula USE {TOUPPERCASE(REQUESTER)} & thenn reload to the Target...this will solve the problem...to my knowledge..
    try this..
    HOPE THIS HELPS
    THNX
    BI Learner.

  • Deleting infoobjects from Dimension in Cube

    Hi All,
    I am trying to delete infoobjects from a dimension in a cube. My constraint is that I cannot delete all the data in the cube. This dimension is a new dimension which I had created 1 month ago. So, I deleted all the requests which I had loaded after creating this new dimension, so that this Dimension table gets emptied. I have also adjusted the dimension from RSRV. The dimension table is now empty. Still, I am not able to delete the infoobjects from this dimension or delete the dimension altogether.
    Any pointers to this will be highly appreciated.
    regards,
    Saikat

    Hi,
    I had thought about remodelling. I can do it in Dev and make the changes, and transport them to Q. The constraint is that in Q there are 2.8 million records and I don't want to delete the data in Q. In case the transport fails, I cannot use remodelling in Q (to do this we will have to open up the system; not recommended).
    I can selectively delete only those requests which contained data in the new dimension. But I think the same issue will occur as in Dev currently (even if the dimension table is empty, deleting a dimension is not allowed).
    regards,
    Saikat

  • Delete Overlapping requests question

    Hi ,
    How would a Delete overlapping requests (DOR)type work in a PC to a Cube that gets a full load every day with selections for rolling 12 months?
    Say there is a scenario to load data into an AR line items cube to update open to closed items history and the loads are configured for a 12 month rolling. eg yesterdays full would be for 03/23/09 to 03/23/10
    today's 03/24/09 to 03/24/10
    Now how can we utilize DOR instead in a PC that would delete the doubling behaviour of data for dates 03/24/09 to 03/23/10?
    All thoughts appreciated.
    Thanks

    Hi,
    in The selection criteria of the info package u can have the following code which takes the selection criteria as the first day to last day of the month  based on previous days date(SY-DATUM - 1.)
    data: l_idx  like sy-tabix,
            dDATE1 LIKE SY-DATUM,
            dDATE  LIKE SY-DATUM,
            L_LOW  LIKE RSSDLRANGE-LOW,
            L_HIGH LIKE RSSDLRANGE-HIGH.
      read table l_t_range with key
           fieldname = 'END_SHIFTDATE'.
      l_idx = sy-tabix.
      dDATE1 = SY-DATUM - 1.
      CALL FUNCTION 'ZFNC_FIRSTDAY_MONTH'
        EXPORTING
          DDATE      = dDATE1
        IMPORTING
          DLAST_DATE = dDATE.
      L_LOW         = dDATE.
      L_T_RANGE-LOW = L_LOW.
      L_T_RANGE-SIGN   = 'I'.
      L_T_RANGE-OPTION = 'BT'.
      CLEAR dDATE.
      CALL FUNCTION 'ZFNC_LASTDAY_MONTH'
        EXPORTING
          DDATE      = dDATE1
        IMPORTING
          DLAST_DATE = dDATE.
      L_HIGH         = dDATE.
      L_T_RANGE-HIGH = L_HIGH.
      modify l_t_range index l_idx.
    and DOR deletes the previous day's request as the selection criteria is same. on first day of the next month it has a request with selection criteria as first to last date of the previous month. and this request is not deleted  since on 2nd of the month it has different selection criteria(Start daay and end day of that month)
    Hope its clear
    Thanks,
    Sandeep

  • HOW TO USE FUNCTION Deletion of Requests from the Change Log IN PRCSES CHAN

    Respected all
    i used Deletion of Requests from PSA from the prcess chain and found good results, now i have only one request at the psa and thus i am doing good space utililisation. but when i am using Deletion of Requests from the Change Log i am not getting any changes in the request of dso. kindly let me know how to use this 2nd function.
    thanks
    abhay

    Hi Mahodaya,
    As per SAp standards its good to delete the requestes that are no longer needed for the delta update and no longer used ffor inti from the change log table and the data is loaded already in to DSO.
    Goto RSPC
    Click on create New PC -> enter the PC name n long descp
    Next we need to define the start process for the PC.Maintain the start variant process.save n come back.
    for deletion of change log we have option in the Other BW Processes -> deletion of requestes from change log
    Once u select the option we get a dialoge box here we need to create the variant for the process enter the process variant n long descp. cick ok.
    Next in the maintenance screen for the deleting the request from change log table will appear.
    Enter the selection patterns to which the requestes should be deleted from the change log.
    In the maintenance screen, select one or more Data Store objects for which requests are to be deleted from the relevant change log tables under Data Store Object column and select theInfo Area of the corresponding Data Store Objects under Info Area
    If you select the first check box exclude selction pattern, this means that del of requests from change log table will be ignored.
    or
    We can delete the requests which are Older than N-number of days (or) date in the above screen. For this one, enter the number of days (or) date in the filed Older than .
    OR
    If we want to select the requests with a certain status then we can also do in the above screen. We can select the following status indicators from the above screen.
    Delete Successfully Updated Requests Only -This status will delete only requests which
    are successfully updated into corresponding Data Store objects.
    Delete Incorrect Requests that were not Updated - This status will delete only incorrect requests which are not successfully updated into the corresponding Data Store Objects.
    Delete Activation Requests only, No Load requests- This status will delete only the activation requests (requests that begin with ODSR_... ). No load requests are deleted.

  • How to delete the request in Direct Update DSO

    Dear Gurus,
    I have a situation where I have an invalid characteristic loaded into the Direct update DSO.  This is related to Spend Performance Management.  This DSO is loaded through a data source with the option Without Archive.  So, I cant see any request in this DSO.   This DSO will then supply data to another DSO which is standard DSO. 
    The data Activation job in the standard DSO is failing. 
    My question is I have to delete the request from the Direct Update DSO and then load it to Standard DSO.  I have already repaired the data in PSA.
    Your Kind help is greatly appreciated.
    -Mohan Kumar

    You must be using some fill or delete APIs to fill the data in Direct update DSO.You can't create transformation to fill the data in DIrect Update DSO as you do in Standard DSO.You will not see  request number under the manage tab for direct update dso for any load.
    Whenever you will fill the Direct update DSO next time,previous data gets deleted automatcally. For Direct update DSO there can only be a Full Update.So just load the data using API's  and previous data will get deleted automatically
    Edited by: shyam agarwal on Mar 2, 2012 7:48 AM

  • How to delete the requests in DTP?

    hi all,
    here i am unable to delete the requests in DTP...
    when i am going to delete the request in DTP it simply showing the error:
    *cannot lock request DTPR_488BDVJVHQPUUTT3R383DJ55Q OF TABLE 0MATERIAL for deletion*
    could you plz help me on this.....

    Hi Kiran,
    Please go through this thread. Here the same problem has been discussed it detail.
    /message/4419400#4419400 [original link is broken]
    Following are the steps mentioned in this thread
    1. RSA1 -->Info provider >0Material>Right Click-->Display
    2. One screen will come , Select the monitor icon to view that (not the one when you go with Manage of 0Material_attr).
    3. In the monitor screen you will see Refresh icon , Refresh that
    screen , Now the status will change , after 2 -3 refreshes you
    will see the request turning to red.
    4. Now go back to the manage tab of the 0Material attribute , You
    can delete now.
    Regards,
    Praveen

  • How to delete the request in se10

    Hi Experts,
    How to delete the request in se10 ....plz explain
    Regards
    Venkat

    Hi,
    Go to SE10,select the request which you wnat to delete.You will find a delete icon on the top.Select it.
    This will delete the request.
    Make sure that this request is the one which is under ur ID.If you want to delete the request which is under other ID,it wont allow to delete.
    Thanks & Regards,
    Suchitra.V

  • How to delete a request in a collapsed and aggregated infocube ???

    Hi all,
    <u><b>The situation :</b></u>
    I have a cube that is collapsed, and that has aggregates.
    I'm not the one that designed this cube but if my understanding is good, aggregates were created to avoid the duplication of the recordings for the same key of characteristics because of the multiple loading. Actually KFs of the same recording are fed by various chains. Each chain creates a segment for the same characteristic values while updating the concerned KF. The aggregates make it possible to gather all these segments within the same recording by aligning the various updated KF.  (that's definitelly not clear to me but...this might be the reason why...)
    In the last chain that feeds the cube, right after loading datas, there is an "adjust" step, and then a "collapse" step.
    <u><b>The problem :</b></u>
    Sometimes for this cube (when we have a problem with figuresfor example) I have to run loading chains a second time for the same day. The result of that is obviously that datas are doubled in the cube, so that I have to delete requests in the cube to have them right.
    The problem is that, when I try to delete a request, the following pop up message appears : "Request ID xxx is aggregated, compressed or scheduled
    Message no. RSM725"
    I think I have to "uncollapse" the cube to do that, but I don't know how to do. By the way I'd want to "recollapse" the cube after that (it seems it's necessary so...).
    Could someone explain steps to solve the problem, and in the same time, explain the necessity and differencies of creating aggregates and collapsing please ????
    That would be so usefull to me, obviously I assign points for helpfull answers !
    Thanks !
    Fabrice

    Aggregates
    check this links for aggregates
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/3f66ba90-0201-0010-ac8d-b61d8fd9abe9
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/e55aaca6-0301-0010-928e-af44060bda32
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/cbd2d390-0201-0010-8eab-a8a9269a23c2
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/2299d290-0201-0010-1a8e-880c6d3d0ade
    How to doc
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/e55aaca6-0301-0010-928e-af44060bda32
    relation between agg and comp
    Relation between Rollup and compression.
    Aggregate Rollup and Compression

  • How to delete the Request Number

    Hi all,
                 How to delete the Requset Number in Development Client.Already i transported this Req. Number to Tesing Client.

    For what purpose, deleting the request number won't restore your dev system. You can remove the request from the import queues via transaction STMS to insure it will not be accidentally imported.
    You can usually only destroy a request in source system if it has not been released and all objects are unlocked, but this is risky in some cases and may cause a loss of information or coherence.
    Regards

  • Need help in deleting the requests from DSO

    Hi All,
    I want to delete the data load requests present in the dso, I cant do that from the manage tab as it is throwing error because of some dump been loaded into it.
    Please tell me the tables names which stores these data load requests of the dso's so that I can delete those requests  in the backend.
    If is there any way to delete these requests or complete data, please let me know. I cant do these operations from the mange tab/delet data tab of dso as it is throwing the error.
    Thanks,
    vinay.

    Hi,
    You can delete the Requests form DSO by useing RSICCONT.
    Follow bellow steps:
    1. Goto SE16.
    2. Give the RSICCONT and Click on Technical Contents.
    3. Give the DSO name--> Click on Execuit
    it will dispaly the number of requests which it exists.
    4. Select your request>Select 'Table Entry' Menu> Select 'Delete'
    Regards,
    Suman.

Maybe you are looking for

  • Satellite A300 fan control under Linux

    Hi all, I'm running Fedora 9 (kernel 2.6.26) on my Toshiba A300 (T8100, 3Gb of ram). Almost every piece of hardware is running correctly (except the radeon 3650 card, but that was expected and people are working on a driver for it). Now the only issu

  • Dynamic column in alv

    Hi Experts, In the selection screen i have 2 radiobuttons.I have 6 fields in my internal table , 5 of which have to be displayed for both the radiobutton options. When i click on the first radiobutton then i should be able to see all the 6 fields, bu

  • Blackberry Bold 9700 won't turn on and keeps rebooting!

    My blackberry is loading, but doesn't work. I continue loading to the halpf of bar, then start loading again, and again start. But It never turn on or isn't opened screen. There has only a loading screen. How can I solve this problem? I tried to remo

  • ShutDown Issue while log in Sql plus

    when i log in Sql plus with username and password. it says Oracle Intialization or shutdown in progress.let me know please .

  • Profile Management Framework

    I am developing an application in Java Swing and i have a requirement that i should be able to store some UI related User Preferences locally on client's machine. Some of these preferences could be, 1) To store the last appearance of a table in the a