Need to track deleted records only in all infotypes

Hi all,
I want to track all the deleted records only from all infotypes. PCL4 stores all the changes records. But I want only the deleted records.
Please suggest how to achieve it?

hi,
     try this t.code PC00_M99_UDIR  for restore the payroll results directory
RupaPrasad.

Similar Messages

  • What is the best approach to track deleted records

    Dear all,
    We have build a CMS platform which is based on SQL server 2012 tables structure hosted in Azure.
    We have build on top of this some REST API method in order to access data from any type of client application.
    The issues we need to solved now is what his the best way to track deleted records in order that client application gets informed through web service about deleted data from our CMS.
    We were thinking of 2 path actually :
    - having a kind of Ghost table for each of our real table where deleted records will be inserted into ( physical delete ). This would mean adding as many Ghost tables as we have production tables
    - Adding a IsDeleted flag to each of our table which will be set to true when a record is deleted from our CMS ( logical delete ). This would means adding an IsDelete field to each of our tables, create and update all our store procedure and web services
    in order to taken in account that new filter criteria to fetch our records. Quite huge job
    Will there be any other approach ?
    We are looking the best solution with minimum impact on our current solution
    reagards
    Your knowledge is enhanced by that of others.

    Hello,
    @Tom, based on your question
    "The question would be what do you need to do with the deleted records and how long do you need to keep them?"
    When records is deleted, then I simply want to delete them and informed any client application about deleted items in order to get data in Sync. I will not have any reporting on deleted data !
    The only reason of tracking delete tables items, is simply to informed client application through web service sync about the data to be ignored. Client application have a caching database records for performance reason and is is require to not used data
    from that local storage which has been reported as deleted by the SQL server on Aure.
    Does this make sense ?
    regards
    Your knowledge is enhanced by that of others.

  • SQL function to retrieve records only if all the values are available.

    Hi,
    I have a sales table on which i run a parameterized query.
    We pass a few week IDs to retrieve store sales.
    I need to retrieve only those stores that has sales in all the week IDs passed.
    If i use the in operator, i am getting the store data even if there is sales for only one week.
    Is there a function in oracle to do this?
    Thanks,
    Sharan.

    Hi, Sharan,
    Here's how you could use the analytic COUNT function:
    WITH     got_week_cnt     AS
         select  week_id, store_id, prod_desc, sales_units_raw, sales_value_raw
         ,     COUNT (DISTINCT week_id) OVER (PARTITION BY  store_id)            AS week_cnt
         from     sales_store_dwh
         where      week_id in (&&Week_ID_CSV)
    select  week_id, store_id, prod_desc, sales_units_raw, sales_value_raw
    FROM     got_week_cnt
    WHERE     week_cnt  = 1 + LENGTH ('&&Week_ID_CSV')
                    - LENGTH (REPLACE ('&&Week_ID_CSV', ','))
    ;Notice that the sub-query got_week_cnt is just your original query, with the COUNT function added.
    You didn't post your tables or results, so I can't test it.
    You didn't say what version you're using, so I made a conservative guess (Oracle 9 or higher). In Oracle 11, there's a simpler way to find the number of weeks passed.

  • Logic in Transformations to delete record

    Hi,
    How to write(syntax) a routine in Start routine of transformation
    I am extraction data from ECC to DSO in BW
    My requirment is in Transformations start routine i need to check each record if source package on 2 fields XYZ and PQR....need to update the record only if both the fields are NOT BLANK
    How to achieve this
    Thanks

    Hi
    There is a small correction in your syntax
    DELETE DATA_PACKAGE WHERE XYX IS INTIIAL
                                                OR PQR IS INITIAL.
    This will delete the records if any one of the field is blank
    There is one more option that you can handle in the field routine for skipping the record
    Just take the first field routine in your transformation, it may be any field say FCG
    Make the two fields XXX and PQR as the source by inserting them
    First map the source anf destination fiel d of the field in which the routine is created
    RESULT = SOURCE_FIELDS-FCG
    IF soure_fields-XXX IS INITIAL
    OR source_fields-PQR IS INITIAL.
    RAISE EXCEPTION TYPE CX_RSROUT_SKIP_RECORD
    ENDIF.
    By doing this the record will be skipped and it will not be updated to the target DSO.
    Prathish

  • Deleting Records from Referential Tables

    Hi,
    Can anyone help me in deleting records from tables in a hierarcial manner. For e.g C refers B and B refers A. I need to delete data from all three tables related to a where clause in A.I tried using User_constraints and User_cons_columns views. But i am not able to find a hierarchial delete statement.
    Venkatesh

    Did you look into the option of specifying ON DELETE CASCADE for your foreign key constraints. That way, if you delete a
    row from the master table Oracle will automatically go and delete the child rows. Take a look at the following script.
    Here, when I delete a row from table A for NUM = 1 the child rows from table B (WHERE num = 1) are automatically deleted.
    drop table b
    drop table a
    create table a (num number, name varchar2(40))
    create table b (num number, name varchar2(40))
    alter table a add constraint pk_a primary key(num)
    alter table b add constraint fk_b_num foreign key (num) references a(num) on delete cascade
    insert into a values (1, 'Test#1')
    insert into a values (2, 'Test#2')
    insert into b values (1, 'Referes#1')
    insert into b values (2, 'Referes#2')
    select * from a
    select * from b
    delete from a where num = 1
    select * from a
    select * from b
    Sridhar,
    Thanks a lot for your help.My exact need was to delete records in 50 tables starting with the key table for a specific condition in the key table.
    Assume table A has 100 records,B 200 records,C 150 records,D 400 records, etc
    When i want to delete some records in table A, i will not be able to do that as child records exists in table B and this structure will carry on till that last table in my application. How do i delete those specific records
    Venkatesh

  • Switching Tracks;Disable Record Mode

    Is there a way to disable the automatic recording mode that happens when you switch tracks.When i'm cleaning up tracks and going between them with my monitors on,the red recording mode button turns on and feedback occurs when the built-in mics kick on.Thank you.

    That's something for the "things I'd like to see changed" list.
    It never made sense to me since it seems to me that you choose a Track for recording only once or a few times, whereas you choose it for mixing, etc. many, many times and then always have to disarm it so there are no accidents.

  • How to trace a deleted record from a Infotype

    Hi all,
    My question is simple.
    When a record is deleted from a Infotype.
    How do I trace it?
    Which table do I have to look at for the list of deleted records in a day.
    The second question is," Does this table show the complete deleted record or does it just tell us, which Infotype and which date it was deleted."
    Warm regards,
    Hari Kiran

    Hi,
    Change log function is shut off by default. If you want trace deletion action of a certain infotype, pls check following steps:
    1-Tcode:SCDO
    2-Config view:T77CDOC
    3-Report:RHCDOC_DISPLAY
    After step1 and step2, report RHCDOC_DISPLAY will show the deletion records of a certain infotype
    Br,Kee

  • Library deleted - Record iPod tracks on cd

    I deleted all my itunes library (and all downloaded tracks), and now, I have all these tracks in my iPod, but I can´t record it on cd, or copy at new iTunes library... Any ideas?

    Welcome to Apple Discussions!
    You cannot burn a song onto a CD if it is only on your iPod (and not on your computer). You cannot move songs from iPod to computer using iTunes either.
    You can use this software to move songs from iPod to computer (and into iTunes)...
    YamiPod
    Once the songs are on your computer you can burn them to a CD (through iTunes).
    btabz

  • I just downloaded an album from itunes and 2 of the tracks will not play at all, they cut off. I need help with this??

    I just downloaded an album from itunes and 2 of the tracks will not play at all, they cut off. I need help with this??

    Does the track play correctly in Quicktime Player?  If it does then it is an iTunes issue.  If it doesn't then it is possible the file was not completely downloaded, or is corrupt.
    Downloading (using iOS or computer) past purchases from the App Store, iBookstore, and iTunes Store - http://support.apple.com/kb/ht2519 - enabled with iTunes 10.3 and newer; not available in all countries; apps, books (not audiobooks), music, t.v. shows, and movies (some - not all studios have permitted this). Movies currently available in the USA only. Downloading previously purchased movies and TV shows requires iTunes 10.6 or later.  Discontinued items not available. For items not included in the iCloud list (e.g., ringtones), or locations or computer systems where iCloud is not (yet?) available, you only get one download per fee paid. 
    If it can be downloaded again, delete the track from iTunes.
    Select the store on the left side of iTunes.
    Click on Purchased on the right side under Quick Links.
    You can re-download your available previous purchases.
    If it is corrupt and you cannot download it a second time, contact Apple.  Contact iTunes Store support staff through the report a problem links in your account history or,
    iTunes Customer Service Contact - http://www.apple.com/support/itunes/contact.html > Get iTunes support via Express Lane > iTunes > iTunes Store

  • I tried to sinc my photos and i ended up deleting off my phone all the pictures.  i only ended up with one folder, and i cant figure out how to put rest of folders from my computer back on my phone.....help

    i tried to sinc my photos and i ended up deleting off my phone all the pictures.  i only ended up with one folder, and i cant figure out how to put rest of folders from my computer back on my phone.....help
    and on a second problem.  I need to know for sure that my contacts are backed up on my computer

    Create a parent folder on your computer to store the named folders of photos that you want transferred to your iPhone. Under the Photos tab for your iPhone sync preferences with iTunes, select the parent folder. All named folders of photos within will be transferred to your iPhone as separate folders or albums.
    Regarding your 2nd question, this should be easy. Your contacts should be available on your computer with or without an iPhone or any cell phone, which can be lost or stolen.
    Although contacts are included with your iPhone's backup which is updated by iTunes as the first step during the iTunes sync process, not a good idea to depend on this either since the iPhone backup includes a significant amount of other data. Contacts are designed to be synced with a supported address book app on your computer. With Windoze, this can be with Outlook 2003, 2007, or 2010 along with syncing calendar events and notes, or with the address book app used by Outlook Express with XP and by Windows Mail with Vista and Windows 7 called Windows Contacts for syncing contacts only.

  • How do I reorganize my photos on iPad 2?  I need to move (not copy) photos from one album to another.  When I use the copy function to another album, and then try to delete an image from the original album, the system wants to delete the photos from all a

    How do I reorganize my photos on iPad 2?  I need to move (not copy) photos from one album to another.  When I use the copy function to another album, and then try to delete an image from the original album, the system wants to delete the photos from all albums.  Please help.

    You can't do it directly on the iPad - the new album functionality basically only allows you to copy photos into those new albums, you can't move them. The way that I think of it as working is that you are just creating pointers to the photos in those new albums, so if you then delete the original photo on the iPad you therefore automatically delete all the pointers to it.
    If you want to re-organise your albums then you will need to do it on your computer and then sync those albums over to the iPad

  • All drums record, only closed hi hat plays back.

    When I play live drums using my new Univox electronic drums through USB to a software instrument track, accessing an Ultrabeat kit, I can hear all drums while recording and see all midi notes in the piano roll but only the closed hi hat plays back. I never had this problem with my Alesis Control Pad. Any idea why this is happening and how to fix it? The Univox pads have controls for midi 'voice', 'volume' and 'note' only. The Alesis has a control for midi channel so I thought this may be the problem but it still occurs when I select 'all midi channels' for the input and in any case, all the midi notes appear to be recorded, based on the piano roll. They just don't play back, except the closed hi hat. I'm using Logic Express 8 on a G5 dual.

    The problem was a bad connection with a phono plug.
    I had the problem with iTunes, got both channels with another audio editor, and came back to iTunes, with only one channel.
    The sneaky phono plug got me thinking it was a problem with the the iTunes update.
    Cheers
    Mike

  • I want to use Cloud to sync contacts only, but ALL of my pictures (20,000) used up my space and now need to be removed. Can I do this and how?

    I want to use Cloud to sync contacts only, but ALL of my pictures (20,000) used up my space and now need to be removed. Can I do this and how?

        Making sure you are able to manage and maintain your cloud storage is very important! auntthoo, please use this FAQ to help you manage and delete unwanted content from your VZ Cloud! Just scroll about a quarted of the way down, and under the General Section, you will see instructions for this feature!
    NicandroN_VZW
    Follow us on twitter @VZWSupport

  • DTP Indicator Only Get Delta Once: How to handle deleted records in source

    Hi colleagues,
    I have checked some messages and blogs, but could not find any solution for deleted records in source system.
    My source system is not able to delivere delta for my table of interest. So I checked "Only Get Delta Once" in my DTP and made some tests.
    It works very well for changes of existing records of the source table.
    But, SAP help on this features wirtes:
    ...If this is not logically possible because, for example, data is deleted in the source without delivering reverse records, you can set this indicator and perform ...
    I checked this feature by selecting less data from source at the second load from the same table. But recordmode does not get an deletion flag for the now missing records. So, the indicator "Only Get Delta Once" does not work like BI standard delta mechanism?
    What is wrong?
    Thanks and regards,
    Wolfgang

    Hi,
    If you select the option 'Only get delta once', then every request in the PSA will only be loaded into the Data target once. For example. If you load a full request into the PSA through an InfoPackage and then load it to the Cube. In a snapshot scenario, when the new full load comes to the PSA you will need to delete the previous request from the cube before loading the new request.
    But if you delete the previous request from the cube, and not from the PSA - and if you haven't checked the 'Only get delta once' flag, when you execute the DTP, it will load both previous and the new requests from the PSA to the cube. In order to avoid this you have 2 options:
    1. You can delete a request from the PSA after every successful load into the Cube OR
    2. You can check the 'Only get delta once' flag in the DTP so that it won't load any request it has loaded into the cubes previously even if it was deleted from the cube.
    Using the second option de-couples the PSA maintenance from your regular data loading and also saves you an additional step of deleting the PSA request in your process chain.

  • HT1923 In trying to delete the Apple file in the Program/Common File I can delete all contents except the Internet Services folder.  Thus preventing me from deleting the Apple FIle.  Error message says I need permission to delete this file.  How do I proc

    Trying to delete the Apple Folder from Program Files/Common Files.  I can delete all the contents except for the Internet Services folder which prevents me from making the deletion.  The error message says "you need permission to delete this file".
    Discovered this problem when trying to upgrade from my 3G iPhone to a new 5S iPhone unsucessfully.

    See note 3 of Troubleshooting issues with iTunes for Windows updates.
    tt2

