Overlapping requests using DTP

Hello BIGurus,
I want to delete overlapping requests in the following scenarios using DTP
1.In Master data Attribute
2.DSO
3.Info-cube.
I am not able to find Deletion of overlapping requests option in the DTP.
Can you please help me to find out option in DTP to delete overlapping request?

Hi
Overlapping request will always delete data based on the same selection condition.
In your case as the import dates are different for both the requests, it will not delete the previous request.
You can try selective deletion option if feasible.
or
Overlapping will happen only for cubes. Not to DSO (because already we have overwrite option for DSO) so no need to maintain the setting for DSO and also it wonu2019t accept to give the settings.
We can have the settings to u201Cdelete overlapping request from basic cubeu201D only.
We can give these settings in 2 ways
1. In IP level
Go to IP maintenance screen > go to target tab > click on u201Cautomatic loading of similar/identical request from the info cubeu201D and set the setting as per you convenience
2. if we want to give the setting in Process chain >
Select the process type u201Cdelete requestu201D and mention the IPs in the maintain variant screen
Click on the u201CDeletion selection u201D tab and set the setting as per you convenience
santosh

Similar Messages

  • Delete overlapping request in DTP

    Hi,
           Is there an option to set "Delete overlapping request" in DTP?.

    Helllo,
    There is no direct option in DTP to do so, but u can do it via process chain.
    You need to have your DTP set to full update in order to make use of it in delete overlapping request process type.
    Regards,
    Shashank

  • How to load data from one Infocube to another request by request using DTP

    Hi All,
    I have a scenario where we are maintaining backup Infocube B for Infocube A.  User loads data from a flat file many times a day in different requests.  We need to maintain backup of the Infocube A on weekly basis.  i.e data to be refreshed with delta update from cube A to cube B.  There are some situations where user deletes some of the requests in Infocube A randomly after use.  Will this change effect in back up cube B when performed data refresh from cube A to cube B.  i.e. this functionality is similar to reconstruct in BW 3.5.  Now we are running on BI 7.0 SP 9.
    Can anyone answer this ASAP.
    Many Thanks,
    Ravi

    You cannot load request by request, " Get Data By Request " DTP loads request by request on " First In First Out " basis. You can run some Pseudo/Fake DTP's if you dont want to load data from a particular request.
    If the user deletes a request from Cube A, it wont be loaded to Cube B but if it is already loaded in Cube B and later the user deletes the request from Cube A you have to delete the request frm Cube B. Inorder to monitor request by request run DTP with   " Get Data By Request set.

  • DTP Questions: Delete overlapping requests;  Repair Full Request

    Hello,
    I'm new with the DTP concept in BI 7.0.
    It is clear to me how DTP is working for normal loads like: full, delta, delta without data transfer etc.
    But I don't see where I can specifies "Delete overlapping requests". Is this still possible in a DTP, or is it only possible by creating a Process Chain and insert the process-type "delete overlapping requests" ?
    Also I have a question about "Repair Full request" using DTP.  Is this option still possible ? Or do I have to create a DTP with extraction-mode = Full => Extraction from Active table.  => Is delta than still working ?
    Thanks for your input,
    Wim

    <b>But I don't see where I can specifies "Delete overlapping requests". Is this still possible in a DTP, or is it only possible by creating a Process Chain and insert the process-type "delete overlapping requests" ?</b>
    This option is available <b>only in Process Chains</b> when u use DTP's.
    /people/community.user/blog/2007/06/21/sap-netweaver-70-bi-data-transfer-process-with-147only-get-delta-once148
    /people/community.user/blog/2007/06/21/sap-netweaver-70-bi-data-transfer-process-with-147get-data-by-request148
    <b>Also I have a question about "Repair Full request" using DTP. Is this option still possible ? Or do I have to create a DTP with extraction-mode = Full => Extraction from Active table. => Is delta than still working ?</b>
    Full Load was made Repair Full to Initialize if loading an ODS but however you dont need to worry abt the same in Netweaver 7.0 as DTP is taking care of the loading from PSA to DSO.
    Initialization can be done after a full load as the load is <b>only till PSA</b> ( At Datasource Level ).
    DTP doesnot require any initialization.
    U can jst do a Delta DTP after a Full DTP to a DSO or u can even start with a Delta DTP directly.
    For the first time  -> Delta DTP = Full DTP !!

  • DTP - Delete Overlapping Request

    Hi Experts,
    While working on DTP, i am confused, can we delete overallping requests using DTP's as we were able to do in info packages.
    Cheers,
    Kayrene

    Hi Kayrene,
    Please check this blog for step by step approach.
    /people/community.user/blog/2007/06/21/sap-netweaver-70-bi-data-transfer-process-with-147only-get-delta-once148
    Thanks,
    Mayuri Sinha

  • 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

  • DTP and Deleting overlapping requests

    Do we have the option to delete overlapping requests when using DTP to load data? Thanks

    hi ,
    Pls create a process chain.
    1. Add Delete Overlapping Requests from InfoCube .
    2. In the deletion selection check : Conditions:
    mark : Only delete request from same DTP
    Only delete full DTP request
    Only delete full DTP request from Same source
    Then Mark : Overalapping.
    In the DTP : Add date in the Filter .(Cal/Year Mth) ..You can use variable also.
    hope this helps ..
    Regards,
    shikha

  • How to push a perticular request from PSA to Data target using DTP in BI

    Hello all.
      I have mulitple requests in PSA & wanted to move only perticular requests (Randomly,  say first request & last request ) to data target using DTP in BI 7.0. How can we do this.. ? Is there any option in DTP (BI 7.0)for selective loading of requests from PSA to Data Target..
      Thanks in advance..
    Cheers,
    sami.

    Hi,
      It is possible by using 'zero fetch' in DTP
    If you want only the recent req to be loaded.
    1. In PSA, change the status of the recent request to red
    2. Do a zero fetch
    that is processing mode - No data transfer; delta status in source: fetched
    With this processing mode you execute a delta without transferring data.
    3. change the particular request status back to green
    4. Run a delta load
    Regards,
    Priya.D

  • How to load a selective request from PSA to DSO using DTP?

    Hi Gurus,
    The PSA is having 3 requests, how to load the request number 2 from psa to DSO using DTP?
    Thanks
    SDP
    Edited by: SDPSAP on Nov 15, 2011 7:58 PM

    Let us say that requests are 1,2 and 3. 1 being the first one and 3 is the last one. Now you need to load request 2 in DSO from PSA.
    - create a Delta DTP
    - Tick "Only Get Delta Once"
    - Tick "Get One Request Only"
    - Untick "Reterive Until No More New Data"
    - execute the DTP, it will load request 1 to DSO
    - delete this request from DTP
    - execute DTP again, it will load request 2 to DSO; this is what you need.
    If DSO is write optimized, you do not need to untick "Reterive Until no More New Data"; just execute the DTP, it will create 3 requests in DSO, delete first and last and you will get only 2 in DSO.
    I hope it helps.
    Regards,
    Gaurav

  • Delete Overlapping Reqeust in DTP deletes more than one request from cube

    Hi all,
    I have selected the following options in delete overlapping request as we need only one request in the cube.
    Delete existing requests
    Only delete request frm same same DTP
    Selections are
    Same or More comprehensive
    Scenario is:
    DSO>DTP>Cube
    I have set this delete overlapping request in the DTP (in a processchain).
    Now at the time i added this step in Process chain, there were two requests in the Cube (both with the same DTP but first one was 2009 data and second was 2010 data)
    Need was to delete only the latest request from the cube ie 2010 data.
    As per my understanding, i assumed delete overlapping will delete only ONE request i.e. the latest one from the cube with 2010 data.  But when i ran processchain, it deleted both the requests.
    Is that the functionality or is there something I am missing? We need to retain 2009 data and overwrite 2010 data with the new request.
    Suggestions please.

    Hi,
    I suspect that you have not set any DTP filter criteria. Is this the case?
    Are these requests delta DTPs or full DTPs?
    Have you read/applied these notes:
    1155723 P18:DTP:PC: Deleting overlapping DTP requests in PC
    1318438 P21:DTP:PC: Change of instance when DTP in PC repaired
    1147766 P18:PC:DTP:Select only full DTPs for overlapping deletion
    1336410 70SP22: Enhancements to CL_RSBK_DTP=>GET_ALL_BY_PROPERTY
    Rgds,
    Colum

  • Delta DTP and Delete Overlapping Requests

    Hi,
    Please check the article:
    http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/10339304-7ce5-2c10-f692-fbcd25915c36
    -Vikram

    Hi
    In the Delete Overlapping Requests from Infocube Process there is an button Deletion Selections Check what are all the options selected in that there are some 3 check boxes like
    a) Only Delete Requests from Same DTP
    b) Only Delete Full DTP Requets
    c) Only Delete DTP Requests from Same Source
    if option B is checked it will work only for Full Requests not for Delta. Check the same in your system.
    Thanks

  • Delete overlapping requests of same DTP from cube

    Dear All,
    i want to delete over lapping requests of same DTP in cube, but here while i am searching for the DTP in process variant, the system is not showing the DTP(it is active).
    can you people have any suggestions.
    Br,
    Vamshi.

    Hey Vamshi,
    Is your DTP a full one or delta one ? Delete Overlapping reqs is not possible for Delta loads.
    In Load Process and Post-Processing option you will find Delete Overlapping Requests from InfoCube, drag and drop and make the following settings:
    Object Type = DTP
    Object Name : DTP Name.
    Check Edit all InfoCubes with the following Delete Selections and click on Delection Selection
    Check Delete Existing Request and check Only Delete Req from same  DTP
    Activate and execute the PC.
    Hope this helps!
    Sheen

  • How to make setting for overlapping request-DTP

    Hi,
    I am creating a PC which is for monthly data and the cube in question is loaded twice as per the requirement in a month..
    Now, i need to delete the same month data request when loading for the second time and rest all other previous month requests should not be touched...
    For that, in the delete overlapping request variant i had selected ( in deletion selection ) only the option request date in current month...
    and in the selection same or more comprehensive...
    is it the rigjht selections to delete the requests of the same month? or is there any thing that i overlooked?

    Hi,
    Please go through this article...
    I have clearly explained the concept with a scenario.
    http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/e0431c48-5ba4-2c10-eab6-fc91a5fc2719
    Regards,
    Rk.

  • Delete Overlapping Request from InfoCube.

    Hello,
    I am using process Type "Delete Overlapping Request from infocube" in this I am selecting object type as a "DTP"
    Under "Delete Selection" I am selecting following
    1. Only Delete Requests from same DTP
    2. Only Delete Full DTP request
    3. Only Delete DTP Requests from Same Source
    I am using "Full Load" in my DTP.
    My requirements are like  I need to delete old data and load new data every day in to  a cube for that I am using this process type.
    If anybody have better solution please let me know.
    Thanks,

    Also
    I am not deleting Index  OR  Not creating Indexs while using process type "Deleting overlapping request InfoCube"
    what will be the impact on the cube?
    How many index will have infocube?
    If the cube having more than one index if i delete index, which index will be deleted?
    Thanks,

  • Delete overlapping request in PC - Request from previous month got deleted

    Hi Everyone,
    We are using a 'Delete overlapping request' step in a process chain. Under the Deletion Selections, we have checked the following options:
    1) Only Delete Requests from Same DTP
       |_ Selections are - Overlapping
    2) Request Date - Is in the Current Month
    3) Exceptions:
       |_ New Request will be loaded on - 1st Day of a Month
    The datasource in this case is used for a Full update into a Cube everyday. We've used the above selections so that the request loaded on the last day of a month is not deleted by the subsequent load. We need this to retain a snapshot of the data for each month.
    This month, when the process chain executed on 1st Feb, the request loaded on 31st Jan was not deleted. However, on 4th Feb, the Process chain deleted the request loaded on 3rd Feb and also the one from 31st Jan. There seems to be no reason at all for the 31st Jan request to get deleted. We've made sure of that by choosing the option 'Request Date - Is in the Current Month' in the Deletion Selections.
    Is there any explanation why the request was deleted?
    Thanks,
    Ram

    Hi,
        If you dont have any selections , it will delete the previous request. Based on the selections only overlap will work.  For your scenario , it wont delete previous month request after changing it to current Fiscal period. Once check the selection options , is it displaying month wise or empty selections.
    Regards
    Pcrao.

Maybe you are looking for

  • Is it possible to change the frame rate of a motion template?

    Motion has some very useful templates, but the majority are only offered in NTSC, not PAL. (including all in 3D TEXT PROJECTS). Is it possible to change the frame rate to 25fps before I start adding my own stuff, so that I can easily get the timing r

  • Network attached storage

    I just bought my first mac. I already have a network attached storage on my (linksys) router which I was accessing from my pc. How do I make my mac see this NAS? Thanks.

  • Report Services Install - SQL Server 2012 instance blank

    I have looked at all the links and tried the suggestions and I am still having the problem:  SCCM 2012 R2                         SQL 2012 SP1 SSRS installed and configured (separate boxes) When I try to add the reporting services role, it finds the

  • XML Standard for Comments on Tables, Columns?

    We are creating a new application and plan to store comments inside Oracle using the comment on table / column commands, but would like to store them in a manner that XML tools could understand. Is there some standard naming convention for things lik

  • Auto populating the Notes field in XK02/FK02

    Hi Experts, I have a requirement where I need to auto-populate the Notes field with some text. When the user clicks the arrow next to Email field a pop up comes up. In this pop up there is a Notes field. (Please see the Screen shot) I want this Notes