Exec failed. errno=2.

When i am starting the SecureLink bridge i am getting this error. Actually SecureLink bridge is a 3rd party software which just acts as a bridge between the exterior and internal network. Means that any request comes from outside comes in https and then securelink takes it and converts it to http . Well i just want to know the reason of this error coz i think this error is related to Solaris 2.8 OS and not the application..
Can somebody put light on this ?

File not found. Check path you use in exec() and check is there such object on your disk.

Similar Messages

  • Process 1 exec/sbin/Launchd failed, errno 85\n"@SourceCache/........ bla bla bla

    my mac get freez and now could not boot.
    just a black screen with some text
    Process 1 exec/sbin/Launchd failed, errno 85\n"@SourceCache/........ bla bla bla
    i have access to macintash hd from bootcamp.
    i tired everything.
    - premision fix via disk utility or ...
    - command + option +p r
    - hold down shift key
    but no luck.
    there is no way for fix this problem via windows?
    q2 : can i make bootable usb disc with windows?

    Hi,
    Is there more after that on the same line?
    Bootup holding CMD+r, or the Option/alt key to boot from the Restore partition & use Disk Utility from there to Repair the Disk, then Repair Permissions.
    One way to test is to Safe Boot from the HD, (holding Shift key down at bootup), run Disk Utility in Applications>Utilities, then highlight your drive, click on Repair Permissions, Test for problem in Safe Mode...
    PS. Safe boot may stay on the gray radian for a long time, let it go, it's trying to repair the Hard Drive
    Reboot, test again.
    If it only does it in Regular Boot, then it could be some hardware problem like Video card, (Quartz is turned off in Safe Mode), or Airport, or some USB or Firewire device, or 3rd party add-on, Check System Preferences>Accounts (Users & Groups in later OSX versions)>Login Items window to see if it or something relevant is listed.
    Check the System Preferences>Other Row, for 3rd party Pref Panes.
    Also look in these if they exist, some are invisible...
    /private/var/run/StartupItems
    /Library/StartupItems
    /System/Library/StartupItems
    /System/Library/LaunchDaemons
    /Library/LaunchDaemons

  • Error sbin/launchd failed errno 2 Help!

    Hi, have a MacBook Pro and upon start up the full error that has come up is panic(cpu 0 aller 8xffffff800047cc6c): "Process 1 exec of /sbin/launchd failed, errno 2\n"@/SourceCache/xnu/xnu-1504. 15.3/bsb/kern/kern_exec.c:3145
    It just tells me to restart my computer. Hold down the power button until it turns off, then press the power button again.... that's it!
    I put the disc in that it came with so I could see if a recovery file has come up but nothing.
    Please know that I'm not a tech, but I can follow instructions well.
    Can anyone help please?

    Hi, have a MacBook Pro and upon start up the full error that has come up is panic(cpu 0 aller 8xffffff800047cc6c): "Process 1 exec of /sbin/launchd failed, errno 2\n"@/SourceCache/xnu/xnu-1504. 15.3/bsb/kern/kern_exec.c:3145
    It just tells me to restart my computer. Hold down the power button until it turns off, then press the power button again.... that's it!
    I put the disc in that it came with so I could see if a recovery file has come up but nothing.
    Please know that I'm not a tech, but I can follow instructions well.
    Can anyone help please?

  • Runtime.exec() fails sometime to execute a command

    Hello,
    I have a program thats using Runtime.exec to execute some external programs sequence with some redirection operators.
    For e.g, I have some command as follows;
    1 - C:\bin\IBRSD.exe IBRSD -s
    2 - C:\bin\mcstat -n @punduk444:5000#mc -l c:\ | grep -i running | grep -v grep |wc -l
    3 - ping punduk444 | grep "100%" | wc -l
    ...etc.
    These command in sequence for a single run. The test program makes multiple such runs. So my problem is sometimes the runtime.exec() fails to execute some of the commands above (typically the 2nd one). The waitFor() returns error code (-1). That is if I loop these commands for say 30 runs then in some 1~4 runs the 2nd command fails to execute and return -1 error code.
    Can some one help me out to as why this is happening? Any help is appreciated
    Thanks,
    ~jaideep
    Herer is the code snippet;
    Runtime runtime = Runtime.getRuntime();
    //create process object to handle result
    Process process = null;
    commandToRun = "cmd /c " + command;
    process = runtime.exec( commandToRun );
    CommandOutputReader cmdError = new CommandOutputReader(process.getErrorStream());
    CommandOutputReader cmdOutput = new CommandOutputReader(process.getInputStream());
    cmdError.start();
    cmdOutput.start();
    CheckProcess chkProcess = new CheckProcess(process);
    chkProcess.start();
    int retValue = process.waitFor();
    if(retValue != 0)
    return -1;
    output = cmdOutput.getOutputData();
    cmdError = null;
    cmdOutput = null;
    chkProcess = null;
    /*******************************supporting CommandOutputReader class *********************************/
    public class CommandOutputReader extends Thread
    private transient InputStream inputStream; //to get output of any command
    private transient String output; //output will store command output
    protected boolean isDone;
    public CommandOutputReader()
    super();
    output = "";
    this.inputStream = null;
    public CommandOutputReader(InputStream stream)
    super();
    output = "";
    this.inputStream = stream;
    public void setStream(InputStream stream)
    this.inputStream = stream;
    public String getOutputData()
    return output;
    public void run()
    if(inputStream != null)
    final BufferedReader bufferReader = new BufferedReader(new InputStreamReader(inputStream), 1024 * 128);
    String line = null;
    try
    while ( (line = bufferReader.readLine()) != null)
    if (ResourceString.getLocale() != null)
    Utility.log(Level.DEBUG,line);
    //output += line + System.getProperty(Constants.ALL_NEWLINE_GETPROPERTY_PARAM);
    output += line + "\r\n";
    System.out.println("<< "+ this.getId() + " >>" + output );
    System.out.println("<< "+ this.getId() + " >>" + "closed the i/p stream...");
    inputStream.close();
    bufferReader.close();
    catch (IOException objIOException)
    if (ResourceString.getLocale() != null)
    Utility.log(Level.ERROR, ResourceString.getString("io_exeception_reading_cmd_output")+
    objIOException.getMessage());
    output = ResourceString.getString("io_exeception_reading_cmd_output");
    else
    output = "io exeception reading cmd output";
    finally {
    isDone = true;
    public boolean isDone() {
    return isDone;
    /*******************************supporting CommandOutputReader class *********************************/
    /*******************************supporting process controller class *********************************/
    public class CheckProcess extends Thread
    private transient Process monitoredProcess;
    private transient boolean continueLoop ;
    private transient long maxWait = Constants.WAIT_PERIOD;
    public CheckProcess(Process monitoredProcess)
    super();
    this.monitoredProcess = monitoredProcess;
    continueLoop =true;
    public void setMaxWait(final long max)
    this.maxWait = max;
    public void stopProcess()
    continueLoop=false;
    public void run()
    //long start1 = java.util.Calendar.getInstance().getTimeInMillis();
    final long start1 = System.currentTimeMillis();
    while (true && continueLoop)
    // after maxWait millis, stops monitoredProcess and return
    if (System.currentTimeMillis() - start1 > maxWait)
    if(monitoredProcess != null)
    monitoredProcess.destroy();
    //available for garbage collection
    // @PMD:REVIEWED:NullAssignment: by jbarde on 9/28/06 7:29 PM
    monitoredProcess = null;
    return;
    try
    sleep(1000);
    catch (InterruptedException e)
    if (ResourceString.getLocale() != null)
    Utility.log(Level.ERROR, ResourceString.getString("exception_in_sleep") + e.getLocalizedMessage());
    System.out.println(ResourceString.getString("exception_in_sleep") + e.getLocalizedMessage());
    else
    System.out.println("Exception in sleep" + e.getLocalizedMessage());
    if(monitoredProcess != null)
    monitoredProcess.destroy();
    //available for garbage collection
    // @PMD:REVIEWED:NullAssignment: by jbarde on 9/28/06 7:29 PM
    monitoredProcess = null;
    /*******************************supporting process controller class *********************************/

    Hi,
    Infact the command passed to the exec() is in the form of a batch file, which contains on of these commands. I can not put all commands in one batch file due to inherent nature of the program.
    But my main concern was that, why would it behave like this. If I run the same command for 30 times 1~3 times the same command can not be executed (returns with error code 1, on wiun2k pro) and rest times it works perfectly fine.
    Do you see any abnormality in the code.
    I ahve used the same sequence of code as in the article suggested by
    "masijade". i.e having threads to monitor the process and other threads to read and empty out the input and error streams so that the buffer does not get full.
    But I see here the problem is not of process getting hanged, I sense this because my waitFor() returns with error code as 1, had the process hanged it would not have returned , am I making sense?
    Regards,
    ~jaideep

  • [SOLVED] Boot fails with "ata4: SRST failed (errno = -16)"

    I have desktop that has four disks. They have similar three partitions sitting on RAID.
    /boot and swap are on RAID1
    / is on RAID5.
    This worked well until a couple of weeks ago I noticed I couldn't connect to it via SSH. I went onsite and the desktop was humming but I couldn't get picture on the screen and alt + sysrq + REISUB did nothing. I shut it down by pressing power button and started it again. It gave me following errors:
    ata4: SRST failed (errno = -16)
    After a while there was
    reset failed, give up
    I restarted the machine and went to BIOS. There was only two of four disks visible. I shut the computer down, removed the power cord and then plugged it back in. This time BIOS showed all the disks there. I tried to boot up Arch and got the following.
    Booting the kernel.
    running early hook [udev]
    running hook [udev]
    Triggering uevents
    mounting '/dev/md3' on real root # md3 is the RAID 5 device containing root
    mount: you must specify the filesystem type
    You are now being dropped into an emergency shell.
    sh: can't access tty; job control turned off
    After that I tried to chroot from USB installation disk. First I check the RAID devices and see that in md1 (/boot) all seems to be ok. In md2 (swap) half of the partitions are missing. I'm not sure how to interpret the last one.
    cat /proc/mdstat
    Personalities : [raid1]
    md1: active raid1 sdd1[3] sdb1[1] sda1[0] sdc1[2]
    1048564 block super 1.0 [4/4] [UUUU]
    md2: active raid1 sdb2[1] sda2[0]
    2096116 block super 1.2 [4/2] [UU__]
    md3: inactive sdb3[1](S) sda3[0](S) sdd3[4](S) sdc3[2](S)
    608169984 block super 1.2
    unused devices: <none>
    I remove those devices and try to recreate them. md1 says it starts with four drives. md2 starts with 2 driver out of 4. And then the last one.
    mdadm --assemble /dev/md3 /dev/sd[a-d]3
    mdadm: /dev/md3 assembled from 2 drives - not enough to start the array.
    Has anyone any idea where did the two partitions go? I ran SMART-tests to all four drives in long mode and all of them passed the tests.
    I use GPT partitioning table, UEFI and Syslinux if it matters.
    Last edited by Tha-Fox (2013-02-23 01:35:05)

    I just booted to chroot environment and checked that all the partitions show up all right. Below is output of one disk and all the four disks give similar info.
    gdisk -l /dev/sdd
    GPT fdisk (gdisk) version 0.8.6
    Partition table scan:
    MBR: protective
    BSD: not present
    APM: not present
    GPT: present
    Found valid GPT with protective MBR; using GPT.
    Disk /dev/sdd: 312581808 sectors, 149.1 GiB
    Logical sector size: 512 bytes
    Disk identifier (GUID): 8B9EBB89-366E-4C81-8916-F61CB08273DB
    Partition table holds up to 128 entries
    First usable sector is 34, last usable sector is 312581774
    Partitions wil be aligned on 2-sector boundaries
    Total free space is 2203245 sectors (1.1 GiB)
    Number Start (sector) End (sector) Size Code Name
    1 34 2097185 1024.0 MiB FD00 Linux RAID
    2 2097186 6291489 2.0 GiB FD00 Linux RAID
    3 6291490 310378529 145.0 GiB FD00 Linux RAID

  • Compilation errors- sbfocus exec failed: No such file...

    Please help, as I am geting these errors when I am compiling my test program using make file.
    I am using SUN SPARC server with Forte Compiler Collection 7 on new server.
    I am moving my HP C++ code on this new server.
    I have created my string, util and ipc libraries using ar - ruv command. all the libraries are created OK (means no errors) and named them as libstring.a etc.
    CC -g -sb -compat=5 -compat=4 -I. -I/ford/thishost/u/rbhave/mqrouter/include -c test.C
    /opt/SUNWspro/bin/CC test.o -L/ford/thishost/u/rbhave/mqrouter/lib -L. -lutils -lipc -lstring
    libldstab: file test.o: sbfocus exec failed: No such file or directory: SourceBrowser data will be lost
    Undefined first referenced
    symbol in file
    unsafe_ostream::do_opfx(void) /ford/thishost/u/rbhave/mqrouter/lib/libstring.a(strops.o)
    cout test.o
    unsafe_ostream::do_opfx(void) /ford/thishost/u/rbhave/mqrouter/lib/libstring.a(strops.o)
    ld: fatal: Symbol referencing errors. No output written to a.out
    *** Error code 1
    make: Fatal error: Command failed for target `/ford/thishost/u/rbhave/mqrouter/error_log/test'
    Thanks in advance.
    Ravi

    You usually cannot mix -compat=4 and -compat=5 code in the same program. The C++ Migration Guide(search on docs.sun.com) that comes with the compiler explains the limitations.
    When building a C++ static (.a) library, you should use
    CC -xar
    instead of
    ar
    so that any required template instances get included in the library.
    The warning message about sb probably means that the -sb or -xsb option was not used consistently. Use it when compiling and when linking, or not at all. (You don't have to use it on all compilations, but you'll be missing some symbol data.)
    - Rose

  • Core dump failed, errno=4

    I'm looking into some dumps from Orcale and found one that mdb gets the following error:
    core file may be corrupt
    I found the following message on /var/adm/messages.
    [ID 457380 kern.notice] NOTICE: core_log: f90webm[6192] core dump failed, errno=4
    What is an error no 4 during a core dump?
    Thanks,
    Glen

    Are you compiling with 1.4? I have noticed ALOT of posts about 1.4 and I have yet to have a problem. The only thing I am doing differently is compiling with 1.3.x still, but running with the 1.4 JVM.
    I would try that.

  • Usdsop: exec failed during spawn

    When I try to bring a file to upload to gl, we first do a transfer the file from Network into our Linux Box using a concurrent program.
    The concurrent program first spawn a concurrent request which executes a shell script to transfers the file from network to linux box (Middle Tier) and then reads the file to load to gl_import.
    recently, we upgraded to 12.0.6 from 12.0.4 and we get this error
    usdsop: exec failed during spawn/u01/oraerp/DEV/apps/apps_st/appl/rwjf/12.0.0/bin/RWJF_JPM_CHECKS_CLEARED_FILE_TRANS: No such file or directory
    /u01/oraerp/DEV/apps/apps_st/appl/rwjf/12.0.0/bin/RWJF_JPM_CHECKS_CLEARED_FILE_TRANS
    Program exited with status 1
    Any help is appreciated.
    Sury

    Please post the details of the database version and OS.
    When I try to bring a file to upload to gl, we first do a transfer the file from Network into our Linux Box using a concurrent program.What file?
    What concurrent program?
    The concurrent program first spawn a concurrent request which executes a shell script to transfers the file from network to linux box (Middle Tier) and then reads the file to load to gl_import.
    recently, we upgraded to 12.0.6 from 12.0.4 and we get this error
    usdsop: exec failed during spawn/u01/oraerp/DEV/apps/apps_st/appl/rwjf/12.0.0/bin/RWJF_JPM_CHECKS_CLEARED_FILE_TRANS: No such file or directory
    /u01/oraerp/DEV/apps/apps_st/appl/rwjf/12.0.0/bin/RWJF_JPM_CHECKS_CLEARED_FILE_TRANS
    Program exited with status 1What is "RWJF_JPM_CHECKS_CLEARED_FILE_TRANS"? Can you find this file on the server? Is this file copied/transeferred as part of this process?
    Is this a custom concurrent program? If yes, then you need to review the code (and fix it if required).
    Thanks,
    Hussein

  • Forwarding FAILED: errno=Broken pipe

    Hi,
    I have the following SMTP error when I try to send mail.
    host 127.0.0.1[127.0.0.1] said: 451 4.5.0 Error in processing, id=03105-02, forwarding FAILED: errno=Broken pipe (in reply to end of DATA command
    no matter what i try, it won't work. Does anyone has an idea? that would be really sweet!!!
    _Here is my postconf -n output :_
    command_directory = /usr/sbin
    config_directory = /etc/postfix
    content_filter = smtp-amavis:[127.0.0.1]:10024
    daemon_directory = /usr/libexec/postfix
    debugpeerlevel = 2
    enableserveroptions = yes
    html_directory = no
    inet_interfaces = all
    mail_owner = _postfix
    mailboxsizelimit = 0
    mailbox_transport = cyrus
    mailq_path = /usr/bin/mailq
    manpage_directory = /usr/share/man
    mapsrbldomains =
    messagesizelimit = 15728640
    mydestination = $myhostname,localhost.$mydomain,localhost,server.eremiya.com,eremiya.com
    mydomain = eremiya.com
    mydomain_fallback = localhost
    myhostname = server.eremiya.com
    mynetworks = 168.100.189.0/28, 127.0.0.0/8
    mynetworks_style = host
    newaliases_path = /usr/bin/newaliases
    queue_directory = /private/var/spool/postfix
    readme_directory = /usr/share/doc/postfix
    sample_directory = /usr/share/doc/postfix/examples
    sendmail_path = /usr/sbin/sendmail
    setgid_group = _postdrop
    smtpdclientrestrictions = permitsaslauthenticated permit_mynetworks rejectrblclient zen.spamhaus.org permit
    smtpdenforcetls = no
    smtpdpw_server_securityoptions = cram-md5
    smtpdrecipientrestrictions = permitsasl_authenticated,permit_mynetworks,reject_unauthdestination,permit
    smtpdsasl_authenable = yes
    smtpdtls_certfile = /etc/certificates/Default.crt
    smtpdtls_keyfile = /etc/certificates/Default.key
    smtpduse_pwserver = yes
    smtpdusetls = yes
    unknownlocal_recipient_rejectcode = 550
    unknownvirtual_alias_rejectcode = 450
    unknownvirtual_mailbox_rejectcode = 450
    virtualaliasdomains = hash:/etc/postfix/virtual_domains
    virtualaliasmaps = hash:/etc/postfix/virtual
    virtualmailboxdomains = hash:/etc/postfix/virtualdomainsdummy
    virtual_transport = lmtp:unix:/var/imap/socket/lmtp
    _End of output_
    Thanks a lot in advance!!

    This looks like either a problem in your amavisd configuration in /etc/amavisd.conf (amavisd is the content filter) or in /etc/postfix/master.cf
    If you made any changes to those files, look for typos.

  • Ata1 srst failed (errno=-16) on intsall

    Hello all,
    I am having trouble install.
    I am following the beginners guide and I get to the part where you do pacstrap /mnt base base-devel and it downloads all the files, verifies, and trys to install
    around the 70'th or show package install I get that error
    ata1 srst failed (errno=-16)
    I can't seem to find anything relating to this anywhere.
    Any help will be greatly appreciated
    Thank you

    cfr wrote:
    deadheartsbeat wrote:I can't seem to find anything relating to this anywhere.
    Try google?
    I have tried google.  I didn't find anything regarding this error and archlinux

  • Jspc "exec failed"

              Hello,
              I'm trying to compile a JSP calling a Javabean which itself call an EJB, and i
              get an 'Exec failed ..exiting' error message. I previously did a JSP calling directly
              my EJB and it was fine. Is there any way to compile the JSP page and have more
              info to debug.
              I read there was a previous post with the same problem, no solution was provided,
              so any help would be very appreciated
              Regards, JC
              

    jspc use a two-step process (generate java file, compile the java file to
              class file). Not sure but you should have get the generated servlet java
              file.
              Locate that one and manually compile it using
              javac -cp %CLASSPATH% ....
              You may have more info
              Sam Wu
              "JC" <[email protected]> wrote in message
              news:3ae6d2fe$[email protected]..
              >
              > Hello,
              >
              > I'm trying to compile a JSP calling a Javabean which itself call an EJB,
              and i
              > get an 'Exec failed ..exiting' error message. I previously did a JSP
              calling directly
              > my EJB and it was fine. Is there any way to compile the JSP page and have
              more
              > info to debug.
              > I read there was a previous post with the same problem, no solution was
              provided,
              > so any help would be very appreciated
              >
              > Regards, JC
              

  • Panic(CPU 1 caller 0xffffff800005412af): "Process 1 exec of /sbin/launchd failed, errno 85"@/SourceCAche/xnu/xnu-1699.31.2/bsd/kern/kern_exec.c:3536   HELP. WHAT DOES THIS MEAN!!

    I tried to turn my mac on 2 days ago and this is what came up. The message tells me to restart my computer but every time I do it just comes back to the same screen. We done have Internet at my home so I am unsure how this could have happened. Any help would be greatly appreciated.

    what is your mac OS version and your iMac model? The pre-2006 iMacs this forum covers have different troubleshooting steps from newer iMacs, so we need to make sure which you have. The non-intuituve forum labeling here means people with relatively recent iMacs are tricked in to posting here instead of a more active forum for iMacs made since 2006.

  • Process 1 exec/sbin/Launchd failed, errno 85\n"@SourceCache/xnu-xnu-1504.15

    What does this take to fix ?

    Hi,
    Is there more after that on the same line?
    Bootup holding CMD+r, or the Option/alt key to boot from the Restore partition & use Disk Utility from there to Repair the Disk, then Repair Permissions.
    One way to test is to Safe Boot from the HD, (holding Shift key down at bootup), run Disk Utility in Applications>Utilities, then highlight your drive, click on Repair Permissions, Test for problem in Safe Mode...
    PS. Safe boot may stay on the gray radian for a long time, let it go, it's trying to repair the Hard Drive
    Reboot, test again.
    If it only does it in Regular Boot, then it could be some hardware problem like Video card, (Quartz is turned off in Safe Mode), or Airport, or some USB or Firewire device, or 3rd party add-on, Check System Preferences>Accounts (Users & Groups in later OSX versions)>Login Items window to see if it or something relevant is listed.
    Check the System Preferences>Other Row, for 3rd party Pref Panes.
    Also look in these if they exist, some are invisible...
    /private/var/run/StartupItems
    /Library/StartupItems
    /System/Library/StartupItems
    /System/Library/LaunchDaemons
    /Library/LaunchDaemons

  • Runtime.exec() fails to run "javac" with "*.java" as arguments

    Hello,
    I am observing that Runtime.exec() consistently fails to execute "javac" when the Java files to be compiled are specified as "*.java". It fails with the following error:
    javac: file not found: /home/engine931/*.java
    Usage: javac <options> <source files>
    The same command used for Runtime.exec() runs fine from a the command shell. Is this is known problem with the Runtime class on UNIX, because it works fine on Windows.
    Any advise is appreciated.
    Thanks,
    Ranjit

    Your shell is expanding the command when you run javac from the shell. Try constructing your Runtime parameters so that your shell is executed, which then executes javac.
    The specific behavior is entirely dependent on the command interpreter that's used.

  • Runtime.exec() fails

    Hi,
    I have a process with many executables which work together to copy a script to another machine, execute it and get back the results. I am using Runtime.exec to execute the process. The files are stored in the directory "/opt/mx/myDir".
    Below are two scenarios. One works and the other doesnt.
    1. Working case.
    #cd /opt/mx/myDir
    #java myJavaClass.
    2. Failing case.
    #java myJavaClass.
    The issue is that myJavaClass is part of another project and hence I cannot "cd" to /opt/mx/myDir. So it executes at some directory and fails.
    Hence I tried ProcessBuilder.directory(file) - This fails too.
    I have no logs or anything as the other process is not mine.
    Any help on debugging this will be great.
    Thanks.

    Apologies if this is too obvious, but is your command
    #java myJavaClass.
    or
    java myJavaClass
    The trailing period is wrong.

Maybe you are looking for

  • Maintain tolerance limits for tolerance key PE (CoCode S001)

    Dear all im getting error when i creating PO Maintain tolerance limits for tolerance key PE (CoCode S001) Please help me Regards venu gopal

  • IE11 doesn't accept format of domainname\username when authentication through ADFS

    I am using IE11 , when I log on to Office365 through ADFS , the login page only accepts userprincipalname format . It doesn't accept domain\username format , if use domain\username , password will prompt again and again . However , the issue is not h

  • Logic is now confused

    After updating to 10.5.3 from 10.4.11 . Logic is running badly. I can work on a song for 20 mins until the spl disappears and the cursor looks strange and no longer navigates the program . Logic was also crashing when trying to open preferences. or s

  • Report Painter Output in Local Currency

    Dear Experts, I have 2 Co Code 1 with Currency INR and another one with USD Controlling area currency is INR for both. I want to run a Plan VS Actual report in INR for USD Co Code so when I run the report the actuals values appear in INR correctly bu

  • About Knowledge Exchange Portal (portalstudio)

    Hi I really do not understand why you guys decided to take out the Knowledge Exchange Portal. This place was THE PLACE to get in the move with Oracle Portal. Developers could share and find things. Definitely was not the best user friendly interface,