Automatic Deletion of Similar or Identical Requests

Dear Gurus
i am creating Automatic Deletion of Similar or Identical Requests  process for PP_C04 INFOCUBE.
The problem is that when i select object type DTP  , i am unable to see the relevant DTP in  ObjecrtName . The data source is full update and DTP IS SET TO DELTA.

Hi
Looks like you already have some data loaded using DTP.
can you delete and reload data? if yes delete loaded data and then do these steps.
Regards
Sudeep

Similar Messages

  • BW 7.0 Automatic Deletion of Similar/Identical Requests from the InfoCube

    Hi experts,
    In BW 3.5 we have used a feature in a InfoPackage, where you can delete an u201Coldu201D loading, u201CAutomatic Deletion of Similar/Identical Requests from the InfoCubeu201D.
    Now we are building a flow in our upgraded system and we can see that this opportunity is available in the InfoPackage to the PSA, when you load data from the source system (ERP) to the BW system but we would like to make this when we load an InfoCube some layers up (see exemple below; InfoCube2)
    Source System  -> PSA  -> InfoCube1  -> InfoCube2
    Anyone know if it is possible or if there is anything else you can do?
    Regards,
    Kerstin

    in bi7 the load to the datatarget is done using dtp. the infopackage goes only to the psa. in order to achieve the same you need to use the process step in the process chain. you need of course to create a correct variant, but here you'll have the same options as you had before in the earlier version.
    M.

  • Automatic loading of similar/identical request from infocube

    Dear all,
    Any one can give the description of <b>Automatic loading of similar/identical request from infocube]</b>.please
    Thanks
    Rave

    Hi,
    From help.sap
    <u>Automatic Deletion of Requests from the InfoCube when Loading</u>
    To ensure that the data that is going to be loaded with an InfoPackage is available only once in an InfoCube, you can delete from the InfoCube any existing requests that have partially overlapping or similar selection conditions and relevant deletion selections.
    After loading new data into the InfoCube, the InfoCube contents are checked using the selection conditions for an InfoSource/DataSource/source system combination, to see if overlapping data has been loaded into the InfoCube. The data that has been loaded into the InfoCube is not analyzed rather the selection conditions for the InfoObjects that you determined in the Scheduler are compared.
    <b>With this function the dataset in BW is reduced to the size necessary for analysis, and redundancies are avoided.</b>
    Check this link for more
    http://help.sap.com/saphelp_nw04/helpdata/en/f8/e5603801be792de10000009b38f842/content.htm
    Regards,
    R.Ravi

  • How can I debug a routine created in Deletion of similar requests?

    Hello Experts,
    I need some help from you. I need to delete overlapping requests and the common
    settings you can set are not suitable, so I decided to write my own ABAP routine.
    But how can I debug a routine, which is implemented in the deletion of similar requests?
    Hope you can help me.
    Cheers
    Daniel Weilbacher

    Please go to the routine code..
    In the menu options..u will find an option for breakpoint--set..
    The line where breakpoint is set will get highlighted and u will also see a STOP symbol..
    then come out of routine..and then run the data load..
    this ABAP routine for overlapping request deletion runs before the scheduled data load..
    the run shud stop at the set breakpoint and show the routine code..in debugger mode..
    cheers,
    Vishvesh

  • Help automatic delete of request after update

    Hi all,
    i need to configure an InfoPackage so it automatically delete a previus request on this condition:
    - The previous request is on the same month or..
    - The new request is into the five days of the next month.
    So if an old request is from 23/12/2006 and new request is form 04/01/2007 the old request must be deleted.
    But if the new request is from 06/01/2007 or beyond, the old request must not be deleted.
    How can i solve this ?
    thx in advance

    I dont have a sample code, but I can give you the logic which can help you program. Copy the infopackage id which will be something like...ZPAK_3V1PWX599NZE5NR5W2XD5BEU9. Now go to the table RSREQDONE, give this infopackage id for the field logdpid and it will show you all the requests that are loaded using this infopackage. Now sort the entries in the table in a descending order using TDATUM and TUZEIT fields (first by TDATUM and then by TUZEIT). Once this is done, select the first entry (which will be the latest load) and write the routine based on the TDATUM field. If TDATUM lies in the same month, then delete the request whose Request ID number is the same as the RNR number in the record you selected from RSREQDONE (the request id will be like...REQU_449W4IE405ZSI25W9WLXAB3FH). Else do not delete.
    Hope this helps. Also, please paste the code here for future reference incase you were successful deleting the requests according to your selections.

  • How to control automatic deletion of spool requests while check printing

    hi friends
    When i do cheque payment run (F-58), my spool getting deleted after printing. In my User setting SU01,
    Delete after output is not selected, still it is getting deleted from spool. We have informed users to uncheck this option once the spool request is created at the end of this run. But our users feel there should be some way to disable/uncheck or save this option automatically rather than changing each spool request settings everytime the posting is run.
    Please could you suggest me how to disable/uncheck this option 'Delete after printing if no errors' permanently. I have done the necessary settings in user master record but still it's the same.
    please advice.
    Regards,

    Hi Nathan,
    Solution is only to maintain in SU01 , its picking from there only.
    May be your  user needs to log-off once status is changed in SU01, ask him to check what it is showing for him in SU3.
    So if you deactivate  option in SU01/SU3 , it should work as same is working in our environment.
    You can test yuorself using below steps
    1) Login with your ID , create one spool request
    2) check the status in SP01 and check if its ticked  or not
    3) change the tick mark in SU01 , logoff. and login again .
    4) create another spool request
    5) check status now for new spool request in SP01 and check if it is ticked.
    Regards,
    Edited by: Gagan Deep Kaushal on Oct 31, 2010 5:00 PM

  • Automatic Deletion in Infopackage

    Hello all,
    I have this problem, Im writing an ABAP routine in an infopackage for automatic deletion.  The code ran with no errors but in the code I specified that I didnt want the previous package to be deleted if the new package has less records than the previous.  The code is as follows:
    <i>program conversion_routine.
    form compute_ZSD_DESC
      tables l_t_request_to_delete structure rsreqdelstruc
      using l_request like rsreqdone-rnr
      changing p_subrc like sy-subrc.
    TABLES: RSMONICTAB.
    DATA: rsmonictab1 LIKE RSMONICTAB OCCURS 0 WITH HEADER LINE.
    DATA: curr_records type i,
          prev_records type i.
       select * from rsmonictab into rsmonictab1
       where infocube = 'ZSD_DESC'.
         sort rsmonictab1 descending by timestamp.
           read table rsmonictab1 index 1.
           curr_records = rsmonictab1-req_insert.
           read table rsmonictab1 index 2.
           prev_records = rsmonictab1-req_insert.
           multiply curr_records by '.8'.
      loop at l_t_request_to_delete.
           if prev_records <= curr_records and RSMONICTAB1-rnr = l_t_request_to_delete-rnr .
             delete l_t_request_to_delete.
           endif.
         endloop.
       endselect.</i>
    Im not sure if this routine in the infopackage runs before the new record is added to the table, because if it is, then I wont be able to use a routine in the infopackage.  If thats the case, does any body know another way to do this?.
    Thanks so much
    Message was edited by:
            Pizza Girl

    Ok so Ive been doing some changes to my program that Im including in my process chain, the code reads as follows:
    <i>REPORT  ZPAQUETES_TEST.
    data: irsiccont LIKE RSICCONT OCCURS 0 WITH HEADER LINE.
    data: rsmonictab1 LIKE RSMONICTAB OCCURS 0 WITH HEADER LINE.
    data: l_lines type d.
    data: v_SELECTIONS type table of  BAPI6109SEL,
          v_INFOCUBES type table of  BAPI6109IC,
          v_THIRD_PARTY_PARAMS type table of  BAPI6109TCP,
          v_RETURN type table of  BAPIRET2.
    DATA: curr_records type i,
          prev_records type i.
    DATA: RNR1(30) TYPE C,
          RNR2(30) TYPE C.
    DATA: V_INFOCUBE TYPE TABLE OF RSICCONT-ICUBE.
    SELECT * FROM RSICCONT INTO TABLE IRSICCONT
    WHERE ICUBE = 'zsd_desc'.
    DESCRIBE TABLE IRSICCONT LINES L_LINES.
    IF L_LINES GT 0.
    SELECT * FROM RSMONICTAB INTO TABLE rsmonictab1
    FOR ALL ENTRIES IN IRSICCONT
    WHERE RNR = IRSICCONT-RNR.
    ENDIF.
    CALL FUNCTION 'BAPI_IPAK_GETDETAIL'
    EXPORTING
       INFOPACKAGE              = 'ZPAK_A7U7VI5RNB5N5A87RBWXFBMEA'
      TABLES
        SELECTIONS               = v_SELECTIONS
        INFOCUBES                = v_INFOCUBES
        THIRD_PARTY_PARAMS       = v_THIRD_PARTY_PARAMS
        RETURN                   = v_RETURN.
    SORT rsmonictab1 descending  by TIMESTAMP.
    read table rsmonictab1 index 1.
      MOVE RSMONICTAB1-REQ_INSERT TO CURR_RECORDS.
      MOVE RSMONICTAB1-RNR TO RNR1.
    READ TABLE RSMONICTAB1 INDEX 2.
      MOVE RSMONICTAB1-REQ_INSERT TO PREV_RECORDS.
      MOVE RSMONICTAB1-RNR TO RNR2.
    IF SY-SUBRC EQ 0.
    CALL FUNCTION 'RSSM_DELETE_REQUEST'
      EXPORTING
        REQUEST                  = RNR2
        INFOCUBE                 = 'ZSD_DESC'.
    ENDIF.</i>
    but its still not doing anything, can anyone help me please?????
    Message was edited by:
            Pizza Girl
    Message was edited by:
            Pizza Girl

  • Yosemite 10.10.3 Bug in Image Capture - no automatic delete

    After updating Yosemite to 10.10.3, the "Delete After Import" feature in Image Capture no longer works.  The images import properly, but they do not automatically delete (even though the box is checked).  You are then able to manually delete the images, but one image is always permanently un-deletable (I was able to replicate this bug by importing images from my iPhone, iPad and Canon Digital Camera).

    Don't think it's a bug, just tried with my iPhone 4s and image capture imported pictures followed by deleting same from phone - same with manual delete, all removed if all selected. Think the clue to your issue might be the fact you can not manually delete a particular picture, is it protected or could it be corrupt?
    Try deleting the troublesome picture via the iDevice and then see what happens when you attempt importing others, if you have the same issue but on another picture you might try restoring the iDevice (but that will not resolve the problem if it also happens with the camera!).
    I might just be lucky, wait and see if others report similar problem after 10.10.3 upgrade.

  • Selective Deletion is possible based on request ID?

    Hello Friends,
    Our Cube is Not Compressed where Aggregate Rollup was done and Compression of Aggregate rollup are done.
    In this Case, Can i peform selective delete of data based on Request ID? If yes,
    1) Any special procedure and need to take care of any thing?
    2) Does Aggreagte rollup and its compression will adjust automatically with next run ? (or) do we need to do any thing for aggregates rollup and its compression?
    Thanks
    Tony

    Hi,
    Before you do Compression you can perform Selective Deletion for Req ID. And it automatically changes your Aggregates also.
    Ali.

  • Disable automatic deletion of bindings in pageDef

    When I delete a component on a .jsff og .jspx page, the binding in the pageDef file is automatically deleted if no other component on the page points to the binding.
    Is it possible to disable this behavior? A lot of our variables are used in beans, and this results in a null pointer exception.
    It would be really nice to have a dialog when a component is deleted, asking if you wan't to delete the binding or not.

    If you delete the component in the source mode the bindings are not deleted.
    There is no switch alter this behavior. You may file an enhancement request (ER) with support or you post the ER on the      
    ADF Enterprise Methodology Group (http://groups.google.com/group/adf-methodology?hl=en )
    Timo

  • CUP: Delete user certain time after request has been created

    Hi,
    Is it possible to define in CUP a delete account workflow that once the request has been created user deletion waits some time (i.e 1 month) before user is finally deleted? We would need a workflow without any approver.
    Delete User request creation >> 1 month >> User is deleted
    Thanks in advance. Best regards,
      Imanol

    Hi,
    Automatically deleting user IDs after a specific # of days is not possible in CUP. However, while creating the stage, you can define the wait time and then trigger the escalation. You can make the escalation to the Security Manager who can immediately take up the proper action, i.e., deleting the ID or making it inactive.
    Infact, this is the reason why it is recommended to have an alternative approver.
    Hope this addresses your question.
    Regards,
    Raghu

  • Counting inbound emails (including those automatically deleted using ERMS)

    Hi all,
    I have a requirement to be able to count all inbound emails in SAP CRM (5.0).  This includes all emails that have been automatically deleted using ERMS after the creation of an Interaction Record and Service Ticket.  Can anyone think of an easy way of doing this in SAP CRM?  The Email Workbench and Agent Inbox do not display deleted email Workitems.  The best option that I have been able to come up with is to export the Workitem Selection Report from transaction SWI1 into a spreadsheet and filter column Workitem ID for unique entries.  Does anyone know of a better way of achieving this?
    Thanks,
    Onkar.

    By using POP3, mail is automatically deleted from the server once downloaded by the client without further user intervention (granted, not immediately due to BTYahoos recent non-standard implementation of the POP3 protocol). By contrast, the whole point of IMAP is that mail is left on the server to be available to multiple devices and requires user intervention to delete. Why would a system which is designed to be used for leaving mail on a server be recommmended to someone who wished it to be deleted? If you wish to be pedantic, I agree the OP didn't ask for mail to be automatically deleted, but then nor did he specify immediate deletion either. I interpreted the request as the former, you the latter. Perhaps if we understood the underlying reason why he wished the mail to be deleted in the first place it would help in providing a solution.
    There seems to be a recurring theme on this forum to promote IMAP as a universal panacea to overcome all mail problems which is diverting attention away from fixing BTYahoo's broken POP3 servers which have to my knowledge at least 4 problems. Two are deliberate by BTYahoo, lack of secure login and moving read items to the Trash folder temporarily before deletion. Two are faults which they seem either unable or reluctant to fix, intermittant authentication problems and inabilty to download even modest sized attachments on a slow connection.
    Correction, he did ask them to be deleted automatically.

  • Inbox messages 30 days & older being automatically deleted

    Mail is automatically deleting messages from my Inbox automatically when they reach an age of about 30 days, any ideas? I've got a workaround in place right now, rule that forwards messages to a yahoo account once they reach 27 days, but I'd like to be able to just leave them on my machine for those times I need to reference an email and the internet isn't available.
    AFAIK there is NOT an option/preference for automatically deleting Inbox messages, that was my first thought but when I dug around I couldn't find it anywhere. Am I missing something obvious?
    If the solution is to backup my messages, trash mail, and reinstall thats fine but I'd like some pointers on how to do so. I've never backed up Mail emails so any tips would help
    Thanks!
    Mail 2.0.7, OS X 10.4.5, 17" 1.5Ghz Powerbook

    Hi,
    would be interesting to trace this thread because I have a similar (if not the same) problem.
    I used to use IMAP as account type for my main email account but I noticed, too, spontaneously disappearing mails.
    I checked directly on the mail server and they are still there. But in Mail (version 2.0.7 (746.2/746.3) from OS X 10.4.5) I couldn't find these mails anywhere. Not in the Inbox, nor in Spam, Trash or any other local or remote folder. And there is no rule that would have affected these mails.
    Meanwhile I switched to using POP3 with that email account and got the missing messages back (visible in Mail's Inbox). But I'd really like to find and solve the problem and use IMAP again.
    As far as the 30 days are concerned the original poster mentioned I can't confirm this. Sometimes I think yes, there's a certain amount of time after which the mails disappear but then again it seems to be different all the time. Sometime a mail disappeared after just one day (it's still on the mail server) in Mail and sometimes mails disappeared after app. two months.
    Is there any known issue? I have a lot of rules for mailing lists that just move mails into a folder -- but the missing mails can't be found in this folder, neither.
    What would be necessary to reinstall Mail from scratch? Will I loose all my mails then?
    Thanks in advance & greetings from Germany,
    Stefan.

  • I've given my sister my old phone but where she has gone to deleted contacts and pics of photo stream they have then automatically deleted on my recent phone... HELP ME!!

    I upgraded my iPhone 4S to iPhone 5c... My sister is planing to have my old 4s but we have gone to delete stuff eg contacts but those contact have then automatically deleted of my iPhone 5c ... I'm not sure if this is to do with the same icloud account being on both phones..
    I have backed up iPhone 5c on the computer and have backed up iPhone 4S but not sure if backing up the 4s made a difference. I am then worried that if I delete the iCloud of the 4s it will then delete all my stuff of iCloud and of my 5c
    When I got the iPhone 5c I used EE clone phone app so not sure if that has affected all this
    Please help
    Thanks
    Hope all the correct info is there

    This information will explain it:
                 http://support.apple.com/kb/HT1495
    Hope this helps

  • My e-mail automatically deletes read e-mail in my inbox every 14 days without my permission. How do I get this to stop?

    I switched e-mail clients from windows live to thunderbird in mid december to alleviate problems in sending group e-mail. I have thunderbird on a different laptop and the product works flawlessly. The client works flawlessly with one exception: It automatically deletes any read e-mail in my inbox every 14 days without any input from me. I have had ITOK & Hughes.net look at the problem as I am using my inbox as a staging area for for pending business that tracks progress of different events. I have checked settings and there are no evident features that I can switch on or off with that time frame. This has occurred 3 times since December and I have resorted to printing e-mails to prevent loss of data.
    The desktop uses windows 7, IMAP for incoming mail...

    Log into your account at the providers web mail page and look for any retention options that might be there. Do not put too much into what their help desk tells you. Most help desk agents are lucky to know that the ringing sound means to answer the phone.

Maybe you are looking for

  • Can you temporarily disable a song or playlist?

    When I choose the Song Shuffle option on my iPod, it randomly choses a song to play and I really love it. But, I also have alot of Christmas music on the iPod. So when I choose the "Song Shuffle" option, it scans through all of the music on the ipod-

  • Shared Review on Network Folder

    I am trying to set up my first shared review on a local network folder in our office and am running into two difficulties. (I have Acrobat 9 Pro running on Windows XP, most others have Reader 8 running on XP and we are connecting using Outlook 2003 t

  • Have to restrict certain Venodr and customer in Documents like branch wise

    Dear Team, We have customers and vendors master data in different series and grouping  according to branch wise. My requirement is certain users (branch wise) only have to select certain groups vendors or customers in marketing documents. I tried to

  • Calling javascript function with pressing button

    Hello, I would like to enable an item on my page wihic is disabled before. I should use a javascript function. I wrote in the page HTML Header: <script language="JavaScript1.1" type="text/javascript"> function enFormItems(item1){ enItem = document.ge

  • Sporadic application crashes after updating to 10.4.8

    Hello... on 10.4.7 no crashes at all. just updated about 3 weeks ago or whenever 10.4.8 came out, and still no crashes until a few days ago...is it the os or something else? i did a complete virus scan, ran disk utility...is it my cache? the apps tha