Method init not found in class oracle.apps.fnd.cp.request.C

Hi all,
I am reffering to Oracle Application Framework Developer’s Guide Release
11.5.10 RUP3 December 2, 2005
As given in the document (page 275) Concurrent Processing: Request Submission
and Monitoring ,I want the Concurrent Processing Request Submission and Monitoring user interfaces available on my OA Framework-based pages.
I have followed the steps given in the OADevGuide but when the custom CO
is compiled it gives following error.
method <init> not found in class oracle.apps.fnd.cp.request.ConcurrentRequest.
The import statement in our code is as followed
import oracle.apps.fnd.cp.request.ConcurrentRequest;
import oracle.apps.fnd.cp.request.RequestSubmissionException;
wheather I have to open a SR on metalink asking for an updated file ConcurrentRequest.class ?
Thanks in advance,
Anant.

Hi All,
Thanks Prabhat for that update.
Thanks tapashray cause u r update on thread Apply not being caught in debugger helped me a lot.
Right now I am facing a different problem.
On click of submit button The page gets called but it gives error as
oracle.apps.fnd.framework.OAException: Could not load application module 'oracle.apps.fnd.cp.srs.server.RequestAM'.
In myprojects folder under oracle dir at reqd path I have this AM .
Whether I need to add the bc4j pkg "oracle.apps.fnd.cp.srs.server.RequestAM" in my project . I dont think so as I am not extending any class/VO or doing any substitution.
my code is as followed
public void processFormData(OAPageContext pageContext, OAWebBean webBean)
System.out.println("Inside ProcessFormData");
if (pageContext.getParameter("Submit")!= null )
System.out.println("Inside Submit ");
try
// get the JDBC connection
OAApplicationModule am = pageContext.getApplicationModule(webBean);
//Connection conn = (Connection)am.getOADBTransaction();
OADBTransaction conn = am.getOADBTransaction();
System.out.println("OADBTransaction conn "+conn);
ConcurrentRequest cr = new ConcurrentRequest(conn.getJdbcConnection());
System.out.println(" ConcurrentRequest cr "+cr);
cr.setDeferred();
// call submit request
Vector param = new Vector();
String selectedValue = pageContext.getParameter("reportList");
System.out.println("selectedValue -> "+selectedValue);
param.add(selectedValue);
System.out.println("before cr.submitRequest ");
int reqId = cr.submitRequest("SQLGL", "RGFSGXML", "Run FSG and XML Publisher",null, false, param);
// int reqId = cr.submitRequest("SYSADMIN", "FNDSCURS", "User Responsibility Report",null, false, param);
System.out.println("After cr.submitRequest reqId "+reqId);
conn.commit();
System.out.println("After commit");
// redirect page to Request Scheduling page
HashMap parameters = new HashMap();
String url = "OA.jsp";
parameters.put("akRegionApplicationId", "0");
parameters.put("akRegionCode", "FNDCPPROGRAMPAGE");
String id = "" + reqId + "";
parameters.put("requestMode", "DEFERRED");
parameters.put("requestId", id);
System.out.println("before page forward ");
pageContext.setForwardURL("BSE_CONC_REQUEST"
,OAWebBeanConstants.KEEP_MENU_CONTEXT
,null
,parameters
,true
,OAWebBeanConstants.ADD_BREAD_CRUMB_NO
,OAWebBeanConstants.IGNORE_MESSAGES);
catch(RequestSubmissionException reportError)
System.out.println("RequestSubmissionException raised "+reportError.getStackTrace());
catch(SetDeferredException deferred)
System.out.println("SetDeferredException raised "+deferred.getStackTrace());
super.processFormData(pageContext,webBean);
Hope I have given all the details.
Regards,
Anant.
Message was edited by: Removed the error stack so that thread details remain on the same page
Anant

