What happens to table when file is transfering ?

There is code in Z-program which puts a 'Z' in the blocked field of ZCCOD whenever a file is transmitted.
I mean file is transfering from SAP to mainframes
Can anybody tell what happens if the table is in <b>edit mode</b> (e.g., via SM30) at the time of transmit?  Do the changes get lost or do they get queued up or what?
Could you please you please explan in detail. You correct(no guessings please ) explanation is highly appreciated.

The Z-Program will update the database irrespective of the table being edited in SM30. The user won’t see the updated data until he comes out of the existing transaction and goes back again.
<b>Nothing is queued up.</b>
Also if the program updates the data and if the user editing the table in SM30 saves his changes, the changes made by the Z-program will be overwritten.
The best way to avoid this problem is to add a check in your Z-program. Use the function ENQUEUE_READ to check if the table key the program is trying to update is locked and perform further processing.
-Kiran

Similar Messages

  • If I delete a file in iCloud, what happens to the local file in ~/Library/Mobile Documents ?

    If I delete a file in iCloud, what happens to the local file in ~/Library/Mobile Documents ? Does it get deleted to?
    Hope somebody can help.
    Thx.

    I'm pretty certain that it gets deleted as well. If you try and open that mobile documents folder, it takes you to the iCloud drive folder. I've been searching for this same issue for the last 24 hours also as I inadvertently deleted my Keynote files stored on iCloud drive thinking I was just temporarily deleting Keynote from my iPad when upgrading to the latest iOS 8 version. (I needed space and thought, "Oh, I'll just reinstall later... Turns out I was in the iCloud storage area, not in my iPad storage area at the time and therefore deleted all my iCloud stored presentations. From every device.)

  • What happens to RandomAccessFile when seek operation fails?

    Hi,
    I wonder what happens to RAF when the seek() op fails - does the file remain open?
    I guess i should close it if fails, what is the best thing to do - protect or catch exception?
    Am i wrong about it?
    Thanks.

    I wonder what happens to RAF when the seek() op fails - does the file remain open?In the absence of evidence or documentation to the contrary that is what you should assume.
    I guess i should close it if failsWhy? All it means is that that offset doesn't exist within the file.

  • What happened to ADOBE workspaces files after being downloaded before retirement?

    What happened to ADOBE workspaces files after being downloaded before retirement?

    I had this problem as well! I was working on one of several projects I had, I'm pretty sure they were saved on the computer, my computer started to chug, I reset it, and they ALL disappeared! I can't find any of the files anywhere on the hard drive, but I also can't sign into the cloud to see if they somehow got moved. I reset again, and still nothing.
    When I try to log into the cloud it tells me the sync failed. Since I only just signed up for the subscription I don't know if it's common for it to go down, or what.

  • What happens to my podcast files stored on idisk for itunes?

    What happens to my podcast files stored on idisk for itunes?
    http://itunes.apple.com/us/podcast/mister-radio/id396811856

    Any webspace that provides enough data transfer to cope with your podcasts will do fine. Although check the terms & conditions of whichever webhost you go for, as some may have restrictions on just using their webspace for externally linked files, rather than a website as well.
    How much data transfer your podcasts use will depend on how popular they are. MobileMe webhosting allowed 200GB of data transfer per month. If you never went over that, then as long as the new host matches or exceeds that you'll be ok.

  • What happens in OBAW when a record in OLTP is updated ?

    Hello,
    I wonder what happens in OBAW when a record in OLTP is updated ?
    I mean... I've ETLed the record a couple of days ago, and it is there in OBAW. Now for some reason the OLTP is changed...
    Pls... when we do the new ETL (incremental) does that record in OBAW gets updated ?
    BTW... the OLTP in reference is EBS.
    Txs. for any help.
    Antonio

    That is where "Prune Days" in the Execution Plan Parameters comes into play. Data which has been updated in the source system since "Prune Days" ago is re-extracted.
    Hemant K Chitale

  • What happens to migrated idisk files after June 30th.

    what happens to migrated idisk files after June 30th?

    Just to be clear, there are no 'migrated files'. If you migrate, the iDisk remains untouched and accessible exactly as before (though you may need to sign in at System Preferences>MobileMe again). Whether or not you migrate, the iDisk will be teminated at the end of June and its contents erased.
    iCloud does not provide any equivalent facility, so you will need to find a third-party solution. This page examines some options:
    http://rfwilmut.net/migrate3

  • What happens to objects when you redeclare a new object?

    ... and is there a more proper way of "deleting" them from memory, or is it a case of waiting until the garbage collector in java sweeps them up?
    i.e.
    private CustomObjectType myObject;
    public final void myMethod() {
    myObject = new CustomObjectType("I am the first object");
    // do some temporary work with myObject
    /// now I need to do more work with another temporary object, so just replace the "link"
    myObject = new CustomObjectType("I am a second object");
    Is it better to declare new variables to hold this second object?
    Should a person declare the object to be null when no longer required?
    Do I ever need to worry about this, does the garbage collector sort out references for me?
    (Please go easy, still learning and don't really need to know this right now but I'm curious! :)

    What happens to objects when you redeclare a new object?If you go:
    Dog myDog = new Dog();
    and then go:
    Dog myDog = new Dog();
    you are replacing the first reference to Dog() with another one. I don't think it would make sense to do this because it is redundant.
    But if you go:
    static Dog myDog = new Dog();
    and then go:
    static Dog myDog = new Dog();
    then then second one will be ignored because the first one already assigned Dog() to myDog.. so the second one won't replace the first one - it will just be ignored or generate an error.
    is there a more proper way of "deleting" them from memory, or is it a case of waiting until the garbage collector in java sweeps them up?In c and c++ you have to think about when the life of an object ends and destroy the object to prevent a memory leak. But in Java the garbage collector takes this task on if a certain amount of memory is used. If you don't use a lot of memory the gc won't bother and the objects will be destroyed when you exit the program.
    You can use:
    finalize(){
    // insert code to be executed before the gc cleans up
    and if you call System.gc() (which you probably won't need to do) then the code in the finalize() method will run first e.g. to erase a picture from the screen before collecting the object.
    private CustomObjectType myObject;public final void myMethod() {
    myObject = new CustomObjectType("I am the first object");
    // do some temporary work with myObject
    /// now I need to do more work with another temporary object, so just replace the "link"
    myObject = new CustomObjectType("I am a second object");
    you could do:
    public class CustomObjectType{
        //this constructs an instance of the class using a string of your choice
        CustomObjectType(String str) {
            System.out.println(str);
        static void main(String[] args){
            CustomObjectType myObject = new CustomObjectType("I am the first object");//  This sends the constructor the string you want it to print
            CustomObjectType myObject2 = new CustomObjectType("I am the second object");//  This sends the constructor the string you want it to print
    }Bruce eckel wrote Thinking in Java 4th edition considered to be the best book on Java because of how much depth he goes into, although some recommend you should have atleast basic programming knowledge and a committment to learn to get through the book.
    I just started it and it helps a lot. Maybe u could borrow it from the library.. good luck!

  • What happens to replicat when a checkpoint table is accidentally removed ?

    Please let me know what happens when a active checkpoint table is removed?
    Does the replicat abend or does it pick from where it left off by reading the trail file.

    Hi,
    Oracle GoldenGatge keeps track of the details of the transactions that are replicated by two methods.
    1. Firstly and always GoldenGate writes to a checkpoint file which resides in the DIRCHK directory.If this Checkpoint File is lost or removed then GoldenGate loses track of your process.
    2. Optionally, you can create a CHECKPOINTTABLE during the creation of the Replicat Process. This Checkpoint table can be specified Globally in the ./GLOBALS parameter or separate checkpoint tables can be created for each processes.
    But Oracle highly recommends to create the Checkpoint table.
    When replicat starts, it will compare the checkpoint file with the checkpoint table. This has been brought because, in the event of failure, the checkpoint file and checkpoint table are referred or read by these processes and it gets started from the point of failure avoiding the re-capture and re-apply of the transactions.
    An another useful thing in using the Checkpoint table is, If you stop the Replicat process and flashback the target database and then start the replicat process again, you do not have to change or modify anything at the GoldenGate level. The Replicat process will just pick up as if you also flashed back the GoldenGate inspite of having all the trail files. This is because your Checkpoint Table will also get flashed back and the replicat process reads the checkpointtable and works accordingly.
    Regards,
    Veera

  • What happens to library when uninstalling iTunes? Please!!

    Silly question, I know...
    But as I'm experiencing the same problem as everyone else after updating to I Tunes 6 (computer crash + ipod not recognized by itunes), I want to uninstall and reinstall it...
    So, what happens to all my music files after I uninstall itunes?? Will they still be there after reinstall or lost forever??
    Thanks for your answers.

    I always wondered if my music would be gone if I uninstalled iTunes. It does not erase you're music.
    This might not be exactly the same problem but lots of people (myself included) had problems after installing iTunes 6.0. I did the following and it finally installed correctly.
    I went to
    http://support.microsoft.com/default.aspx?scid=kb;en-us;290301
    and downloaded the Cleanup utility near the bottom of that page. When it installs on your machine it will scan your computer for every installer every ran on you're machine. Only select iTunes and Qtime and delete those 2 installers. Then I went to add/remove programs and removed iTunes and Qtime. Prior to this Qtime would not unistall but now it did. Funny thing was there was no prompting by windows once I hit "remove/repair" in the "add/remove programs" function.
    Then rerun the iTunes 6.0.1 update. That had been failing to install Qtime prior to this but now it installed and I see all my music again and iTunes works. Let me know if this does the trick, I hope so.

  • What happened to TGA/Targa file format support?

    Tonight I tried to import some old scans of photos—I'm cleaning up my files and organizing. Well, back in the day (1993 or so) the scanning system I worked on used Targa (.tga) as its output format. So I have a number of them.
    When I tried to import them into Aperture, it would not accept them. I tried to drag and drop and do a manual import. On the manual import, the thumbnails wouldn't even appear.
    I get that Targa is not a common file format these days, and I don't see Targa in the list of supported file formats for Aperture 3, but what happened? TGA is in the list of supported file formats for Aperture 2.
    I'm a little concerned about having to convert all my Targas to TIFFs, but that's not the end of the world. What frightens me is: how many files did Aperture just throw away when I converted my library from Aperture 2 to Aperture 3? I don't know whether I imported any of my old Targas before upgrading to Aperture 3, but if I did, are they now gone?

    I seriously doubt they were deleted. Open up the library package folder then search for .tga within that folder.
    DLS

  • What happened to PSE10 Editor Files?

    I went to fire up my PSE10 Editor today and received and error message to the effect that the files couldn't be found; please reinstall.
    Then when I went to start the Organizer, I got the error message that online services could not be initialized...please reinstall. I can click through and get the Organizer to come up, however.
    What's happening? Where did the files go? Nothing was done to them via user initiated actions.
    I want to make certain that my Organizer data is not lost since I have spent hours tagging my photos and organizing them.
    Thank you !
    [ Jeff ]

    Peran:
    Thank you for your efforts on my behalf. Actually, this was installed from a retail package on discs. I eventually did speak to Adobe support, but they were not helpful in telling me "what happened," just to reinstall. This makes me a bit nervous since I don't want to lose any of my tags and EXIF data that I have carefully entered over the last few months.
    Later today, I might try to reinstall the editor.
    The Organizer is now telling me to reinstall because it can't initiate online services, but I am hoping that when I reinstall the Editor, this will address that as well.
    I didn't mention that I was working on a Macintosh running OS X 10.6.8
    This is somewhat disappoointing since I thought Elements would be a "stable" package. i was using GIMP which met most of my needs, but I thought a commercial package would be a more "stable" choice. I am now having my doubts.
    Once again, thank you!
    [ Jeff ]

  • What Happen into Tablespace, when Drop Any Object??

    Hi people.
    I have a question about the store into tablespace, What happen when you make the follow taks into database:ç
    When you drop a table??? Change the size into tablespace?? Reduce the Size on tablespace..??
    What are the diferents between Delete table and Truncate Table...Change the size into tablespace?? Reduce the Size on tablespace..??
    Thank a lot for your help and Answers..Because I can clear my mind in diferents concepts.
    Regards.

    lokimoix wrote:
    Hi people.
    I have a question about the store into tablespace, What happen when you make the follow taks into database:ç
    When you drop a table??? Change the size into tablespace?? Reduce the Size on tablespace..??
    What are the diferents between Delete table and Truncate Table...Change the size into tablespace?? Reduce the Size on tablespace..??
    Thank a lot for your help and Answers..Because I can clear my mind in diferents concepts.
    Regards.Well, you could test it for yourself and see for yourself . .
    However,
    Nothing you have described changes the size of the tablespace. Those actions simply free up previously allocated space within the tablespace, allowing it to be
    reused.
    DROP TABLE releases all the extents allocated to that table, allowing the space they occupied to be allocated to any segment that may need it - AND REMOVES THE TABLE FROM THE DATABASE (well, there are now recyclebin considerations, but that is a different question).
    DELETE just deletes rows from a table, freeing up space on the blocks that those rows occupied. All of the extents allocated to that table remain allocated to it but the space vacated by the deleted rows is available to be re-used by new rows within that table.
    TRUNCATE table releases all the extents allocated to that table, allowing the space they occupied to be allocated to any segment that may need it, BUT UNLIKE DROP TABLE, the table structure remains in place.
    The above is just a high-level description of the differences, there are some details that some people will call me out on, but for your level of understanding these are sufficient for the moment. You really, REALLLY need to spend more time in the Concepts manual.

  • What happens to my local files once I activate iCloud?

    Does my HD automatically delete everything and free up space?  Before I turn on iCloud  services and put my entire music and photo library 'up there' I want to understand what happens locally. I want to free up some HD space, but I'd like to keep a copy of everything locally on storage media.  Do I need to do that first?  Or do I need to manually clean up my HD once my content is pushed up to the cloud?

    Does my HD automatically delete everything and free up space?  Before I turn on iCloud  services and put my entire music and photo library 'up there' I want to understand what happens locally.
    What will happen:
    When you move a file from your internal drive to iCloud Drive, it will really be moved. Deleted from the internal drive and stored in iCloud.
    But once the file has been uploaded, the Mac will download a shadow copy of the file from iCloud, and this file will be stored locally on your Mac  in your user library and also be included in your Time Machine backups.  There is a short interval, where you neither can access the file in iCloud nor on your Mac.  It is safer to copy to iCloud and not to move.  Once you are sure, the document can be accessed in iCloud and uploaded successfully, you can delete the original.  But because of the shadow copies you cannot save any space on your Mac using iCloud Drive.
    Document types you can store on iCloud Drive:
    Basically, you can store any type of document on iCloud Drive, as long as it is smaller than 15GB.
    But for Music, it would be easier to use iTunes Match. This will sync your iTunes library between devices. And other than iCloud Drive, you can store the entire music library in iTunes Match and save space on your mac.
    For photos, iCloud Drive is not optimal.  You can store folders with photos, but they will not show up on your mobile devices in the Photos.app. And you cannot store your iPhoto Library or Aperture Library on iCloud Drive. Photo libraries need to be stored on a locally mounted drive. Shared volumes and cloud storage are not supported by iPhoto or Aperture.
    Apple is developing iCloud Photo Library (Beta). See this link:  iCloud Photo Library beta FAQ
    This library is already available on mobile iOS8 devices, but not yet on the Mac. It is supposed to be supported later this year, when Apple releases a Photos.app for the Mac. Until then, you can only access this photo library using the web interface at    https://www.icloud.com/  using the Photos(Beta) app on that page.

  • What happens to PR when the related PO is cancelled

    Hi guys
    What happens to the Purchase Requisition (PR) when the related Purchase ORder is cancelled..........!!
    What is the process..
    Regards
    Sreee

    If you check the box 'cancel requisition' when you cancel the PO, the req is cancelled, else the req is not cancelled and should become available again in the autocreate pool.

Maybe you are looking for

  • Memory riser question

    I have another 2GB (2 x 1GB) ready to install in my Pro when it arrives. I know that I should keep the 1GB (2 x 512) on one of the riser cards and put the additional memory on the other riser card. I've also seen it stated that the larger memory shou

  • Safari will not open in full screen mode

    After installing the 3-1-14 update from the Apps Store, Safari will not open in full screen mode when I click the double arrow in the upper right corner of the screen. If I try the View>Enter Full Screen it still will not open full screen. Prior to t

  • What is a resource in OIM - really?

    I'm trying to understand what I can do with resources, and how they can be manipulated (especially through the API.) From the documents, "A resource object is a virtual representation of the target system, and contains all entities related to the ext

  • Editable InDesign document

    Hello everyone, I'll have to supply a translation service technician developed a catalog in InDesign, the aim is to enable it to integrate texts into Chinese. Let me know if there are specific instruments to allow editing (limited) of the document to

  • HT204023 Troubleshooting speaker

    Hello.      I am having a problem with my built in speaker , I cannot clearly hear people ! Any advice