Argument "10.2.8.39 c/ 1435.Process" for option "connection" is not valid. The command line parameters are invalid.

Hello,
I am running a sql job which runs SSIs pakcage imported from Integration Service Sever..
it give me this error.... the server is :10.2.8.39 and the database is process
how can I fix It? 

Hello Arthux ,, thx alot for your help,,, I run the job again and this time it gives me this error ??
Date,Source,Severity,Step ID,Server,Job Name,Step Name,Notifications,Message,Duration,Sql Severity,Sql Message ID,Operator Emailed,Operator Net sent,Operator Paged,Retries Attempted
11/28/2011 13:58:09,SSISScoreCardsSDM,Error,0,OPLINKDEVINTRA\OPLINKDEVINTRA,SSISScoreCardsSDM,(Job outcome),,The job failed.  The Job was invoked by User LINKDOTNET\michael.philip.  The last step to run was step 1 (SDM).,00:00:01,0,0,,,,0
11/28/2011 13:58:10,SSISScoreCardsSDM,Error,1,OPLINKDEVINTRA\OPLINKDEVINTRA,SSISScoreCardsSDM,SDM,,Executed as user: LINKDEV\OPSQLADMIN. Microsoft (R) SQL Server Execute Package Utility  Version 10.50.1600.1 for 64-bit  Copyright (C) Microsoft
Corporation 2010. All rights reserved.    Option "    /CONNECTION" is not valid.  The command line parameters are invalid.  The step failed.,00:00:00,0,0,,,,0

