WEBUTIL and FRM-90926 - Duplicate parameter on command line

Hello
I'm trying to get the webutil demo (WU_TEST_105.fmb) to work...I've followed all the instructions but have ended up getting the FRM-90926 error message when I run it. This seems to be caused by the webutiljini.htm file having duplicate commands with those in the formsweb.conf file. I'm using Forms10g.
I've gone through all the FRM-90926 questions on this forum and none of them address this problem. Does anyone have any ideas?
Many Thanks.
Evan

Frank
I've found the duplicate entries in the formsweb.cfg file. If I remove them then I get FRM-47023 errors (No such parameter named...) and the form doesn't run. Do you have any idea how I can get rid of these duplicate entries?
Thanks
Evan

Similar Messages

  • F45gen compilation error in unix(FRM-90927: Unknown parameter on command)

    I am getting the following error message when I am compiling the form under unix.
    FRM-90927: Unknown parameter on command line.
    Here is the command I issue at the unix level to generate the form.
    f45gen Module=form_name.fmb Userid=apps/apps@db Output_File=form_name.fmx Module_Type=FORM Batch=yes Compile_All=yes
    Thanks in advance.
    Edited by: user510986 on Apr 16, 2010 4:05 PM
    Edited by: user510986 on Apr 16, 2010 5:02 PM

    I am getting the following error message when I am compiling the form under unix.
    FRM-90927: Unknown parameter on command line.
    Here is the command I issue at the unix level to generate the form.
    f45gen Module=form_name.fmb Userid=apps/apps@db Output_File=form_name.fmx Module_Type=FORM Batch=yes Compile_All=yes
    Thanks in advance.
    Edited by: user510986 on Apr 16, 2010 4:05 PM
    Edited by: user510986 on Apr 16, 2010 5:02 PM

  • How to duplicate a target and add resources in xcode using command line?

    I am trying to use command line tools to create, add resources, build, archive and export to ipa in xcode. I could do the Build, Archive and Exporting to IPA through the command line tools(xcodebuild). But I also wanted to duplicate the target in the same project,add a new Info.plist to the duplicated target resource through command line itself. How to do it? I could not find any valuable answers by Googling. I could not find any proper documentation also in Apple Sites.
    Is there any tools that can be used to perform these? I don't want to use the UI. Please, help me out.

    The Mac App Store is not appropriate for command line tools. You can use any language you want.

  • Error while running a Discoverer Workbook with parameter from command line

    I am trying to run a discoverer report from command line and export the results in xls on to my local machine. I could do it fine for a simple workbook, but if I add a parameter(madatory) to the workbook and run it from command line specifying the parameter value I wanted to run the report for, I do not get any results. Here is the command line I am using.
    dis51usr.exe /connect user/password@database /apps_user /apps_responsibility "System Administrator" /eul EUL_US /open C:\Disco\Test.DIS /sheet Testsheet /parameter Period Jan-07 /export xls C:\Disco\X.xls /batch
    Parameter value is entered in correct format(Jan-07).
    When I removed /batch from this to see if I get any error, Discoverer Desktop opened up, logged in and gets terminated saying 'Oracle Discoverer Desktop has encountered a problem and need to close. We are sorry for the inconvenience.'
    Did anybody come across this issue before?

    Hello,
    If you have a few minutes, Windows is also aborting for me:
    the differences are, my situation is:
    a) am running the command line from a .bat file
    b) am NOT running with parms, want the discoverer query to come up for the user
    c) am running a query from the database
    i am signing in as myself BUT running a query that was created by a generic user called SREG
    c) if i run the .bat file from Windows Explorer, the query opens fine
    d) if i execute the .bat file from within Microsoft Access using the shell command,
    the query opens and then aborts RIGHT BEFORE the parm screen would display
    e) btw, if i modify the .bat file, to run a query from MY database signon, then (d) - running .bat file
    from vb using SHELL command works
    Do you have a ideas as to why (d) does not work? I would be very grateful for your time, tx, sandra
    this is what i posted yesterday, tx: Re: Running Discoverer command line
    tx, sandra

  • How to create and use library JAR files with command-line tools?

    Development Tools -> General Questions:
    I am trying to figure out how to put utility classes into JAR files and then compile and run applications against those JAR files using the command-line javac, jar, and java tools. I am using jdk1.7.0_17 on Debian GNU/Linux 6.0.7.
    I have posted a simple example with one utility class, one console application class, and a Makefile:
    http://holgerdanske.com/users/dpchrist/java/examples/jar-20130520-2134.tar.gz
    Here is a console session:
    2013-05-20 21:39:01 dpchrist@desktop ~/sandbox/java/jar
    $ cat src/com/example/util/Hello.java
    package com.example.util;
    public class Hello {
        public static void hello(String arg) {
         System.out.println("hello, " + arg);
    2013-05-20 21:39:12 dpchrist@desktop ~/sandbox/java/jar
    $ cat src/com/example/hello/HelloConsole.java
    package com.example.hello;
    import static com.example.util.Hello.hello;
    public class HelloConsole {
        public static void main(String [] args) {
         hello("world!");
    2013-05-20 21:39:21 dpchrist@desktop ~/sandbox/java/jar
    $ make
    rm -f hello
    find . -name '*.class' -delete
    javac src/com/example/util/Hello.java
    javac -cp src src/com/example/hello/HelloConsole.java
    echo "java -cp src com.example.hello.HelloConsole" > hello
    chmod +x hello
    2013-05-20 21:39:28 dpchrist@desktop ~/sandbox/java/jar
    $ ./hello
    hello, world!I believe I am looking for:
    1. Command-line invocation of "jar" to put the utility class bytecode file (Hello.class) into a JAR?
    2. Command-line invocation of "javac" to compile the application (HelloConsole.java) against the JAR file?
    3. Command-line invocation of "java" to run the application (HelloConsole.class) against the JAR file?
    I already know how t compile the utility class file.
    Any suggestions?
    TIA,
    David

    I finally figured it out:
    1. All name spaces must match -- identifiers, packages, file system, JAR contents, etc..
    2. Tools must be invoked from specific working directories with specific option arguments, all according to the project name space.
    My key discovery was that if the code says
    import com.example.util.Hello;then the JAR must contain
    com/example/util/Hello.classand I must invoke the compiler and interpreter with an -classpath argument that is the full path to the JAR file
    -classpath ext/com/example/util.jarThe code is here:
    http://holgerdanske.com/users/dpchrist/java/examples/jar-20130525-1301.tar.gz
    Here is a console session that demonstrates building and running the code two ways:
    1. Compiling the utility class into bytecode, compiling the application class against the utility bytecode, and running the application bytecode against the utility bytecode.
    2. Putting the (previously compiled) utility bytecode into a JAR and running the application bytecode against the JAR. (Note that recompiling the application against the JAR was unnecessary.)
    (If you don't know Make, understand that the working directory is reset to the initial working directory prior to each and every command issued by Make):
    2013-05-25 14:02:47 dpchrist@desktop ~/sandbox/java/jar
    $ cat apps/com/example/hello/Console.java
    package com.example.hello;
    import com.example.util.Hello;
    public class Console {
        public static void main(String [] args) {
         Hello.hello("world!");
    2013-05-25 14:02:55 dpchrist@desktop ~/sandbox/java/jar
    $ cat libs/com/example/util/Hello.java
    package com.example.util;
    public class Hello {
        public static void hello(String arg) {
         System.out.println("hello, " + arg);
    2013-05-25 14:03:03 dpchrist@desktop ~/sandbox/java/jar
    $ make
    rm -rf bin ext obj
    mkdir obj
    cd libs; javac -d ../obj com/example/util/Hello.java
    mkdir bin
    cd apps; javac -d ../bin -cp ../obj com/example/hello/Console.java
    cd bin; java -cp .:../obj com.example.hello.Console
    hello, world!
    mkdir -p ext/com/example
    cd obj; jar cvf ../ext/com/example/util.jar com/example/util/Hello.class
    added manifest
    adding: com/example/util/Hello.class(in = 566) (out= 357)(deflated 36%)
    cd bin; java -cp .:../ext/com/example/util.jar com.example.hello.Console
    hello, world!
    2013-05-25 14:03:11 dpchrist@desktop ~/sandbox/java/jar
    $ tree -I CVS .
    |-- Makefile
    |-- apps
    |   `-- com
    |       `-- example
    |           `-- hello
    |               `-- Console.java
    |-- bin
    |   `-- com
    |       `-- example
    |           `-- hello
    |               `-- Console.class
    |-- ext
    |   `-- com
    |       `-- example
    |           `-- util.jar
    |-- libs
    |   `-- com
    |       `-- example
    |           `-- util
    |               `-- Hello.java
    `-- obj
        `-- com
            `-- example
                `-- util
                    `-- Hello.class
    19 directories, 6 filesHTH,
    David

  • How to enable telemetry logs and where can i find the command line for sun

    Hi i tried creating the telemetry logs directory but the logs are not being populated. i created the following directory:-
    /opt/SUNWmsgsr/data/telemetry/imap/usersns1
    where usersns1 is the userid.
    Also pl. tell me where can i get the command list for sun one messaging server to use the command line utility to list, delete mailboxes. also can i search for all the mailboxes under one domain name. if yes then which command i have to use.
    thanks in advance.

    Hi,
    Hi i tried creating the telemetry logs directory but
    the logs are not being populated. i created the
    following directory:-
    /opt/SUNWmsgsr/data/telemetry/imap/usersns1
    where usersns1 is the userid.Make sure the permissions (ownership) on the user directory and the sub directory match those that messaging server uses - by default mailsrv:mail. This is the most common cause of the telemetry data not being created. The other thing to verify is that the user's account isn't stored as user@domain, otherwise you may need to create the directory as the entire user@domain (try both just to be sure).
    Also pl. tell me where can i get the command list
    for sun one messaging server to use the command line
    utility to list, delete mailboxes. also can i search
    for all the mailboxes under one domain name. if yes
    then which command i have to use.The Messaging Server reference guide is a good place to start (lists all the command-line utilities/flags and what-not):
    http://docs.sun.com/app/docs/doc/819-4429?l=en
    The mboxutil command is used to list/create/delete mailboxes and you can use a pattern to only list those mailboxes in a specific domain.
    Regards,
    Shane.
    thanks in advance.

  • How do I generate PDF and CHM files from the a command line in windows?

    I am trying to set up a PC to build some documents during the night. I was looking for a way to get framemaker to generate PDF and CHM files via a command line in windows? How is this done with FrameMaker 12
    Thanks for the help
    Alex

    Hi,
    The part with generate a PDF via a jsx seems to work OK, except when FrameMaker decides that it will not work anymore. I must say I am not impressed with the stabillity of FrameMaker 12, there is room for a lot of improvement!.
    I have given up on how to figure out how to get FrameMaker 12 to generate chm files via jsx scripts, any pointes are still very welcome.
    The route I have taken is I make a RoboHelp project for each chm files I need to generate. The only thing this RoboHelp project contains is a link to the actual FrameMaker project I want to generate a chm file.
    To make the chm I start RoboHelp with a script that
    1) Opens the desired project
    2) Sets the desired output chm files name
    3) Generates the chm file
    4) And finally quits RoboHelp
    Below is a copy of the jsx in case anyone can reuse anything.  And yes parameters are transfered via enviroments variable. I have later learned there is some way to read the parameters given at a command line but this seems to work so I stick to this for now.
    // Get parameters
    var RhProjName = $.getenv("RH_PROJ_NAME");
    var RhChmName = $.getenv("RH_CHM_NAME");
    var RhLogFileName = $.getenv("RH_LOGFILE_NAME");
    var RhLogFile = new File(RhLogFileName);
    RhLogFile.open("w", "TEXT");
    RhLogFile.writeln("RH_PROJ_NAME : ", RhProjName);
    RhLogFile.writeln("RH_CHM_NAME : ", RhChmName);
    doc = RoboHelp.openProject (RhProjName, 1);
    var sslmngr = RoboHelp.project.SSLManager;
    for(var i = 1; i<=sslmngr.count; i++){
      var ssl = sslmngr.item(i);
      if(ssl.name == 'Microsoft HTML Help') {
        // Set the output location and file name
        ssl.setSpecificProperty("DestinationProjectName", RhChmName);
        if (doc.saveAll(true) ) {
          RhLogFile.writeln("saveAll returned TRUE");
        } else {
          RhLogFile.writeln("saveAll returned FALSE");
        if ( ssl.generate() ) {
          RhLogFile.writeln("ssl.generate returned TRUE");
        } else {
          RhLogFile.writeln("ssl.generate returned FALSE");
      } else {
        // alert ("Found " + ssl.name + " dont do anything");
    doc.saveAll(true);
    RhLogFile.close();
    RoboHelp.closeProject();
    RoboHelp.quit();

  • Duplicate monitors using command line\script in iron-python

    I want to use iron python script to extend desktop monitor. I found the HotKey for it in this site :http://www.petenetlive.com/KB/Article/0000162.htm but
    have no idea how to do it. Is there a way to do it using cmd? (I can run it using python)
    thanks a lot!

    $wshell = new-object -com wscript.shell
    $wshell.sendkeys("^{ESC}P")
    ¯\_(ツ)_/¯

  • Urgent !!!  FRM-90926--- Webutil

    Hi,
    i am trying to use webutil in Forms. I am using Forms 9iDS. when i am running the forms i am getting the error FRM-90926 ' Duplicate parameter on Command LIne'
    my java console is giving the following message
    Loading http://localhost:8888/forms90/webutil/webutil.jar from JAR cache
    Loading http://localhost:8888/forms90/webutil/jacob.jar from JAR cache
    Loading http://localhost:8888/forms90/java/f90all_jinit.jar from JAR cache
    RegisterWebUtil - Loading WebUtil Version 1.0.5 Production
    connectMode=HTTP, native.
    Forms Applet version is : 90290
    RegisterWebUtil - Loading WebUtil Version 1.0.5 Production
    connectMode=HTTP, native.
    Forms Applet version is : 90290
    my formsweb.cfg configuration is below
    [webutil]
    form=c:/testwebutil.fmx
    webUtilArchive=/forms90/webutil/webutil.jar,/forms90/webutil/jacob.jar
    WebUtilLogging=off
    WebUtilLoggingDetail=normal
    WebUtilErrorMode=Alert
    baseHTML=c:\webutil\server\webutilbase.htm
    baseHTMLjinitiator=c:\webutil\server\webutiljini.htm
    baseHTMLjpi=c:\webutil\server\webutiljpi.htm
    archive_jini=f90all_jinit.jar
    archive=f90all.jar
    lookAndFeel=oracle
    width=100%
    height=100%
    envFile=webutil.env
    and my ENV file configuration is below
    ORACLE_HOME=c:\Oracle9i
    FORMS90_PATH=c:\webutil\forms
    CLASSPATH=c:\webutil\lib\webutil.jar;c:\Oracle9i\jlib\debugger.jar;c:\Oracle9i\jlib\ewt3.jar;c:\Oracle9i\jlib\share.jar;c:\Oracle9i\jlib\utj90.jar;c:\Oracle9i\jdk\jre\lib\rt.jar
    WEBUTIL_CONFIG=c:\webutil\server\webutil.cfg
    i put the alias in the forms90.conf as
    AliasMatch ^/forms90/webutil/(..*) "c:\webutil/lib/$1"
    i will really appreciate any suggestion regarding this problem
    Thanks in advance
    Mamun

    Hi Grant,
    Thanks for the reply. Answer to your questions are
    #1 No, when i run other forms, i don't have any problem.
    #2 i just added the simple webutil call as given in the webutil documentation. i did all the necessary steps and then when i try to execute the form i am getting this error.
    #3 the problem appears at startup, when i try to execute the form using the url in Internet explorer
    http://localhost:8888/forms90/f90servlet?config=webutil
    then i get that error message and nothing happens after that,
    Thanks,
    Mamun

  • WebUtil upgrade causes FRM-90926 on all forms

    Since upgrading from the Beta to the Production release of WebUtil I am no longer able to run forms from iDS Builder.
    I get the "FRM-90926: Duplicate parameter on command line." error and believe its caused by the difference between the webutiljini.htm provided with the Beta release and the latest version.
    If I replace the new webutiljini.htm with the old one then no errors occur. Is this an acceptable workround or will I be missing out on any new features from the production release?

    Tim,
    its acceptable because the webutiljini file is nothing more than a basejini file with the webutil reference added. The Forms Servlet uses this file to create the Forms Applet HTML file.
    However, if you compare the two webutiljini files, maybe you see where the difference is that causes this error. If its a duplicate command then I assume that in the newer webutiljini a parameter shows twice.
    Frank

  • Command line method to obtain DNS and proxy info?

    Hello All,
    I have poked around the man pages but am not making any progress on this. I am looking for a command that would query the network to find a) whether there is a DNS server, and b) if there is, what the domain and IP address is. Similarly, if there is a proxy server being advertised, how would I get the IP address and port number info from the command line? The command cannot depend on the machine already being configured for DNS or running DHCP because in the majority of cases where I need it, the machine has been set to a fixed IP address and the customer may not know the DNS & proxy information. Right now I am relying on them going to a Windows system and running the ipconfig /all command.
    Any help on this would be apreciated. Thanks,
    Mausul.

    Ok, I tried that, but it seems there is a catch -- I have to first configure the system for DHCP, then the dhcpinfo command will display these values that it obtained from the DHCP server. The problem with that approach is this -- if there is no DHCP server, it will sit there for a long time with the interface "pending command" while it searches. Can I test for the presence of a DHCP server without actually attempting to configure the interface? As I am typing this, I think one way to cheat might be to create a clone of the interface and try to configure the clone for DHCP...

  • Command-line mp3 tagger and file renamer programs

    I've been looking around and haven't come across a command-line program to edit mp3 tags and rename files based on those tags. Any suggestions?

    Have a look at http://home.gna.org/lltag/ - it's in the AUR: https://aur.archlinux.org/packages/lltag/

  • Enable, backup and restore FCSvr in command line

    Hi All,
    Anyone know how to enable, backup and restore Final Cut Server in command line?
    Thanks,
    Spin

    First delete the /var/db/FinalCutServer/ folder and ran the Final Cut Server.dmg file to reinstall.
    Next grab your most recent backup and moved the "-" file to the desktop (this contains the database restoration script).
    Open up a command window and execute the following commands:
    cd "/Library/Application Support/Final Cut Server/Final Cut Server.bundle/Contents/Resources/sbin/"
    ./fcsvr_run psql px pxdb
    From the psql command prompt execute this command, substituting the path to your "-" database script:
    \i /Users/finalcutserver/Desktop/-
    After that finished executing I was able to start Final Cut Server and so far it looks as though everything has been restored! Fingers crossed...

  • Do i put -private-window in the command line of the shortcut?

    can someone show me what to do with the -private-window command line of the shortcut? I have windows 8 pro. I want to make a shortcut for this. Thanks

    Hi lolnyancats,
    there are multiple ways how to start Firefox in private browsing mode. If you want to use a shortcut parameter, follow the instructions below:
    # Create firefox shortcut;
    # Right-click on the shortcut, choose properties;
    # Edit location (not name), file path and file name followed by the command line argument "-private", e.g.: "C:\Program Files\Mozilla Firefox\firefox.exe" -prvate;
    # Save changes.
    When you double click the modified shortcut you have just created, Firefox will start in private browsing window.
    Other cmd line parameters you could possibly use and further info.: http://kb.mozillazine.org/Command_line_arguments

  • Command line printing - AdobeReader left open

    Hello everyone,
    I've a problem by printing pdfs using the command line. My VB-script contains a code line like following (including the quotation marks for document and printer):
    process=myShell.Exec("c:\Program Files\Adobe\Reader\Reader 8.0\AcroRd32.exe /t "c:\test.pdf" "myprintersname")
    (print test.pdf on myprintersname)
    This command runs nearly perfect; after printing the AdobeReader-window left open. I tried to use an Application.Activate(process.ProcessID) followed by SendKeys("%{F4}") to close the front window. My AdobeReader-window won't come to foreground and so the active window (e.g. firefox) gets the ALT-F4-shortcut and asks for closing.
    Is there another command line parameter or solution available to close the named pdf-document AND AdobeReader after printing the document?
    Thanks for help
    gerald
    UPDATE: I've found a solution for this problem. After executing the command line (process=myShell.Exec.......) there's a "script sleeping time" needed, e.g. WScript.Sleep 10000 (wait 10 sec) followed by the command "process.Terminate". Then AdobeReader will be terminated and script goes on...

    Command line parameters are sparsely documented and are officially not supported. What is documented can be found here: http://partners.adobe.com/public/developer/en/acrobat/sdk/pdf/intro_to_sdk/DeveloperFAQ.pd f
    I've not seen anything that shows what you want to do.

Maybe you are looking for

  • CRMXIF_ORDER_SAVE Test Returns Error Exception CX_ST_REF_ACCESS

    Hello, We are on CRM 6.0 Landscape. I create a Web Service from FM CRMXIF_ORDER_SAVE and when I do a Test from WS Navigator by passing existing Quotation Number and a new Product ID in ITEM I get following error SOAP Response: <soap-env:Envelope xmln

  • Problem starting OpenOffice with KDE [Solved]

    I just did a clean Arch install witk KDE desktop. After I installed OpenOffice with pacman -Sy openoffice-base when I try to start openoffice I get the following error message "The application cannot be started. An internal error occurred." I tried t

  • Left over of Sales Order creates new planned order of whole batch

    Hi Gurus, We are using planning without Assembly strategy (52) and Sales order is created in our sales plant and Purchase order from sales plant creates STO on manufacturing plant which than produces material using process order. Now sales order says

  • Gnome hang

    Hi, Having some trouble with gnome hanging and it has quickly gone beyond my knowledge, wandering if anyone can set me off in the right direction.  Only odd thing here is I am running it in a virtual box VM with the virtual box tools (its got plenty

  • Shockwave won't install Macbook Pro OS X 10.9.2

    I just upgraded the OS on my Macbook Pro to 10.9.2.  Downloaded the most recent version of Shockwave and get the following error message:  "Incompatible OS version ! Adobe Shockwave Player isn't supported on this OS version".  I tried the clean insta