How to skip running worker using adctrl

Hi,
I am applying 3480000 patch but package PSBVWP1S.pls on worker 1 for product psb username PSB is running from 3 days
i need skip this job to continue with patch session
can any one help me
as of i now we can skip using 8 option in adctrl when worker status is failed
so help how to skip when worker is running
Thanks,
Bhanu Chander

Hi,
I cannot comment unless you post the error from the failed worker log file.There is no error in log file am posting you last 25 lines at that time
Line 19: Changed as follows:
CREATE OR REPLACE PACKAGE PSB_WS_POS1
AS
CREATE OR REPLACE PACKAGE PSB_WS_POS1 AUTHID CURRENT_USER
AS
Unexpected end of PL/SQL package definition
in
/u01/applmgr/cesappl/psb/11.5.0/patch/115/sql/PSBVWP1S.pls
Unable to process file in PACKAGE mode.
Converting file for Invoker's Rights.
Source file: /u01/applmgr/cesappl/psb/11.5.0/patch/115/sql/PSBVWP1S.pls
Dest file: /u01/applmgr/cesappl/admin/CES/out/p001invok.sql
Line 19: Changed as follows:
CREATE OR REPLACE PACKAGE PSB_WS_POS1
AS
CREATE OR REPLACE PACKAGE PSB_WS_POS1 AUTHID CURRENT_USER
AS
sqlplus -s APPS/***** @/u01/applmgr/cesappl/admin/CES/out/p001invok.sql
Input truncated to 24 characters
If you mean to uninstall the module then you cannot. Once the module is installed you cannot uninstall it.comment from SR
If you do not want PSB Public Sector Budgeting to be installed, then skip this w
orker,
and afterwards, de-install PSB Public Sector Budgeting application_id = 8401 in table fnd_product_installations
Thanks

Similar Messages

  • How to skip a worker process

    hi,
    may i know how to skip a worker process
    thanks
    srikanth

    hi,
    what is 11i data model? and how application modules
    are dependent on data model?
    thanks
    srikanthSrikanth,
    Please post same query only once:
    11i data model
    11i data model

  • How file dowloading concept works using servlets.

    How file dowloading concept works using servlets.
    We will get window when downloading something from site
    if we close that window downloading stops.
    how this process works if we use servlets .
    Or what are the general concepts for downloading a file

    How file dowloading concept works using servlets.You send a request and get a reply stream. Where the servlet gets the data from is totally irrelevant.
    We will get window when downloading something from
    site
    if we close that window downloading stops.
    how this process works if we use servlets .If you close that window, downloading stops.
    Or what are the general concepts for downloading a fileSend a request, get a reply stream.

  • How cud I run odi using a java application.

    HI,
    I need the location of the jar files that cud help me to run odi using a java application.
    I am unable to find jar file which is responsible for the invoking ODI using the classes in the package named
    "oracle.odi.sdk.invocation".
    I found this package name from doc
    regards,
    Palash Chatterjee

    It's going to depend on the application in question.

  • How to skip and restart a failed worker using ADCTRL command line?

    To skip and restart a failed worker, we can start adctrl, use hidden option (7 or 8 depending on the version).
    Is it possible to do the same from command line?
    Thanks in advance.
    S. Sundar

    I am asking about the option to run in non-interactive modeIt cannot be done. Check "Oracle® Applications Maintenance Utilities Release 11i (11.5.10.2)" manual for more details.

  • How do I run dishanywhere using firefox

    When I try to use Dishanywhere I get error message telling me downloan Chrome or another browser.
    How do I use Dishanywhere with Mozilla

    hello corton6, according to their FAQs on the webiste firefox 16 and above are supported: www.dishanywhere.com/faqs
    <br>if you are having issues nevertheless you might want to try contacting dish's technical support (there is a live chat option on their FAQ page).

  • Running files using java

    Please help, how can i run files using java.
    Files such as installers, batch files, or exe files....
    thanx

    Dear
    To run an EXE or COM or (other types of files other than BAT) use
    Runtime.exec("program-file-name.exe");
    while for running BAT files, always use this syntax
    Runtime.exec("bat-filenane", null, "bat-file-directory");
    Thats all.
    If your directory name or filename contains spaces, then surround the directoryname + filename within double quotes.
    Regard
    Dharmendra!
    Software Engineer(Java/J2EE)

  • How do i run an external monitor with my macbook and change settings so that when i close the lid the signal to the monitor is not lost and i can continue using the mac with a mouse and a wireless keyboard?

    How do i run an external monitor with my macbook and change settings so that when i close the lid the signal to the monitor is not lost and i can continue using the mac with a mouse and a wireless keyboard?

    No, nothing will prevent the computer from going to sleep when you close its display except third-party hacks that are designed to do exactly that. I strongly advise against using any of those, as they may interfere with successful entry into clamshell mode (and they carry other downside risks as well). Just wait until the computer is asleep (with its sleep light pulsing), then press any key on the keyboard. It sounds as though your setup is working as it's designed to do.

  • How does one continue to use Mail on the early MacBook Pro, Model 1,1, that is not upgradable to Lion?  I have been running iCloud on my iPhone (OS5) and iMac (Lion) along with the MacBook Pro (OS Version 10.6.8)

    How does one continue to use Mail on the early MacBook Pro, Model 1,1, that is not upgradable to Lion?  I have been running iCloud on my iPhone (OS5) and iMac (Lion) along with the MacBook Pro (OS Version 10.6.8) since November until now.  Mail will no longer download on the MacBook Pro and keeps asking for my password.

    Mail should still be usable with your machine - but you'll need to update the settings to conform to the requirements of your system. Check with your ISP (like ATT, etc.) for the settings that will work with your Mail. Once you've updated this, you should be able to email like before.
    For example, my ISP required that I go to Mail Preferences/Accounts and make sure the details conform to your email settings.
    I have no idea of what your ISP is or what the settings might be, but this is likely the source of the problem.

  • How to set proxy authentication using java properties at run time

    Hi All,
    How to set proxy authentication using java properties on the command line, or in Netbeans (Project => Properties
    => Run => Arguments). Below is a simple URL data extract program which works in absence of firewall:
    import java.io.*;
    import java.net.*;
    public class DnldURLWithoutUsingProxy {
       public static void main (String[] args) {
          URL u;
          InputStream is = null;
          DataInputStream dis;
          String s;
          try {
              u = new URL("http://www.yahoo.com.au/index.html");
             is = u.openStream();         // throws an IOException
             dis = new DataInputStream(new BufferedInputStream(is));
             BufferedReader br = new BufferedReader(new InputStreamReader(dis));
          String strLine;
          //Read File Line By Line
          while ((strLine = br.readLine()) != null)      {
          // Print the content on the console
              System.out.println (strLine);
          //Close the input stream
          dis.close();
          } catch (MalformedURLException mue) {
             System.out.println("Ouch - a MalformedURLException happened.");
             mue.printStackTrace();
             System.exit(1);
          } catch (IOException ioe) {
             System.out.println("Oops- an IOException happened.");
             ioe.printStackTrace();
             System.exit(1);
          } finally {
             try {
                is.close();
             } catch (IOException ioe) {
    }However, it generated the following message when run behind the firewall:
    cd C:\Documents and Settings\abc\DnldURL\build\classes
    java -cp . DnldURLWithoutUsingProxy
    Oops- an IOException happened.
    java.net.ConnectException: Connection refused
    at java.net.PlainSocketImpl.socketConnect(Native Method)
    at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:305)
    at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:171)
    at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:158)
    at java.net.Socket.connect(Socket.java:452)
    at java.net.Socket.connect(Socket.java:402)
    at sun.net.NetworkClient.doConnect(NetworkClient.java:139)
    at sun.net.www.http.HttpClient.openServer(HttpClient.java:402)
    at sun.net.www.http.HttpClient.openServer(HttpClient.java:618)
    at sun.net.www.http.HttpClient.<init>(HttpClient.java:306)
    at sun.net.www.http.HttpClient.<init>(HttpClient.java:267)
    at sun.net.www.http.HttpClient.New(HttpClient.java:339)
    at sun.net.www.http.HttpClient.New(HttpClient.java:320)
    at sun.net.www.http.HttpClient.New(HttpClient.java:315)
    at sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:510)
    at sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:487)
    at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:615) at java.net.URL.openStream(URL.java:913) at DnldURLWithoutUsingProxy.main(DnldURLWithoutUsingProxy.java:17)
    I have also tried the command without much luck either:
    java -cp . -Dhttp.proxyHost=wwwproxy -Dhttp.proxyPort=80 DnldURLWithoutUsingProxy
    Oops- an IOException happened.
    java.io.IOException: Server returned HTTP response code: 407 for URL: http://www.yahoo.com.au/index.html
    at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1245) at java.net.URL.openStream(URL.java:1009) at DnldURLWithoutUsingProxy.main(DnldURLWithoutUsingProxy.java:17)
    All outgoing traffic needs to use the proxy wwwproxy (alias to http://proxypac/proxy.pac) on port 80, where it will prompt for valid authentication before allowing to get through.
    There is no problem pinging www.yahoo.com from this system.
    I am running jdk1.6.0_03, Netbeans 6.0 on Windows XP platform.
    I have tried Greg Sporar's Blog on setting the JVM option in Sun Java System Application Server (GlassFish) and
    Java Control Panel - Use browser settings without success.
    Thanks,
    George

    Hi All,
    How to set proxy authentication using java properties on the command line, or in Netbeans (Project => Properties
    => Run => Arguments). Below is a simple URL data extract program which works in absence of firewall:
    import java.io.*;
    import java.net.*;
    public class DnldURLWithoutUsingProxy {
       public static void main (String[] args) {
          URL u;
          InputStream is = null;
          DataInputStream dis;
          String s;
          try {
              u = new URL("http://www.yahoo.com.au/index.html");
             is = u.openStream();         // throws an IOException
             dis = new DataInputStream(new BufferedInputStream(is));
             BufferedReader br = new BufferedReader(new InputStreamReader(dis));
          String strLine;
          //Read File Line By Line
          while ((strLine = br.readLine()) != null)      {
          // Print the content on the console
              System.out.println (strLine);
          //Close the input stream
          dis.close();
          } catch (MalformedURLException mue) {
             System.out.println("Ouch - a MalformedURLException happened.");
             mue.printStackTrace();
             System.exit(1);
          } catch (IOException ioe) {
             System.out.println("Oops- an IOException happened.");
             ioe.printStackTrace();
             System.exit(1);
          } finally {
             try {
                is.close();
             } catch (IOException ioe) {
    }However, it generated the following message when run behind the firewall:
    cd C:\Documents and Settings\abc\DnldURL\build\classes
    java -cp . DnldURLWithoutUsingProxy
    Oops- an IOException happened.
    java.net.ConnectException: Connection refused
    at java.net.PlainSocketImpl.socketConnect(Native Method)
    at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:305)
    at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:171)
    at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:158)
    at java.net.Socket.connect(Socket.java:452)
    at java.net.Socket.connect(Socket.java:402)
    at sun.net.NetworkClient.doConnect(NetworkClient.java:139)
    at sun.net.www.http.HttpClient.openServer(HttpClient.java:402)
    at sun.net.www.http.HttpClient.openServer(HttpClient.java:618)
    at sun.net.www.http.HttpClient.<init>(HttpClient.java:306)
    at sun.net.www.http.HttpClient.<init>(HttpClient.java:267)
    at sun.net.www.http.HttpClient.New(HttpClient.java:339)
    at sun.net.www.http.HttpClient.New(HttpClient.java:320)
    at sun.net.www.http.HttpClient.New(HttpClient.java:315)
    at sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:510)
    at sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:487)
    at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:615) at java.net.URL.openStream(URL.java:913) at DnldURLWithoutUsingProxy.main(DnldURLWithoutUsingProxy.java:17)
    I have also tried the command without much luck either:
    java -cp . -Dhttp.proxyHost=wwwproxy -Dhttp.proxyPort=80 DnldURLWithoutUsingProxy
    Oops- an IOException happened.
    java.io.IOException: Server returned HTTP response code: 407 for URL: http://www.yahoo.com.au/index.html
    at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1245) at java.net.URL.openStream(URL.java:1009) at DnldURLWithoutUsingProxy.main(DnldURLWithoutUsingProxy.java:17)
    All outgoing traffic needs to use the proxy wwwproxy (alias to http://proxypac/proxy.pac) on port 80, where it will prompt for valid authentication before allowing to get through.
    There is no problem pinging www.yahoo.com from this system.
    I am running jdk1.6.0_03, Netbeans 6.0 on Windows XP platform.
    I have tried Greg Sporar's Blog on setting the JVM option in Sun Java System Application Server (GlassFish) and
    Java Control Panel - Use browser settings without success.
    Thanks,
    George

  • How do I get an Internet Explorer on my Mac OS X, I need it to run work programs?

    How do I get Internet Explore on my Max OS X, I need it to run work programs?

    If you are running an intel machine, you have Boot Camp on your machine, use it to install Windows on the partition it makes, and then you can use Internet Explorer.  If you don't have an intel, you can use a virtual windows program, something like Parallels or VM ware.

  • I can'nt get skipe to work tells me invaled port how do i get it to work with firefox

    when i use my firefox i cant seem to get skipe to work with it and it tells me invaled port so please help me fix this.

    Hi rockerbelsatx, could you clarify which platform you want to run Firefox on? You posted from an iPad, but there is no version of Firefox for iOS devices, only "Firefox Home." Also, as far as I know, there is no paid version of Firefox for any platform.
    More information on Firefox offerings: http://www.mozilla.org/firefox
    With a little more info, we probably can be more helpful.

  • How to preserve battery life ~ used to last all day, now it runs out by lunchtime

    How to preserve battery life ~ used to last all day, now it runs out by lunchtime

    I would advise updating to iOS 7. It might improve your battery and the bugs are worked out by now.
    If not wanting to update because of the new look, here are some tips:
    -Turn off bluetooth when not needed.
    -Connect to wifi and turn off cellular data when possible.
    -When not around wifi, turn wifi off.
    -Keep your screen at around 50% brightness.
    -Disbale certain apps or features in Settings<Privacy<Location Services if they are not necessary.
    -Close out of apps in the multitasking bar.
    -Enable airplane mode when you plan on not using your phone for a while.
    Hopefully these tips help you. If your battery does eventually get too bad, you can get it changed out by apple. If youve had your device for under a year, you can take it into an Apple store and theyll give you a new phone in return. Have a good night and good luck!

  • Does anybody know how I can run multiple skype accounts on my macbook air?  I found workarounds on youtube, followed the steps to set-up a second skype account but I can't login using the second account.

    How do I run multiple skype accounts on my macbook air.  I'm using MAC OS X 10.6.8.  I followed the workaround steps on youtube to set up a skype b account (application and folder) but when I open the skype b account I can't login. I get an error message saying "please check your network settings and try again".  My 1 skype account works but I need to run 2 skype accounts at the same time, 1 for a client and my own personal account.
    Thanks
    Yolanda

    How do I run multiple skype accounts on my macbook air.  I'm using MAC OS X 10.6.8.  I followed the workaround steps on youtube to set up a skype b account (application and folder) but when I open the skype b account I can't login. I get an error message saying "please check your network settings and try again".  My 1 skype account works but I need to run 2 skype accounts at the same time, 1 for a client and my own personal account.
    Thanks
    Yolanda

  • How can I run MP350 with Windows 8.1 computer? Works OK with Windows 7 machine. Need drivers.

    How can I run MP350 with Windows 8.1 computer?
    It works OK with Windows 7 machine, using drivers from original CD.
    Windows 8,1 machine doesn't find those drivers (which I copied to its C drive).
    It doesn't find needed drivers on the internet.

    Hi Larry-R,
    I see that you made a later post regarding this.  Please refer to the answer on that post regarding your inquiry.
    Did this answer your question? Please click the Accept as Solution button so that others may find the answer as well.

Maybe you are looking for