Similar Messages

  • Error(10,47): EntryFlowPageCO not found  in class oracle.apps.ap.oie.entry.

    Hi All,
    I extended a CO named IndusFinalReviewPageCOXX and I got the following error.
    Error(10,47): EntryFlowPageCO not found in class oracle.apps.ap.oie.entry.summary.webui.FinalReviewPageCO in class indus.oracle.apps.ap.oie.entry.summary.webui.IndusFinalReviewPageCOXX.
    I already drag the class file of EntryFlowPageCO in path myclasses\oracle\apps\ap\oie\entry\summary\webui
    and import the file. but the error remains same..after that I compile the class file of EntryFlowPageCO and found one more CO imports in EntryFlowPageCO. I drag class file of that CO also in appropriate path.. But still get the same error.
    Pls give me the solution ASAP.
    Thanks
    Amit Jaitly

    Amit,
    In the standard CO you can check that controller EntryFlowPageCO is not under myclasses\oracle\apps\ap\oie\entry\summary\webui.
    Its under oracle/apps/ap/oie/entry/webui so put the same under this directory structure.
    Regards,
    Gyan

  • Method addLayout not found in class ...cp.request.ConcurrentRequest

    I am trying to send concurrent request (XML publisher report) through OAF controller.
    But I get next error when compile it:
    Error(46,20): method addLayout(java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String) not found in class oracle.apps.fnd.cp.request.ConcurrentRequest
    Below the sample of code.
    Please, help me to find a root of cause
    package xxcust.oracle.apps.ap.oie.webui;
    import oracle.apps.fnd.common.VersionInfo;
    import oracle.apps.fnd.framework.webui.OAControllerImpl;
    import oracle.apps.fnd.framework.webui.OAPageContext;
    import oracle.apps.fnd.framework.webui.beans.OAWebBean;
    import oracle.jdbc.OracleCallableStatement;
    import java.util.Vector;
    import oracle.apps.fnd.cp.request.ConcurrentRequest;
    import oracle.apps.fnd.framework.OAApplicationModule;
    import oracle.apps.fnd.framework.OAException;
    import oracle.apps.fnd.framework.server.OADBTransaction;
    public class xxMyPrintCO extends OAControllerImpl
    public static final String RCS_ID="$Header$";
    public static final boolean RCS_ID_RECORDED =
    VersionInfo.recordClassVersion(RCS_ID, "%packagename%");
    public void processRequest(OAPageContext pageContext, OAWebBean webBean)
    { super.processRequest(pageContext, webBean);
    OAApplicationModule am = pageContext.getApplicationModule(webBean);
    OADBTransaction tx = am.getOADBTransaction();
    java.sql.Connection pConncection = tx.getJdbcConnection();
    ConcurrentRequest cr = new ConcurrentRequest(pConncection);
    int xxRequestId = 0;
    // concarent parameters
    String xxp_type = null;
    String applnName = "SQLAP";
    String cpName = "XXKVP_KO1";
    String LayName = "XXKVP_KO1";
    String cpDesc = null;
    try
    cr.addLayout("PER",LayName,"ru","RU","PDF");
    catch(Exception e)
    {throw new OAException("addLayout -" + e.getMessage(), (byte)0);
    public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)
    super.processFormRequest(pageContext, webBean);
    }

    it was a bug described in doc [ID 1360914.1]
    JBO-29000 java.lang.NoSuchMethodError When Calling oracle.apps.fnd.cp.request.ConcurrentRequest.addLayout [ID 1360914.1]

  • Class oracle.sql.OPAQUE not found in class oracle.xdb.XMLType

    I have the following code written in java in a unix box and this is the error I get when compiling the code. I am not able to find which specific jar or class file I need, Kindly help.
    XMLHelper.java:0: Class oracle.sql.OPAQUE not found in class oracle.xdb.XMLType.
    ^
    1 error
    OracleResultSet orst = .... some code to get data
    orst.next();
    //either of the following 2 lines give the same error
    //XMLType dXml = XMLType.createXML(orst.getOPAQUE(1)) ;
    XMLType dXml = (XMLType)orst.getObject(i);
    xmlDoc = dXml.getDOM();
    Please help

    Hello,
    from the little information in your post i would say try to import oracle.sql.*, oracle.jdbc.* and oracle.xdb.*. Make sure your project can access the following libraries ojdbc14.jar and xdb.jar.
    Regards, Marc

  • UI Error 'Method clone not found in class java.lang.Class'

    When attempting to view an application window in the User Interface error I receive the error 'Method clone not found in class java.lang.Class'. The window will run correctly when I execute the application and other objects on the window are displayed correctly in the UI editor.
    Within the window class I have used the following line of code to clone a reference list of values that is loaded just once when the application starts up: -
    dsDefaultComboBoxModel priorityComboBoxModel = (dsDefaultComboBoxModel) dsReferenceLuLists.priorityComboBoxModel.clone();
    And then this line of code to create a combo box: -
    dsGuiComboBoxRefelu priorityComboBox = new dsGuiComboBoxRefelu(priorityComboBoxModel,ReportWindowSql.priorityCodeBuffer);
    And then later on the combo box is displayed.
    detailsArea.add(priorityComboBox, new XYConstraints(250,10,dsGlobalVariables.gvFieldWidthLarge,-1));
    'dsDefaultComboBoxModel' is defined as follows: -
    public class dsDefaultComboBoxModel extends DefaultComboBoxModel implements Cloneable
    public dsDefaultComboBoxModel()
    public Object clone()
    try
    return super.clone();
    catch ( CloneNotSupportedException e )
    // Shouldn't happen.
    throw new InternalError( e.toString() );
    This error occurs using the latest v903, but was also present in previous versions of JDeveloper.
    At the moment this means that I did to execute the window in order to see all of the GUI elements that are displayed. As on option I could use something other than the clone method, but it seems to be such a nice way of copying the static reference lists.
    Thanks for any help.

    Hi Darren,
    My guess is that since DefaultComboBoxModel doesn't implement Cloneable, you can't call super.clone(). Does your code compile?
    Later.
    Dennis

  • Regarding class oracle.apps.fnd.framework.server.OANullDBTransactionImpl

    Does any one knows about the class oracle.apps.fnd.framework.server.OANullDBTransactionImpl
    What is the use of this class and when will we use this class?
    Thanks

    Yup, its there. So all I can say is that either FWK team forgot to provide the javadoc for the same or it is meant for internal development only.

  • Oracle.apps.fnd.cp.request.FileAccessException:

    One request (XML Publisher Report Bursting Program) is failing continuously with the error below
    null output =/p01/app/applmgr/oappsp1/inst/apps/OAPPSP1_c201u336/logs/appl/conc/out/CERDALB.575007
    File /p01/app/applmgr/oappsp1/inst/apps/OAPPSP1_c201u336/logs/appl/conc/out/CERDALB.575005 is not accessable from node/machine C201U336.
    --Exception+
    File /p01/app/applmgr/oappsp1/inst/apps/OAPPSP1_c201u336/logs/appl/conc/out/CERDALB.575005 is not accessable from node/machine C201U336.
    oracle.apps.fnd.cp.request.FileAccessException: File /p01/app/applmgr/oappsp1/inst/apps/OAPPSP1_c201u336/logs/appl/conc/out/CERDALB.575005 is not accessable from node/machine C201U336.
    +     at oracle.apps.fnd.cp.request.RemoteFile.getFile(RemoteFile.java:440)+
    +     at oracle.apps.xdo.oa.cp.JCP4XDOBurstingEngine.runProgram(JCP4XDOBurstingEngine.java:233)+
    +     at oracle.apps.fnd.cp.request.Run.main(Run.java:157)+
    Please help, when I saw the file its permission is
    $ ll -ltr /p01/app/applmgr/oappsp1/inst/apps/OAPPSP1_c201u336/logs/appl/conc/out/CERDALB.575005
    -rw-r--r-- 1 applmgr oaa 22849 Feb 21 07:02 /p01/app/applmgr/oappsp1/inst/apps/OAPPSP1_c201u336/logs/appl/conc/out/CERDALB.575005
    EBS version 12.1.3

    993196 wrote:
    Is there any solution to this issue. We are also facing the same error:
    --Exception
    File /applerpdev/XX/inst/apps/XXapp01/logs/appl/conc/out/o14794719.out is not accessable from node/machine XX01.
    oracle.apps.fnd.cp.request.FileAccessException: File ...../out/o14794719.out is not accessable from node/machine XX01.
    at oracle.apps.fnd.cp.request.RemoteFile.getFile(RemoteFile.java:440)
    at oracle.apps.xdo.oa.cp.JCP4XDOBurstingEngine.runProgram(JCP4XDOBurstingEngine.java:233)
    at oracle.apps.fnd.cp.request.Run.main(Run.java:157)
    Any help is greatly appreciated.
    Thanks!!In addition to the docs referenced above, please see (When Running PDF Report, Getting Error File Is Not Accessable From Node/Machine Or java.io.FileNotFoundException [ID 398897.1]).
    Thanks,
    Hussein

  • Java concurrent program class not found Exception in oracle apps

    Hi all,
    I done java concurrent program as per steps given by oracle.I am getting class not exception when i am submitting that concurrent program.
    My java file is under $JAVA_TOP specified folder.Those path from $JAVA_TOP i set in apps (System Adminstrator -->Executable) Execution file path.Can any body have faced this issue?
    Thanks

    Also go through the metalink Note:250964.1
    It goes through the complete process of creating a sample java conc process and implementing it.
    --Shiv                                                                                                                                                                                                                                                                                                                   

  • Method not found in class errors when compiling project

    Hi,
    I am getting the following errors when compiling my project:
    Error(3,8): ReqLinesNotificationsVORowImpl not found
    Error(25,25): method getAttributeInternal(java.lang.String) not found in class oracle.apps.icx.por.wf.server.ReqLinesNotificationsVOExRowImpl
    Error(31,9): method setAttributeInternal(java.lang.String, oracle.jbo.domain.Number) not found in class oracle.apps.icx.por.wf.server.ReqLinesNotificationsVOExRowImpl
    Error(37,25): method getAttributeInternal(java.lang.String) not found in class oracle.apps.icx.por.wf.server.ReqLinesNotificationsVOExRowImpl
    Error(43,9): method setAttributeInternal(java.lang.String, oracle.jbo.domain.Number) not found in class oracle.apps.icx.por.wf.server.ReqLinesNotificationsVOExRowImpl
    Error(49,25): method getAttributeInternal(java.lang.String) not found in class oracle.apps.icx.por.wf.server.ReqLinesNotificationsVOExRowImpl
    Error(55,9): method setAttributeInternal(java.lang.String, oracle.jbo.domain.Number) not found in class oracle.apps.icx.por.wf.server.ReqLinesNotificationsVOExRowImpl
    Error(61,25): method getAttributeInternal(java.lang.String) not found in class oracle.apps.icx.por.wf.server.ReqLinesNotificationsVOExRowImpl
    Error(67,9): method setAttributeInternal(java.lang.String, java.lang.String) not found in class oracle.apps.icx.por.wf.server.ReqLinesNotificationsVOExRowImpl
    Error(67,9): method setAttributeInternal(java.lang.String, java.lang.String) not found in class oracle.apps.icx.por.wf.server.ReqLinesNotificationsVOExRowImpl
    Error(79,9): method setAttributeInternal(java.lang.String, java.lang.String) not found in class oracle.apps.icx.por.wf.server.ReqLinesNotificationsVOExRowImpl
    Error(85,25): method getAttributeInternal(java.lang.String) not found in class oracle.apps.icx.por.wf.server.ReqLinesNotificationsVOExRowImpl
    Error(91,9): method setAttributeInternal(java.lang.String, java.lang.String) not found in class oracle.apps.icx.por.wf.server.ReqLinesNotificationsVOExRowImpl
    Error(97,25): method getAttributeInternal(java.lang.String) not found in class oracle.apps.icx.por.wf.server.ReqLinesNotificationsVOExRowImpl
    Error(103,9): method setAttributeInternal(java.lang.String, java.lang.String) not found in class oracle.apps.icx.por.wf.server.ReqLinesNotificationsVOExRowImpl
    Error(109,25): method getAttributeInternal(java.lang.String) not found in class oracle.apps.icx.por.wf.server.ReqLinesNotificationsVOExRowImpl
    Error(115,9): method setAttributeInternal(java.lang.String, java.lang.String) not found in class oracle.apps.icx.por.wf.server.ReqLinesNotificationsVOExRowImpl
    Error(121,25): method getAttributeInternal(java.lang.String) not found in class oracle.apps.icx.por.wf.server.ReqLinesNotificationsVOExRowImpl
    Error(127,9): method setAttributeInternal(java.lang.String, oracle.jbo.domain.Number) not found in class oracle.apps.icx.por.wf.server.ReqLinesNotificationsVOExRowImpl
    Error(133,25): method getAttributeInternal(java.lang.String) not found in class oracle.apps.icx.por.wf.server.ReqLinesNotificationsVOExRowImpl
    Error(139,9): method setAttributeInternal(java.lang.String, oracle.jbo.domain.Number) not found in class oracle.apps.icx.por.wf.server.ReqLinesNotificationsVOExRowImpl
    Error(145,25): method getAttributeInternal(java.lang.String) not found in class oracle.apps.icx.por.wf.server.ReqLinesNotificationsVOExRowImpl
    Error(151,9): method setAttributeInternal(java.lang.String, oracle.jbo.domain.Number) not found in class oracle.apps.icx.por.wf.server.ReqLinesNotificationsVOExRowImpl
    Error(157,25): method getAttributeInternal(java.lang.String) not found in class oracle.apps.icx.por.wf.server.ReqLinesNotificationsVOExRowImpl
    Error(163,9): method setAttributeInternal(java.lang.String, java.lang.String) not found in class oracle.apps.icx.por.wf.server.ReqLinesNotificationsVOExRowImpl
    Error(169,25): method getAttributeInternal(java.lang.String) not found in class oracle.apps.icx.por.wf.server.ReqLinesNotificationsVOExRowImpl
    Error(175,9): method setAttributeInternal(java.lang.String, java.lang.String) not found in class oracle.apps.icx.por.wf.server.ReqLinesNotificationsVOExRowImpl
    Error(181,23): method getAttributeInternal(java.lang.String) not found in class oracle.apps.icx.por.wf.server.ReqLinesNotificationsVOExRowImpl
    Error(187,9): method setAttributeInternal(java.lang.String, oracle.jbo.domain.Date) not found in class oracle.apps.icx.por.wf.server.ReqLinesNotificationsVOExRowImpl
    Error(193,23): method getAttributeInternal(java.lang.String) not found in class oracle.apps.icx.por.wf.server.ReqLinesNotificationsVOExRowImpl
    Error(199,9): method setAttributeInternal(java.lang.String, oracle.jbo.domain.Date) not found in class oracle.apps.icx.por.wf.server.ReqLinesNotificationsVOExRowImplError(205,23): method getAttributeInternal(java.lang.String) not found in class oracle.apps.icx.por.wf.server.ReqLinesNotificationsVOExRowImpl
    I have ReqLinesNotificationsVORowImpl and ReqLinesNotificationsVOImpl files in myprojects directory. Can anyone help please?
    Thanks

    Hi,
    From the error it seems that the code is refering ReqLinesNotificationsVOExRowImpl file.
    Please make sure that its class file is present in myclasses folder.
    Since u have mentioned that ReqLinesNotificationsVORowImpl is already placed in myclasses folder. Hope this should resolve your issue.
    Regards,
    Raj Papdeja

  • Methods not found in class !  HELP !

    Dear java People,
    I am trying to draw, move, and erase balls in a ArrayList. I get an error message that says:
    "BallDemo.java": Error #: 300 : method draw() not found in class java.lang.Object at line 126,
    "BallDemo.java": Error #: 300 : method move() not found in class java.lang.Object at line 132
    "BallDemo.java": Error #: 300 : method erase() not found in class java.lang.Object at line 138
    below are the lines causing the errors and the method with the problem code
    Thank you in advance
    Stan
    public void bounce()
            int ground = 400;   // position of the ground line
            int numberOfBalls = 0;
            myCanvas.setVisible(true);
            ArrayList balls = new ArrayList();
            // draw the ground
            myCanvas.drawLine(50, ground, 550, ground);
            //ex 5.50 (a)
            System.out.println("Type in the number of balls you would like to see bouncing and hit enter");
              numberOfBalls = input.readInt();
             //(b)
             for(int i = 0; i < numberOfBalls; i++)
               //(c) (d)
            Random rg = new Random(255);
             BouncingBall newBall =  new BouncingBall(i + 15, 0, 16, new Color(rg.nextInt(255),rg.nextInt(255),rg.nextInt(255)), ground, myCanvas);
             //add the ball to the ArrayList object
            balls.add(newBall);
           for(int i = 0; i < numberOfBalls; i++)
               balls.get(i).draw();
              // make them bounce
              boolean finished =  false;
              while(!finished) {
               myCanvas.wait(50);           // small delay
               balls.get(i).move();
                // stop once ball has travelled a certain distance on x axis
               // if(ball.getXPosition() >= 550 && ball2.getXPosition() >= 550)
                    finished = true;
              balls.get(i).erase();
        }balls.get(i).draw();
    balls.get(i).move();
    balls.get(i).erase();

    I actually caught this error myself !
    I must be improving !
    Cheers
    Stan

  • Va.lang.ClassNotFoundException: oracle.apps.fnd.formsClient.Forms in R12.

    when we are trrying to access forms, we are getting below error, this is happening only one user other users able to access,and i am able to access other instances forms,
    here is java console java error msg:
    IE : 8 R12.1.3 pn OEL5.
    basic: completed perf rollup
    network: Cache entry not found [url: http://.com:8000/OA_JAVA/oracle/apps/fnd/formsClient/FormsLauncher.class, version: null]
    network: Connecting http://.com:8000/OA_JAVA/oracle/apps/fnd/formsClient/FormsLauncher.class with proxy=DIRECT
    network: Cache entry not found [url: http://.com:8000/OA_JAVA/oracle/apps/fnd/formsClient/FormsLauncher/class.class, version: null]
    network: Connecting http://com:8000/OA_JAVA/oracle/apps/fnd/formsClient/FormsLauncher/class.class with proxy=DIRECT
    load: class oracle/apps/fnd/formsClient/FormsLauncher.class not found.
    va.lang.ClassNotFoundException: oracle.apps.fnd.formsClient.FormsLauncher.class
         at sun.applet.AppletClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadCode(Unknown Source)
         at sun.applet.AppletPanel.createApplet(Unknown Source)
         at sun.plugin.AppletViewer.createApplet(Unknown Source)
         at sun.applet.AppletPanel.runLoader(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    basic: Exception: java.lang.ClassNotFoundException: oracle.apps.fnd.formsClient.For
    java.net.ConnectException: Connection refused: connect
         at java.net.PlainSocketImpl.socketConnect(Native Method)
         at java.net.PlainSocketImpl.doConnect(Unknown Source)
         at java.net.PlainSocketImpl.connectToAddress(Unknown Source)
         at java.net.PlainSocketImpl.connect(Unknown Source)
         at java.net.Socket.connect(Unknown Source)
         at sun.net.NetworkClient.doConnect(Unknown Source)
         at sun.net.www.http.HttpClient.openServer(Unknown Source)
         at sun.net.www.http.HttpClient.openServer(Unknown Source)
         at sun.net.www.http.HttpClient.<init>(Unknown Source)
         at sun.net.www.http.HttpClient.New(Unknown Source)
         at sun.net.www.http.HttpClient.New(Unknown Source)
         at sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(Unknown Source)
         at sun.net.www.protocol.http.HttpURLConnection.plainConnect(Unknown Source)
         at sun.net.www.protocol.http.HttpURLConnection.connect(Unknown Source)
         at sun.net.www.protocol.http.HttpURLConnection.getInputStream(Unknown Source)
         at sun.plugin.PluginURLJarFileCallBack.downloadJAR(Unknown Source)
         at sun.plugin.PluginURLJarFileCallBack.access$000(Unknown Source)
         at sun.plugin.PluginURLJarFileCallBack$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at sun.plugin.PluginURLJarFileCallBack.retrieve(Unknown Source)
         at sun.net.www.protocol.jar.URLJarFile.retrieve(Unknown Source)
         at sun.net.www.protocol.jar.URLJarFile.getJarFile(Unknown Source)
         at sun.net.www.protocol.jar.JarFileFactory.get(Unknown Source)
         at sun.net.www.protocol.jar.JarURLConnection.connect(Unknown Source)
         at sun.plugin.net.protocol.jar.CachedJarURLConnection.connect(Unknown Source)
         at sun.plugin.net.protocol.jar.CachedJarURLConnection.getJarFileInternal(Unknown Source)
         at sun.plugin.net.protocol.jar.CachedJarURLConnection.getJarFile(Unknown Source)
         at sun.misc.URLClassPath$JarLoader.getJarFile(Unknown Source)
         at sun.misc.URLClassPath$JarLoader.access$600(Unknown Source)
         at sun.misc.URLClassPath$JarLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at sun.misc.URLClassPath$JarLoader.ensureOpen(Unknown Source)
         at sun.misc.URLClassPath$JarLoader.<init>(Unknown Source)
         at sun.misc.URLClassPath$3.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at sun.misc.URLClassPath.getLoader(Unknown Source)
         at sun.misc.URLClassPath.getLoader(Unknown Source)
         at sun.misc.URLClassPath.getResource(Unknown Source)
         at java.net.URLClassLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.net.URLClassLoader.findClass(Unknown Source)
         at sun.applet.AppletClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadCode(Unknown Source)
         at sun.applet.AppletPanel.createApplet(Unknown Source)
         at sun.plugin.AppletViewer.createApplet(Unknown Source)
         at sun.applet.AppletPanel.runLoader(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)

    when we are trrying to access forms, we are getting below error, this is happening only one user other users able to access,and i am able to access other instances forms, This is a client issue, and there is nothing you need to troubleshoot from the server side.
    Try to uninstall/install Sun JRE and check then. Also, try to use a different browser and see if you can reproduce the issue.
    Can't Launch Forms in E-Business when accessed via VPN: Formslauncher Notinited [ID 471120.1]
    Deploying Sun JRE (Native Plug-in) for Windows Clients in Oracle E-Business Suite Release 12 [ID 393931.1]
    FormsLauncher.class Not Found Error When Attempting to Access Forms in Applications [ID 291698.1]
    IE8 AND R12 SECURITY SETTING REQUIREMENT ON CROSS SITE SCRIPTING (XSS) [ID 1069497.1]
    If you still get the same error, enable debug as per these docs.
    How to enable tracing and logging for Sun JRE (Native Plug-in) [ID 549423.1]
    How To View The Java Console And Enable Tracing For Sun JRE (Native Plug-in) [ID 452853.1]
    Thanks,
    Hussein

  • Gurus, please help I am getting oracle.apps.fnd.cache.CacheException

    Hi, I am not a newbie to OAF. I have worked good amount on the OAF 9i development. Currently we are on R12.0.4 and Jdev 10g (patch 6908968) But this error really beats me. I believe it could be due to a Apache error, but may be I am doing something wrong here and so hopefully you can provide me some insight. I am trying to configure my JDev 10G for R12 development. I am trying to run supplied HelloWorld page in Tutorial.jpr. I have set the DB connection and provided the username/password with responsibility key and also the DBC file in the Runtime Connections properties for the Project. I have also tried the alternative i.e building a custom HelloWorld, but even with that I get the same error.
    Please let me know if I should be doing anything else.
    Thanks and appreciate your help.
    Rahul
    ---------------------------------------------------Error ------------------------------------------------------------------------
    racle.apps.fnd.cache.CacheException     
    at oracle.apps.fnd.cache.AppsCache.get(AppsCache.java:228)     
    at oracle.apps.fnd.profiles.Profiles.getProfileOption(Profiles.java:1485)     
    at oracle.apps.fnd.profiles.Profiles.getProfile(Profiles.java:354)     
    at oracle.apps.fnd.profiles.ExtendedProfileStore.getSpecificProfileFromDB(ExtendedProfileStore.java:211)     
    at oracle.apps.fnd.profiles.ExtendedProfileStore.getSpecificProfile(ExtendedProfileStore.java:171)     
    at oracle.apps.fnd.profiles.ExtendedProfileStore.getProfile(ExtendedProfileStore.java:148)     
    at oracle.apps.fnd.common.logging.DebugEventManager.configureUsingDatabaseValues(DebugEventManager.java:1259)     
    at oracle.apps.fnd.common.logging.DebugEventManager.configureLogging(DebugEventManager.java:1114)     
    at oracle.apps.fnd.common.logging.DebugEventManager.internalReinit(DebugEventManager.java:1083)     
    at oracle.apps.fnd.common.logging.DebugEventManager.reInitialize(DebugEventManager.java:1050)     
    at oracle.apps.fnd.common.logging.DebugEventManager.reInitialize(DebugEventManager.java:1037)     
    at oracle.apps.fnd.common.AppsLog.reInitialize(AppsLog.java:595)     
    at oracle.apps.fnd.common.AppsContext.initLog(AppsContext.java:941)     
    at oracle.apps.fnd.common.AppsContext.initializeContext(AppsContext.java:926)     
    at oracle.apps.fnd.common.AppsContext.initializeContext(AppsContext.java:891)     
    at oracle.apps.fnd.common.WebAppsContext.<init>(WebAppsContext.java:1027)     
    at oracle.apps.fnd.common.WebRequestUtil.validateContext(WebRequestUtil.java:223)     
    at OAErrorPage.jspService(_OAErrorPage.java:66)     [OAErrorPage.jsp]     
    at com.orionserver[Oracle Containers for J2EE 10g (10.1.3.3.0) ].http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)     
    at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:462)     
    at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)     
    at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)     
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)     
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:713)     
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)     
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ServletRequestDispatcher.unprivileged_forward(ServletRequestDispatcher.java:259)     
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ServletRequestDispatcher.access$100(ServletRequestDispatcher.java:51)     
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ServletRequestDispatcher$2.oc4jRun(ServletRequestDispatcher.java:193)     
    at oracle.oc4j.security.OC4JSecurity.doPrivileged(OC4JSecurity.java:283)     
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ServletRequestDispatcher.forward(ServletRequestDispatcher.java:198)     
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.EvermindPageContext.handlePageThrowable(EvermindPageContext.java:847)     
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.EvermindPageContext.handlePageException(EvermindPageContext.java:813)     
    at runregion.jspService(_runregion.java:197)     [runregion.jsp]     
    at com.orionserver[Oracle Containers for J2EE 10g (10.1.3.3.0) ].http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)     
    at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:462)     
    at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)     
    at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)     
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)     
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:713)     
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)     
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)     
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)     
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:221)     
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.HttpRequestHandler.run(HttpRequestHandler.java:122)     
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.HttpRequestHandler.run(HttpRequestHandler.java:111)     
    at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)     
    at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:239)     
    at oracle.oc4j.network.ServerSocketAcceptHandler.access$700(ServerSocketAcceptHandler.java:34)     
    at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:880)     
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:298)     
    at java.lang.Thread.run(Thread.java:595)Caused by: oracle.apps.jtf.base.resources.FrameworkException: Error in IAS Cache: java.lang.NullPointerException: null Connection     at oracle.apps.jtf.cache.IASCacheProvider.get(IASCacheProvider.java:712)     
    at oracle.apps.jtf.cache.CacheManager.getInternal(CacheManager.java:4802)     
    at oracle.apps.jtf.cache.CacheManager.get(CacheManager.java:4624)     
    at oracle.apps.fnd.cache.AppsCache.get(AppsCache.java:216)     
    ... 50 moreCaused by: oracle.apps.jtf.base.resources.FrameworkException: An exception occurred in the method CacheAccess.getnullThe base exception is:null Connection     
    at oracle.apps.jtf.base.resources.FrameworkException.convertException(FrameworkException.java:607)     
    at oracle.apps.jtf.base.resources.FrameworkException.addException(FrameworkException.java:585)     
    at oracle.apps.jtf.base.resources.FrameworkException.<init>(FrameworkException.java:66)     
    at oracle.apps.jtf.base.resources.FrameworkException.<init>(FrameworkException.java:88)     
    at oracle.apps.jtf.base.resources.FrameworkException.<init>(FrameworkException.java:202)     
    at oracle.apps.jtf.base.resources.FrameworkException.<init>(FrameworkException.java:218)     
    at oracle.apps.jtf.base.resources.FrameworkException.<init>(FrameworkException.java:249)     ... 54 more
    -------------------------------------------------------------------------------------------------------------------------------------------------

    I did thought it was a DBC issue before, so I requested the DBC file again from the DBA's. I try the page and get the same error again. This time I looked at the DBC and compared the JDBC string with what I have on the TNSNames. The server name on the DBC file provided to me was slightly off. So, that was the error. The dbc file had imbcdd-d as the server name, whereas in the TNSName it was imbcdd-b. I fixed the DBC and reran and there it goes I get the HelloWorld Page.
    Thanks a bunch to all. I should have it investigated more. Apologize for the siilly post.
    Rahul

  • Applet oracle/apps/fnd/formsClient/FormsLauncher notinited

    Hi,
    I am unable to launch forms from one particular client machine.
    When I try to launch a form after logging into Oracle Applications, I get this error message at the bottom of my screen.
    "Applet oracle/apps/fnd/formsClient/FormsLauncher notinited"
    I have reinstalled J2SE and also my proxy settings are fine. But still I am not able to launch forms.
    The funny part is, through this client machine, I can launch forms for my Production environment. The problem is only when launching TEST environment (which was cloned couple of days back).
    Has anone faced this issue before?
    Thanks!

    The error message in the browser:
    Applet oracle/apps/fnd/formsClient/FormsLauncher notinited
    And the complete error message in the JRE console:
    load: class oracle/apps/fnd/formsClient/FormsLauncher.class not found.
    java.lang.ClassNotFoundException: oracle.apps.fnd.formsClient.FormsLauncher.class
         at sun.applet.AppletClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadCode(Unknown Source)
         at sun.applet.AppletPanel.createApplet(Unknown Source)
         at sun.plugin.AppletViewer.createApplet(Unknown Source)
         at sun.applet.AppletPanel.runLoader(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    load: class oracle/apps/fnd/formsClient/FormsLauncher.class not found.
    java.lang.ClassNotFoundException: oracle.apps.fnd.formsClient.FormsLauncher.class
         at sun.applet.AppletClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadCode(Unknown Source)
         at sun.applet.AppletPanel.createApplet(Unknown Source)
         at sun.plugin.AppletViewer.createApplet(Unknown Source)
         at sun.applet.AppletPanel.runLoader(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    load: class oracle/apps/fnd/formsClient/FormsLauncher.class not found.
    java.lang.ClassNotFoundException: oracle.apps.fnd.formsClient.FormsLauncher.class
         at sun.applet.AppletClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadCode(Unknown Source)
         at sun.applet.AppletPanel.createApplet(Unknown Source)
         at sun.plugin.AppletViewer.createApplet(Unknown Source)
         at sun.applet.AppletPanel.runLoader(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Do you have any idea how to solve this problem?
    Thanks.

  • Oracle.apps.fnd.cache.CacheException while generating Auto Reports

    Hi,
    Please help me in resolving out the ERROR occured while dealing with Automated Report Generation.
    Following is the Error Message:
    Weekly Report Generator starts running at:Tue Jun 24 14:41:47 IST 2008
    connection oracle.jdbc.driver.T4CConnection@789144
    Generating Health Summary Report for: _11_5_1.html
    oracle.apps.fnd.cache.CacheException
    at oracle.apps.fnd.cache.AppsCache.get(AppsCache.java:228)
    at oracle.apps.fnd.profiles.Profiles.getProfileOption(Profiles.java:1485)
    at oracle.apps.fnd.profiles.Profiles.getProfile(Profiles.java:354)
    at oracle.apps.fnd.profiles.ExtendedProfileStore.getSpecificProfileFromDB(ExtendedProfileStore.java:210)
    at oracle.apps.fnd.profiles.ExtendedProfileStore.getSpecificProfile(ExtendedProfileStore.java:169)
    at oracle.apps.fnd.profiles.ExtendedProfileStore.getProfile(ExtendedProfileStore.java:148)
    at oracle.apps.fnd.common.logging.DebugEventManager.configureUsingDataba
    seValues(DebugEventManager.java:1149)
    at oracle.apps.fnd.common.logging.DebugEventManager.configureLogging(Deb
    ugEventManager.java:1010)
    at oracle.apps.fnd.common.logging.DebugEventManager.internalReinit(Debug
    EventManager.java:979)
    at oracle.apps.fnd.common.logging.DebugEventManager.reInitialize(DebugEv
    entManager.java:946)
    at oracle.apps.fnd.common.logging.DebugEventManager.reInitialize(DebugEv
    entManager.java:933)
    at oracle.apps.fnd.common.AppsLog.reInitialize(AppsLog.java:570)
    at oracle.apps.fnd.common.AppsContext.initLog(AppsContext.java:932)
    at oracle.apps.fnd.common.AppsContext.initializeContext(AppsContext.java
    :917)
    at oracle.apps.fnd.common.AppsContext.initializeContext(AppsContext.java
    :882)
    at oracle.apps.fnd.common.AppsContext.<init>(AppsContext.java:742)
    at oracle.apps.fnd.common.WebAppsContext.<init>(WebAppsContext.java:933)
    at uttara.oracle.apps.uttaraimc.reports.jasper.HealthSummaryReportGenera
    tor.getServiceApplicationModule(HealthSummaryReportGenerator.java:110)
    at uttara.oracle.apps.uttaraimc.reports.jasper.HealthSummaryReportGenera
    tor.generateReport(HealthSummaryReportGenerator.java:40)
    at uttara.oracle.apps.uttaraimc.reports.jasper.WeeklyReportGenerator.gen
    erateWeeklyReports(WeeklyReportGenerator.java:75)
    at uttara.oracle.apps.uttaraimc.reports.jasper.WeeklyReportGenerator.mai
    n(WeeklyReportGenerator.java:27)
    Caused by: oracle.apps.jtf.base.resources.FrameworkException: Error in IAS Cache
    : java.lang.NullPointerException: null Connection
    at oracle.apps.jtf.cache.IASCacheProvider.get(IASCacheProvider.java:678)
    at oracle.apps.jtf.cache.CacheManager.getInternal(CacheManager.java:4684)
    at oracle.apps.jtf.cache.CacheManager.get(CacheManager.java:4507)
    at oracle.apps.fnd.cache.AppsCache.get(AppsCache.java:216)
    ... 20 more
    Error: Report cannot be created at: /oracle10/oracle/viscomn/java/oracle/apps/me
    dia/CDV/CDVReport/HTML/Auto/Weekly/24_06_2008/ status: false
    Error:oracle.apps.fnd.cache.CacheException
    No. of reports generated:0
    ************************************************************************

    It looks like the reports to be created is trying to use
    /oracle10/oracle/viscomn/java/oracle/apps/media/CDV/CDVReport/HTML/Auto/Weekly/24_06_2008/
    And it can not write in that location. Specify a different folder or check the permisisons/free space avaialable.
    Rajesh Alex

  • Exception in thread "main" oracle.apps.fnd.cache.CacheException

    Dear Experts,
    I am getting the below error.
    $AFJVAPRG -classpath $AF_CLASSPATH -Dprotocol=imap \
    -Ddbcfile=$FND_SECURE/TEST.dbc \
    -Dport=993 -Dssl=Y \
    -Dtruststore=/home/applprod/.keystore \
    -Dserver=xxxxxxxxxxxxx \
    [email protected] -Dpassword=pass@word01\
    -Dconnect_timeout=120 -Ddebug=Y \
    -DdebugMailSession=Y oracle.apps.fnd.wf.mailer.MailerException in thread "main" oracle.apps.fnd.cache.CacheException
    at oracle.apps.fnd.cache.AppsCache.get(AppsCache.java:228)
    at oracle.apps.fnd.profiles.Profiles.getProfileOption(Profiles.java:1485)
    at oracle.apps.fnd.profiles.Profiles.getProfile(Profiles.java:354)
    at oracle.apps.fnd.profiles.ExtendedProfileStore.getSpecificProfileFromDB(ExtendedProfileStore.java:211)
    at oracle.apps.fnd.profiles.ExtendedProfileStore.getSpecificProfile(ExtendedProfileStore.java:171)
    at oracle.apps.fnd.profiles.ExtendedProfileStore.getProfile(ExtendedProfileStore.java:148)
    at oracle.apps.fnd.common.logging.DebugEventManager.configureUsingDatabaseValues(DebugEventManager.java:1259)
    at oracle.apps.fnd.common.logging.DebugEventManager.configureLogging(DebugEventManager.java:1114)
    at oracle.apps.fnd.common.logging.DebugEventManager.internalReinit(DebugEventManager.java:1083)
    at oracle.apps.fnd.common.logging.DebugEventManager.reInitialize(DebugEventManager.java:1050)
    at oracle.apps.fnd.common.logging.DebugEventManager.reInitialize(DebugEventManager.java:1037)
    at oracle.apps.fnd.common.AppsLog.reInitialize(AppsLog.java:595)
    at oracle.apps.fnd.common.AppsContext.initLog(AppsContext.java:941)
    at oracle.apps.fnd.common.AppsContext.initializeContext(AppsContext.java:926)
    at oracle.apps.fnd.common.AppsContext.initializeContext(AppsContext.java:891)
    at oracle.apps.fnd.common.AppsContext.<init>(AppsContext.java:751)
    at oracle.apps.fnd.wf.apps.WorkflowContext.<init>(WorkflowContext.java:31)
    at oracle.apps.fnd.wf.apps.ContextFactory.makeContext(ContextFactory.java:54)
    at oracle.apps.fnd.wf.common.WorkflowContext.<init>(WorkflowContext.java:82)
    at oracle.apps.fnd.wf.mailer.Mailer.main(Mailer.java:4653)
    Caused by: oracle.apps.jtf.base.resources.FrameworkException: Error in IAS Cache: java.lang.NullPointerException: null Connection
    at oracle.apps.jtf.cache.IASCacheProvider.get(IASCacheProvider.java:712)
    at oracle.apps.jtf.cache.CacheManager.getInternal(CacheManager.java:4802)
    at oracle.apps.jtf.cache.CacheManager.get(CacheManager.java:4624)
    at oracle.apps.fnd.cache.AppsCache.get(AppsCache.java:216)
    ... 19 more
    Caused by: oracle.apps.jtf.base.resources.FrameworkException:
    An exception occurred in the method CacheAccess.get
    null
    The base exception is:
    null Connection
    at oracle.apps.jtf.base.resources.FrameworkException.convertException(FrameworkException.java:607)
    at oracle.apps.jtf.base.resources.FrameworkException.addException(FrameworkException.java:585)
    at oracle.apps.jtf.base.resources.FrameworkException.<init>(FrameworkException.java:66)
    at oracle.apps.jtf.base.resources.FrameworkException.<init>(FrameworkException.java:88)
    at oracle.apps.jtf.base.resources.FrameworkException.<init>(FrameworkException.java:202)
    at oracle.apps.jtf.base.resources.FrameworkException.<init>(FrameworkException.java:218)
    at oracle.apps.jtf.base.resources.FrameworkException.<init>(FrameworkException.java:249)
    ... 23 more
    Please advise.
    Mohammed. Abdul Muqeet
    Edited by: Mohammed Abdul Muqeet on Jan 21, 2013 7:20 PM
    Edited by: Mohammed Abdul Muqeet on Jan 21, 2013 7:21 PM

    Please post the details of the application release, database version and OS.
    I am getting the below error.
    $AFJVAPRG -classpath $AF_CLASSPATH -Dprotocol=imap \
    -Ddbcfile=$FND_SECURE/TEST.dbc \
    -Dport=993 -Dssl=Y \
    -Dtruststore=/home/applprod/.keystore \
    -Dserver=xxxxxxxxxxxxx \
    [email protected] -Dpassword=pass@word01\
    -Dconnect_timeout=120 -Ddebug=Y \
    -DdebugMailSession=Y oracle.apps.fnd.wf.mailer.Mailer
    Please see (oracle.apps.fnd.cache.CacheException - null connection - on AppsLocalLogin.jsp [ID 414170.1]).
    Thanks,
    Hussein

Maybe you are looking for

  • IN BACKGROUND TASK as a different user ID

    Hi experts, I am performing a FM IN BACKGROUND TASK call in a BADI to automate creation of GR. Example: Step 1. User ABC performs GR for plant 0001. Step 2. BADI checks and automates another GR for plant 0002. The problem is user ABC only has authori

  • PO Confirmation with Delivery Date Validation Check

    Dear Experts, We have requirement in SNC to restrict PO confirmation within a agreed Delivery Date tolerance. This Delivery date validation should work similar to the Quantity validation we have in SAP standard through the PO_ITMUNDERDELIVERY/ PO_ITM

  • HT201262 No start up after software update?

    I have been unable to restart me computer after a software update (White screen/apple logo/spinning wheel continuously). I have tried to start up in safe mode (holding down shift key) but it hasn't worked. Any ideas? Thanks

  • Non xml char

    Hi, all, I need to create a DOM tree and take the value from user input, I have no idea how the user can enter the strange chars like BEL. Do I need validate every char make sure is in the xml char range when I create the node? or the biuld in parser

  • Exporting mono audio tracks as mono audio tracks with video tracks

    hello, i'm working with dv pal 48 khz digitized files.  when i import the files into fcp7, i have a video track and 4 different mono audio tracks.  my plan is to modify each individual mono track, after exporting each as aif, editing them, and then i