Data vanishing after some time

Hi,
We have enhanced standard info type 9 & added a custom field.
in PAI defaulting some value to this custom field.
In PA30 when we make changes to existing records it defaults the valu in the custom field and when we save it it saves to data base.
After some time the value in this field vanishes.
Any idea on this?

Hi
Create Audit log for infotype 0009 and check the user by which record is changed.
To create Audit log, make entries in -
1. V_T585A
2. V_T585B
3. V_T585C
Then run the report RPUAUD00 or tcode PC00_M16_UAUD (Payroll audit trail). Check if the record is changed by the user used to schedule background job.
Regards,
Rupesh
Edited by: rumhat on Apr 16, 2011 10:38 AM

Similar Messages

  • On launching firfox v3.6.15 on windows vista this error message 'Script: file:///C:/Program%20Files/Mozilla%20Firefox/components/nsBlocklistService.js:648' is shown, after some time FF stops responding.

    I've noticed that it is taking longer for Firefox to start. On launching the apps I get this message ' I've noticed that it is taking longer and longer for Firefox (always the most up-to-date version) to start. After some time FF stops responding

    Create a new profile exclusively for the 4.0 beta version and create a desktop shortcut with -P "profile" appended to the target to launch that profile.
    * http://kb.mozillazine.org/Testing_pre-release_versions
    * http://kb.mozillazine.org/Creating_a_new_Firefox_profile_on_Windows
    * http://kb.mozillazine.org/Shortcut_to_a_specific_profile
    * http://kb.mozillazine.org/Using_multiple_profiles_-_Firefox

  • RMI UnmarshalException Occurs after some time

    Hi,
    I have a client server application that talks via rmi. My client saves data to a server or gets data by passing in parameters that include string, boolean and a Hashtable. The data is saved and retrieved many times. However, after some time, the RMI can't even find the method. That is, the client calls a method and I get a unmarshalling exception from the client, basically stating that it can't find the method.
    Here is the method in my interface, the method in question is the override method, the getLast works fine all the time:
    public interface Admin extends Remote
         Hashtable getLast(Hashtable setLashtHash) throws RemoteException;
    //override method can query or set a new data in the form of a hashtable. It return a Hashtable or null
         Object override(boolean setNew, String ticker, boolean getOverrideHash,boolean getLast, boolean getPrevious,Hashtable newOverride) throws RemoteException;
    Here's the implementation of override:
         synchronized public Object override(boolean setNew, String ticker, boolean getOverrideHash,boolean getLast, boolean getPrevious,Hashtable newOverride) throws RemoteException
              try{
              if(setNew)
                   if(newOverride!=null)
                   System.out.println("Saving override hash, entries=" + newOverride.size());
                   overrideHash=newOverride;
              else if(getOverrideHash)
                   if(overrideHash!=null)
                   System.out.println("Getting override hash entries=" + overrideHash.size());
                   return overrideHash;
              else
                   if(getLast)
                        if(overrideHash==null)
                             System.out.println("override hash is null");
                             return null;
                        OverrideStruct os=(OverrideStruct)overrideHash.get(ticker);
                        if(os.last!=null)
                             System.out.println("Last price for ticker " + ticker + " is=" +os.last);
                             Float last=os.last;
                             return last;
                        return null;
                   else if(getPrevious)
                        if(overrideHash==null)
                             return null;
                        OverrideStruct os=(OverrideStruct)overrideHash.get(ticker);
                        if(os.previous!=null)
                             Float previous=os.previous;
                             return previous;
                        return null;
         }catch(Exception e)
              System.out.println("Unknown Exception caught in override function");
              e.printStackTrace();
              return null;
    Here is the exception, please help.
    java.rmi.ServerException: RemoteException occurred in server thread; nested exce
    ption is:
    java.rmi.UnmarshalException: invalid method hash
    java.rmi.UnmarshalException: invalid method hash
    at sun.rmi.transport.StreamRemoteCall.exceptionReceivedFromServer(Unknow
    n Source)
    at sun.rmi.transport.StreamRemoteCall.executeCall(Unknown Source)
    at sun.rmi.server.UnicastRef.invoke(Unknown Source)
    at AdminImpl_Stub.override(Unknown Source)
    at StocksTable$12.run(stockstable.java:481)
    Please help,
    Thanks Steve

    By the way, this is how my server calls the client:
    Hashtable otable=(Hashtable)a1.override(false,new String(""),true,false,false,new Hashtable());

  • RMI: UnmarshalException, can't find method after some time.

    Hi,
    I have a client server application that talks via rmi. My client saves data to a server or gets data by passing in parameters that include string, boolean and a Hashtable. The data is saved and retrieved many times. However, after some time, the RMI can't even find the method. That is, the client calls a method and I get a unmarshalling exception from the client, basically stating that it can't find the method.
    Here is the method in my interface, the method in question is the override method, the getLast works fine all the time:
    public interface Admin extends Remote
    Hashtable getLast(Hashtable setLashtHash) throws RemoteException;
    //override method can query or set a new data in the form of a hashtable. It return a Hashtable or null
    Object override(boolean setNew, String ticker, boolean getOverrideHash,boolean getLast, boolean getPrevious,Hashtable newOverride) throws RemoteException;
    Here's the implementation of override:
    synchronized public Object override(boolean setNew, String ticker, boolean getOverrideHash,boolean getLast, boolean getPrevious,Hashtable newOverride) throws RemoteException
    try{
    if(setNew)
    if(newOverride!=null)
    System.out.println("Saving override hash, entries=" + newOverride.size());
    overrideHash=newOverride;
    else if(getOverrideHash)
    if(overrideHash!=null)
    System.out.println("Getting override hash entries=" + overrideHash.size());
    return overrideHash;
    else
    if(getLast)
    if(overrideHash==null)
    System.out.println("override hash is null");
    return null;
    OverrideStruct os=(OverrideStruct)overrideHash.get(ticker);
    if(os.last!=null)
    System.out.println("Last price for ticker " + ticker + " is=" +os.last);
    Float last=os.last;
    return last;
    return null;
    else if(getPrevious)
    if(overrideHash==null)
    return null;
    OverrideStruct os=(OverrideStruct)overrideHash.get(ticker);
    if(os.previous!=null)
    Float previous=os.previous;
    return previous;
    return null;
    }catch(Exception e)
    System.out.println("Unknown Exception caught in override function");
    e.printStackTrace();
    return null;
    Here is the exception, please help. Does anyone know why the exception is "invalid method hash"? I don't understand why it's saying that, I am calling method override(....).
    java.rmi.ServerException: RemoteException occurred in server thread; nested exce
    ption is:
    java.rmi.UnmarshalException: invalid method hash
    java.rmi.UnmarshalException: invalid method hash
    at sun.rmi.transport.StreamRemoteCall.exceptionReceivedFromServer(Unknow
    n Source)
    at sun.rmi.transport.StreamRemoteCall.executeCall(Unknown Source)
    at sun.rmi.server.UnicastRef.invoke(Unknown Source)
    at AdminImpl_Stub.override(Unknown Source)
    at StocksTable$12.run(stockstable.java:481)
    Please help,
    Thanks Steve

    By the way, this is how my server calls the client:
    Hashtable otable=(Hashtable)a1.override(false,new String(""),true,false,false,new Hashtable());

  • OAS4081 on RH6.2 hangs after some time

    I installed OAS4081 on Redhat6.2. It seems to work fine... for a couple of hours. After some time (ranging from several hours to one day, depending on the activity I think) the listener does not respond anymore. Even a 'telnet <host> 80 - GET /' does not return anything. There are no processes taking up cpu-time. Memory usage (using top) seems ok (150Mb total). The only way to solve, it to 'owsctl stop -s website40', but still some processes remain and need to be killed -9. Then restarting the website makes it ok again.
    Also using 'vmstat 1' I have the impression that free memory is decreasing slowly (max 1Mb/5min). But when the website hangs, there is still enoug free memory (+200Mb).
    If anyone has the same experience, or any tips, please let me know. We would like to use this website in a production environment.
    I use only PL/SQL on an 8.1.5 database on a remote machine.
    Geert
    [email protected]
    P.S. I applied the /pfoo/stat patch as described in the forum elsewhere.

    We haven’t managed to repro this problem yet – we’ve run it on a couple of different machines using 2.5 and tested it repeatedly and can’t get it to fail. So, we have some more questions:
    * What mode are you running in? GPU,CPU or Flash?
    * If GPU, do you only see this hang in GPU mode, or can you reproduce it in CPU or Flash mode?
    * If GPU, what is the date and version number of the NVIDIA GPU driver you is using? (and is it up to date – new drivers can be downloaded here http://www.nvidia.com/Download/index.aspx?lang=en-us)
    * When you hit "Build and Run" are you changing anything? (e.g. editing the filter code, changing modes, changing images etc.)
    * Can you make the images you’re using available to us?
    Thanks
    Bob

  • After downloading ios 8 on my i pad air 16 GB, my i pad keeps on restarting on its own after some time?  any idea how can it be rectified?

    after downloading ios 8 on my i pad air 16 GB, my i pad keeps on restarting on its own after some time?  any idea how can it be rectified?

    Please tell me that it has NEVER been jailbroke.  If it has not been jailbroke, here are some standard repair procedures:
    First, try a system reset.  It cures many ills and it's quick, easy and harmless...
    Hold down the on/off switch and the Home button simultaneously until you see the Apple logo.  Ignore the "Slide to power off" text if it appears.  You will not lose any apps, data, music, movies, settings, etc.
    If the Reset doesn't work, try a Restore.  Note that it's nowhere near as quick as a Reset.  It could take well over an hour!  Connect via cable to the computer that you use for sync.  From iTunes, select the iPad/iPod and then select the Summary tab.  Follow the on-screen directions for Restore and be sure to say "yes" to the backup.  You will be warned that all data (apps, music, movies, etc.) will be erased but, as the Restore finishes, you will be asked if you wish the contents of the backup to be copied to the iPad/iPod.  Again, say "yes."
    At the end of the basic Restore, you will be asked if you wish to sync the iPad/iPod.  As before, say "yes."  Note that that sync selection will disappear and the Restore will end if you do not respond within a reasonable time.  If that happens, only the apps that are part of the IOS will appear on your device.  Corrective action is simple -  choose manual "Sync" from the bottom right of iTunes.
    If you're unable to do the Restore (or it doesn't help), go into Recovery Mode per the instructions here.  You WILL lose all of your data (game scores, etc,) but, for the most part, you can redownload apps and music without being charged again.  Also, read this.

  • Process.getInputStream() block after some time

    Hello!
    First sorry for my bad english. I have a problem. I hope anybody can help me!
    I have this source snipplet
    this.Main.ffmpeg = runtime.exec(cmd);
    this.is = this.Main.ffmpeg.getInputStream();
    while(true) {
         d = this.is.read();
         if(d == -1) {
              //End of file
    }The subprocess is ffmpeg with piped output (binary data)
    After some time, in this case about 10-15 minutes, the read() function blocks running. I dont understand why, because ffmpeg is still running (not running because it is waiting for output read).
    Can anybody help, why read blocks my loop, and why not read more data?
    Thanks!

    I made some test.
    a.)I run process the same process without my application in a shell: ffmpeg -i ..... - > /dev/null.
    The process hasn't stopped producing output. I tried many times.
    And...
    I tried my java program with "cat /dev/urandom". It hasn't blocked the read() function for a long long time.
    So I think something wrong with binary data (I can't think another thing). Something isn't good for InputStream.
    b.) 'd' is int, but a some lines later I do a cast to byte:
    if (d != -1) {
        this.Main.buffer[this.Main.written_byte++] = (byte) d;
        num++;
    } else {
         break; //from is.read() loop
    }I don't thik this can be problem.
    Maybe I need to read not bigger blocks, with read(Byte[] arg0, int arg1, int arg2)?

  • Cannot erase authorization. "Unable to erase authorization. Please try after some time." Please help!!

    I am having a number of problems with Digital Editions, and I have tried the chat options numerous times but no one seems to be able to help me. I cannot express how disappointed I am with Adobe. I have an ebook that I paid a lot of money for and I need to access it for work, but when I try to download the e-book I get the error message E_ACT_NOT_READY. The forums say I need to deauthorise my account, but when I try to erase authorization I get the message "Unable to erase authorization. Please try after some time." This has been happening for weeks. For 2 weeks I have been trying to solve this problem. Can somebody please help me or give me a phone number to call to reach adobe? I am desperate at this point.

    If due to some reason, you are unable to deauthorize ADE, follow the below steps:
    Mac:
    1. Go-> Go to folder.
    Go to folder dialog will appear.
    2. Type   ~/Library/Application Support/Adobe/Digital Editions
    drag the activation.dat file to the trash.
    ADE will be deauthorized now.
    Now Authorize ADE again.
    ADE will be deauthorized now.
    Now Authorize ADE again.
    Windows:
    Choose Start > Run.
    In the Open text box, type regedit and then press Enter. The Registry Editor opens.
    In the left pane of the Registry Editor, locate the following registry key:
    HKEY_CURRENT_USER\Software\Adobe\Adept
    Right-click the Adept key and choose Delete.
    In the Confirm Key Delete dialog, click OK.
    Your authorization will be deleted.
    ADE will be deauthorized now.
    Now Authorize ADE again.

  • How to handle TDMS -2519 error that appears after some time?

    Dear all,
    I am having two compactRio devices (cRIO-9074) that are applied for data logging and control. As is convenient, one deterministic loop handles the data acquisition, while another loop handles the data storage.
    The data storage loop basically creates a new TDMS file per data set that is subsequently stored to the disk.
    The whole software operates as expected for some time (at least one day without any issues), but then I get a File I/O error -2519 that is thrown by TDMS open. This error occurs after some time on both compactRio systems. How should I handle this error properly and what may be the probable cause?
    Upon system restart the error disappears and the system continues logging. Therefore, when having this error, I restart the system automatically, but this is to my opinion no proper solution. The fact that the error is cleared upon system restart, seems like it is a resource problem as outlined in: http://forums.ni.com/t5/Real-Time-Measurement-and/2519-error-trying-to-create-a-TDMS-file/td-p/26546... There they recommend using the FPGA programming mode to save on resources. However, I would like to continue using the Scanning Mode Interface instead. To better dedicate the processor resources, I changed the execution options of the different loops and gave Priority to the data acquisition and data storage loop. I also distributed the processes in different Execution Systems, to optimally divide tasks within the real-time processor.
    When I manually neglect the error (just clear the error in the data storage loop), the issue remains for the following data sets that need to be processed. So once the error is thrown, it reoccurs upon trying to store each subsequent data set.
    I also consulted http://forums.ni.com/t5/Real-Time-Measurement-and/tdms-2519-error/m-p/2569381/highlight/true#M13920 where the same error is reported and the solution is to update a .dll file in the installation. However, the installed software in my case appears to be okay. Also in that case, the problem occurred immediately, while in my case the problem arises after some time. Again this indicates towards a resource issue.
    Can you please provide me with some possible solution to overcome this problem? I am looking forward to your opinions. Contact me if anything is unclear within my explanation, or you need additional information.

    Hi gielvdbroeck,
    Good job for the perfect description and for the well researched topic!
    The first thing that comes to my mind is to Format and reinstall the software on the cRIO. This will make sure that you have a clean installation and there is no corruption in the OS.
    One more thing to get into account is the memory. If you do not have enough memory where to store the file it's possible to throw this error. 
    Best,
    Bozhidar

  • My ISP requires a http login. I can use the iPad fine if I am logged in on a PC connected to the same wifi network, but if I login on safari on my ipad, the connection drops after some time.. any workaround?

    My ISP requires a http login. I can use the iPad fine if I am logged in on a PC connected to the same wifi network, but if I login on safari on my ipad, the connection drops after some time.. any workaround?

    TJBUSMC1973 wrote:
    The iPhone is working, as designed and advertised.  In this case, the user failed to educate themselves properly, either by proper research or asking the right questions, before purchasing the device.
    I understand that the OP failed to do research. But then, I wasn't replying to the OP. I was replying to Chris. I have Verizon. I can talk and use data at the same time with my Droid Maxx. Therefore, the problem is not just with the network. It would be technically possible for an iPhone to do that on Verizon/Sprint if Apple had chosen to use a different chip, such as the kind other phone manufacturers have elected to use.
    Of course, this is probably all irrelevant to the OP's issue. It was merely a point of clarification, especially for those people who are used to being able to use both voice and data at the same time on Verizon. When they switch to an iPhone, they are often surprized at the limitation.
    Best of luck.

  • Kinect is not firing MultiSourceFrameArrived event after some time

    Hi,
    I am using Kinect v2 with EmguCV in my application. I am performing some image processing task on the acquired frame. I noticed that after some time (1-2 minutes) the Kinect is not firing MultiSourceFrameArrived event.
    Below is the snippet of the code-
    public partial class KinectForm : Form
    KinectSensor kinect;
    MultiSourceFrameReader reader;
    CoordinateMapper coordinateMapper;
    public KinectForm()
    kinect = KinectSensor.GetDefault();// Get the connected kinect Sensor
    coordinateMapper = this.kinect.CoordinateMapper;
    reader = kinect.OpenMultiSourceFrameReader(FrameSourceTypes.Color | FrameSourceTypes.Depth);
    kinect.Open();// Start reading the data from kinect
    InitializeComponent();
    private void FrameArrivedDisplayMode(object sender, MultiSourceFrameArrivedEventArgs e)
    var reference = e.FrameReference.AcquireFrame(); // Get a reference to the arrived frame
    ColorFrame colorFrame = reference.ColorFrameReference.AcquireFrame(); // Access color frame
    DepthFrame depthFrame = reference.DepthFrameReference.AcquireFrame(); // Access depth frame
    if (colorFrame != null && depthFrame != null)// Do not proceed, if any frame is expired
    RenderColorPixels(colorFrame);
    RenderDepthPixels(depthFrame);
    // Lots of image processing is being performed here
    if (colorFrame != null) colorFrame.Dispose();
    if (depthFrame != null) depthFrame.Dispose();
    private void KinectForm_FormClosing(object sender, FormClosingEventArgs e)
    if (this.reader != null)
    this.reader.Dispose();
    this.reader = null;
    if (this.kinect != null)
    this.kinect.Close();
    this.kinect = null;
    private void displayModeRadioButton_CheckedChanged(object sender, EventArgs e)
    if (displayModeRadioButton.Checked)
    reader.MultiSourceFrameArrived += FrameArrivedDisplayMode;
    else
    reader.MultiSourceFrameArrived -= FrameArrivedDisplayMode;
    The above code was working earlier, but later on once I added more processing on the data, the event was not fired at all after some point of time.
    I am disposing the frame every time. Why this is happening? How to fix this problem?
    Thanks

    Carmine, Thanks a lot for prodding the references. I am in the process of designing it.
    Meanwhile, since as you said the above code was holding the frame data and disposing the frame after processing it, so I though of changing the style little bit. Please see the code below-
    private void FrameArrivedDisplayMode(object sender, MultiSourceFrameArrivedEventArgs e)
    var reference = e.FrameReference.AcquireFrame(); // Get a reference to the arrived frame
    ColorFrame colorFrame = reference.ColorFrameReference.AcquireFrame(); // Access color frame
    DepthFrame depthFrame = reference.DepthFrameReference.AcquireFrame(); // Access depth frame
    if (colorFrame != null && depthFrame != null) // Do not proceed, if any frame is expired
    ColorFrame.CopyConvertedFrameDataToArray(ColorFramePixels, ColorImageFormat.Bgra);
    depthFrame.CopyFrameDataToArray(DepthFrameData);
    colorFrame.Dispose();
    depthFrame.Dispose();
    //Here I am doing image processing
    Now, this way I am not using some of the frames but it should work, since the frame is disposed earlier.
    But still after some time, the event is not fired out.
    Why? Can you tell me the reason?
    Thanks
    Ravi

  • HT1476 when i charged my iphone on y pc after some time showing charger not supported with this accessory what have to do to solve it

    when i charged my iphone on y pc after some time showing charger not supported with this accessory what have to do to solve it

    If you did not do a reset of your iPod please try that (you will not lose any data)
    Reset iPod touch:  Press and hold the On/Off button and the Home button at the same time for at least ten seconds, until the Apple logo appears.
    If this does not work inspect the opening in your iPod where the cable connects. Look for any debris and clean it (a magnifying glass may be required).

  • Meetings created after some time start shoing up "re-created a meeting that was missing from your calendar" with no body information e.g. Lync meeting

    My manager is having a problem.  "randomly" reoccurring meetings in outlook will after some time start showing as this:
    "Exchange 2013 re-created a meeting that was missing from your calendar"
    With all the "meat" of the body is missing.
    We are running Exchange 2013 SP1 and Outlook 2013.  They look the same in OWA.  Meetings can be from different senders, different times etc.
    Any thoughts?

    Microsoft have confirmed this is an issue with Exchange Online via the O365 Dashboard:
    Current Status: Engineers have developed a fix and are currently testing to ensure successful remediation.
    Customer Impact: Affected customers are experiencing issues with incomplete meeting information for a limited number of invites set to occur between the dates of August 7th, 2014 and September 12th, 2014. For the affected calendar invites, customers may see
    meeting content replaced with a canned message stating, “Exchange 2013 has re-created a meeting that was missing on your calendar.” This issue is only affecting the body of the calendar invite for attendees, and not the meeting organizer.
    Also, this does not affect the title, location, date and time, or the attendee list.
    Workaround: As a workaround, customers can re-send affected calendar invites. Additionally, if the calendar invite contains Lync meeting information and the information does not appear in the message body, attendees may be able to use the ‘Join Lync Meeting’
    button that appears in Outlook, Outlook Web App (OWA), and the mobile client to join the scheduled meeting.
    Incident Start Time: Thursday, August 7, 2014, at 12:00 AM UTC
    Preliminary Root Cause: A recent update to the service caused the Calendar Repair Assistant feature to misidentify some meetings on the attendee’s calendar as missing. By design, the feature recreated the meeting invite, including the title, location,
    date and time, but replaced the body of the calendar invite with the canned message.
    Next Update: Monday, August 18, 2014, at 4:00 PM UTC

  • How the files are decreasing from RBS storage after some time i delete docs from document library, where shld I check the settings for this?

    HI
    I created a web application and configured  rbs storage ,
    I uploaded documents (for ex: 18 number)
     after uploaded  documents ,  and observed the RBS storage folder, number of files are increasing (39 number) , its working fine
    and also  I run the querys to check the rows increasing or not , (when I upload new doc rows are increased its fine also)
    select count(*) from alldocs
    Select count(*) from AllDocstreams
    but when I delete some docs from document library ,
    1)the doc itself deleted from document library
    2)when I check the rbs storage  there is no number of files are decreased(its still 39 files ), its same as  before doc deleted from doc library
    after some time I found the number of files are decreasing from RBS storage folder in sql server,
    here I want to know the how the files are decreasing from RBS storage  after some time, where  shld I check the settings for this? and how I control on it
    here how I know the settings for cleaning up orphan BLBOS how  these deleted BLOB
    adil

    1. WHen you delete the file from Sharepoint, it is still present in Recycle bin. This is a default setting in sharepoint for 30 days. Once files are deleted fro Recycle bin, it can also be delete from RBS
    2. There is a RBS cleanup job which deletes files from RBS. for more info check 
    http://mehuljamod.blogspot.in/2012/09/remote-blob-storage-maintainer-rbs.html

  • How can i Delete all foto from my iphone and after some time get them one more time on it but not as a new album :)?

    How can i Delete all foto from my iphone and after some time get them one more time on it but not as a new album, i want them in the camera roll ?

    How can I delete EVERY THING off my Mac and have it like new?
    Boot from the software install DVD and do an "erase and install" when prompted.

Maybe you are looking for