Maybe you are looking for

  • Newbie question about entity and view objects

    Hi everyone, My first ADF application in JDeveloper is off to a difficult start. Having come from a forms background, I know that it is necessary avoid using post-query type lookups in order to have full filtering using F11/Ctrl+F11. This means creat

  • InDesign for a $25 a year fee?

    Just bought a new macbook pro and in an email I can no longer find I read that you can use ID (InDesign) for a fee of $25 annually?!? Is this right and if it is can someone tell me how the heck to buy it. On another note how much is PS (Photoshop) an

  • Session in JavaFX 2.0

    Hi I would like to execute few expressions built in Expression Builder and therefore i need Session. Does anyone know how to create or initialize session in JavaFX? I have this code and at the end I need to execute it (run it) using Session: Expressi

  • Installed lightroom 5. Downloaded and installed update 5.7. Camera Calibration Question.

    Working with both Canon (6D) and Fuji (X-T1) RAW images. Can not locate any camera calibration info for either camera's raw files. Nothing listed in the camera raw folder for any camera. Everything I have read seems to tell me that there would / shou

  • Satellite A100-206 supervisor password issue

    HI We have a Satellite A100-206 in the office. A colleague trying to protect the laptop has set user password in bios. I don't know what exactly she do but at the bootup a password is requested. Then she ask me to remove the password so I have typed