ERROR WHEN TRYING TO ACCESS A FORM FROM A SCHEMA OTHER THAN APPS.

We are having a archive schema and we want the same standard form to be used to point
to this scehma and get teh details of archive orders. what are the basic setups
that needs to be done to achieve this.
What are the basic grants and setups that we will have to provide
when we do this.
What we have tried is that the datagroup for the responisbility of the form is attached to the Custom schema.
But We are getting some errors.
Errors are given below are received when i click and try to access the form.
ORA-00942: table or view does not exist has been detected in FND_GLOBAL.Initialize
APP-FND-09126The Custom event WHEN-RESPONSIBILITY-CHANGED raised unhandled excpetion. ORA-04067: not excuted,stored procedure PUBLIC.FND_DEBUG does not exist.
Please help!!

Hi ,
Thanks for your update.Do ihave to give grants for all the standard objects also. How do i find what are the objects that i will have to give grants? I tried taking trace but it doesnt show any SQL's.
Please let me know.
Regards,
Sajna
Edited by: user10983581 on Jun 16, 2009 8:14 PM

Similar Messages

  • Getting an error when tried to access task form from worklist app

    Hi All,
    I am using 10.1.3.4 BPEL PM. I have created a bpel process with a human task.
    From the worklist application, when the approver clicks on: Task Id (ideally it should open task form).
    In my case, I am getting an error:
    Error while inoking URL to display the content. Error while invoking URL. http://bluejays.appsassociates.com:7780/default/EditPayloadPOC1/v2009_05_21__82618/EditPayloadPOC1/EditPayloadPOC1.jsp Check the underlying exception and correct the error. Contact oracle support if error is not fixable..
    If you need more information, please check with your administrator with the following exception-identifier: "2009/05/21_12:16:43:777_oc4jadmin"
    It works fine in SOA suite 10.1.3.1. and does not work in BPEL PM 10.1.3.4
    The only difference is I deployed in 10.1.3.1 using Ant script of bpel project and in 10.1.3.4 I deployed using the BPEL Console itself by browsing the project jar(Since I am getting error when tried to deploy it using Ant).
    Is it a known bug or am I making anything wrong. Tried with both Autogeneration and Custom form
    I followed: http://download.oracle.com/docs/cd/E11036_01/integrate.1013/b28981/workflow.htm#BABCBAEI
    Thanks
    Sakrishna Panuganti

    Hi does your bpel process has more than one human tasks, e.g., HumanTask1, HumanTask2, HumanTask3...then pl. check and manually fix this below ...e.g.,
    check for all of the human tasks workflow contexts tasks forms for dynamic pointers for
    domain_id, process_id, process_version.
    edit public_html/HumanTask1/form/ear/META-INF/application.xml
    <web-uri>workflowform.war</web-uri>
    <conteit-root>/${domain_id}/${process_id}/${process_revision}/HumanTask1</context-root>
    edit public_html/HumanTask2/form/ear/META-INF/application.xml
    <web-uri>workflowform.war</web-uri>
    <conteit-root>/${domain_id}/${process_id}/${process_revision}/HumanTask2</context-root>
    edit vi public_html/HumanTask3/form/ear/META-INF/application.xml
    <web-uri>workflowform.war</web-uri>
    <conteit-root>/${domain_id}/${process_id}/${process_revision}/HumanTask3</context-root>
    and deploy the process again via jdeveloper or preferably via ant script and try, it worked just fine for us.

  • Why compilation error--when trying to access the table from itcsi schema

    Hi,
    when querying the table from itcsi.app iam able to see the data but used in proc saying invalid table name. Whats the problem
    when declared p_app_i_old app.app_i%type----It is throwing pls-00201 error
    1 Create or replace procedure Test_insert(p_app_i_old integer,
    2 p_app_i_new integer,
    3 p_APP_ISAC_CPT_I varchar2)
    4 is
    5 cursor c1 is
    6 select distinct table_name,owner
    7 from all_tab_columns
    8 where owner = 'ITCSI' and column_name='APP_I';
    9 t_tablename varchar2(25);
    10 t_string varchar2(300);
    11 t_num number;
    12 Begin
    13 For c2 in c1 loop
    14 t_num := 0;
    15 t_string := 'SELECT count(*) FROM ' || c2.owner ||'.'||c2.table_name||' WHERE APP_I = '||p_
    16 execute immediate t_string into t_num;
    17 if t_num > 0 then
    18 -- dbms_output.put_line('The table name is '||c1_rec.table_name);
    19 if c2.Table_name = 'APP' Then
    20 INSERT INTO itcsi.App
    21 SELECT p_app_i_new,
    22 app_acrnym_c,
    23 app_x,
    24 app_desc_t,
    25 app_ipads_t,
    26 app_prdcn_stat_t,
    27 app_prdcn_stat_d,
    28 app_isd_tier_c,
    29 app_bus_cont_c,
    30 app_extnl_cstm_c,
    31 app-ecrpt_lvl_c,
    32 app_isac_cpt_i,
    33 dsw_gpn_i,
    34 ed_cntnt_srce_t,
    35 usr_upd_uunm_i,
    36 ed_upd_m
    37 FROM itcsi.APP
    38 WHERE app_i = p_app_i_old;
    39 elsif c2.Table_name = 'APP_CETRN' Then
    40 Insert into itcsi.APP_CETRN
    41 select p_app_i_new,
    42 app_cetrn_i,
    43 app-curr_cmplnc_t,
    44 app_rqr_cmplnc_t,
    45 dsw_gpn_i,
    46 ed_cntnt_srce_t,
    47 usr_upd_uunm_i,
    48 ed_upd_m
    49 FROM itcsi.APP_CETRN
    50 WHERE app_i = p_app_i_old;
    51 elsif c2.Table_name = 'APP_GPC' Then
    52 Insert into itcsi.APP_GPC
    53 select p_app_i_new,
    54 gpc_dpnt_x,
    55 gpc_elemy_x,
    56 pro_i,
    57 dsw_gpn_i,
    58 ed_cntnt_srce_t,
    59 usr_usr_upd_uunm
    60 FROM itcsi.APP_GPC
    61 WHERE app_i = p_app_i_old;
    62 End if;
    63 End if;
    64 End loop;
    65 --Commit;
    66* End;
    SQL> /
    Warning: Procedure created with compilation errors.
    SQL> show errors
    Errors for PROCEDURE TEST_INSERT:
    LINE/COL ERROR
    20/2 PL/SQL: SQL Statement ignored
    37/23 PL/SQL: ORA-00942: table or view does not exist
    40/2 PL/SQL: SQL Statement ignored
    Thanks

    how do i check the grant?
    if am in my own schema,how do i connect to itcsi
    schema?if you are using a schema other than the ITCSI schema, you need to login as ITCSI. or if you have dba user account you can grant a privilege of
      GRANT ALL on ITCSI.APPS to <other SCHEMA>;

  • Error when trying to access a form through https

    Hi,
    I'm facing this error when trying to access a form through https, i'm using OAS10g 10.1.2.3 over linux, it has webutil configured and is working perfectly with https
    I'm accessing the form through webcache.
    the error:
    Java Plug-in 1.6.0_37
    Usar versión JRE 1.6.0_37-b06 Java HotSpot(TM) Client VM
    Directorio local del usuario = C:\Users\Carlos
    c:   borrar ventana de consola
    f:   finalizar objetos en la cola de finalización
    g:   liberación de recursos
    h:   presentar este mensaje de ayuda
    l:   volcar lista del cargador de clases
    m:   imprimir sintaxis de memoria
    o:   activar registro
    q:   ocultar consola
    r:   recargar configuración de norma
    s:   volcar propiedades del sistema y de despliegue
    t:   volcar lista de subprocesos
    v:   volcar pila de subprocesos
    x:   borrar antememoria del cargador de clases
    0-5: establecer nivel de rastreo en <n>
    cargar: clase oracle.forms.webutil.common.RegisterWebUtil no encontrada.
    java.lang.ClassNotFoundException: oracle.forms.webutil.common.RegisterWebUtil
         at sun.plugin2.applet.Applet2ClassLoader.findClass(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadClass0(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadClass(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadCode(Unknown Source)
         at sun.plugin2.applet.Plugin2Manager.createApplet(Unknown Source)
         at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Excepción: java.lang.ClassNotFoundException: oracle.forms.webutil.common.RegisterWebUtil
    cargar: clase oracle.forms.engine.Main no encontrada.
    java.lang.ClassNotFoundException: oracle.forms.engine.Main
         at sun.plugin2.applet.Applet2ClassLoader.findClass(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadClass0(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadClass(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadCode(Unknown Source)
         at sun.plugin2.applet.Plugin2Manager.createApplet(Unknown Source)
         at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Excepción: java.lang.ClassNotFoundException: oracle.forms.engine.Mainwhat could be the reason it can not find the webutil libraries with https ?? i tried erasing the java's cache but still the same error :(
    Regards
    Carlos

    I got it, i only had to check the option 'Use SSL 2.0 compatible ClientHello format' from the java's control panel advanced tab.
    Metalink's note: 787739.1
    :)

  • Error when trying to access travel form

    Hello,
    when im trying to access the travel form from pr05 or from the ESS i get the error "Error while initiating travel form". No further errors are given.
    Any ideas whats wrong?
    regards,
    Markus

    When checking my logfiles, i can see there is a following error:
    "Render with warnins" when trying to produce PFD files from the Portal.
    Then i set up the FITP_REQUEST_FORM and run a test.
    In the file i get in return, i can se the following error:
             Render status: success with warnings
             Additional information generated while <Render> rendering: Stream for: PDFOut :
             <?xml version="1.0" encoding="UTF-8"?>
             <log>
                <m mid="29219" tid="2408.1486853088" sev="w" d="2006-12-16T18:26:48.467+01:00">Invalid append operation: field cannot have a child element of caption</m>
                <m mid="29324" tid="2408.1486853088" sev="w" d="2006-12-16T18:26:48.467+01:00">The element [caption] has violated its allowable number of occurrences.</m>
                <m mid="29323" tid="2408.1486853088" sev="w" d="2006-12-16T18:26:48.467+01:00">The fault occurred on line 2964.</m>
                <m mid="29224" tid="2408.1486853088" sev="w" d="2006-12-16T18:26:48.489+01:00">Invalid get operation for OneOfChild toolTip;</m>
                <m mid="29224" tid="2408.1486853088" sev="w" d="2006-12-16T18:26:48.490+01:00">Invalid get operation for OneOfChild toolTip;</m>
                <m mid="29224" tid="2408.1486853088" sev="w" d="2006-12-16T18:26:48.515+01:00">Invalid get operation for OneOfChild toolTip;</m></log>
             Begin save output process elapsed time = 1225 ms.
                      Wrote <Render> output to temporary file: /var/tmp/adobewa_DPI_31762150/DM-5923227349796513515.dir/DM7132602464941538401.tmp
             End save output process elapsed time = 1226 ms.
             Render status: success with warnings
             Additional information generated while <Render> rendering: Stream for: PDLOut :
             <?xml version="1.0" encoding="UTF-8"?>
             <log>
                <m mid="29219" tid="2408.1486853088" sev="w" d="2006-12-16T18:26:48.685+01:00">Invalid append operation: field cannot have a child element of caption</m>
                <m mid="29324" tid="2408.1486853088" sev="w" d="2006-12-16T18:26:48.685+01:00">The element [caption] has violated its allowable number of occurrences.</m>
                <m mid="29323" tid="2408.1486853088" sev="w" d="2006-12-16T18:26:48.685+01:00">The fault occurred on line 2964.</m>
                <m mid="29224" tid="2408.1486853088" sev="w" d="2006-12-16T18:26:48.922+01:00">Invalid get operation for OneOfChild toolTip;</m>
                <m mid="29224" tid="2408.1486853088" sev="w" d="2006-12-16T18:26:48.923+01:00">Invalid get operation for OneOfChild toolTip;</m>
                <m mid="29224" tid="2408.1486853088" sev="w" d="2006-12-16T18:26:48.950+01:00">Invalid get operation for OneOfChild toolTip;</m></log>
             Begin save output process elapsed time = 1227 ms.
                      Adding file:/var/tmp/adobewa_DPI_31762150/DM-5923227349796513515.dir/DM-6770924927949196203.tmp to workstreams as: PDLOut
                   Saved output file: /var/tmp/adobewa_DPI_31762150/DM-5923227349796513515.dir/DM-6770924927949196203.tmp to stream: PDLOut
             End save output process elapsed time = 1229 ms.
                   Successfully rendered without using PDF caching.
       End operation: Render, elapsed time = 1229 ms.
    Do you know how to sovle this? I think the problem is here...
    Best Regards
    Kristoffer Engh

  • Error When Trying to Access Root Partition From KDE media:/

    Hi!
    My other partitions mounts fine and i can browse through all of them manually(from console). The only problem is my first partition hda2 which gives a "Permissions Denied" error when I click on it even though I'm currently in root.
    Here's my /etc/fstab
    none                   /dev/pts      devpts    defaults            0      0
    none                   /dev/shm      tmpfs     defaults            0      0
    /dev/cdrom             /mnt/cd   iso9660   ro,user,noauto,unhide   0      0
    /dev/dvd               /mnt/dvd  udf       ro,user,noauto,unhide   0      0
    /dev/fd0               /mnt/fl   vfat      user,noauto             0      0
    /dev/hda1 none swap defaults 0 0
    /dev/hda2 / reiserfs defaults 0 1
    /dev/hda3 /root reiserfs defaults 0 2
    /dev/hda4 /mnt/hda4 vfat noauto,owner,users 0  2
    I noticed this when arch is booting maybe it has something to do with it.
    kinit: hda1 is mounted as read only
    ...something of that sort.
    Also, I've placed hal daemon in my daemons array in modules.conf
    Any suggestions deeply appreciated.
    Ps. Is there a way to always display devices like floppy drive and cd rom drive on media:/ ? .... makes mounting them from the gui possible especially for floppies which aren't autodetected.

    would adding user_xattr help?
    this is my fstab and I am able to brose my root through media:/ in kde.
    # /etc/fstab: static file system information
    # <file> <dir> <type> <options> <dump> <pass>
    none /dev/pts devpts defaults 0 0
    none /dev/shm tmpfs defaults 0 0
    none /tmp tmpfs defaults 0 0
    /dev/cdrom /mnt/cd iso9660 ro,user,noauto,unhide 0 0
    /dev/dvd /mnt/dvd auto ro,user,noauto,unhide 0 0
    #/dev/fd0 /mnt/fl vfat user,noauto 0 0
    /dev/hda2 swap swap defaults 0 0
    /dev/hda3 / ext3 defaults,user_xattr,noatime,data=writeback 0 1
    /dev/hda1 /boot ext2 defaults 0 2
    /dev/hda5 /var reiserfs defaults,user_xattr,noatime 0 0
    /dev/hda6 /home ext3 defaults,user_xattr,noatime,data=writeback 0 2
    /dev/hdd2 /home/***/stuff ext3 defaults,user_xattr,noatime,data=writeback 0 2
    /dev/hdd1 /home/***/XP ntfs-3g defaults,force,locale=en_US.utf8 0 0

  • HTTP error when trying to access RESTful web service from application

    Hi,
    We are getting the following error when trying to access a RESTful web service coming from Apex workspace 4.2.1 and Apex listener 2.1:
    ORA-29273: HTTP request failed ORA-06512: at "SYS.UTL_HTTP", line 1130 ORA-29024: Certificate validation failure
    In the Debug report, besides the above I also see:
    error_backtrace: ORA-06512: at "SYS.UTL_HTTP", line 1130 ORA-06512: at "APEX_040200.WWV_FLOW_WEB_SERVICES", line 543 ORA-06512: at "APEX_040200.WWV_FLOW_WEB_SERVICES", line 1164 ORA-06512: at "APEX_040200.WWV_FLOW_PROCESS", line 396
    We get that error whether we use https or http in the URI pointing to the web service. When I test the Web Service in Workspace RESTful service GUI, I get the data back. When I go build an application with a report calling the RESTful Web Service I get that error. Both the Application and the Workspace RESTful services are on the same Apex environment and even the same workspace.
    What is odd is that I can actually put the URL of the web service into a browser and I get the data: (using the demo hr data in sample RESTful services.)
    IN browser-- https://weblogic-dev.edu/apex/ace/hr/empinfo/
    yields:
    7839,KING,PRESIDENT,,1981-11-17T05:00:00Z,5000,,10 7698,BLAKE,MANAGER,7839,1981-05-01T04:00:00Z,2850,,30 7782,CLARK,MANAGER,7839,1981-06-09T04:00:00Z,2450,,10 7566,JONES,MANAGER,7839,1981-04-02T05:00:00Z,2975,,20 7788,SCOTT,ANALYST,7566,1982-12-09T05:00:00Z,3000,,20 7902,FORD,ANALYST,7566,1981-12-03T05:00:00Z,3000,,20 7369,SMITH,CLERK,7902,1980-12-17T05:00:00Z,800,,20 7499,ALLEN,SALESMAN,7698,1981-02-20T05:00:00Z,1600,300,30 7521,WARD,SALESMAN,7698,1981-02-22T05:00:00Z,1250,500,30 7654,MARTIN,SALESMAN,7698,1981-09-28T04:00:00Z,1250,1400,30 7844,TURNER,SALESMAN,7698,1981-09-08T04:00:00Z,1500,0,30 7876,ADAMS,CLERK,7788,1983-01-12T05:00:00Z,1100,,20 7900,JAMES,CLERK,7698,1981-12-03T05:00:00Z,950,,30 7934,MILLER,CLERK,7782,1982-01-23T05:00:00Z,1300,,10
    Any ideas on what would be causing the Error above in our application?
    Thanks,
    Pat
    Edited by: patfmnd on Mar 11, 2013 3:25 PM
    In reviewing the above error, I think we are realizing that we have to have the Weblogic layer SSL cert (actually the CERT from our BigIP load balancer which also does our SSL termination) imported into the Oracle server wallet where Apex is installed. Am I correct?
    PM

    We resolved our problem. The Apex Administrative Guide made us realize that we had to set up Wallet path in the Instance. This required working with DBAs to follow the Advanced networking guide to get the wallet set up on our server. We then added that path to the Instance configuration. (Manager Instance --> Instance settings). We ran into another other issue related to our implementation of CAS but were able to resolve that, and 'voila' were able to get the sample RESTful service consumed by our application!!
    Now to the task of figuring out how to get Basic Auth working between client application and RESTful web service. If anyone has that working, let us know!!
    It would be helpful if in the documentation of the Apex 2.x listener or Apex install/configuration there was clear reference to the above steps required for HTTPS access to RESTful web services.
    Pat

  • I am trying to access tax forms from the IRS.  I download them to my comuter and they read fine (version XI).  However, when iItry to open them on another computer (version 4) they will not open.  Version 4 opens all other documents fine, just no the ones

    I am trying to access tax forms from the IRS.  I download them to my comuter and they read fine (version XI).  However, when iItry to open them on another computer (version 4) they will not open.  Version 4 opens all other pdf documents fine, just not the ones from the IRS.  Any ideas?

    Version 4 is oh so old.
    The IRS and many other providers of forms are using products like LIveCycle which require at least version 7.05.
    Saving, Filling, and Printing PDF Files
    We use Adobe Acrobat PDF files as a means to electronically provide forms & publications. You will need to have the Adobe Reader software installed to access them (available FREE from the Adobe Reader download page on Adobe's Web site). We recommend using the most recent version of Adobe Reader.

  • Unrecognized database format error when trying to access addin to Acrobat reader?

    I get an "Unrecognized database format" error when trying to access addin to Acrobat reader so I can use Pro to edit a pdf document?  What do I do so that teh ACCESS program aI am generating PDF's from uses Pro and not Reader?
    Thanks,
    Dan

    Adobe Reader and Acrobat Professional are 2 different products. Reader is for free and limited as to what it can do an support.
    Add-ins can only use features supported by Reader.
    You need Acrobat to edit PDF forms. Acrobat no longer supports access to SQL databases through Acrobat JavaScript.
    If you have an add-in and Acrobat can use it for filling a PDF form from Access, you need to talk to the developer to see if it can work with Reader.

  • Error when trying to access the RBAC User editor and Message tracking

    Hi,
    I am getting an error when trying to access the RBAC User editor and Message tracking on the Web Mgmt interface. I verified that the admin account trying to access is in the Organization Management group and has the correct Role Assignment Policy applied.
    I searched through this thread below and saw that matching the msExchRoleLink and msExchUserLink attributes fixed the issue. 
    https://social.technet.microsoft.com/Forums/exchange/en-US/fc568cc6-8691-4127-b70b-bcc82f9b1f7f/first-2010-cas-server-no-administrator-rights-emc-permissions-gone?forum=exchange2010
    However I have another environment where this is not the case and works just fine; the msExchUserLink attribute has a value of CN=Organization Management,OU=Microsoft Exchange Security Groups,DC=Domain,DC=Local which is different as per the issue outlined in
    the above thread so I am not convinced that this will work and also don’t want to blindly edit something in adsiedit without being sure.
    I then checked the event logs on the server and saw the below error logged;
    Current user: 'Domain/Server Services Accounts/administrator'
    Request for URL 'https://server.domain.com/ecp/default.aspx?p=AdminDeliveryReports&exsvurl=1' failed with the following error:
    System.Web.HttpUnhandledException: Exception of type 'System.Web.HttpUnhandledException' was thrown. ---> Microsoft.Exchange.Management.ControlPanel.UrlNotFoundOrNoAccessException: The page may not be available or you might not have permission to open the
    page. Please contact your administrator for the required credentials. For new credentials to take effect, you have to close this window and log on again.
       at Microsoft.Exchange.Management.ControlPanel._Default.CreateNavTree()
       at Microsoft.Exchange.Management.ControlPanel._Default.OnLoad(EventArgs e)
       at System.Web.UI.Control.LoadRecursive()
       at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
       --- End of inner exception stack trace ---
       at System.Web.UI.Page.HandleError(Exception e)
       at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
       at System.Web.UI.Page.ProcessRequest(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
       at System.Web.UI.Page.ProcessRequest()
       at System.Web.UI.Page.ProcessRequest(HttpContext context)
       at ASP.default_aspx.ProcessRequest(HttpContext context)
       at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()
       at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
    Microsoft.Exchange.Management.ControlPanel.UrlNotFoundOrNoAccessException: The page may not be available or you might not have permission to open the page. Please contact your administrator for the required credentials. For new credentials to take effect, you
    have to close this window and log on again.
       at Microsoft.Exchange.Management.ControlPanel._Default.CreateNavTree()
       at Microsoft.Exchange.Management.ControlPanel._Default.OnLoad(EventArgs e)
       at System.Web.UI.Control.LoadRecursive()
       at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
    I then had a look at the IIS permissions for ecp and owa. The account did not have permissions so I added them there but still got the same error. I’ve also tried all of the above with a newly-created account but still got the same issue.
    Any ideas as to what the above event log is specifically referring to?

    Hi,
    From your description, I would like to clarify the following thing:
    If you want to search message tracking logs, the account you use should be a member of the role groups below:
    Organization Management role group, Records Management role group, Recipient Management role group.
    Hope this can be helpful to you.
    Best regards,
    Amy Wang
    TechNet Community Support

  • Gettign this error when trying to access webpage using JRE V 1.4.2_06

    Gettign this error when trying to access webpage using JRE V 1.4.2_06
    Any suggestions?
    java.io.IOException
    at sun.net.www.protocol.http.HttpURLConnection.getInputStream(Unknown Source)
    at sun.net.www.protocol.https.PluginDelegateHttpsURLConnection.getInputStream(Unknown Source)
    at java.net.HttpURLConnection.getResponseCode(Unknown Source)
    at sun.net.www.protocol.https.HttpsURLConnectionImpl.getResponseCode(Unknown Source)
    at sun.plugin.cache.CachedFileLoader.load(Unknown Source)
    at sun.plugin.cache.FileCache.get(Unknown Source)
    at sun.net.www.protocol.https.PluginDelegateHttpsURLConnection.connectWithCache(Unknown Source)
    at sun.net.www.protocol.https.PluginDelegateHttpsURLConnection.connect(Unknown Source)
    at sun.net.www.protocol.https.PluginDelegateHttpsURLConnection.getInputStream(Unknown Source)
    at java.net.HttpURLConnection.getResponseCode(Unknown Source)
    at sun.net.www.protocol.https.HttpsURLConnectionImpl.getResponseCode(Unknown Source)
    at sun.applet.AppletClassLoader.getBytes(Unknown Source)
    at sun.applet.AppletClassLoader.access$100(Unknown Source)
    at sun.applet.AppletClassLoader$1.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    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)
    Caused by: java.net.SocketException: Connection reset
    at java.net.SocketInputStream.read(Unknown Source)
    at com.sun.net.ssl.internal.ssl.InputRecord.a(Unknown Source)
    at com.sun.net.ssl.internal.ssl.InputRecord.read(Unknown Source)
    at com.sun.net.ssl.internal.ssl.SSLSocketImpl.a(Unknown Source)
    at com.sun.net.ssl.internal.ssl.SSLSocketImpl.a(Unknown Source)
    at com.sun.net.ssl.internal.ssl.AppInputStream.read(Unknown Source)
    at java.io.BufferedInputStream.fill(Unknown Source)
    at java.io.BufferedInputStream.read1(Unknown Source)
    at java.io.BufferedInputStream.read(Unknown Source)
    at sun.net.www.http.HttpClient.parseHTTPHeader(Unknown Source)
    at sun.net.www.http.HttpClient.parseHTTP(Unknown Source)
    at sun.net.www.protocol.http.HttpURLConnection.getInputStream(Unknown Source)
    at sun.net.www.protocol.https.PluginDelegateHttpsURLConnection.getInputStream(Unknown Source)
    at sun.net.www.protocol.https.HttpsURLConnectionImpl.getInputStream(Unknown Source)
    at sun.plugin.net.protocol.http.HttpUtils.followRedirects(Unknown Source)
    at sun.plugin.cache.CachedFileLoader.download(Unknown Source)
    ... 21 more
    java.io.IOException
    at sun.net.www.protocol.http.HttpURLConnection.getInputStream(Unknown Source)
    at sun.net.www.protocol.https.PluginDelegateHttpsURLConnection.getInputStream(Unknown Source)
    at java.net.HttpURLConnection.getResponseCode(Unknown Source)
    at sun.net.www.protocol.https.HttpsURLConnectionImpl.getResponseCode(Unknown Source)
    at sun.plugin.cache.CachedFileLoader.load(Unknown Source)
    at sun.plugin.cache.FileCache.get(Unknown Source)
    at sun.net.www.protocol.https.PluginDelegateHttpsURLConnection.connectWithCache(Unknown Source)
    at sun.net.www.protocol.https.PluginDelegateHttpsURLConnection.connect(Unknown Source)
    at sun.net.www.protocol.https.PluginDelegateHttpsURLConnection.getInputStream(Unknown Source)
    at java.net.HttpURLConnection.getResponseCode(Unknown Source)
    at sun.net.www.protocol.https.HttpsURLConnectionImpl.getResponseCode(Unknown Source)
    at sun.applet.AppletClassLoader.getBytes(Unknown Source)
    at sun.applet.AppletClassLoader.access$100(Unknown Source)
    at sun.applet.AppletClassLoader$1.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    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)
    Caused by: java.net.SocketException: Connection reset
    at java.net.SocketInputStream.read(Unknown Source)
    at com.sun.net.ssl.internal.ssl.InputRecord.a(Unknown Source)
    at com.sun.net.ssl.internal.ssl.InputRecord.read(Unknown Source)
    at com.sun.net.ssl.internal.ssl.SSLSocketImpl.a(Unknown Source)
    at com.sun.net.ssl.internal.ssl.SSLSocketImpl.a(Unknown Source)
    at com.sun.net.ssl.internal.ssl.AppInputStream.read(Unknown Source)
    at java.io.BufferedInputStream.fill(Unknown Source)
    at java.io.BufferedInputStream.read1(Unknown Source)
    at java.io.BufferedInputStream.read(Unknown Source)
    at sun.net.www.http.HttpClient.parseHTTPHeader(Unknown Source)
    at sun.net.www.http.HttpClient.parseHTTP(Unknown Source)
    at sun.net.www.protocol.http.HttpURLConnection.getInputStream(Unknown Source)
    at sun.net.www.protocol.https.PluginDelegateHttpsURLConnection.getInputStream(Unknown Source)
    at sun.net.www.protocol.https.HttpsURLConnectionImpl.getInputStream(Unknown Source)
    at sun.plugin.net.protocol.http.HttpUtils.followRedirects(Unknown Source)
    at sun.plugin.cache.CachedFileLoader.download(Unknown Source)
    ... 21 more
    load: class com.adp.e.hrclient.Client.class not found.
    java.lang.ClassNotFoundException: com.adp.e.hrclient.Client.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)
    Caused by: java.net.SocketException: Connection reset
    at java.net.SocketInputStream.read(Unknown Source)
    at com.sun.net.ssl.internal.ssl.InputRecord.a(Unknown Source)
    at com.sun.net.ssl.internal.ssl.InputRecord.read(Unknown Source)
    at com.sun.net.ssl.internal.ssl.SSLSocketImpl.a(Unknown Source)
    at com.sun.net.ssl.internal.ssl.SSLSocketImpl.a(Unknown Source)
    at com.sun.net.ssl.internal.ssl.AppInputStream.read(Unknown Source)
    at java.io.BufferedInputStream.fill(Unknown Source)
    at java.io.BufferedInputStream.read1(Unknown Source)
    at java.io.BufferedInputStream.read(Unknown Source)
    at sun.net.www.http.HttpClient.parseHTTPHeader(Unknown Source)
    at sun.net.www.http.HttpClient.parseHTTP(Unknown Source)
    at sun.net.www.protocol.http.HttpURLConnection.getInputStream(Unknown Source)
    at sun.net.www.protocol.https.PluginDelegateHttpsURLConnection.getInputStream(Unknown Source)
    at java.net.HttpURLConnection.getResponseCode(Unknown Source)
    at sun.net.www.protocol.https.HttpsURLConnectionImpl.getResponseCode(Unknown Source)
    at sun.applet.AppletClassLoader.getBytes(Unknown Source)
    at sun.applet.AppletClassLoader.access$100(Unknown Source)
    at sun.applet.AppletClassLoader$1.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)

    I got it, i only had to check the option 'Use SSL 2.0 compatible ClientHello format' from the java's control panel advanced tab.
    Metalink's note: 787739.1
    :)

  • Error when trying to access to the catalogue

    Hello,
    When trying to use the ebp catalogue, iu2019m getting the following error when trying to access:
    Parameter error when calling up function module BBP_CUF_GET_DATA
    Any idea what this means?
    Thanks and regards

    Hi,
    I did some investigation and found that the Company Codes section in the Organisational Structure had been unassigned from the hierarchy for some reason.
    I have now restored the organisational structure to its previous state.
    issue is resolved

  • CUOM error when trying to poll performance data from IPCC Express

    Hi Network Professionals,
    Using CUOM 2.1 SP1 I get an error when trying to access the Performance menu for a IPCC Express Server in the Service Level View.
    Error Message:
    Performance polling is not supported for the current capability.
    The server is fully monitored and I get enviroment, system, interface and application information.
    I the Polling Parameters menu (Voice Utilization Settings) the only parameter listed is "Communication Manager and Registred MGCP Gateway Utilization".
    The IPCC Express version is 5.0.(2)SR01_Build045.
    Is anything missing on the IPCC server? I have only configured it with SNMP.
    Kind Regards
    Johnny Olsen

    hi teresa.
    well I bother you because I have a problem similar to that raised earlier, I have a vm INTAL CUOM 2.1 SP1 and the problem is that computers add-in-law his administration IPCC view the service level ... but when I fall into a custom group created the group and add the teams the same ip ipcc already visible, in my group I want to generate displays custom cloud but do not show me the equipment, except that I want to add IVR servers and I do not under any circumstances the samples .. lso probe and reset everything and anything related services, install the SP! and nothing. Can you help me with this or if I recommend CUOM up version of the 2.3 that I could not even see the difference with 2.1 CUOM thanks greetings

  • Login error when trying to access iCloud Mail

    I am receiving the following error when trying to access iCloud Mail. All other iCloud services are functioning.
    IS FATAL
    true
    APPLICATION NAME
    mail
    TITLE
    Mail could not be loaded
    MESSAGE
    There was a problem loading the application due to a possible network error or missing resources. Please try again.
    LOG
    Tue, 10 Mar 2015 12:39:58 GMT:  DEBUG: MAIL in main()
    Tue, 10 Mar 2015 12:39:58 GMT:  DEBUG: Creating local CK.User object
    Tue, 10 Mar 2015 12:39:58 GMT:  DEBUG: Creating local CK.AccountPreferences object
    Tue, 10 Mar 2015 12:39:58 GMT:  DEBUG: -->  Request 1:   POST to https://p03-mailws.icloud.com:443/wm/preference?clientBuildNumber=15B.9bb3ce9&cl ientId=523F12B2-FC11-4D72-952C-A9AA1C424022&dsid=103705688,  headers: Content-Type=text/plain,  body: (omitted)
    Tue, 10 Mar 2015 12:39:58 GMT:  DEBUG: ----------------> Request out: /wm/preference-list-->1425991198034/1
      wmsid: null
      params: {"locale":"en-us","timeZone":"US/Central"}
    Tue, 10 Mar 2015 12:39:58 GMT:  DEBUG: SC.Object:sc1473:dispatch('load content')
    Tue, 10 Mar 2015 12:39:58 GMT:  DEBUG: "2.0 Waiting for Content" handled event 'load content' (no transition)
    Tue, 10 Mar 2015 12:39:58 GMT:  DEBUG: SC.Object:sc2647:dispatch('noContent')
    Tue, 10 Mar 2015 12:39:58 GMT:  DEBUG:   "6.2 pop up View" handled event 'noContent' with a transition to "6.2.2 No Content"
    Tue, 10 Mar 2015 12:39:58 GMT:  DEBUG:     -> entering "6.2.2 No Content"
    Tue, 10 Mar 2015 12:39:58 GMT:  WARN:  REJECTING SERVER RESPONSE CoreMail.MailRequest.willReceive:
      Status:0
      Request:/wm/preference
      Wmsid:null
      Redirect Count:1
      Timeout Redirect Count:1
      ResponseText:
    Tue, 10 Mar 2015 12:39:58 GMT:  DEBUG: -->  Request 2:   POST to https://p03-mailws.icloud.com:443/wm/preference?clientBuildNumber=15B.9bb3ce9&cl ientId=523F12B2-FC11-4D72-952C-A9AA1C424022&dsid=103705688,  headers: Content-Type=text/plain,  body: (omitted)
    Tue, 10 Mar 2015 12:39:58 GMT:  DEBUG: ----------------> Request out: /wm/preference-list-->1425991198034/1
      wmsid: null
      params: {"locale":"en-us","timeZone":"US/Central"}
    Tue, 10 Mar 2015 12:39:58 GMT:  ERROR: GIVING UP ON RETRIES, CoreMail.MailRequest.willReceive:
    responseText: ,
    this._redirectCount: 1
    Tue, 10 Mar 2015 12:39:58 GMT:  DEBUG: <--  Response 2:  0  (72ms),  headers:   body: (empty)
    Tue, 10 Mar 2015 12:39:58 GMT:  DEBUG: <---------------- Request in: /wm/preference-list-->1425991198034/1,httpStatus: 0,round trip time: 71ms, wmsid: null
    Tue, 10 Mar 2015 12:39:58 GMT:  ERROR: retrieveResponseError:
      ServerPreferencesDataSource.retrieveResponse
      error:-1/0
      guid:serverPrefsGuid
    Tue, 10 Mar 2015 12:39:58 GMT:  ERROR: Bootstrap error: Preferences.RefreshError
    TYPE
    server
    APP STATECHART
    SC.Statechart:sc1030
      initialized: true
      name: cloudos-statechart
      current-states: [
        active.springboard.displayingSpringboard.springboard
      state-transition:
        active: false
        suspended: false
      handling-event: false
    BUILD NUMBER
    15B.169e9f7
    TIME
    Tue Mar 10 2015 07:40:01 GMT-0500 (CDT)        (1425991201489)
    HOST
    www.icloud.com
    USER AGENT
    Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_2) AppleWebKit/600.3.18 (KHTML, like Gecko) Version/8.0.3 Safari/600.3.18
    DSID
    103705688
    ENVIRONMENT
    PROD
    RECENT LOG MESSAGES
    Tue, 10 Mar 2015 12:39:58 GMT:  DEBUG: MAIL in main()
    Tue, 10 Mar 2015 12:39:58 GMT:  DEBUG: Creating local CK.User object
    Tue, 10 Mar 2015 12:39:58 GMT:  DEBUG: Creating local CK.AccountPreferences object
    Tue, 10 Mar 2015 12:39:58 GMT:  DEBUG: -->  Request 1:   POST to https://p03-mailws.icloud.com:443/wm/preference?clientBuildNumber=15B.9bb3ce9&cl ientId=523F12B2-FC11-4D72-952C-A9AA1C424022&dsid=103705688,  headers: Content-Type=text/plain,  body: (omitted)
    Tue, 10 Mar 2015 12:39:58 GMT:  DEBUG: ----------------> Request out: /wm/preference-list-->1425991198034/1
      wmsid: null
      params: {"locale":"en-us","timeZone":"US/Central"}
    Tue, 10 Mar 2015 12:39:58 GMT:  DEBUG: SC.Object:sc1473:dispatch('load content')
    Tue, 10 Mar 2015 12:39:58 GMT:  DEBUG: "2.0 Waiting for Content" handled event 'load content' (no transition)
    Tue, 10 Mar 2015 12:39:58 GMT:  DEBUG: SC.Object:sc2647:dispatch('noContent')
    Tue, 10 Mar 2015 12:39:58 GMT:  DEBUG:   "6.2 pop up View" handled event 'noContent' with a transition to "6.2.2 No Content"
    Tue, 10 Mar 2015 12:39:58 GMT:  DEBUG:     -> entering "6.2.2 No Content"
    Tue, 10 Mar 2015 12:39:58 GMT:  WARN:  REJECTING SERVER RESPONSE CoreMail.MailRequest.willReceive:
      Status:0
      Request:/wm/preference
      Wmsid:null
      Redirect Count:1
      Timeout Redirect Count:1
      ResponseText:
    Tue, 10 Mar 2015 12:39:58 GMT:  DEBUG: -->  Request 2:   POST to https://p03-mailws.icloud.com:443/wm/preference?clientBuildNumber=15B.9bb3ce9&cl ientId=523F12B2-FC11-4D72-952C-A9AA1C424022&dsid=103705688,  headers: Content-Type=text/plain,  body: (omitted)
    Tue, 10 Mar 2015 12:39:58 GMT:  DEBUG: ----------------> Request out: /wm/preference-list-->1425991198034/1
      wmsid: null
      params: {"locale":"en-us","timeZone":"US/Central"}
    Tue, 10 Mar 2015 12:39:58 GMT:  ERROR: GIVING UP ON RETRIES, CoreMail.MailRequest.willReceive:
    responseText: ,
    this._redirectCount: 1
    Tue, 10 Mar 2015 12:39:58 GMT:  DEBUG: <--  Response 2:  0  (72ms),  headers:   body: (empty)
    Tue, 10 Mar 2015 12:39:58 GMT:  DEBUG: <---------------- Request in: /wm/preference-list-->1425991198034/1,httpStatus: 0,round trip time: 71ms, wmsid: null
    Tue, 10 Mar 2015 12:39:58 GMT:  ERROR: retrieveResponseError:
      ServerPreferencesDataSource.retrieveResponse
      error:-1/0
      guid:serverPrefsGuid
    Tue, 10 Mar 2015 12:39:58 GMT:  ERROR: Bootstrap error: Preferences.RefreshError

    After activatin iCloud, my dotMac account wouldn't retrieve mail anymore. It kept saying that my username or password were not good. No matter how many times I tried, I couldn't restore the service.
    Here's how I got it working again.
    Apparently my 6 letter password is no longer acceptable. You need to update it to an 8 letter password that includes numbers and capital letters.
    So I went to https://iforgot.apple.com and asked to reset my password.
    Because I could still get my emails logging into iCloud with Safari, I responded to Apple's email, and created a stronger password.
    Than I updated the passwords on my computer's Mail program, iPhone, and iPad (and of course everything else, iTunes, etc.).
    That was it!
    Everything works as normal again, I even was finally able to synchronize calendars over different computers again.
    Try it out, it could be your issue as well.

  • I am getting a 404 error when trying to access any search link using google, I can get to a website if I enter the url directly.  I have cleared my history, emptied the cache and reset safari.

    I keep getting a 404 error when trying to access any search link using google, I can get to a website by directly using the URL.  I have cleared history, empited the cache and reset safari.  Any suggestions.

    Right. If you are using delegated privs and sudo, make sure that sudo is configured to pass on the PERL5LIB and ORACLE_HOME environment variables at least.

Maybe you are looking for

  • Are there any drivers for NI's Audio 4 DJ that work with 10.7.4?

    I have been trying to get my system working with my dj equipment since I bought my Mac and I have had no luck. I have installed the Beta drivers from Native Intsruments' website, but I'm starting to wonder if there's something else going on. I am run

  • How do I make IE open PDF inside browser and not prompt?

    I am using IE 11, Adobe Reader 11.0.06. When I try to open a PDF inside a browser window (for example this one: http://helpx.adobe.com/dk/pdf/acrobat_reference.pdf) I am prompted to Open, Save or Save As. I want open the document directly without bei

  • External Bank Reconciliation

    Hello I am trying to use the external Bank reconciliation in SAP Business One 2007. I want to import the bank statement from my bank to the: Process External Bank Statement window. I will develop a special add-on. But the question is, i have around 1

  • What is this? Photos inside.

    http://pics.livejournal.com/anisimovsergey/pic/00002wa2 http://pics.livejournal.com/anisimovsergey/pic/00003676 What's wrong with my computer? Dust it? Maybe it soot? I have a warranty, but the service segments. Worry or leave as is? Sorry for my Eng

  • Group By Like Dates????

    does anyone know if there is a way to group by like dates? so if there were 10 transaction records in a table, 5 in Oct and 5 in Nov. but not all transactions took place on the same day. Eg: DATE AMOUNT 15-OCT-02 1.50 16-OCT-02 115.00 17-NOV-02 200.0