IAS 10.1.2.0.2 on  SUSE 10 SP1 Can´t open Form applet

I set my forms listener servlet listener servlet it OK
white paper.
If I open: http://myserver/servlet/lservlet
It will shows that the Forms Listener Servlet is Up and Running...etc..
But If I open my form:
http://MYIP:7779/forms/fservlet?config=&form=test.fmx
then it will shows the same message.
The form is not opened at all (the applet is not running).
My SO its SUSE 10 SP1
IAS 10.1.2.0.2
all Servervices are ALIVE
I´cant find how start the appelt.
Thanks

Hi,
This is the data mining forum. Take a look at the other forums to find a better place to post this question.
Thanks, Mark

Similar Messages

  • IAS 10.1.2.0.2 on  SUSE 10 SP1  Help with FormBuilder

    Hi all.
    I have this scenario, I kown it´s not supported, but I´m almost arrive to put on line one IAS that I need, I´m realy need that IAS on SUSE because I need put on Virtual Server on Windows 2008 and SUSE it´s te only SO thats supported.
    I try to show my configuration, SUSE 10 SP 1, IAS 10.1.2.0.2, all its working, and all servervices started, see Processes in Instance: ias_admin.iassuse32
    ------------------------------------------------+---------
    ias-component | process-type | pid | status
    ------------------------------------------------+---------
    DSA | DSA | 5315 | Alive
    LogLoader | logloaderd | 5316 | Alive
    dcm-daemon | dcm-daemon | 5307 | Alive
    OC4J | home | 5371 | Alive
    OC4J | OC4J_BI_Forms | 5372 | Alive
    OC4J | OC4J_Portal | 5374 | Alive
    WebCache | WebCache | 5344 | Alive
    WebCache | WebCacheAdmin | 5784 | Alive
    HTTP_Server | HTTP_Server | 5311 | Alive
    Discoverer | ServicesStatus | 5312 | Alive
    Discoverer | PreferenceServer | 5314 | Alive
    open_report_suse | ReportsServer | 5962 | Alive
    My problem its when we try to compile a form, when I call a formbld.sh frin Cygwin y have this
    FRM-91111: Internal Error: window system startup failure.
    FRM-10039: Unable to start up the Form Builder
    I´m setting ok the Display, I see xclock.
    I hope I can explain my problem, any help it´s great for us.
    Thanks from Argentina.
    Victor

    I did start from Builder with this
    I do this, but now when I try compile forms I receive error frm-91111: unable to start/complete the build. So I go back to old libXm.so.2 and compile complete.
    But I have another problem
    I can´t browsing any file under the compilebiulder, when I click to select any file or any directory the formbuilder back to home/oracle and I cant change directory or file, the ok buton no funcition.
    Thanks

  • IAS 10.1.2.0.2 on  SUSE 10 SP1

    Hi all.
    I have this scenario, I kown it´s not supported, but I´m almost arrive to put on line one IAS that I need, I´m realy need that IAS on SUSE because I need put on Virtual Server on Windows 2008 and SUSE it´s te only SO thats supported.
    I try to show my configuration, SUSE 10 SP 1, IAS 10.1.2.0.2, all its working, and all servervices started, see Processes in Instance: ias_admin.iassuse32
    ------------------------------------------------+---------
    ias-component | process-type | pid | status
    ------------------------------------------------+---------
    DSA | DSA | 5315 | Alive
    LogLoader | logloaderd | 5316 | Alive
    dcm-daemon | dcm-daemon | 5307 | Alive
    OC4J | home | 5371 | Alive
    OC4J | OC4J_BI_Forms | 5372 | Alive
    OC4J | OC4J_Portal | 5374 | Alive
    WebCache | WebCache | 5344 | Alive
    WebCache | WebCacheAdmin | 5784 | Alive
    HTTP_Server | HTTP_Server | 5311 | Alive
    Discoverer | ServicesStatus | 5312 | Alive
    Discoverer | PreferenceServer | 5314 | Alive
    open_report_suse | ReportsServer | 5962 | Alive
    My problem its when we try to compile a form, when I call a formbld.sh frin Cygwin y have this
    FRM-91111: Internal Error: window system startup failure.
    FRM-10039: Unable to start up the Form Builder
    I´m setting ok the Display, I see xclock.
    I hope I can explain my problem, any help it´s great for us.
    Thanks from Argentina.
    Victor

    Hi,
    This is the data mining forum. Take a look at the other forums to find a better place to post this question.
    Thanks, Mark

  • C++ - JNI on a SuSe Linux - Can't seem to find my Java files

    Hi all,
    I have been playing around with the JNI for a bit now on my windows box and got it working fine and all :) Now, however, I need to port my stuff to a SuSe linux, and I have started out really basic - just trying to start the JVM too see how that went... badly, would be the answer to that question, in case you were wondering.
    I made a really simple textbook example (alot of those, when searching this forum - and searched, I have) to just create myself a JVM. I am not even daring to actually try and find any classes, call methods or anything as bold as that yet.
    My example compiles fine, but when I run the program I get this error message:
    "Can't find class java.lang.NoClassDefFoundError. Invalid class path ?"
    Now, please note, this is not the actual NoClassDefFoundError exception being thrown here, but looks to me as if the system wanted to throw that exception object, but couldn't even find the object to throw at me ;-)
    This leads me to believe that there's is something really basic wrong with my Java setup here. I can run "java" just fine from the commandline, but it occurs to me, that the JVM, when invoked via the JNI, can't find it's own stuff.
    Any suggestion what needs to be done here?
    I can post code if that helps, but I doubt that is the problem - as it is really textbook stuff and I can get this stuff to work on Windows. I think the problem is "external" to my code, as it happens before I even try to use the JVM. Maybe some env vars needs to be set? I have manually tried to export a CLASSPATH variable, just to see if that helped - I even tried adding full path to core.jar in my "-Djava.class.path" property ;-)
    I have tried removing and adding the Java RPM's again (Java version 1.4.1 FYI) to no avail aswell.

    Hi,
    As you hv started working on JNI. You must know the following things.
    1. If you want to work on Windows they must hv to hv a .dll file of your c/C++ program while on linux you should have .so file. i.e. shared object file.
    2. On Linux you should set LD_LIBRARY_PATH environment variable to your the path where you have stored your .so file.
    Let me know if you do have above things and still getting error.
    - Uday
    P.S. You will find help on internet abt How to make dll's and .so file?

  • SRM SUS..can supplier create purchase orders

    Hi,
    In SRM SUS ( Supplier self service)
    1) Is it possible that Supplier/Vendors can able to create purchase orders himself
    2) Can Supplier/vendors able to access cataloges
    3)Can supplier create confirmation himself for both goods , as i knows it is possible for service confimations
    Thx
    Jai

    Hi Jairaj,
    In SRM SUS ( Supplier self service)
    1) Is it possible that Supplier/Vendors can able to create purchase orders himself
    No. The Vendors change can accept or reject PO Lines and change the price.
    They can create POR.
    2) Can Supplier/vendors able to access cataloges
    No.
    3)Can supplier create confirmation himself for both goods , as i knows it is possible for service confimations
    The vendors can create Service entry sheet in SRM 7.0.
    The vendors can create ASN for materials.
    Regards,
    Pavan

  • MM-SUS:You can add new fields in the BSP?

    Hi Gurus,
    I wonder if you can add new fields in the BSP of invoice in SUS.
    I need to enter new fields and then to perform validations using these new fields.
    know how to work toward a solution?
    Cristian

    Hi Cristian,
    As Akash has mentioned go to BSP application SRMSUS in SE80. Here you can copy standard invoice views and controler to z and then change them.
    You can then create Z tables to store all values entered in this screen. You can ask your programmer to put validity checks accordingly.
    Regards,
    Nikhil

  • Suse 9.2: can't open include file stdio.h

    Hi there,
    I'm just starting with studio express in linux and have strange error, I don't know how to solve. Is easy to see:
    hello.c:
    #include <stdio.h>
    int main(int argc, char **argv)
    printf("start with studio express for linux\n"); fflush(stdout);
    return 0;
    CC -o hello.bin hello.c"/opt/sunstudiomars/prod/include/cc/stdio.h", line 5: Error: Could not open include file<stdio.h>.
    "hello.c", line 6: Error: The function "printf" must have a prototype.
    "hello.c", line 6: Error: stdout is not defined.
    3 Error(s) detected.
    Then I retry with an adequate include path (there is only one containing the required header):
    CC -I/opt/sunstudiomars/prod/include/CC/stlport4 -o hello.bin hello.c"/opt/sunstudiomars/prod/include/cc/features.h", line 10: Error: Could not openinclude file<features.h>.
    "/opt/sunstudiomars/prod/include/cc/stdio.h", line 5: Error: Could not open include file<stdio.h>.
    "hello.c", line 6: Error: The function "printf" must have a prototype.
    "hello.c", line 6: Error: stdout is not defined.
    4 Error(s) detected.
    Also if file is .cpp extended it's no change. I'm using suse9.2 with all patches and studio express: Sun C++ 5.9 Linux_i386 Build35_2 2006/12/04. Any ideas? Thanks in advance.
    rgaa

    Also if file is .cpp extended it's no change. I'm
    using suse9.2 with all patches and studio express:
    Sun C++ 5.9 Linux_i386 Build35_2 2006/12/04. Any
    ideas? Thanks in advance.It seems to me that libc-devel is not installed on your system. Please
    let us know the output of the following command:
    $ rpm -qi glibc-devel
    Thanks,
    Roman.

  • SUSE Linux 8.0 + 9iAS r2 = Success

    Hi PPL, just reporting success and performance inscrease under Suse Linux 8.0:
    I can say that Oracle 9iAS under Linux for me performs at least 25-30% faster than Windows. I've installed IAS and INFRA in only one machine:
    Pentium 4 1.8Ghz
    1 GB RAM
    1 SCSI 15kRPM IB DISK
    Adaptec Ultra 160 controller
    2 GB SWAP
    I use PORTAL, FORMS, REPORTS and WIRELESS... I've installed the BUNDLED INTER-OPERABILITY PATCH Version of 9iAS r2, so i did not had to apply that patch. I've just applied today one CORE patch that was released in September for Linux/Unix versions and yesterday for Windows versions (patch 2542920)
    I've used SUSE 8.0, installed the Korn Shell package (KSH) and followed instruction on this VERY USEFULL whitepaper at htis site : www.stute.net !
    Remember to change SHMMAX parameters for the kernel as explained in www.puschitz.com !
    My last installation was made in 3 hours (SUSE installation included)
    Other tricks was i had to execute: xhost + as root to let oracle set DISPLAY and runInstaller! The linking errors were easily solved as explained in www.stute.net whitepaper.
    I've created a script to startup the INFRA database, but i couldnt start up automatically all services (OC4J's, HTTP, WEBCACHE), so i start them manually in OEM site http://mysite:1810
    I'm not a Linux GURU, but now i feels satisfied with performance and with stability.
    More... in Linux i can compile my FORMS files (FMX) even when they are used by someone user in a forms session.
    And even better is that PATCHS for Linux/Solaris usually are on "street" 1 month before Windows versions.
    Of course, I go crazy everytime i found bugs, but usually they are not plataform related.
    Joao Oliveira
    PS: If anyone needs help, i can give help online yusing ICQ messenger. My number is 23234761

    Hi
    I installed on SUSE Linux 8.0 the 9iAS R2, only the option A - J2EE and WebChache. Now I have following problems.
    1. Some configuration tools (OC4J, OPMN, DCM)were not initialized in the end of the installation. I read other postings with the same problems, but i never read a solution of these problems.
    2. After installation, i want to start the http server manually (dctml start -ct ohs) , but it doesn't work. I got the error message ADMN 100999, i dont know why !
    If i want to start the http-server with enterprise manager (EM worked partically) I got an EMException.
    I have no idea to resolve the problems, perhaps you
    Thank You

  • IAS console and other services won´t startup after sucessfull install

    Hello,
    iAS 10g was successfully installed into a Suse Enterprise Linux 8. Both URLs (to the control console and to Apache) were initially working well. Just after the first reboot of the server, the services won´t startup:
    ias@urano:~> $ORACLE_HOME/opmn/bin/opmnctl startall
    opmnctl: starting opmn and all managed processes...
    globalInitNLS: NLS boot file not found or invalid
    -- default linked-in boot block used
    XML parser init: error 201.
    globalInitNLS: NLS boot file not found or invalid
    -- default linked-in boot block used
    XML parser init: error 201.
    globalInitNLS: NLS boot file not found or invalid
    -- default linked-in boot block used
    XML parser init: error 201.
    opmnctl: opmn start failed
    ias@urano:~> $ORACLE_HOME/bin/emctl start iasconsole
    TZ set to Etc/GMT+2
    Oracle Enterprise Manager 10g Application Server Control 9.0.4.0.0
    Copyright (c) 2002, 2003 Oracle Corporation. All rights reserved.
    Starting Oracle 10g Application Server Control ...............
    No response, checking logs for initialization activity.
    waiting for response from console ............
    No response, checking logs for initialization activity.
    Console startup failed.
    Tried to check all the logs I found but none of them seems to have registered valueable information. The enviroment variables are set as follow:
    export ORACLE_SID=control
    export ORACLE_BASE=/u01/app/oracle
    export ORACLE_HOME=$ORACLE_BASE/product/ias
    export LD_LIBRARY_PATH=$ORACLE_HOME/lib:/lib:/usr/lib:/usr/local/lib:/u01/app/product/oracle/ias/opmn/lib/
    export TNS_ADMIN=/u01/app/oracle/product/9.2.0/network/admin
    export NLS_LANG="BRAZILIAN PORTUGUESE_BRAZIL.WE8ISO8859P1"
    export ORACLE_OWNER=ias
    export ORACLE_TERM=xterm
    export PATH=$PATH:/usr/bin/:$ORACLE_HOME/bin:/opt/bin:/usr/local/bin:/usr/sbin:/usr/X11R6/bin:/usr/j2sdk1.4.2_04/jre/bin:$ORACLE_HOME/opmn/bin/.
    export JAVA_HOME=/usr/j2sdk1.4.2_04/
    export JDK_HOME=/usr/j2sdk1.4.2_04/
    export JRE_HOME=/usr/j2sdk1.4.2_04/jre
    #export JAVA_HOME=/usr/java/jdk13113
    #export JDK_HOME=/usr/java/jdk13113
    #export JRE_HOME=/usr/java/jdk13113
    export CLASSPATH=$ORACLE_HOME/jdbc/lib/classes12.zip:$ORACLE_HOME/JRE:$ORACLE_HOME/jlib:$ORACLE_HOME/rdbms/jlib:$ORACLE_HOME/network/jlib
    Tried with 2 different versions of Java: JDK1.3.1.X and JDK1.4.2.X.
    When I try to acess the console URL, the login window is prompted. Login and password are entered but an error is displayed:
    An error has occurred!
    IOException in sending Request :: Connection refused
    Am I missing something? Any of you out there have already faced this problem and was able to solve it? Thanks in advance.

    Hello,
    iAS 10g was successfully installed into a Suse Enterprise Linux 8. Both URLs (to the control console and to Apache) were initially working well. Just after the first reboot of the server, the services won´t startup:
    ias@urano:~> $ORACLE_HOME/opmn/bin/opmnctl startall
    opmnctl: starting opmn and all managed processes...
    globalInitNLS: NLS boot file not found or invalid
    -- default linked-in boot block used
    XML parser init: error 201.
    globalInitNLS: NLS boot file not found or invalid
    -- default linked-in boot block used
    XML parser init: error 201.
    globalInitNLS: NLS boot file not found or invalid
    -- default linked-in boot block used
    XML parser init: error 201.
    opmnctl: opmn start failed
    ias@urano:~> $ORACLE_HOME/bin/emctl start iasconsole
    TZ set to Etc/GMT+2
    Oracle Enterprise Manager 10g Application Server Control 9.0.4.0.0
    Copyright (c) 2002, 2003 Oracle Corporation. All rights reserved.
    Starting Oracle 10g Application Server Control ...............
    No response, checking logs for initialization activity.
    waiting for response from console ............
    No response, checking logs for initialization activity.
    Console startup failed.
    Tried to check all the logs I found but none of them seems to have registered valueable information. The enviroment variables are set as follow:
    export ORACLE_SID=control
    export ORACLE_BASE=/u01/app/oracle
    export ORACLE_HOME=$ORACLE_BASE/product/ias
    export LD_LIBRARY_PATH=$ORACLE_HOME/lib:/lib:/usr/lib:/usr/local/lib:/u01/app/product/oracle/ias/opmn/lib/
    export TNS_ADMIN=/u01/app/oracle/product/9.2.0/network/admin
    export NLS_LANG="BRAZILIAN PORTUGUESE_BRAZIL.WE8ISO8859P1"
    export ORACLE_OWNER=ias
    export ORACLE_TERM=xterm
    export PATH=$PATH:/usr/bin/:$ORACLE_HOME/bin:/opt/bin:/usr/local/bin:/usr/sbin:/usr/X11R6/bin:/usr/j2sdk1.4.2_04/jre/bin:$ORACLE_HOME/opmn/bin/.
    export JAVA_HOME=/usr/j2sdk1.4.2_04/
    export JDK_HOME=/usr/j2sdk1.4.2_04/
    export JRE_HOME=/usr/j2sdk1.4.2_04/jre
    #export JAVA_HOME=/usr/java/jdk13113
    #export JDK_HOME=/usr/java/jdk13113
    #export JRE_HOME=/usr/java/jdk13113
    export CLASSPATH=$ORACLE_HOME/jdbc/lib/classes12.zip:$ORACLE_HOME/JRE:$ORACLE_HOME/jlib:$ORACLE_HOME/rdbms/jlib:$ORACLE_HOME/network/jlib
    Tried with 2 different versions of Java: JDK1.3.1.X and JDK1.4.2.X.
    When I try to acess the console URL, the login window is prompted. Login and password are entered but an error is displayed:
    An error has occurred!
    IOException in sending Request :: Connection refused
    Am I missing something? Any of you out there have already faced this problem and was able to solve it? Thanks in advance.

  • Error when starting Discoverer on IAS 10g

    The installation of an IAS 10g (9.0.4)(on Linux, SUSE SLES9) succeded without an error. The different services (Forms, Reports, Discoverer ...) are running (green).
    Starting Discoverer Plus we get the error "CORBA-Protocol: Connecting to .. OSAgent was not sucessful".
    We installed a second IAS-Farm on different hardware and got the same error. We deployed path 9.0.4.1, but nothing changed.
    We have already installed several IAS 10g in SLES8 without any problems.
    We check serveral things without getting any further idea what is wrong.
    Thanks for any information/help
    Tilman

    see if there is a process on your machine called OSAgent or dis51pr or dis51ws. It seems like the discoverer corba components aren't started properly. If you run 'opmnctl status' from the command line it should show you whether they are up or down as well.
    Matt Topper
    TUSC, The Oracle Experts.

  • How to install My forms and reports in IAS?

    Hi Gurus,
    I installed database 10g,IAS10g,forms and reports10g separately.
    now i want to configure my forms and reports in IAS 10g.i can run the form from
    formbuilder after started the oc4j.but i am not able to run in ias .
    anybody know the link" how to configure forms and reports in ias " just
    forward to me.
    Regards
    Gopinath M

    Hi,
    Here's the Forms and Reports Services Deployment Guide for OAS 10g 10.1.2:
    http://download-east.oracle.com/docs/cd/B14099_11/web.1012/b14032/toc.htm
    You will need to modify your default.env to point to the directory where your .fmx is located and formsweb.cfg to run the specific form, e.g. foo.fmx (default is test.fmx).
    HTH,
    Jim

  • Information about SUS

    Dear SAP gurus,
    We are planning to implement SRM 7 EHP 2 with backend ECC 6 EHP 5. We're now evaluating the use of Supplier Collaboration (SUS) in our landscape.
    I have some things to confirmed:
    1. Is SUS like an add-on to SRM or ECC, or is it a module by itself?
    2. I read that we can have 2 variant, MM-SUS, and EBP-SUS. Is the difference only to which system the SUS linked? or there are some differences in features
    3. I read that supplier data is maintained in SUS as well, can we shift the vendor pre-qualitification process from ROS to SUS as well? Can we have them both for pre-qualitication process (ROS and SUS)?
    4. Can someone provide me a documentation explaining the features of SUS and how to configure it?
    Best regards,
    John

    Hi,
    1. Is SUS like an add-on to SRM or ECC, or is it a module by itself?
    :- Supplier Self Service (SUS) is not an add on. It's a component of SRM. It is suggested to implement SUS on different client.
    I don't call it as a module as it's part of SRM.
    2. I read that we can have 2 variant, MM-SUS, and EBP-SUS. Is the difference only to which system the SUS linked? or there are some differences in features
    :- MM-SUS & EBP-SUS are two types of impelementation scenarios. Both vary in fetures too. In EBP-SUS process after POR is a consulting solution. Where as in MM-SUS one can achive whole P2P cycle(in built).
    3. I read that supplier data is maintained in SUS as well, can we shift the vendor pre-qualitification process from ROS to SUS as well? Can we have them both for pre-qualitication process (ROS and SUS)?
    :- ROS functionlity is provided by SAP for pre-qualification process. SUS contains supplier data.
    4. Can someone provide me a documentation explaining the features of SUS and how to configure it?
    :- SAP Supplier Relationship Management 7.0: Plan-Driven Procurement dcoument has all required information for SUS implementation.
    You will get documents on SAP Service Market Place.
    Regards,
    yaniVy
    reward if helps

  • Supplier Registration without SUS or XI?

    Can I do Supplier (Vendor) Registration without SUS or XI?  If not, what are my limitations?
    I am using SRM server 5.5, and am not using CCM as the supplier directory. I am not using questionnaires.  ROS_SELF_REG works.  However, I can’t notify vendors via email of acceptance.  Because I don’t have SUS, I can’t use SRMSUS_SELFREG and SRMSUS_SELFEDIT, correct?  To do User Registration, can I use ROS_SELF_EDIT?
    How is workflow WS10000209 (Approving External User Master Record) used?
    I appreciate any feedback.

    Hi Scott
    It's difficult to give a reply hre, but let me give it a try...For more details, try the links given above by other friends.
    You do not need SUS for Self-registration.
    COnfig
    1)Create another client for ROS.
    2)Create RFC destination for EBP system in new client. Similarly, maintain RFC dest for ROS client in EBP system.
    3)Maintain backend systems for ROS system in EBP and EBP system in ROS.
    4)Configure some product categories (need not replicate from ERP) to be used during registration.
    5)Configure the IMG settings for Supplier Self-registration (they are easy..just go through them once.
    6)Configure SCOT settings (check notes 455140) for outbound & inbound mails.
    7)Maintain org plan for purchasing org (ppoma_bbp)& vendor group(ppomv_bbp). No need for elaborate org plan like in EBP...just simple org plan.
    8) Maintain table BBP_marketp_info (Txn:SM30)
    9) Activate ROS_SELF_REG, ROS_prescreen etc ROS services in SICF
    10) Maintain client and logon info in ROS_SELF_REG service (SICF)
    11) In EBP client, maintain SAP client parameter for role SAP_EC_BBP_ST_PURCHASER for BSP link preselect suppliers (right click and change node details).
    12) Maintain catalog call structure settings in EBP client IMG for the ROS supplier directory. The URL shd be taken from ros_prescreen attributes in ROS client.
    Process:
    1) With the service ROS_SELF_REG, a partner can register. System creates a BP (prospect) in the ROS client.
    2) An email is sent to the given email id
    3) Fill the attachment and click 'send survey' button. An email is sent to the system and system copies the survey response to the registered business partner
    4) From EBP client, click on preselect suppliers. System launches the ROS client registrations listing screen.
    5) Check the suppliers registered, check the data and accept/reject the supplier registration
    6) Accepted suppliers data can be pulled into EBP through 'Maintain Business Partners' transaction and create supplier (bidder/vendor) in EBP client.
    Hope it helps
    Best regards
    Ramki

  • Urgent! form with webutil works with IAS but not with the 9iDS

    I'm configuring a standalone PC on which i can run forms as if they were running with an IAS. Now we have a form which uses webutil. This form runs fine in our IAS-environment, but fails on the standalone PC.
    On the standalone machine I'm using 9ids (9.0.2) to run this form. When the form is started I'm getting an error: FRM-40734 Internal error PL/SQL error occurred. This is caused by calls to the webutil-routines client_win_api_environment.get_windows_username and client_win_api_environment.get_computer_name
    (When I comment out these calls, the form doesn't return an error)
    Below I've included the messages on the Java Console. I can't see anything wrong:
    Oracle JInitiator: Version 1.3.1.9
    Using JRE version 1.3.1.9 Java HotSpot(TM) Client VM
    User home directory = C:\Documents and Settings\Administrator\Oracle Jar Cache
    Proxy Configuration: no proxy
    JAR cache enabled
    Location: C:\Documents and Settings\Administrator\Oracle Jar Cache
    Maximum size: 50 MB
    Compression level: 0
    c: clear console window
    f: finalize objects on finalization queue
    g: garbage collect
    h: display this help message
    l: dump classloader list
    m: print memory usage
    q: hide console
    s: dump system properties
    t: dump thread list
    x: clear classloader cache
    0-5: set trace level to <n>
    Loading http://min-ea47a8eabc66:8888/forms90/webutil/webutil.jar from JAR cache
    RegisterWebUtil - Loading Webutil Version 1.0.2 Beta
    Loading http://min-ea47a8eabc66:8888/forms90/webutil/jacob.jar from JAR cache
    Loading http://min-ea47a8eabc66:8888/forms90/java/f90all_jinit.jar from JAR cache
    Loading http://min-ea47a8eabc66:8888/forms90/hsd65java/hst65.jar from JAR cache
    connectMode=HTTP, native.
    Versie van Forms-applet is: 902110
    2004-jan-28 11:51:50.906 WUI[VBeanCommon.findLocalHost()] obtaining LocalHost info from InetAddress
    2004-jan-28 11:51:50.921 WUI[VBeanCommon.getIPAddress()] 127.0.0.1
    2004-jan-28 11:51:50.921 WUF[VBeanCommon.findLocalHost()] obtaining LocalHost info from InetAddress
    2004-jan-28 11:51:50.921 WUF[VBeanCommon.getIPAddress()] 127.0.0.1
    2004-jan-28 11:51:50.937 WUH[VBeanCommon.findLocalHost()] obtaining LocalHost info from InetAddress
    2004-jan-28 11:51:50.937 WUH[VBeanCommon.getIPAddress()] 127.0.0.1
    2004-jan-28 11:51:50.937 WUS[VBeanCommon.findLocalHost()] obtaining LocalHost info from InetAddress
    2004-jan-28 11:51:50.937 WUS[VBeanCommon.getIPAddress()] 127.0.0.1
    2004-jan-28 11:51:50.953 WUT[VBeanCommon.findLocalHost()] obtaining LocalHost info from InetAddress
    2004-jan-28 11:51:50.953 WUT[VBeanCommon.getIPAddress()] 127.0.0.1
    2004-jan-28 11:51:51.00 WUO[VBeanCommon.findLocalHost()] obtaining LocalHost info from InetAddress
    2004-jan-28 11:51:51.00 WUO[VBeanCommon.getIPAddress()] 127.0.0.1
    2004-jan-28 11:51:51.00 WUL[VBeanCommon.findLocalHost()] obtaining LocalHost info from InetAddress
    2004-jan-28 11:51:51.15 WUL[VBeanCommon.getIPAddress()] 127.0.0.1
    2004-jan-28 11:51:51.15 WUB[VBeanCommon.findLocalHost()] obtaining LocalHost info from InetAddress
    2004-jan-28 11:51:51.15 WUB[VBeanCommon.getIPAddress()] 127.0.0.1
    2004-jan-28 11:51:51.625 WUT[setProperty()] Setting property WUC_GET_LOCAL_PROPERTY to syslib.jacob.dll
    2004-jan-28 11:51:51.640 WUT[getProperty()] Getting property WUC_GET_LOCAL_PROPERTY
    2004-jan-28 11:51:51.640 WUT[loadSettings()] local properties file loaded
    2004-jan-28 11:51:51.640 WUT[getProperty()] Value of WUC_GET_LOCAL_PROPERTY=1.0
    2004-jan-28 11:51:51.640 WUT[setProperty()] Setting property WUC_GET_LOCAL_PROPERTY to syslib.JNIsharedstubs.dll
    2004-jan-28 11:51:51.656 WUT[getProperty()] Getting property WUC_GET_LOCAL_PROPERTY
    2004-jan-28 11:51:51.656 WUT[getProperty()] Value of WUC_GET_LOCAL_PROPERTY=1.0
    2004-jan-28 11:51:51.656 WUT[setProperty()] Setting property WUC_GET_LOCAL_PROPERTY to syslib.d2kwut60.dll
    2004-jan-28 11:51:51.656 WUT[getProperty()] Getting property WUC_GET_LOCAL_PROPERTY
    2004-jan-28 11:51:51.656 WUT[getProperty()] Value of WUC_GET_LOCAL_PROPERTY=1.0
    I hope anyone can help me with this problem. I0m getting a bit desperate.....

    I've tried your suggestion and the newly created form works on both environments (the standalone PC with the iDS and the "normal" evironment with an IAS). Then I added another button to this newly created form with the code "message(client_win_api_environment.Get_Windows_username);"
    This also works in the new form. Then I added some debugging code to the webutil.pll and discovered that when I use the above code in the new form everything is ok, but when I use the call client_win_api_environment.Get_Windows_username the following exception is raised in the gew_windows_username-procedure: CLIENT_WIN_API.NOT_AVAILABLE
    I've compared the newly created form with the original from and can't discover major differences between the two forms. Do you have another idea where to look?
    I noticed I forgot to mention both forms are created with oracle designer.

  • Material PO confirmation at supplier side (SUS) not taking place in SRM SUS Extended classic scenario

    We have configured extended classic scenario SRM with SUS, and all functions are working fine. However, at the time of PO confirmation of material item at the Supplier side (SUS), the material line item disappears when we click on the Create Confirmation button in SUS. The functionality is working fine for Service Items. The total value of PO is also displayed correctly in the Items overview section.
    Please provide some help in solving this issue.

    Hello,
    This is the correct behaviour of SUS - confirmations can only be created for service items which in turn create service entry sheets (Trx: ML81N in ECC).  And accepting the SES in ML81N will generate GR posting.
    For material items, you have to create ASN which will in turn create inbound delivery in ECC which you can post and will generate goods movement documents.
    So basically, for service items you create confirmation and for materials you create ASN.
    Regards,
    Prasanna

Maybe you are looking for

  • Restore Lock Screen in Windows 8.1

    I deleted the lock screen in Windows 8.1 and now realize I need it.  How can I get it back?   I deleted using Windows+R  "regedit"  using this link  http://media.askvg.com/downloads/2012/11/Disable-Windows-8-Lock-Screen.zip Is there a way to get the

  • Installed Windows 8.1 and now iTunes is gone

    I had been using the Windows 8.1 preview and itunes worked fine, but after "upgrading" to 8.1 Pro all of the software I had rpeviously installed had to be re-installed, including iTunes. However, every time I try to install it, it asks if I wish to "

  • Apple TV speeds up video playback on files ripped from DVDs - it looks like it's being fastforwarded slightly.

    I just set up my Apple TV 2, only to find playback issues from the start. Whenever I try to play videos from iTunes, the playback is noticeably faster than it should be. It's almost as if the video is slightly sped up, and the audio is in sync with t

  • How to unsubscribe from imessage

    A contact no longer has an iphone and is unable to receive imessages from me.  What needs to be done for me to communicate with her?

  • FFT Filter Preset Importation / Creation

    After using Audition to copy the eq's of two different songs, I computed the difference between them in Excel to make a compensation eq curve. I would like to use the data I collected to generate an FFT Filter preset. I have looked into editing Audit