Similar Messages

  • Microsoft (R) SQL Server Execute Package Utility Version 10.50.2500.0 for 64-bit Copyright (C) Microsoft Corporation 2010. All rights reserved. Argument "Data connector" for option "connection" is not valid. The command line parameters are invalid.

    sql server:- 2008 r2 stardard edition
    os:- 64
    Package is password procted.
    following is command line in ssis package .
    /FILE "E:\PostgressToSql_IPMS\PostgressToSql_IPMS\PostgressToSql.dtsx"
     /DECRYPT  /CONNECTION "Server.user";"\"Data Source=server;
    User ID=user;Provider=SQLOLEDB.1;Persist Security Info=True;
    Application Name=SSIS-Package-{DD33AC67-4A45-40D6-AF70-4BBD421931C1}BPOSQLDB01\BPOSQLDB01.log4BPO;
    Auto Translate=False;\"" /CONNECTION "server.conn 1";
    "\"Data Source=server;User ID=log4BPO;Initial Catalog=edb1;
    Provider=SQLOLEDB.1;Persist Security Info=True;Auto Translate=False;
    Application Name=SSIS-Package-{665E3825-6AFC-4DD3-ABC8-50B5F0F18EEB}server.conn 1;
    \"" /CHECKPOINTING OFF /REPORTING E
    Need change something? Seperate configuaration file required ?

    Hi Dinesh,
    Based on my research, the issue is caused by you are running a SSIS package with a connection manager that has a space-character in the connection name.
    To work around this issue, please refer to the following two suggestions:
    Rename the connection manager in THE package to not include certain special characters (spaces, dashes). Note that the connection manager name can be changed without having to edit any property of the connection string itself.
    Escape quote the connection name, such that
    /CONNECTION "server.conn 1";"..."
    becomes
    /CONNECTION "\"server.conn 1\"";"..."
    The following similar issue is for your reference:
    https://connect.microsoft.com/SQLServer/feedback/details/510869/dtexec-commandline-fails-when-connection-is-passed-to-commandline-and-connection-name-contains-a-space
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Connection string not in the command line argument.

    Hi,
    I found myself constantly looking for the debug connection string and to enter it in the "Command line arguments".  I decided to create my Add-On base class from which all my add-ons inherit from.
    In the constructor of the base Add-On class I determine the connection string based on whether the code is in debug more or not.
    Example:
    string connectionString  = string.Empty;
    #if DEBUG
        _connectionString = "0030002C0030002C00530041005000420044005F00440061007400650076002C0050004C006F006D0056004900490056";
    #else
        // Get the log info
        if (Environment.GetCommandLineArgs().Length > 1 )
            _connectionString = Environment.GetCommandLineArgs().GetValue(1).ToString();
    #endif
    I hope this help.
    Edited by: B1Computing on Apr 5, 2011 8:20 PM

    Hi,
    I found myself constantly looking for the debug connection string and to enter it in the "Command line arguments".  I decided to create my Add-On base class from which all my add-ons inherit from.
    In the constructor of the base Add-On class I determine the connection string based on whether the code is in debug more or not.
    Example:
    string connectionString  = string.Empty;
    #if DEBUG
        _connectionString = "0030002C0030002C00530041005000420044005F00440061007400650076002C0050004C006F006D0056004900490056";
    #else
        // Get the log info
        if (Environment.GetCommandLineArgs().Length > 1 )
            _connectionString = Environment.GetCommandLineArgs().GetValue(1).ToString();
    #endif
    I hope this help.
    Edited by: B1Computing on Apr 5, 2011 8:20 PM

  • MS SSIS command line call "Argument for option 'set' is not valid"

    Hi all,
    I'm tring to execute a SSIS package from command line. Here's the code:
    dtexec.exe /file "E:\TestIS\IntegrationServicesProject1\IntegrationServicesProject1\Package.dtsx" /set \Package.Variables[User::Name].Properties[Value];20150314
    and it return a error saying  "Argument for option 'set' is not valid". I've configure the package and generated a XML file. And do exactly as the official doc says. However, this line of code just doesn't work. If I delete the set option
    and run the package alone, it can be ran. So anyone can help me out? Thank you in advance.

    Hi NoahdeArk,
    In SQL Server Integration Services, string literals must be enclosed in quotation marks. The expression language provides a set of escape sequences for commonly escaped characters such as nonprinting characters and quotation marks. A string literal consists
    of zero or more characters surrounded by quotation marks. If a string contains quotation marks, these must be escaped in order for the expression to parse. For more details, please see:
    https://msdn.microsoft.com/en-us/library/ms141001.aspx
    So to troubleshoot this issue, please refer to the following command:
    dtexec.exe /file "E:\TestIS\IntegrationServicesProject1\IntegrationServicesProject1\Package.dtsx" /set \Package.Variables[User::Name].Properties[Value]; \"20150314\"
    Or
    dtexec.exe /file "E:\TestIS\IntegrationServicesProject1\IntegrationServicesProject1\Package.dtsx" /set \Package.Variables[User::Name].Properties[Value]; \""20150314"\"
    The following similar threads are for your references:
    https://social.msdn.microsoft.com/Forums/sqlserver/en-US/af4f62e1-b600-49d7-98c2-4a35c9fef404/escape-character-for-set-option-of-dtexec
    http://stackoverflow.com/questions/9612471/dtexec-error-setting-multiple-variables
    Thanks,
    Katherine Xiong
    If you have any feedback on our support, please click
    here.
    Katherine Xiong
    TechNet Community Support

  • Pass the command line argument (argc and argv) to a LabVIEW built shared library.

    Hello,
    I have successully use this trick to build a LabVIEW application that runs on Linux without X Display.
    http://digital.ni.com/public.nsf/allkb/5D6EC36DCF43343786257449006919E6
    I'd like to know if it's possible to pass the command line arguments ( ./TEST A B C D) directly into the shared library without having to pass the arguments using a array of strings which would require to write code using DSNewHandle, DSSetHandleSize, extract the arguments and ..... (I'm not proficient in C, but if I don't have a choice I will do it and improve my C skills).
    int main(int argc, char *argv[])
            Test(argc, argv);
            return 0;
    Thanks,
    Michel
    Solved!
    Go to Solution.

    Well, you can always flatten it back into a space separated single string and pass it like that. Basically reverse what the OS does when it calls your main function with the command line parameters. And while the first element in the array is always the program name itself you can just skip that here, but then format all the rest into a single string.
    Rolf Kalbermatter
    CIT Engineering Netherlands
    a division of Test & Measurement Solutions

  • How to hide the command line arguments from solaris process

    Hi All,
    When I execute a JAR application from a java file using the Runtime.getRuntime, the command line arguments (user ID and Password details) which I passed for executing the application displayed on Solaris process (ps -ef).
    Could anybody please help me, how can I hide either the process or the command line arguments from the Solaris process?
    I cannot pass any asterix or any special character in place of password, because the executing application doesn't have any functionality to retreive the password which send as asterix characters.
    Please help me
    SumodeV

    Thanks for all the response.
    I have created a design and implement the functionality which executes the JAR application in Solaris environment without showing any details in the process details.
    I have used the Java Reflection method, which invokes the JAR application. I am sharing the details here for all those who looking for it.
    1, Inside the Customer application [Jar File is running for it], collect the necessary session details [Using System.get property method]
    2, Create an independent Java file, which should be used to invoke the JAR application
    3, Create the ProcessBuilder object and use a command - execute the Java file [a wrapper code] using normal Java command
    4, Pass the necessary session details to the ProcessBuilder using the environment() function.
    5. Collect the environment values in the independent Java file (Which was invoked by ProcessBuilder) and set details for its environment using System.setProperty.
    6, Use reflection technique to invoke the JAR plugin [which you want to run]. You can use the standard Java functionality to read the MANIFEST file of JAR and load the main class using URLClassLoader.
    7, Invoke the main method of the JAR file, which run the JAR application in Solaris window
    This solution will make sure that the process cannot display any session details in the Solaris Environment.
    Note: Use String[] array while create the command. Otherwise the JAR application cannot pop-up.
    Regards
    Sumode

  • Error while running aiaconfig.sh - The command line argument(s) "weblogicConfig"

    Hi.
    We are Configuring PIP on AIA 11.1.1.7 after installing AIA PIP release. we we run ./aiaconfig.sh we are getting below error message,
    $./aiaconfig.sh
    Starting Oracle Universal Installer...
    Checking swap space: must be greater than 500 MB.   Actual 169130 MB    Passed
    Checking monitor: must be configured to display at least 256 colors.    Actual 16777216    Passed
    Preparing to launch Oracle Universal Installer from /tmp/OraInstall2013-11-20_04-11-10AM. Please wait ...adevaia                                                        @soa-odi-dev1:/u02/app/Oracle/Middleware/AIAHOME/bin$ [WARN ][jrockit] MaxPermSize=256m ignored: Not a valid opt                                                        ion for JRockit
    Log: /u01/app/oraInventory/logs/install2013-11-20_04-11-10AM.log
    The command line argument(s) "weblogicConfig" or the install mode specified is not valid.
    Copyright (c) 1999, 2011, Oracle and/or its affiliates. All rights reserved.
    Usage:
    config.sh [-mode] [-options] [(<CommandLineVariable=Value>)*]
    Where mode include:
    [Mode is a mandatory parameter. Only one mode can be specified.]
         -silent For silent mode operations, the inputs can be a response file or a list of
                  command line variable value pairs.
    Where options include:
         -help, --help, --usage
                  Displays above usage.
         -invPtrLoc <inventory pointer file>
                  Launches the installer with a custom inventory location. The invPtrLoc
                  should point to a file which contains the following information.
                  inventory_loc=<inventory_location>
                  inst_group=<group_name>
         -response, -responseFile <response file>
                  Specifies the response file and path to use.
         -jreLoc <location>
                  Path where Java Runtime Environment is installed. OUI cannot be run without
                  it.
         -logLevel <level>
                  To filter log messages that have a lesser priority level than <level>.
                  Valid options are: severe, warning, info, config, fine, finer, finest,
                  basic, general, detailed, trace. The use of basic, general, detailed, trace
                  is deprecated.
         -debug  For getting the debug information from OUI.
         -force  Allowing silent mode installation into a non-empty directory.
         -printdiskusage
                  Log debug information for disk usage.
         -printmemory
                  Path where Java Runtime Environment is installed. OUI cannot be run without
                  it.
         -printtime
                  Log debug information for time usage.
         -waitforcompletion
                  For windows. setup.exe will wait for completion instead of spawning the
                  java engine and exiting.
         -noconsole
                  For suppressing display of messages to console. Console is not allocated.
         -ignoreSysPrereqs
                  For ignoring the results of the system pre-requisite checks.
         -executeSysPrereqs
                  Execute system pre-requisite checks and exit.
         -paramFile <location of file>
                  Specify location of oraparam.ini file to be used by OUI.
         -novalidation
                  Disables the validations, can be invoked along with GUI or silent mode.
         -nodefaultinput
                  Disables the default computation of values (pre-populating of values when
                  screen is loaded) in GUI install.
         -nocheckForUpdates
                  To disable all updates checking
         -updatesDir
                  To specify the directory where latest updates are downloaded. This could be
                  used in disconnected mode.
    Command Line Variables Usage:
              Command line variables are specified using <name=value>; for example:
                  [ session: | session:compName: | session:compName:version: ]variableName=" valueOfVariable"]
              Installer variables are specified using:
                  varName=value
                  Ex: ORACLE_HOME=<value>
              OUI Session variables are specified using:
                  session:varName=value
                  Ex: session:VARIABLE_NAME=<value>
              OUI Component variables are specified using:
                  session:compInternalName:[Version:]varName
                  Ex 1: session:oracle.comp1:1.0.1:varName=<value>
                  Ex 2: session:oracle.comp1:varName=<value>
                  The lookup order is compInternalName:Version:varName, then compInternalName:varName
    do anyone had any idea on this.
    Thanks a lot,
    RR.

    try checking relevant environment variables like the CLASSPATH.... a major source of failures in Windows is when in the classpath there is a path containing SPACES.... also enabling some "debug" or "verbose" flag (not sure how to do it) would provide more insight...

  • Post order processing for sales document is not yet complete

    hi,
    sap gurus,
    i am facing the error while saving the sales order and this ticket is unique and it is saying that
    "post order processing for sales document is not yet complete".
    please help me in this regard.
    and it is blocking the order for further processing.
    regards,
    balajit

    I dont think this is a standard error message.  Some exit is applied for sale order to meet some requirements.  You need to check with your ABAPer.
    In fact, you can conclude yourself based on the error message number.  If it starts with Z, then the above holds good.
    thanks
    G. Lakshmipathi

  • Use as objects arguments in the command line

    Hello :)
    how can i use the arguments in the command line as objects
    java xxx file.txt file2.txt
    the program get as args[] those arguments
    args[0] .... file.txt
    args[1.... file2.txt ..... n
    i don t want to write the arguemnts in the command line i want to use it as an object for example :
    File file = new File ("c:/somedirectory/file.txt") ...
    plese help me
    thanx

    I did it
    easy cake
    String s = "a.txt";
    String args1[] = {
    "-o", s };
    c u

  • Counting arguments in the command line

    I need to write a snip of code that will check the command line to make sure there are 5, no more or less, arguments. If not I have to return an error message. Anyone have any ideas?
    Stephen

    The command line args will be in a String[] passed to main(). Arrays have a length field that tells you how many elements they have.
    http://java.sun.com/docs/books/tutorial/java/nutsandbolts/arrays.html

  • Argument error; the number of columns does not equal the number of parameters.

    I am using the Database Toolkit (Enterprise Connectivity) to check for a network connection and then send information from a local database to a SQL database on the network if needed.  In development of the code I continue to receive Error 1 and the Possible Reason(s) is "Argument error; the number of columns does not equal the number of parameters."  I am using the DBToolsSelectData.VI to retrieve data from the local MDB file and the DBToolsInsertData.VI to write it to the SQL file.  The collection of the data from the MDB file is successful and the connection and validation of the table and columns in the SQL file is also successful.  The error occurs when the Insert VI tries to build the query.  The number of columns being written (attempted) does match the number of columns in the data, they are both 16 string arrays.

    Ok, it's taken a bit, and I have a solution! It took a while to figure out what the DCT is doing, but it seems to be working now.
    The reason for the original error is that you were passing into the insert subVI an array of variants - which the input to the VI coerced into a single variant. You were getting the error because as far as the insert VI was concerned you were only passing it a single data value. The way to get around that was to create a cluster with one element for each column value, convert the cluster to a variant and pass the result to the insert VI - see attachment.
    In terms of the other modifications, I made a copy of the endurance.mdb file, emptied it and used it as the destination for the copy.
    Mike...
    Certified Professional Instructor
    Certified LabVIEW Architect
    LabVIEW Champion
    "... after all, He's not a tame lion..."
    Be thinking ahead and mark your dance card for NI Week 2015 now: TS 6139 - Object Oriented First Steps
    Attachments:
    NetworkCheck.vi ‏49 KB

  • Process m000 died: Clients could not establish the connection

    Hello All,
    Env: 10.2.0.3 on Solaris 10
    Yesterday, my users were unable connect to the database for around 25 minutes and it happened all of sudden and after few minutes they could establish the connection. (But i could connect from my PC using system)
    In the alert.log file i found
    Process m000 died, see its trace file
    Tue Sep 16 17:00:14 2008
    ksvcreate: Process(m000) creation failed
    Tue Sep 16 17:05:31 2008
    Process q002 died, see its trace file
    Tue Sep 16 17:05:31 2008
    ksvcreate: Process(q002) creation failed
    Tue Sep 16 17:21:29 2008
    Process q002 died, see its trace file
    Tue Sep 16 17:21:29 2008
    ksvcreate: Process(q002) creation failed I checked the <sid>mmon9671.trc file (below are the last few lines)
    2008-09-08 18:30:45.603
    KEWRAFC: Flush slave failed, AWR Enqueue Timeout
    2008-09-16 17:00:14.132
    Process m000 is dead (pid=26345, state=3):
    Unable to schedule a MMON slave at: Remote Flush Main
      Attempt to create slave process failed.
      Can happen for several reasons:
        - No process state objects
        - Reached OS set limits
        - A shutdown was going on
      Check alert log for more details. Also, once the clients could establish the connection, i checked the total number of sessions and it was around 550+ (only few were active) and was decreasing by time. My init.ora parameter PROCESSES has the value 600.
    Is it because that the number sessions has exceeded the total 600 ?
    Or, was it because of some other reason ?
    TIA,
    JJ
    Edited by: J..J on Sep 17, 2008 10:50 AM

    I do facing the similar issue,kindly assist...
    Trace file /opt/mis/oracle/admin/NLILD/diag/rdbms/nldild/NLDILD/trace/NLDILD_mmon_6637.trc
    Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    ORACLE_HOME = /opt/mis/oracle/product/11.0.6
    System name: Linux
    Node name: bdpiov.maa.sify.net
    Release: 2.6.9-55.ELsmp
    Version: #1 SMP Fri Apr 20 16:36:54 EDT 2007
    Machine: x86_64
    Instance name: NLDILD
    Redo thread mounted by this instance: 1
    Oracle process number: 14
    Unix process pid: 6637, image: [email protected] (MMON)
    *** 2011-07-05 04:48:59.699
    *** SESSION ID:(190.1) 2011-07-05 04:48:59.699
    *** CLIENT ID:() 2011-07-05 04:48:59.699
    *** SERVICE NAME:(SYS$BACKGROUND) 2011-07-05 04:48:59.699
    *** MODULE NAME:() 2011-07-05 04:48:59.699
    *** ACTION NAME:() 2011-07-05 04:48:59.699
    Process M000 is dead (pid=3941 req_ver=5414 cur_ver=5414 state=SPAWNED).
    ktte_monitor_ts: unable to schedule MMON Slave, error 3
    *** 2011-07-05 04:59:01.523
    Process M000 is dead (pid=4468 req_ver=5415 cur_ver=5415 state=SPAWNED).
    ktte_monitor_ts: unable to schedule MMON Slave, error 3
    *** 2011-07-05 05:00:53.604
    Process M000 is dead (pid=4798 req_ver=3801 cur_ver=3801 state=SPAWNED).
    Unable to schedule a MMON slave at: Maintain AWR Baseline Thresholds Task
    Unknown return code: 3
    *** 2011-07-05 05:09:04.040
    Process M000 is dead (pid=5194 req_ver=3802 cur_ver=3802 state=SPAWNED).
    ktte_monitor_ts: unable to schedule MMON Slave, error 3
    Thanks
    Shafi

  • Forgot password, asked for birthdate, was told not valid, yet can't submit birthday as part of security process

    I forgot my password, through the validation process I was asked my birthdate, when I inserted it, the message stated the info did not match up.  I finally found my password, went to security to update, and there is no place anywhere to input birthdate.  So, how would I ever fix this? 

    Hi rccalvillo,
    Welcome to the Apple Support Communities!
    I understand you would like to update your saved date of birth information for your Apple ID. If you know the security questions on your account, there are only a few steps you will need to follow to update this information. The link below will take you to the Apple ID website. After selecting Manage your Apple ID and signing in, you will select Password and Security on the left hand side of the screen. You will then be prompted to answer the security questions for this Apple ID. On the next page, after answering the security questions, there will be a Select your birth date section at the bottom of the page that will allow you to change and save the birth date for this Apple ID. 
    Apple - My Apple ID
    Happy holidays,
    Joe

  • What is the process for EBS when customer directly deposits the payment in

    Hi,
    Please tell me the process for EBS when customer deposits the payment in bank
    1) via Cheque
    2) via Bank Transfer
    Can we clear the open items automatically if yes, then how please tell me how to map it so that it can be cleared when we have EBS?
    Thanks and Regards
    Nitin

    Hi Expert,
    Please select the Standard algorithm - 001 and don't change any settings in EBS, Just follow the below steps:
    Just configure the below steps:
    1. Delete Bank Statement Test Data in T-Code: SE38
    PROGRAM - RFEBKA96
    Execute
    On the Delete Buffer screen, enter the following data:
    Field name     User action and values
    ANWND          0001
    Choose Execute to continue.
    On the Delete Buffer screen, select the bank statement files to be deleted and choose the Delete statements button.
    By this Step the Result is:
    The bank statement previously created is deleted, thus allowing you to re-create the current dayu2019s bank statement.
    2. Create BAI File
    Use this step, you create the bank statement input file.
    Prerequisites: You must delete the existing bank statement file to create a new bank statement.
    Procedure
    Go to T-Code:SE38
    Program - RFEBKAT5     
    Choose  Execute to continue.
    On the General test data for BAI bank statement and create open items screen, enter the necessary data.
    Description                             User action and values                                               Comment
    EOD                                             Select     
    EOD File name                             RECON1     
    Company code                        XXXX     
    House Bank                             ABC     
    House Bank Account            1234XXXXX     
    Posting Offset Account            111000(Provide Offset Account)
    Statement date                    Yesterdayu2019s date     
    Invoice date                            Yesterdayu2019s date     
    Generate items                    Select this field     
    Open items                            2(Provide the Open Items)
    Last w/diff                           Select this field     
    Extrn/Trns                           165     
    Amount                                   1000     
    Customer                                   XYZ(Provide the Customer Account)     
    Increase by                           50     
    Document type                   DR     
    With bank details                   Select this field     
    Debit posting key                   01     
    With ref. data                            Select this field     
    Credit posting key                   50     
    XBLNR                                   Select this field      
    Generate items                   Select this field     
    Debit posting key                   40     
    Document type                   SA     
    Credit posting key                   50     
    Specific                                    Select this button     
    Checks Out                           575 ++++++++07 58.5!                                       Exclamation mark goes in 2nd column
    Funds Out                           495 ++++++++01 1500 200200665757699     
    Funds In                                   398 ++++++++08 150 BANK CHARGE     
    Choose Execute  to continue.
    Result
    The BAI file is displayed.
    3. Execute Bank Statement Reconciliation Program
    T-Code: FF.5
    Field name      Description                                                             User action and values     
                             Import data                                                             Select     
                          Workstation upload                                                  Deselect     
    FEBFORMAT     Elect. bank statement format                                  A     
    FEBAUSZF     Statement file                                                          RECON1     
    FEBFILTER2     XBLNR number interval                                          199900000000000 to 200099999999999     
                         Print bank statement (Output controls tab)          Select     
                         Print posting log(Output controls tab)                  Select     
                         Print statistics(Output controls tab)                          Select     
    Choose Execute  to continue.
    Result:The bank reconciliation program RFEBKA00 uploads the BAI file created in the previous step. As a result, the open items created in the previous step, have been cleared. You can display the journal entries of these postings by using transaction code FB03.
    Regards,
    GK
    SAP

  • I have just gone through the start upo process for a new iMac and skipped the section to upload data from my old computer from an external hard drive. How do I do this now?

    I have just gone through the start-up on my new imac and opted to skip the bit where I sync / upload info from my old computer which is on a My Passport external hard drive. I would like to do this now. How do I? Thanks.

    See the  Second Chance to Use Setup Assistant  here...
    http://Pondini.org/OSX/SetupLion.html
    Also see here  > http://support.apple.com/kb/HT4889?

Maybe you are looking for

  • How to call webservice from OAF

    Hi, I need to call a webservice in one of my custom OAF page. I am very new to OAF and Java and have no idea about how webservice works. Does anybody has any example of that, are there any setups I need to perform. I will appreciate if someone can sh

  • Formula variable as reference value for condition

    Hi, I am trying to use a formula variable (user entry, Optional) for a condition. I use all characteristics in drill down independently while defining the condition. I have 2 issues here 1. If I give a default value for the variable to display as 500

  • Importing Java Classes for Bussiness Logic in Forms6i

    I have created a Java Class with some bussiness logic in it and i m able to impotr it in Forms 6i BUT when it converts my java method into program unit it automatically changes the name of the method with some code ..like method name is "increment" i

  • Content Engine CE565 authentication cache

    I have a Content Engine CE565 running software version CE 5.1.7 The commands <show users request-authenticated> and <show http-authcache> provide me with information on authenticated users, but I would like to know how to determine the time remaining

  • Why Indesign CS6 keeps opening the same old Indesign documents multiple times?

    I just installed the Indesign CS6 trial version before I purchase the professional version. I opened one of my old Indesign file from CS5 and a weird thing is hapenning on Indesing CS6. Everytime I click on the page or tab of the Indesign file that I