SAP JAVA GUI 7.00rev5 and IXOS

After upgrading to Java GUI 7 rev5  from Java GUI 630rev4 our IXOS viewer no longer works when called from within our R/3 system. This is also true when upgrading to any Java Gui 7 revision release.
The above works using Windows GUI 7.10 with IXOS.
Has archiving functionality been removed from Java 7?

Hello Robert,
please file a <a href="https://service.sap.com/message">bugreport</a> on component BC-FES-JAV and attache a trace file with following tracekeys (<a href="https://service.sap.com/sap/support/notes/683960">note 683960</a>) activated: CALL:EVENT:INFO:DESKTOP:GMUX:C_GMUX
Best regards
Rolf-Martin

Similar Messages

  • SAP Java Gui in Solaris 10 x86.

    Who run the Java Gui in Solaris 10 x86?
    After I installed Java Gui in Solaris 10 x86 and run guilogon, when I connect the server I created, I got the error message:
    Attempt to load shared library /opt/SAPClients/SAPGui7.00/binlibJPlatin.so failed.
    The library file exists, so either the program
    don't has the privileges to access the library
    or the library is not loadable by the shared object loader
    Technical information:
    Error location: GuiJniLoader.loadPlatinLibrary()
    Error message: /opt/SAPClients/SAPGUI7.00/bin/libJPlation.so:ld.so.1:java:fatal:/opt/SAPClients/SAPGUI7.00/bin/libJPlatin.so:wrong ELF data format:ELFDATA2MSB
    After I confirm the dialog, another error message appears:
    JniAgiLibAdaptor.<init>: Cannot load JNI library.
    I checked the supported OS, it doesn't contains Solaris 10 X86, but I think Solaris 10 was open source, just like linux, why doesn't SAP Java Gui support Solaris 10 X86? And now , how can I solve this problem?

    What you see is what happens when the Java runtime running on Solaris 10 x86 tries to load a library which is compiled for SPARC.
    Because of the native parts in SAP GUI for Java, compilations and installers are required for each OS - HW combination.
    The supported platforms can be seen in SAP note 954572. For Solaris only SPARC is currently supported.
    Because of the effort needed for compiling, testing, support etc. it is required to focus on OS - HW combinations widely used on desktop machines and Solaris 10 on x86 currently does not seem to be one of those.

  • Our business require to download & install SAP Java GUI 720. Able to download it but not to install due to "security preferences" restriction. Any suggestion?

    GE Energy requires us to use SAP for business. I downloaded the SAP Java GUI 720, can see it in the download window. But once I try to install it, the following message is shown: "SAP Java GUI 720 MacOSX.JAR” can’t be opened because it is from an unidentified developer. Your security preferences allow installation of only apps from the Mac App Store and identified developers."
    Please let me know if there is a way to change the security settings in order to install SAP on MacBook Air.

    Hello,
    To change the security settings go to:
    '''System Preferences''' >''' Security & Privacy'''.
    On the '''General Tab''' click the '''little lock''' in the lower left corner to '''unlock the general preference pane'''. Then select the ''''Anywhere'''' radio button beneath "'''Allow applications downloaded from'''" then confirm.
    If you need more assistance just ask for it :)
    Sincerly,
    Black Thunder.

  • Cannot read list of frontend printers - Printing in SAP JAVA GUI for MAC

    Hello,
    I am trying to print a Spool request in SAP Java GUI 7.10. I am working on Apple with OSX operating system. I get this error message -
    " Cannot read list of frontend printers " - Message no. PO781
    What do i need to do to take a print out from SAP on my Mac.
    Thanks
    Buddy

    Hello,
    which printing access method you are using?
    You might want to have a look at [note 821519|https://service.sap.com/sap/support/notes/821519].
    Best regards
    Rolf-Martin

  • How to Install and configure SAP Java GUI on windows 2003 sp1.

    Dear All,
    Can I step-by-step on how to install and configure SAP GUI for Java on windows 2003 sp1.
    Pls come with brief as I am completely new to Java and I am practicing the same on my home system first. I have latest SAP Java Pack with me.
    Regards,
    Dillu

    hi,
    Please check this link and install accordingly
    SAP GUI Family
    Regards,
    Naveen.

  • Lighter Java GUI than awt and swing?

    I had recently came across a company website (http://www.bambookit.com) where they developed a java gui library without using awt and swing (seems to what they claim). And on top of that it uses xml to generate the gui components (they call widgets) and the whole library size is only 95kb and supports java 1.1.x and above. Their demos on the applets loads super fast, never know/experience that java applets can actually be this quick. But this confuses me, how is it possible to develop a gui alternative to awt with the basic java classes and no dependency on awt? But since the applets are awt based, it means that they must have some dependencies.
    This is an extract from their website (that it seemed they did not use awt)
    "Java has a fundamental flaw in its paint thread that made it very difficult to build extremely large applications without getting severe performance and resource penalties (This affects both AWT and Swing based applications). It�s main repaint queue\thread when assigning paint regions to various controls uses the Graphics objects to �clip� them. On a Sun Solaris machine this does not cause any problems, however on a windows machine each Graphics object consumes a system resource/handle, (a limit of around 16,000 exists on Win 95 and Win 98 machines). Each Bitmap image, each font object, each icon consumes a single system resource or handle. If a full repaint is performed on an application containing 1000 controls, it would consume at LEAST 1000 system resource handles. If the application was updated many times a second, lets say 10 times a second, then that equates to 10,000 handles a second. This is not taking into account labels within controls, the various fonts styles and sizes created, the various images that get loaded. This could easily exceed 20,000 system resource requests a second. Bambookit on the other hand utilizes the clip routines and passes along a SINGLE Graphics objects to all its various controls. This alone is a HUGE savings in system resources and performance."
    Two questions came to my mind:
    1) Is it possible to build applet gui without using awt and swing in java? If so the only way to do is to use JNI calls?
    2) Am I wrong in interpreting www.bambookit.com's message that they are not using awt?
    Any comments about this?
    Regards,
    Stanly

    They use AWT as basis for their drawing-layer, as any other lightweight toolkits too.
    If you just want a very fast & light alternative to swing/awt have a look at www.lwvcl.com !
    I use it for a large applet-applikation that has to be java-1.1 compatible. It was a horor when using AWT which was implemented different over all JVMs available and very slow (although native widgets were used).
    With lwvcl (which has only 150kB!) I can use state of the art applets that work very fast on modern jvms like 1.4, give me the ability to compile my applikation to native code using GCJ (using the swt-prt of the library) or distribute it to old-school 1.1 browser where it also runs quite fine...
    Its free for GPL and very cheap for commercial use.
    lg Clemens

  • Java GUI 7.20 and SNC on Windows 7

    Hello
    Just trying out the preview version of GUI 7.20 on Windows 7 OS, and tried to setup a SNC logon. Error message is "Unable to load GSS-API DLL named "sncgss32.dll" ...
    I've done a search and there is no sncgss32.dll file anywhere on the computer. I cannot find it in the installation package either.
    Maybe it is not included in the preview version... Has anyone setup SNC logon functionality on Windows 7?
    A.

    Hello,
    SAPGUI for Java (and Windows) come(s) with a kind of plug-in infrastructure to use security products for Secure Network Connections, but not including a SNC product itself.
    Did you install the library required for using SNC and are pointing to it using the SNC_LIB environment variable? The error message looks like it tries to load a default library, but it is not there.
    You might want to read the information about SNC in general available at
    http://help.sap.com/saphelp_nw70/helpdata/en/69/b0bbd6dde71141bee8806586144796/frameset.htm
    and regarding SAP GUI
    http://help.sap.com/saphelp_nw70/helpdata/en/dd/2e029250f64ed682e1b2f3eda66fca/frameset.htm
    Best regards
    Rolf-Martin

  • SAP Java Gui on CentOS 4.3

    I've been fiddeling most of the day to get the SAP gui (version 6.40rev6 & 7.00) to run on my CentOS 4.3 workstation, No matter what I do the gui fails to start with errors about shared libraries.
    After some googling, I was pointed in the direction of libstdc++. I confirmed this was installed on my system. To be sure I redownloaded the RPM and installed it.
    I confirmed i had libstdgc++ in my /usr/lib library. I then noticed I had a newer version (libstdc+.so.6 instead of libstdc+.so.5 that the GUI wants). There are several things on this system that require the library so downgrading is not really an option.
    I decided to create a link to libstdc+.so.6 called libstdc+.so.5 to see if that helped. The error changed but unfortunatly I still can't start the gui.
    The current error is:
    ############################# ERROR #############################
    31.08. 11:40:23.366 ERROR: Attempt to load shared library /opt/SAPClients/SAPGUI7.00/bin/libJPlatin.so failed.
    The library file exists, so either the program
    don't has the privileges to access the library
    or the library is not loadable by the shared object loader
    Technical information:
    Error location: GuiJniLoader.loadPlatinLibrary()
    Error message : /opt/SAPClients/SAPGUI7.00/bin/libJPlatin.so: /usr/lib/libstdc++.so.5: version `CXXABI_1.2' not found (required by /opt/SAPClients/SAPGUI7.00/bin/libJPlatin.so)
    ############################# ERROR #############################
    Anyone have a suggestion?

    I found this thread to be very helpful
    I am using Fedora Core 8 which uses "yum" to install updates.
    You can ask yum to find the package that provides the library you are looking for with the command:
    yum whatprovides libstdc++.so.5
    yum will reply with "compat-libstdc+-33.i386 : Compatibility standard C+ libraries"
    Therefore the command to install the library is
    yum -y install compat-libstdc++-33
    Hope someone finds this helpful!

  • JAVA GUI window content does not fill out when window is enlarged (Win,Mac)

    I've been using the SAP JAVA GUI on a Windows XP workstation as well as a couple of MacBooks running OS X over the last year and a half or so, running versions from 7.10 r 7(maybe earlier) thru 7.10 r 10 (installed today.) The GUI has performed generally well on these platforms, but has one major irritation.
    When I open certain pop-up windows, such as the SPAD [List of Output Requests > Status Description |http://img171.imageshack.us/i/screenshot20091006at241.png/|screenshot], it usually does not open a  large enough window to display all the data - one must scroll horizontally and/or vertically to see the entire window content.  The real aggravation is that if [one enlarges the window|http://img101.imageshack.us/i/screenshot20091006at242.png/|screenshot] so as to see more data, the resizing is ignored.  The contents of the window are still displayed within the original window boundaries instead of filling out the expanded window.   It is not possible to get the entire window contents displayed, it is still necessary to scroll around.
    What am I missing here?   How can I get window resizing to work correctly?   (Or is there a way to make such windows at least open up at a larger initial size??)
    I only found one other thread in this forum, Sap gui screen size in ubuntu., which seemed to be addressing the same problem, but the suggestion was to apply the latest patch to the GUI and get JAVA 1.6.   One would think that since that post in 2008, any patches would have made it into the latest revisions.  I'm already running Java 1.6.
    SAPGUI for Java 7.10 rev 10
    (Version ID 071000041000)
    Tue Sep 8 09:49:53 MEST 2009
    uw1059, 710_REL, 1093492
    Java VM: Apple Inc. Version 1.6.0_15
    OS: Mac OS X(i386) Version 10.6.1
    SAPGUI for Java 7.10 rev 10
    (Version ID 071000041000)
    Tue Sep 8 09:49:53 MEST 2009
    uw1059, 710_REL, 1093492
    Java VM: Sun Microsystems Inc. Version 1.6.0_15
    OS: Windows XP(x86) Version 5.1
    Any suggestions?  Anyone else even seeing this?
    Thanks!
    Rich

    I'm now running
    SAPGUI for Java 7.10 rev 11
    (Version ID 071000041100)
    Tue Dec 8 16:04:41 MET 2009
    uw1059, 710_REL, 1119101
    Java VM: Apple Inc. Version 1.6.0_17
    OS: Mac OS X(i386) Version 10.6.2
    I've also updated my XP system to 7.10 rev 11 and both continue to display the same failure to resize corrrectly.  
    Here's a [video capture of this behavior|http://img163.yfrog.com/i/sapresizebug.mp4/].
    Given that installs on two separate operating systems have consistently misbehaved like this, I have a hard time believing it is something  we are doing.  (But not that hard...)  I find it hard to believe that is the way these screens present on most SAP sites...
    Any comments or suggestions would be welcome!
    Rich

  • Problem in  SAP WAS Java 6.40 SP9 and MaxDB 7.5 Preview installation

    I am trying to install SAP WAS Java 6.40 SP9 and MaxDB 7.5 I have received the following error.
    Can somebody help me to resolve this.
    Thanks
    kishor
    SAPinst is getting started.
    Please be patient ...
    guiengine: no GUI connected; waiting for a connection on host DB6D1T61, port 21212 to continue with the installation
    guiengine: login in process.
    INFO       2005-05-29 16:01:09 [syxxcfile.cpp:325]
               CSyFileImpl::copy(const CSyPath & q0w9e9r8t7.1.xml, ISyNode::eCopyMode 3, ISyProgressObserver*) const 
    Copying file C:/Program Files/sapinst_instdir/NW04SR1/WEBAS_JAVA/CENTRAL/ONE_HOST/keydb.xml to: q0w9e9r8t7.1.xml.
    INFO       2005-05-29 16:01:09 [syxxcfile.cpp:446]
               CSyFileImpl::copy(const CSyPath & q0w9e9r8t7.1.xml, ISyNode::eCopyMode 3, ISyProgressObserver*) const 
    Copying file C:/Program Files/sapinst_instdir/NW04SR1/WEBAS_JAVA/CENTRAL/ONE_HOST/keydb.xml to: q0w9e9r8t7.1.xml.
    INFO       2005-05-29 16:01:09 [synxcpath.cpp:834]
               CSyPath::createFile()
    Creating file C:\Program Files\sapinst_instdir\NW04SR1\WEBAS_JAVA\CENTRAL\ONE_HOST\q0w9e9r8t7.1.xml.
    INFO       2005-05-29 16:01:10 [syxxcfile.cpp:325]
               CSyFileImpl::copy(const CSyPath & C:/Program Files/sapinst_instdir/NW04SR1/WEBAS_JAVA/CENTRAL/ONE_HOST/keydb.1.xml, ISyNode::eCopyMode 3, ISyProgressObserver*) const 
    Copying file C:/Program Files/sapinst_instdir/NW04SR1/WEBAS_JAVA/CENTRAL/ONE_HOST/keydb.xml to: C:/Program Files/sapinst_instdir/NW04SR1/WEBAS_JAVA/CENTRAL/ONE_HOST/keydb.1.xml.
    INFO       2005-05-29 16:01:10 [syxxcfile.cpp:446]
               CSyFileImpl::copy(const CSyPath & C:/Program Files/sapinst_instdir/NW04SR1/WEBAS_JAVA/CENTRAL/ONE_HOST/keydb.1.xml, ISyNode::eCopyMode 3, ISyProgressObserver*) const 
    Copying file C:/Program Files/sapinst_instdir/NW04SR1/WEBAS_JAVA/CENTRAL/ONE_HOST/keydb.xml to: C:/Program Files/sapinst_instdir/NW04SR1/WEBAS_JAVA/CENTRAL/ONE_HOST/keydb.1.xml.
    INFO       2005-05-29 16:01:10 [synxcpath.cpp:834]
               CSyPath::createFile()
    Creating file C:\Program Files\sapinst_instdir\NW04SR1\WEBAS_JAVA\CENTRAL\ONE_HOST\keydb.1.xml.
    INFO       2005-05-29 16:01:11 [ianxbusprv.cpp:337]
               CIaNtUserPrivileges::add_impl(., DB6D1T61\Kishor Kolhe, SeTcbPrivilege SeAssignPrimaryTokenPrivilege SeIncreaseQuotaPrivilege)
    Successfully added privileges 'SeTcbPrivilege SeAssignPrimaryTokenPrivilege SeIncreaseQuotaPrivilege' to account 'DB6D1T61\Kishor Kolhe' on host '.'.
    INFO       2005-05-29 16:01:15 [synxcpath.cpp:834]
               CSyPath::createFile()
    Creating file C:\Program Files\sapinst_instdir\NW04SR1\WEBAS_JAVA\CENTRAL\ONE_HOST\summary.html.
    PHASE      2005-05-29 16:01:15 [iaxxcwalker.cpp:416]
               CDomWalker::printPhaseInfo()
    Prepare the installation program.
    INFO       2005-05-29 16:01:20 [iaxxcwalker.cpp:59]
               CDomWalker::walk()
    Installation start: Sunday, 29 May 2005, 16:01:07; installation directory: C:\Program Files\sapinst_instdir\NW04SR1\WEBAS_JAVA\CENTRAL\ONE_HOST; product to be installed: SAP NetWeaver '04 Support Release 1> Java System> MaxDB> Central System> Custom Installation - Java System
    INFO[E]    2005-05-29 16:01:22 [synxcfsmgt.cpp:132]
               CSyFileSystemMgtImpl::getFSExport(iastring)
    File system export (share) saploc does not exist.
    INFO       2005-05-29 16:01:22
               CJSlibModule::writeInfo_impl()
    Looking for SAP system instances installed on this host...
    INFO       2005-05-29 16:01:22
               CJSlibModule::writeInfo_impl()
    No installed instances found!
    INFO       2005-05-29 16:01:22
               CJSlibModule::writeInfo_impl()
    DNS is configured correctly.
    INFO[E]    2005-05-29 16:01:23 [synxcfsmgt.cpp:132]
               CSyFileSystemMgtImpl::getFSExport(iastring)
    File system export (share) saploc does not exist.
    INFO       2005-05-29 16:01:45 [syxxcfile.cpp:325]
               CSyFileImpl::copy(const CSyPath & ., ISyNode::eCopyMode 3, ISyProgressObserver*) const 
    Copying file C:/WAS6.4J2EE_NEW/WebAS/J2EE_OSINDEP/JDKVersion.xml to: ..
    INFO       2005-05-29 16:01:45 [syxxcfile.cpp:446]
               CSyFileImpl::copy(const CSyPath & ., ISyNode::eCopyMode 3, ISyProgressObserver*) const 
    Copying file C:/WAS6.4J2EE_NEW/WebAS/J2EE_OSINDEP/JDKVersion.xml to: ..
    INFO       2005-05-29 16:01:45 [synxcpath.cpp:834]
               CSyPath::createFile()
    Creating file C:\Program Files\sapinst_instdir\NW04SR1\WEBAS_JAVA\CENTRAL\ONE_HOST\JDKVersion.xml.
    INFO[E]    2005-05-29 16:01:45 [syxxccuren.hpp:189]
               CSyCurrentProcessEnvironmentImpl::getEnvironmentVariable(iastring)
    Unable to get value for environment variable JAVA_HOME.
    INFO       2005-05-29 16:01:46
               CJSlibModule::writeInfo_impl()
    Execution of the command "C:/j2sdk1.4.2_08/bin/java.exe '-version'" finished with return code 0. Output:
    java version "1.4.2_08"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_08-b03)
    Java HotSpot(TM) Client VM (build 1.4.2_08-b03, mixed mode)
    INFO       2005-05-29 16:01:47
               CJSlibModule::writeInfo_impl()
    Execution of the command "C:/j2sdk1.4.2_08/bin/java.exe '-classpath' 'C:/DOCUME1/KISHOR1/LOCALS1/Temp/sapinst_exe.3360.1117396809/JAR/ins-j2ee.jar;C:/DOCUME1/KISHOR1/LOCALS1/Temp/sapinst_exe.3360.1117396809/JAR/sapxmltoolkit.jar' 'com.sap.ins.j2ee.TestClassLoader'" finished with return code 0. Output:
    CORRECT
    INFO       2005-05-29 16:01:47
               CJSlibModule::writeInfo_impl()
    Directory C:/WINDOWS is not a valid JDK directory: the java executable is missing.
    INFO       2005-05-29 16:01:47
               CJSlibModule::writeInfo_impl()
    Found a valid JAVA_HOME directory C:\j2sdk1.4.2_08 with JDK version 1.4.2_08.
    INFO       2005-05-29 16:01:48
               CJSlibModule::writeInfo_impl()
    Execution of the command "C:\j2sdk1.4.2_08/bin/java.exe '-version'" finished with return code 0. Output:
    java version "1.4.2_08"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_08-b03)
    Java HotSpot(TM) Client VM (build 1.4.2_08-b03, mixed mode)
    INFO       2005-05-29 16:01:50
               CJSlibModule::writeInfo_impl()
    Execution of the command "C:\j2sdk1.4.2_08/bin/java.exe '-version'" finished with return code 0. Output:
    java version "1.4.2_08"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_08-b03)
    Java HotSpot(TM) Client VM (build 1.4.2_08-b03, mixed mode)
    INFO       2005-05-29 16:01:50
               CJSlibModule::writeInfo_impl()
    Execution of the command "C:\j2sdk1.4.2_08/bin/java.exe '-classpath' 'C:/DOCUME1/KISHOR1/LOCALS1/Temp/sapinst_exe.3360.1117396809/JAR/ins-j2ee.jar;C:/DOCUME1/KISHOR1/LOCALS1/Temp/sapinst_exe.3360.1117396809/JAR/sapxmltoolkit.jar' 'com.sap.ins.j2ee.TestClassLoader'" finished with return code 0. Output:
    CORRECT
    INFO       2005-05-29 16:01:50 [synxcpath.cpp:865]
               CSyPath::createDirectory()
    Creating directory C:\Program Files\sapinst_instdir\NW04SR1\WEBAS_JAVA\CENTRAL\ONE_HOST\jdkPolicyCheck.
    INFO[E]    2005-05-29 16:01:50 [syxxccuren.hpp:189]
               CSyCurrentProcessEnvironmentImpl::getEnvironmentVariable(iastring)
    Unable to get value for environment variable JAVA_HOME.
    INFO       2005-05-29 16:01:50 [syxxccuren.hpp:347]
               CSyCurrentProcessEnvironmentImpl::setWorkingDirectory(iastring)
    Working directory changed to C:/Program Files/sapinst_instdir/NW04SR1/WEBAS_JAVA/CENTRAL/ONE_HOST/jdkPolicyCheck.
    INFO       2005-05-29 16:01:50 [syxxccuren.hpp:347]
               CSyCurrentProcessEnvironmentImpl::setWorkingDirectory(iastring)
    Working directory changed to C:\Program Files\sapinst_instdir\NW04SR1\WEBAS_JAVA\CENTRAL\ONE_HOST.
    INFO       2005-05-29 16:01:50 [synxcpath.cpp:834]
               CSyPath::createFile()
    Creating file C:\Program Files\sapinst_instdir\NW04SR1\WEBAS_JAVA\CENTRAL\ONE_HOST\local_policy.log.
    INFO       2005-05-29 16:01:50
               CJSlibModule::writeInfo_impl()
    Output of C:\j2sdk1.4.2_08/bin/jar.exe is written to the logfile local_policy.log.
    INFO       2005-05-29 16:01:50
               CJSlibModule::writeInfo_impl()
    Output of C:\j2sdk1.4.2_08/bin/jar.exe 'xvf' 'C:/j2sdk1.4.2_08/jre/lib/security/local_policy.jar':
    INFO[E]    2005-05-29 16:01:50 [syxxccuren.hpp:189]
               CSyCurrentProcessEnvironmentImpl::getEnvironmentVariable(iastring)
    Unable to get value for environment variable JAVA_HOME.
    INFO       2005-05-29 16:01:50 [syxxccuren.hpp:347]
               CSyCurrentProcessEnvironmentImpl::setWorkingDirectory(iastring)
    Working directory changed to C:/Program Files/sapinst_instdir/NW04SR1/WEBAS_JAVA/CENTRAL/ONE_HOST/jdkPolicyCheck.
    INFO       2005-05-29 16:01:50 [syxxccuren.hpp:347]
               CSyCurrentProcessEnvironmentImpl::setWorkingDirectory(iastring)
    Working directory changed to C:\Program Files\sapinst_instdir\NW04SR1\WEBAS_JAVA\CENTRAL\ONE_HOST.
    INFO       2005-05-29 16:01:51 [synxcpath.cpp:834]
               CSyPath::createFile()
    Creating file C:\Program Files\sapinst_instdir\NW04SR1\WEBAS_JAVA\CENTRAL\ONE_HOST\US_export_policy.log.
    INFO       2005-05-29 16:01:51
               CJSlibModule::writeInfo_impl()
    Output of C:\j2sdk1.4.2_08/bin/jar.exe is written to the logfile US_export_policy.log.
    INFO       2005-05-29 16:01:51
               CJSlibModule::writeInfo_impl()
    Output of C:\j2sdk1.4.2_08/bin/jar.exe 'xvf' 'C:/j2sdk1.4.2_08/jre/lib/security/US_export_policy.jar':
    INFO       2005-05-29 16:01:51 [synxcfile.cpp:152]
               CSyFileImpl::remove()
    Removing file C:\Program Files\sapinst_instdir\NW04SR1\WEBAS_JAVA\CENTRAL\ONE_HOST\jdkPolicyCheck\default_local.policy.
    INFO       2005-05-29 16:01:51 [synxcfile.cpp:152]
               CSyFileImpl::remove()
    Removing file C:\Program Files\sapinst_instdir\NW04SR1\WEBAS_JAVA\CENTRAL\ONE_HOST\jdkPolicyCheck\default_US_export.policy.
    INFO       2005-05-29 16:01:51 [synxcfile.cpp:152]
               CSyFileImpl::remove()
    Removing file C:\Program Files\sapinst_instdir\NW04SR1\WEBAS_JAVA\CENTRAL\ONE_HOST\jdkPolicyCheck\exempt_local.policy.
    INFO       2005-05-29 16:01:51 [synxcfile.cpp:152]
               CSyFileImpl::remove()
    Removing file C:\Program Files\sapinst_instdir\NW04SR1\WEBAS_JAVA\CENTRAL\ONE_HOST\jdkPolicyCheck\META-INF\JCE_RSA.RSA.
    INFO       2005-05-29 16:01:51 [synxcfile.cpp:152]
               CSyFileImpl::remove()
    Removing file C:\Program Files\sapinst_instdir\NW04SR1\WEBAS_JAVA\CENTRAL\ONE_HOST\jdkPolicyCheck\META-INF\JCE_RSA.SF.
    INFO       2005-05-29 16:01:51 [synxcfile.cpp:152]
               CSyFileImpl::remove()
    Removing file C:\Program Files\sapinst_instdir\NW04SR1\WEBAS_JAVA\CENTRAL\ONE_HOST\jdkPolicyCheck\META-INF\MANIFEST.MF.
    INFO       2005-05-29 16:01:51 [synxcdir.cpp:144]
               CSyDirectoryImpl::remove()
    Removing directory C:/Program Files/sapinst_instdir/NW04SR1/WEBAS_JAVA/CENTRAL/ONE_HOST/jdkPolicyCheck/META-INF.
    INFO       2005-05-29 16:01:51 [synxcdir.cpp:144]
               CSyDirectoryImpl::remove()
    Removing directory C:/Program Files/sapinst_instdir/NW04SR1/WEBAS_JAVA/CENTRAL/ONE_HOST/jdkPolicyCheck.
    INFO[E]    2005-05-29 16:01:58 [synxcuser.cpp:102]
               CSyUserImpl::CSyUserImpl(const CUserData&, bool)
    Account user="j2eadm" does not exist.
    INFO[E]    2005-05-29 16:02:05 [synxcfsmgt.cpp:132]
               CSyFileSystemMgtImpl::getFSExport(iastring)
    File system export (share) saploc does not exist.
    INFO[E]    2005-05-29 16:02:09 [synxcuser.cpp:102]
               CSyUserImpl::CSyUserImpl(const CUserData&, bool)
    Account user="DB6D1T61\j2eadm" does not exist.
    INFO[E]    2005-05-29 16:02:14 [synxcuser.cpp:102]
               CSyUserImpl::CSyUserImpl(const CUserData&, bool)
    Account user="DB6D1T61\SAPServiceJ2E" does not exist.
    INFO[E]    2005-05-29 16:02:26 [synxcfsmgt.cpp:132]
               CSyFileSystemMgtImpl::getFSExport(iastring)
    File system export (share) saploc does not exist.
    INFO[E]    2005-05-29 16:02:37 [synxcuser.cpp:102]
               CSyUserImpl::CSyUserImpl(const CUserData&, bool)
    Account user="DB6D1T61\j2eadm" does not exist.
    INFO[E]    2005-05-29 16:02:42 [synxcuser.cpp:102]
               CSyUserImpl::CSyUserImpl(const CUserData&, bool)
    Account user="DB6D1T61\SAPServiceJ2E" does not exist.
    INFO[E]    2005-05-29 16:02:42 [synxcfsmgt.cpp:132]
               CSyFileSystemMgtImpl::getFSExport(iastring)
    File system export (share) saploc does not exist.
    INFO[E]    2005-05-29 16:02:42 [synxcfsmgt.cpp:132]
               CSyFileSystemMgtImpl::getFSExport(iastring)
    File system export (share) saploc does not exist.
    INFO[E]    2005-05-29 16:02:47 [synxcuser.cpp:102]
               CSyUserImpl::CSyUserImpl(const CUserData&, bool)
    Account user="DB6D1T61\j2eadm" does not exist.
    INFO[E]    2005-05-29 16:02:51 [synxcuser.cpp:102]
               CSyUserImpl::CSyUserImpl(const CUserData&, bool)
    Account user="DB6D1T61\j2eadm" does not exist.
    INFO[E]    2005-05-29 16:02:58 [synxcuser.cpp:102]
               CSyUserImpl::CSyUserImpl(const CUserData&, bool)
    Account user="DB6D1T61\SAPServiceJ2E" does not exist.
    INFO[E]    2005-05-29 16:03:03 [synxcuser.cpp:102]
               CSyUserImpl::CSyUserImpl(const CUserData&, bool)
    Account user="DB6D1T61\SAPServiceJ2E" does not exist.
    INFO[E]    2005-05-29 16:03:05 [synxcfsmgt.cpp:132]
               CSyFileSystemMgtImpl::getFSExport(iastring)
    File system export (share) saploc does not exist.
    INFO       2005-05-29 16:03:05
               CJSlibModule::writeInfo_impl()
    Looking for SAP system instances installed on this host...
    INFO       2005-05-29 16:03:05
               CJSlibModule::writeInfo_impl()
    No installed instances found!
    INFO[E]    2005-05-29 16:03:06 [synxcfsmgt.cpp:132]
               CSyFileSystemMgtImpl::getFSExport(iastring)
    File system export (share) saploc does not exist.
    WARNING[E] 2005-05-29 16:03:06 [syxxcnamrs.cpp:128]
               PSyServicesEntry CSyIPNameResolverImpl::getServiceByName(const iastring& serviceName, const iastring& protocol) const
    Error converting from service name=sapmsJ2E/protocol=tcp to port number. SAPRETURN=12
    INFO[E]    2005-05-29 16:03:08 [synxcfsmgt.cpp:132]
               CSyFileSystemMgtImpl::getFSExport(iastring)
    File system export (share) saploc does not exist.
    WARNING[E] 2005-05-29 16:03:08 [syxxcnamrs.cpp:337]
               PSyServicesEntry CSyIPNameResolverImpl::getServiceByPort(const unsigned int portNumber, const iastring& protocol) const
    Error converting from port number=3601/protocol=tcp to service names. SAPRETURN=12
    WARNING[E] 2005-05-29 16:03:09 [syxxcnamrs.cpp:128]
               PSyServicesEntry CSyIPNameResolverImpl::getServiceByName(const iastring& serviceName, const iastring& protocol) const
    Error converting from service name=sapmsJ2E/protocol=tcp to port number. SAPRETURN=12
    INFO[E]    2005-05-29 16:03:09 [synxcfsmgt.cpp:132]
               CSyFileSystemMgtImpl::getFSExport(iastring)
    File system export (share) saploc does not exist.
    INFO[E]    2005-05-29 16:03:11 [synxcfsmgt.cpp:132]
               CSyFileSystemMgtImpl::getFSExport(iastring)
    File system export (share) saploc does not exist.
    INFO[E]    2005-05-29 16:03:41 [synxcfsmgt.cpp:132]
               CSyFileSystemMgtImpl::getFSExport(iastring)
    File system export (share) saploc does not exist.
    INFO[E]    2005-05-29 16:03:45 [synxcfsmgt.cpp:132]
               CSyFileSystemMgtImpl::getFSExport(iastring)
    File system export (share) saploc does not exist.
    INFO       2005-05-29 16:03:46
               CJSlibModule::writeInfo_impl()
    Execution of the command "C:\j2sdk1.4.2_08/bin/java.exe '-version'" finished with return code 0. Output:
    java version "1.4.2_08"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_08-b03)
    Java HotSpot(TM) Client VM (build 1.4.2_08-b03, mixed mode)
    INFO       2005-05-29 16:03:46
               CJSlibModule::writeInfo_impl()
    Execution of the command "C:\j2sdk1.4.2_08/bin/java.exe '-classpath' 'C:/DOCUME1/KISHOR1/LOCALS1/Temp/sapinst_exe.3360.1117396809/JAR/ins-j2ee.jar;C:/DOCUME1/KISHOR1/LOCALS1/Temp/sapinst_exe.3360.1117396809/JAR/sapxmltoolkit.jar' 'com.sap.ins.j2ee.TestClassLoader'" finished with return code 0. Output:
    CORRECT
    INFO[E]    2005-05-29 16:03:47 [synxcfsmgt.cpp:132]
               CSyFileSystemMgtImpl::getFSExport(iastring)
    File system export (share) saploc does not exist.
    INFO[E]    2005-05-29 16:03:51 [synxcuser.cpp:102]
               CSyUserImpl::CSyUserImpl(const CUserData&, bool)
    Account user="DB6D1T61\j2eadm" does not exist.
    INFO[E]    2005-05-29 16:03:56 [synxcuser.cpp:102]
               CSyUserImpl::CSyUserImpl(const CUserData&, bool)
    Account user="DB6D1T61\j2eadm" does not exist.
    INFO[E]    2005-05-29 16:04:03 [synxcuser.cpp:102]
               CSyUserImpl::CSyUserImpl(const CUserData&, bool)
    Account user="DB6D1T61\SAPServiceJ2E" does not exist.
    INFO[E]    2005-05-29 16:04:07 [synxcuser.cpp:102]
               CSyUserImpl::CSyUserImpl(const CUserData&, bool)
    Account user="DB6D1T61\SAPServiceJ2E" does not exist.
    INFO       2005-05-29 16:04:10
               CJSlibModule::writeInfo_impl()
    Looking for SAP system instances installed on this host...
    INFO       2005-05-29 16:04:11
               CJSlibModule::writeInfo_impl()
    Found these instances:
    sid: J2E, number: 01, name: SCS01, host: DB6D1T61
    INFO[E]    2005-05-29 16:04:13 [synxcfsmgt.cpp:132]
               CSyFileSystemMgtImpl::getFSExport(iastring)
    File system export (share) saploc does not exist.
    ERROR      2005-05-29 16:04:42 [iaxxinscbk.cpp:289]
               abortInstallation
    MDB-070021 Registry information for database software found in system but the software check failed. The software was not properly removed or installed incorrectly.
    WARNING    2005-05-29 16:04:42 [iaxxccntrl.cpp:477]
               CController::stepExecuted()
    The step Validate_Sapdb_System with step key J2EE_EngineEnterprise_OneHost|ind|ind|ind|WebAS|630|0|J2EE_EngineEnterpriseDialogs|ind|ind|ind|WebAS|630|0|J2EE_Engine|ind|ind|ind|J2EE_Engine|630|0|J2EE_Engine_SAPDB_Client|ind|ind|ind|ind|ind|0|SAPDB_DB_SOFTWARE|ind|ind|ind|ind|ind|0|Validate_Sapdb_System was executed with status ERROR.
    SAPinst component stack:
    ========================
      Preinstall|ind|ind|ind|ind|ind|0
    Current script:
    ===============
    sapdb_validate_system();
    WARNING    2005-05-29 16:04:45 [iaxxcsihlp.hpp:250]
               main()
    An error occurred during the installation.
    Exit status of child: 1

    Have you found a fix for your problem? I am having the same with a JAVA install on ORACLE:
    WARNING[E] 2005-11-02 18:46:34 [syxxcnamrs.cpp:128]
    PSyServicesEntry CSyIPNameResolverImpl::getServiceByName(const iastring& serviceName, const iastring& protocol) const
    Error converting from service name=sapmsQP2/protocol=tcp to port number. SAPRETURN=12

  • Performance problems with SAP GUI 7.10 and BEx 3.5 Patch 400?

    Hi everybody,
    we installed SAP GUI 7.10 and BEx 3.5 Patch 400 and detected hugh performance problems with this version in comparison to the SAP GUI 6.40 and BEx 3.5 or BEx 7.0 Patch 800.
    Does anybody detect the same problems?
    Best regards,
    Ulli

    Most important question when you are talking about performance-issues:
    which OC are you working on and which excel version?
    ciao
    Joke

  • SAP GUI 7.0 and RRMX

    I am using BI NW04s and using RRMX via the SAP GUI 7.0.
    My problem is that BEx will not start.
    SP13 is meant to fix the problem and there is a note (1018928) that details how to fix it for other SPs....however this does not seem to work.
    Any ideas?
    Thanks
    Patrick

    To solve this problem go to Analyzer 7.0 --> choose option --> global settings --> and mark the option: Launch SAP BW 3.x verion of Bex Analyzer from SAP Gui (RRMX).
    And start the Analyzer 7.0 again.
    Cheers,
    Hassan

  • How to find SAP  java realted roles for ABAP and Basis

    Hi Gurus,
    I am new in SAP Security First week, I got the assignment to find the SAP Roles and Trans for ABAP and Basis in all Systems like Ecc, BI, ......
    I use SE16 ->AGR_TCODES then SAP* in Table Name it give me all SAP Roles and Trans.
    Pls help me to get only SAP Java and Basis roles and Trans Seperately
    Thanks

    Hi,
    Are you speaking about the standrad SAP roles? If yes, you can have a look at BC and ABAP roles. However, if your question is about the created roles, you should see the convention that was followed in your organization to identify the roles.
    Rgds,
    Raghu Boddu

  • SAP GUI for windows and HTML

    Hello,
    We have problem running a custom program, when it was integrated as Transactional iView with SAP GUI Type as SAP GUI for HTML.
    But, the same program is running fine with SAP GUI Type as SAP GUI for Windows.
    Is there any possibility to make some modifications to properties and make the SAP GUI for HTML working.
    Thank you.

    Hi,
    We have a custom ABAP program, where we we can upload data through an excel file.
    The xls file can be uploaded from local drive.
    So, we have created a Transactional iView with SAP GUI Type as SAP GUI for HTML.
    When we try to run the program with an excel file, we are receiving an error message - "Empty input file or input file not found"
    Then we have created a Transactional iView with SAP GUI Type as SAP GUI for windows and was successful in uploading the xls file.
    Just want to understand, if there is any possibility to make some modifications to properties and make the SAP GUI for HTML working.
    Thanks in Advance.

  • SAP GUI 720 shortcuts and history

    Hi guys!
    decided to upgrade install server to SAP GUI720 .
    I upgrade new install server to patch level 8.
    When i have patch level 0 SAP GUI after installing always create shortcut on users desktop.
    after updating (patch level 8) the shortcut  no longer creates.
    After install hsitory file default creates in C:\
    All users don't have permissions on write in partition C:\  .
    Because of this SAP history is not saved.
    Everybody knows how solve problem with shortcut after install and adjust the path to the *.mdb file ?  When the SAP GUI  is installing on the workstation, the path to the *.mdb file are written automatically.
    Thanks

    I try install SAP GUI with admin and users rights in both cases shortcut not installed on desktop.
    OC Windows XP
    In logs 14:18:36 NwSapSetup  1   Return-Code: 0
    1E or 2E not see
    may be a registry key that is responsible for the shortcut and it is not written correctly?
    in install log, its not errors?
    14:09:19 NwSapsAtlC  1        |-----SAP GUI Suite -- Dirty! --
    14:09:19 NwSapsAtlC  1        |---     |---SAP GUI -- Dirty! --
    14:09:19 NwSapsAtlC  1        |---     |---SAP Logon Pad -- Dirty! --
    14:09:19 NwSapsAtlC  1        |---     |---SAP Logon -- Dirty! --
    14:09:19 NwSapsAtlC  1        |---     |---Tweak-GUI -- Dirty! --
    14:09:19 NwSapsAtlC  1        |---     |---SAP GUI Scripting -- Dirty! --
    14:09:19 NwSapsAtlC  1        |---     |---GUI XT -- Dirty! --
    14:09:19 NwSapsAtlC  1        |---     |---Shortcut to SAPlpd -- Dirty! --
    14:09:19 NwSapsAtlC  1        |---     |---Unicode RFC Libraries -- Dirty! --
    14:09:19 NwSapsAtlC  1        |-----R/3 Add-On -- Dirty! --

Maybe you are looking for