9.0 Standard will not start...

One of my users has a Dell laptop, running Windows 7 Pro (32bit), Office 2010 and has the Adobe Reader X installed. As of two weeks ago, he cannot open anything in 9 standard. Standard will not even run. You can open the task manager, run Adobe 9 and the acrobat.exe process runs for a few seconds and then disappears.
He is still able to print PDF files but when they've finished printing, they open in Reader X.
We've tried uninstalling/reinstalling, deleting registry keys/temp items. Nothing seems to be helping.
Any ideas?

do both keys have sub keys though? There should be quite a few subkeys in the HKCU hive.
The user maybe an Admin, but that doesn't guarantee the Admin has the correct permisisons to these keys. Do check.
The HKCU subkeys get created after first launch and close of Acrobat, so if you've removed Acrobat and re-installed it, i would expect to only see a few at the most under the HKCU hive.
Another possible reason this is happening is a conflicting process is stopping Acrobat from launching.
one quick test,
hold the shift key whilst launching acrobat, does acrobat launch?
You mentioned this started 2 weeks ago, other than installing reader X has anything else changed on this system.
A good way to troubleshoot is to use process monitor to create a log of the event.
the resulting log will show what reg keys and files are being accessed by any running process and if this is successful or not.

Similar Messages

  • Firefox version 3.5.16 will not start under Windows Vista and Windows 7 32bit

    I have a Windows Vista computer that will not start any newer version of Firefox than 3.5.16. The process will run (as seen in the Task Manager) but do nothing.
    I have since updated Windows to version 7 and the problem persists.
    I have tried uninstalling Firefox and all Addons (flash-player, pdf-reader) and deleting all files (even user-specific ones).
    Firefox can't be started in Profilemanger or safe-mode either.
    Is there anything short of reinstalling windows I can try?

    Solved it!
    It was a dodgy version of Firebug (1.6.2) running, which would kill the disable/update process. It was killing something on the first run that would corrupt my Firefox.
    How I fixed it:
    * Download the latest Firefox
    * Install Firefox 4 (as Standard) in-place upgrade
    * Before finishing, un-tick the "Run Firefox Now" button
    * Hit Finish
    * Find Firefox in the Start Menu and hold Shift and click the executable (safe mode)
    * Leave everything disabled
    * You should now have a working Firefox!
    Remove/update your add-ons as needed. I only had to upgrade Firebug in safe mode to get it working.
    Odd how the check for updates completely broke this Firefox, wonder what was so bad about Firebug.
    Hope this helps at least one other person! The "Run in Safe Mode" option is so hard to discover now when your browser is broken!

  • Coldfusion 8 service will not start.  Server log is ending with "Starting license..." (Emergency)

    Our server has gone down and the Coldfusion 8 service will not start.  There is no information in any of the logs for anything today since its gone down.  Ive checked the root logs directory as well as the runtime logs directory.
    The server.log is the only file being updated and it shows "Starting logging..." and then "Starting license..." and hangs.  The service does not start and the log gets nothing more after this point.  Memory continues to go up slowly, we've increased the start timeout tremendously with no effect.  There is little to no CPU usage.
    Our server is licensed and has never had this problem before.  It is the standard version.
    Our server is completely down and we are losing clients.  From what we can tell a windows update occurred, which we have since removed in case it was the issue, and when the server restarted CF did not come back.  We have been working on this for hours with no results.
    Please help and let me know anything you may need which will help diagnose our issue.
    Thanks

    So that others who see this know the solution.
    I started Coldfusion from the command line: c:\Coldfusion8\runtime\bin\jrun -start coldfusion.  This brought up all the commands as it worked through them.  From that we found that CF was looking for license.properties in the C:\Coldfusion8\runtime\lib folder.  We found a copy in the C:\Coldfusion8\lib folder.  For now we've left it running under my account and then after hours are going to try and see if the service will run now that we've copied that properties file to the other direcory.
    Probably simple to everyone on here but was new and odd to us.  Wanted to put what we found out here in case it happens to anyone else.

  • Tomcat service will not start with JRockit 8.0

    We are trying to use JRockit with Tomcat 4.0.1. It runs great as a console app
    but when we try to run it as a service it will not start. Has anyone had any luck
    with this.

    Hi Bob!
    You can use the jk_nt_service descibed and downloadble at
    http://members.ozemail.com.au/~lampante/howto/tomcat/iisnt/
    To make this work on JRockit you have to follow these instrcutions.
    But also do this:
    Make sure that you environment variables are set up correctly. Make sure
    that
    you have set your JAVA_HOME environment variable correctly, and that that
    "%JAVA_HOME%\bin" is available in your PATH environment variable before any
    other directory where any version of java.exe may exist. When running
    applications as Windows services it is crucial that you set these
    environment
    variables system wide. To do this open
    Start->Settings->Control Panel->System
    and select the Advanced tab. Click on the "Environment Variables." button.
    To
    set system wide environment variables you must edit in the lower part of
    this
    dialog, i.e. the part called System variables.
    When using jk_nt_service the Tomcat startup is defined in
    %CATALINA_HOME%\conf\jk\wrapper.properties
    Make sure that you set the three properties wrapper.tomcat_home,
    wrapper.java_home and wrapper.cmd_line are set accordingly.
    wrapper.tomcat_home must be set with the installation directory of tomcat
    wrapper.java_home must be set to the same value as the JAVA_HOME environment
    variable.
    The property wrapper.cmd_line defines the startup command.
    At the time of writing, this property should be set to
    wrapper.cmd_line=$(wrapper.javabin) -Xnohup
    -Djava.security.policy=="$(wrapper.tomcat_policy)"
    -Dtomcat.home="$(wrapper.tomcat_home)" -classpath $(wrapper.class_path)
    $(wrapper.startup_class) -config $(wrapper.server_xml) start
    for JRockit. Normally this command includes a non-standard option to stop
    the
    JVM from shutting down the process when a user logs off. For JRockit this
    non-standard option is -Xnohup, for the Sun JVM it is -Xrs.
    / Sten
    "Bob Siragusa" <[email protected]> wrote in message
    news:[email protected]...
    Thanks for your reply Sten.
    We slightly modified tomcat.exe to install our app as a service.
    Really the only changes we made were to the name of the service and weadded a
    few application parameters with -D. We still use the same startup andshutdown
    hooks to the Bootstrap jar. This is where we think there may be a
    problem.
    >>
    I am now trying to use SilverEgg Technologies open source Java ServiceWrapper
    but have not progressed very far yet.
    Bob
    "Sten Garmark" <[email protected]> wrote:
    Hi Bob!
    Are we talking Tomcat controlled by a Windows Service? If so, how are
    you
    trying to make this happen?
    Can you please point me to the documentation of this and the win32
    wrapper
    service that you are using?
    I would like to be able to re-produce your problem.
    / Sten
    "Bob Siragusa" <[email protected]> wrote in message
    news:[email protected]...
    We are trying to use JRockit with Tomcat 4.0.1. It runs great as aconsole
    app
    but when we try to run it as a service it will not start. Has anyonehad
    any luck
    with this.

  • Integration Service will not start

    When I try to start the SAP Business One Integration Service will not start.
    Windows says it could not start the service... see the System Event log...if this is a non-Windows service, contact the service vendor.
    This is what the System Event error is:
    The SAP Business One Integration Service service terminated with service-specific error 0 (0x0).
    System details:
    2003 Server Standard 32bit
    Duo Core processor
    4gb memory
    SqL 2005
    SAP 8.8 PL15
    Thanks for any help,
    Ron

    Hello,
    I have exactly the same error. I have set the log level to INFO and the log shows following messages when trying to start the service:
    [2011-02-02 15:42:49] [info] Commons Daemon procrun (1.0.2.0) started
    [2011-02-02 15:42:49] [info] Running Service...
    [2011-02-02 15:42:49] [info] Starting service...
    [2011-02-02 15:42:49] [206  javajni.c] [error] %1 ist keine zulässige Win32-Anwendung.
    [2011-02-02 15:42:49] [985  prunsrv.c] [error] Failed creating java C:Program Files (x86)SAPSAP Business One Integrationsapjre_6_64jre inserverjvm.dll
    [2011-02-02 15:42:49] [1280 prunsrv.c] [error] ServiceStart returned 1
    [2011-02-02 15:42:49] [info] Run service finished.
    [2011-02-02 15:42:49] [info] Commons Daemon procrun finished.
    Row 4 says that %1 is not a valid win32 application...?
    Windows Server 2008 64bit
    SAP 8.8 PL15 Server and Client
    SAP B1iSN 8.8 PL03 -> 64bit
    Installation procedure of B1iSN was run as administrator (after I removed old components of integration component).
    I have also tried to install it in different folders (c:program files and c:sap)
    Java JDK 1.5.0_22 is installed both for 32 and 64 bit. (Folders in progam files (x86) and program files)
    And I have tried to start tomcat6w manually from bin and bin_64 folder with administrator rights, everytime the same log entries are created.
    Can someone give me a hint where and for what I should look for?
    Thanks
    Sebastian

  • HELP urgently needed: My Sandberg FireWire for Laptop will not start on my T60

    Let me start with information on my T60:
    OS information: Microsoft Windows XP
    OS version: 5.10.2600   Service Pack 2
    Processor: x86 Family 6 Model 14 Stepping 8
    Memory: 3.135.856 kb
    BIOS version: 2.09  (79ETC9WW)
    Machine type-Model: 1951A47
    I have just got a new Sandberg FireWire for Laptop, a PC Card with 3 6-pins connectiont. After inserting the card in the PC Card slot, the Windows Device Manager tells me that there are problems with the card. Looking at the 1394 Card Properties the status says:
    "This device cannot start. (Code 10) - Click Troubleshoot to start the troubleshooter for this device."
    The troubleshooter did not solve my problem. I have tried disconnecting, re-connection, shut down Windows and start again etc.
    At Sandberg Help Desk they tell me that I have two slots in my laptop, one with a 16 bits bus and another with a 32 bits slots, and I should use the latter. It seems that I can use the lower slide only in my laptop and I cannot push the card into the upper slide. There is not enough room for it.
    Here is what I found on Lenovo's support site on my type & model:
     PC Card
    Conforms to the PC Card Standard 95
    Type II slot
    Both the 16-bit Release 2.1 card standard and the 32-bit CardBus card are supported.
    Have a look at these screen captures.
    What should I do to solve my urgent problem!? 
    Message Edited by pbl_ibm on 10-09-2008 05:10 AM
    Message Edited by pbl_ibm on 10-09-2008 07:27 AM
    Message Edited by pbl_ibm on 10-09-2008 07:45 AM
    Message Edited by pbl_ibm on 10-09-2008 07:45 AM

    garytr23 wrote:
    Sounds to me like a driver configuration problem.  Maybe something bad happened during driver install.  I would recommend uninstalling the device from device manager by right clicking on it and hitting uninstall.  Reboot the computer.  Have a go at it again.  Also, test your pcmcia port functionality by finding and plugging in a different card.  See if that works.  It might need repair.
    Message Edited by garytr23 on 10-09-2008 09:41 AM
    The status right now is:
    The PC Card reader works on my T60
    If I use a Firewire PC Card it will not start - as described above (on T60)
    The PC Card work properly on my T61P - and I succeeded importing a video file from a digital camera using the Fireswire PC Card.
    So what does a wise man do in this situation??
    Please help me as I urgently need to know how to solve this serious issue!! 
    Have you got an idea? Can I import the video in another way??
    Message Edited by perbuch on 10-12-2008 07:55 AM

  • Netlogon and Workstation Service will not start.

    I have a Windows 2012 R2 Standard guest installed on the HyperV Machine running windows 2012 R2 with SCVMM2012 R2.
    When I install the server the Workstation and Netlogon service will not start. I have only made a clean installation with no extras. I keep getting this error in th system event log:
    The Workstation Service depends on the Browser Support Driver service which failed to start because of the following error;
    Windows cannot verify the digital signature for this file. A recent hardware or software change might have installed a file that is signed incorrectly or damaged, or that might be a malicious software from an unknown source.
    Event ID: 7001
    I have searched forums and I have not been able to locate a solution that worked for me.
    I have tried to install from another media but the result is the same every time.
    Have anyone some suggestion to what I can do to get this working?
    Thanks
    Jacob
    ______________________________________________ /Jacob

    Hi Jacob,
    In addition to Tim’s suggestion, although the following article focuses on the SBS 2008, we can refer to the method it provides to see whether it can be helpful for us to
    fix the issue.
    Error: "The Workstation service depends on the bowser service which failed to start because of the following error: Windows cannot verify the digital signature for this file."
    when you try to start Workstation service on SBS 2008
    http://support.microsoft.com/kb/2568759/en-us
    Hope it helps.
    Best regards,
    Frank Shen

  • Mac will not start up....

    Need Help
    I am unable to start up my G4 DP1.25GHz MDD
    Once I push the startup button the Mac chimes
    A grey screen appears with a apple sign
    1 - 2 mins later it changes to the prohibitory sign and stays on it.
    I checked the hard disk in another mac and that works fine and when I put a new hard disk in the sick G4 it does the same ( will not start up)
    I have reset PMU
    Replaced the RAM
    Replaced Video Card
    Changed Battery
    Will not start from MAC OS Tiger or DiskWarrior 3.0.3 disks using C key
    If I start up in Single User Mode I get this message:
    Standard timeslicing quantum is 1000 us.
    vmpagebootstrap: 254386 free pages
    migtable_maxdispl = 70
    Copyright (c) 1982, 1986, 1989, 1991, 1993
    The Regents of the University of california. All rights reserved.
    using 2621 buffer headers and 2621 cluster IO buffer header
    Extension "com.apple.driver.KeyLargoATA" has no kernal dependency.
    ApplePlatformExpert::getGMTTimeOfDay can not provide time of day RTC did not show up
    Security auditing present
    disabled
    rooting via booting-uuid from /chosen: 36C2F349-48C8-3AC5-98C6-90426A8589A2
    Waiting on <dict ID="0"><key>IOProviderClass</key><string ID="1">IOResources</string><key>IOResourceMatch</key><string ID="2">boot-uuid-media</string></dict>
    Still waiting for root device
    Still waiting for root device
    Still waiting for root device
    Still waiting for root device
    Still waiting for root device
    Any Ideas??

    Try resetting PRAM with cmd-opt-P-R at boot.
    Continue holding that combination until the system beeps several times.
    there is also an open firware method of doing that, but I can't recall the coorect sequence...
    If that doesn't work, try holding down the OPT key at power on. Continue holding until the screen changes. (It shoulf go the the blue screen, then display icons of any drives it finds, including CDs)
    Select the drive with the appropriate OS logo superimposed, then click the arrow that points to the right.
    If that works, then open the control pane and reselect the appropriate drive as your system startup disk.

  • Message server will not start on AIX 6

    I have a standard ECC6 system running the 185 kernel and ORACLE 10.2.0.2 on AIX 6. which is giving me a problem. I also have 2 other systems apparently with the same configuration which operate perfectly.
    The problem I have is that if I stop the system the message server will not start. If I wait until the following day the message server starts pefectly. I have not been able to test stopping the system and waiting an hour or so and then restarting in the same day, so I do not know if the overnight wait is relevant.
    dev_ms contains the following:
    [Thr 01] Fri Jun 19 23:58:54 2009
    [Thr 01] WLM Tag 'HQS/MSG' successfully set for this process
    [Thr 01] MsSSetTrcLog: trc logging active, max size = 20971520 bytes
    systemid   324 (IBM RS/6000 with AIX)
    relno      7000
    patchlevel 0
    patchno    163
    intno      20050900
    make:      multithreaded, ASCII, 64 bit, optimized
    pid        254088
    [Thr 01] ***LOG Q01=> MsSInit, MSStart (Msg Server 1 254088) [msxxserv_mt. 1835]
    [Thr 01] SigISetDefaultAction : default handling for signal 20
    [Thr 01] ***LOG Q0I=> NiIBindSocket: bind (67: Address already in use) [nixxi.cp
    p 3227]
    [Thr 01] *** ERROR => NiIBindSocket: SiBind failed for hdl 1 / sock 8
        (SI_EPORT_INUSE/67; I4; ST; 0.0.0.0:3950) [nixxi.cpp    3227]
    [Thr 01] *** ERROR => MsSCommInit: NiBufListen(3950) (rc=NIESERV_USED) [msxxserv
    _mt. 10186]
    [Thr 01] *** ERROR => MsSInit: MsSCommInit (internal) [msxxserv_mt. 1886]
    [Thr 01] *** ERROR => main: MsSInit [msxxserv_mt. 5951]
    [Thr 01] ***LOG Q02=> MsSHalt, MSStop (Msg Server 254088) [msxxserv_mt. 5999]
    Regards,
    Paul Richardson
    Certified Netweaver, Portal and Migration Consultant
    Sandpiper I.T. Ltd

    Hi,
    Thr 01 ***LOG Q0I=> NiIBindSocket: bind (67: Address already in use) [nixxi.cp p 3227]
    Looks like port 3227 is already used. You can check the ports by netstat -a -n from your command prompts. Also check your settings in /etc/services and /etc/hosts files.
    Check your filewall rules/disable antivirus if any and give a go.
    Hope this helps.
    Manoj

  • I just upgraded to relaese to release 11.  My PC runs Windows 7.  itunes will not start.  I have run Norton to fix the registry errors and have rerated my PC twice.  No luck.  Can anyone provided a suggested solution?

    I just upgraded to relaese to release 11.  My PC runs Windows 7.  itunes will not start.  I have run Norton to fix the registry errors and have rerated my PC twice.  No luck.  Can anyone provided a suggested solution?

    This solved everything, after uninstalling IObit Advanced SystemCare iTunes would open with Bonjour enabled however iTunes wouldn't pick up the iPhone device. I did some more digging and a few of their other applications had been installed including Game Booster. Uninstalling that put everything back to normal.
    I have been given a new device by Apple who were really helpful and the guys have neever seen the docking connector disabling before. Coinsidence?
    Anyway in case this helps other people these were the symptoms (might help with searches):
    - Windows 7 Ultimate 64bit
    - iTunes 10 wouldn't open originally, just egg timer then nothing yet processes all started
    - Docking connector died on the device, wouldn't even trigger a standard USB connection or light up the device
    - Uninstalling iTunes etc didn't change anything
    - Disabling Bonjour worked but iTunes extremely unstable, seems frozen when syncing and the sync itself, especially with app transfer, was extremely slow and the other buttons were unresponsive after clicking for two minutes before screen would change
    Have sent feedback to IObit about this to see if there isn't something that can be done.
    Fantastic assistance and an incredible spot from b noir. If you come to the UK you need to drop me an email as I owe you a night out on the town!
    -

  • Flexnet licensing service  Service on local computer will not start

    was running acrobat 8 standard. downloaded 9 trial--wouldn't work)uninstalled 9 trail had problems with 8 not working and uninstalled 8 (leaving the resource\cemap\identity-h and identity-v files (locked unable to delete). figured full version of 9 from CD would work but after installing 9 and accepting eul i received "Licensing for this product has stopped working. You cannot use this product at this time. You must repair the problem by uninstalling ... " After 2 hours with tech support during which I ran the cs3 cleaner multiple multiple times in multiple configurations we traced the problem to the Flexnet licensing service- it flat will not start I get error message "Could not start the Flexnet Licensing Service service on Local Computer. ERROR -5: Access is denied."
    At that point tech support had me run some more cs3 cleaner stuff under another user and ended up with an error 127....
    does anyone know how to completely remove the flexnet licensing service and reinstall it cleanly? any help??

    was running acrobat 8 standard. downloaded 9 trial--wouldn't work)uninstalled 9 trail had problems with 8 not working and uninstalled 8 (leaving the resource\cemap\identity-h and identity-v files (locked unable to delete). figured full version of 9 from CD would work but after installing 9 and accepting eul i received "Licensing for this product has stopped working. You cannot use this product at this time. You must repair the problem by uninstalling ... " After 2 hours with tech support during which I ran the cs3 cleaner multiple multiple times in multiple configurations we traced the problem to the Flexnet licensing service- it flat will not start I get error message "Could not start the Flexnet Licensing Service service on Local Computer. ERROR -5: Access is denied."
    At that point tech support had me run some more cs3 cleaner stuff under another user and ended up with an error 127....
    does anyone know how to completely remove the flexnet licensing service and reinstall it cleanly? any help??

  • I have uninstalled and reinstalled Firefox, but it will not start up upon clicking

    Firefox will not start up. I have uninstalled, reinstalled, done a system restore, and nothing works. I can use Internet Explorer, Google Chrome, and it works fine, but all of my saved information on Firefox is not available.

    Many thanks.
    That suggests that another application has stashed old QuickTime componentry in your system files.
    So just in case we'll go looking for older QuickTime componentry in the most common locations for it to be stashed.
    First we'll need to change some view settings.
    In your Start menu, open Computer.
    In your Organise menu, select Folder Options.
    In the View tab, make sure that "Show hidden files and folders" is selected, and Hide extensions for known file types is unchecked.
    Click OK.
    Now in Computer, open your C:\ drive (or whichever drive you have your operating system installed on).
    Open the "Windows" folder.
    If you have a 32-bit version of Windows, open the "System32" folder.
    If you have a 64-bit version of Windows, open the "SysWOW64" folder.
    What files and folders can you see in there with QuickTime in the title? (In a standard installation of Quicktime you should be seeing precisely two files... QuickTime.qts and QuickTimeVR.qtx ... and no QuickTime folders whatsoever.)

  • Device Central will not start

    I've installed CS3 Master Suite twice every program works
    fine, but Device Central will not start. A message come up saying
    "You cannot open the application "Device Central" because it may be
    damaged or incomplete". So I poked around in the program Package
    and started the Device Central item using Terminal. The program
    start right up and runs like it should does anyone know how to fix
    this?

    I reported this same problem a couple of months ago with my
    MacBook and OS X 10.4.9. Upon trying Device Central again, it is
    now working perfectly. I've done nothing at all regarding a fix
    specific to this product. My guess is that there might be some
    dependency that is not satisfied with a standard
    installation.

  • My IBOOK has shut down, and will not start back up

    ok here is what has happened. yesterday my 1.2ghz g4 ibook started randomly shutting down. it would shut down and it would take a while of me pushing the power button to get it to start back up. when it would come on, it would switch between charging and not charged quite rapidly even though my power cord was in. now however, it has shut down and will not start up. the battery is fully charged. anyone have any ideas?

    I'm telling you. I have lost all faith with Apple. The old iBook I had, 800MHz G4, simply worked fine with no problem waking up or starting up, although it's just a bit slow. Now, I am super frustrated when it just couldn't wake up, either with the sleep light flashing or not, ie it's black screen initially and when I press the Power button once to get it back to life, it just stays black!!!
    So the only thing to do is to force power down by pressing the Power button for 10 seconds. Then I press the Power button once to start up, but it just stays black screen. I've left my iBook in that state for a day now, hoping that it will come back alife. But no! And the worst is, I had a similar problem starting up from wake just the day before. I called the Help Desk and they advised me step by step, from taking out the battery, to pressing OptionsCommand+PR, and OptionsCommand+OC, and doing Apple Hardware Test. The iBook seems to just work fine while on the phone with them. And barely 3 hours later, the thing just couldn't wake up. I've powered down and up many times now, and I've left it powering up, but still black screen till now (one day already).
    Finding out about resetting PMU on the support page, I've also tried that, but it still can't work.
    And you know what? I've sent this unit for repair 3 times already! First they say it's the HDD problem, so they changed that. Then when it still happened, they say it's the logic board problem, so they changed that for me. And again when it happened, they changed another logic board for me. So now, it's the fourth time, what do you think I should do? I don't think going back changing another logic board will help!
    I am in fact ****** off! If Macs are great, then why me? Why my iBook? I am telling this forum that we cannot accept a big corporation giving us sub-standard products. I've since read this forum carefully and found that many of us faced the same problem! We just cannot sit down idly and let the company get away with it. This is a warning to fellow users out there that face this same problem. Let us voice out our frustrations and make Apple give us some compensation for it. I say this because I depend on my laptop iBook for presentation to clients, and this happened exactly twice when I was in front of my clients. I don't mind losing face but can Apple compensate me for my loss of business and future business from my clients?
    Voice out strongly your unhappiness to Apple now!

  • System PI 7.11 will not start because of R3INLPGM error

    Dear experts,
    our PI 7.11 sap system will not start on the backup machine. We have two AS/400 machines using IBM iCluster.
    On the source node the PI system starts without any problems. If we switch over to the target node,
    the PI system will not start. Only the two subsystems R3_<instance> were started and the SAPSTRSVR jobs
    ran under QUSRWRK.
    In the pool files from SAPSTART we found the following errors:
    QPRINT:
    R3<SID>400/R3INLPGM: Error occured setting gid to R3GROUP.
    QPJOBLOG:
    *NONE      Information                 XXXXXXX  SAPINLPGM    XXXXXXX *STMT    SAPINLPGM   XXXXXXX *STMT
                                         From module . . . . . . . . :   O4TMKLIBIX                                                                               
    From procedure  . . . . . . :   prtjoblA                                                                               
    Statement . . . . . . . . . :   15                                                                               
    To module . . . . . . . . . :   O4TMKLIBIX                                                                               
    To procedure  . . . . . . . :   prtjoblA                                                                               
    Statement . . . . . . . . . :   15                                                                               
    Message . . . . :   SAPINLPGM: Error in ChangeGidToR3GROUP - check whether              
                                         R3<SID>400/R3INLPGM is owned by QSECOFR using adopted authority         
    But the authority from all libs and objects are same as on the source machine.
    Any idea?
    Best regards,
    Matthias

    Hello Matthias,
    Please log on as QSECOFR (or a user with SECOFR authority),
    ADDLIBLE SAPXIP71
    and run command
    FIXSAPOWN SID(*NONE) DIR('/QSYS.LIB/R3XIP400.LIB/R3INLPGM.PGM')
    Best regards,
    B. Wolf

Maybe you are looking for

  • PLEASE HELP - IPOD touch isn't recognised and I have tried everything!

    Up until I updated itunes to 7.6 my Ipod Touch was fine. Since then it is not recognised and I have tried everything - uninstalling/reinstalling itunes; resetting my Ipod, using another USB port. I have even tried to restore to the earlier version of

  • Will not load the webpage.

    It will not load the web page. It doesn't give an error message or say it timed out. The circle on the tab will spin for a little while then just stop, and nothing comes up. I'm uninstalled it, then re-installed it and still giving me this problem. I

  • I messed up my daughters ipod touch

    I was using my daughters ipod touch and it just quit like the battery went dead. I plugged it in and apparently that is not what it was. It will not work anymore. When I plug it in a faint blue screen comes on but nothing else. I have tried resetting

  • Multi system control architectu​re

    Hello, I am trying to develop an application to control and monitor two systems. The two system will be using a single CDAQ chasis to acquire and control the signals. The two system is identical in all aspect only the channels will be different. I am

  • How to remove Wallpaper showing behind apps?

    Hi Just updated to OS 4 and the wallpaper now shows up behind the apps continually. Any ideas how to get rid of and get back to a plain black background? Thanks for any help....