Error during page load in e-Recruitment

Hi SAPiians,
We are implementing SAP e-Recuitment using BSPs. We are done with the configuration part and also configured the ALE.
Also, generated the URLs using RCF_GENERATE_URLS. When i copy and paste the URL in a browser, the logon page pops up. When i enter the username(has all the e-Rec specific objects assigned to it) and password, it ends in a short dump. Below is the text:
Note
The following error text was processed in the system DER : Access via 'NULL' object reference not possible. The error occurred on the application server DV35_DER_01 and in the work process 0 .
The termination type was: RABAX_STATE
The ABAP call stack was:
Method: IF_HTMLB_ELEMENT_DELEGATED~DO_AT_END of program CL_HTMLB_HEADINCLUDE==========CP
Method: DELEGATED_END of program CL_HTMLB_ELEMENT==============CP
Method: IF_BSP_ELEMENT~DO_AT_END of program CL_HTMLB_HEADINCLUDE==========CP
Method: IF_BSP_PAGE_CONTEXT~ELEMENT_PROCESS of program CL_BSP_PAGE_CONTEXT===========CP
What can I do?
If the termination type was RABAX_STATE, then you can find more information on the cause of the termination in the system DER in transaction ST22.
If the termination type was ABORT_MESSAGE_STATE, then you can find more information on the cause of the termination on the application server DV35_DER_01 in transaction SM21.
If the termination type was ERROR_MESSAGE_STATE, then you can search for more information in the trace file for the work process 0 in transaction ST11 on the application server DV35_DER_01 . In some situations, you may also need to analyze the trace files of other work processes.
If you do not yet have a user ID, contact your system administrator.
Error code: ICF-IE-http -c: 200 -u: RCF_UNREG -l: E -s: DER -i: DV35_DER_01 -w: 0 -d: 20081017 -t: 145914 -v: RABAX_STATE -e: OBJECTS_OBJREF_NOT_ASSIGNED
The ST22 dump has following message:
What happened?
Error in the ABAP Application Program
The current ABAP program "CL_HTMLB_HEADINCLUDE==========CP" had to be
terminated because it has
come across a statement that unfortunately cannot be executed.
Error analysis
You attempted to use a 'NULL' object reference (points to 'nothing')
access a component (variable: " ").
An object reference must point to an object (an instance of a class)
before it can be used to access components.
Either the reference was never set or it was set to 'NULL' using the
CLEAR statement.
How to correct the error
If the error occures in a non-modified SAP program, you may be able to
find an interim solution in an SAP Note.
If you have access to SAP Notes, carry out a search with the following
keywords:
"OBJECTS_OBJREF_NOT_ASSIGNED" " "
"CL_HTMLB_HEADINCLUDE==========CP" or "CL_HTMLB_HEADINCLUDE==========CCIMP"
"IF_HTMLB_ELEMENT_DELEGATED~DO_AT_END"
If you cannot solve the problem yourself and want to send an error
notification to SAP, include the following information:
1. The description of the current problem (short dump)
   To save the description, choose "System->List->Save->Local File
(Unconverted)".
2. Corresponding system log
   Display the system log by calling transaction SM21.
   Restrict the time interval to 10 minutes before and five minutes
after the short dump. Then choose "System->List->Save->Local File
(Unconverted)".
3. If the problem occurs in a problem of your own or a modified SAP
program: The source code of the program
   In the editor, choose "Utilities->More
Utilities->Upload/Download->Download".
4. Details about the conditions under which the error occurred or which
actions and input led to the error.
System environment
    SAP-Release 700
    Application server... "DV35"
    Network address...... "10.8.54.191"
    Operating system..... "SunOS"
    Release.............. "5.9"
    Hardware type........ "sun4u"
    Character length.... 16 Bits
    Pointer length....... 64 Bits
    Work process number.. 0
    Shortdump setting.... "full"
    Database server... "DV35"
    Database type..... "ORACLE"
    Database name..... "DER"
    Database user ID.. "SAPSR3"
    Char.set.... "C"
    SAP kernel....... 700
    created (date)... "Feb 3 2008 21:08:24"
    create on........ "SunOS 5.9 Generic_117171-13 sun4u"
    Database version. "OCI_102 (10.2.0.2.0) "
    Patch level. 146
    Patch text.. " "
    Database............. "ORACLE 9.2.0.., ORACLE 10.1.0.., ORACLE 10.2.0.."
    SAP database version. 700
    Operating system..... "SunOS 5.9, SunOS 5.10"
    Memory consumption
    Roll.... 16192
    EM...... 4189848
    Heap.... 0
    Page.... 16384
    MM Used. 2078976
    MM Free. 2108272
User and Transaction
    Client.............. 200
    User................ "RCF_UNREG"
    Language Key........ "E"
    Transaction......... " "
    Transactions ID..... "48F75A37D7085D19E10000000A0836BF"
    Program............. "CL_HTMLB_HEADINCLUDE==========CP"
    Screen.............. "SAPMHTTP 0010"
    Screen Line......... 2
    Information on Caller ofr "HTTP" Connection:
    Plug-in Type.......... "HTTP"
    Caller IP............. "10.125.6.207"
    Caller Port........... 8001
    Universal Resource Id. "/sap/bc/bsp/sap/hrrcf_cand_reg/application.do"
Source Code Extract
Line  SourceCde
  106 **   Wednesday
  107 *    CALL FUNCTION 'DATE_GET_WEEK' EXPORTING date = '20030101' IMPORTING week = week_num.
  108 *    IF week_num+4(2) = '01'. firstweekcode = firstweekcode + 8. endif.
  109 *
  110 **   Thursday
  111 *    CALL FUNCTION 'DATE_GET_WEEK' EXPORTING date = '20040101' IMPORTING week = week_num.
  112 *    IF week_num+4(2) = '01'. firstweekcode = firstweekcode + 16. endif.
  113 *
  114 **   Friday
  115 *    CALL FUNCTION 'DATE_GET_WEEK' EXPORTING date = '19990101' IMPORTING week = week_num.
  116 *    IF week_num+4(2) = '01'. firstweekcode = firstweekcode + 32. endif.
  117 *
  118 **   Saturday
  119 *    CALL FUNCTION 'DATE_GET_WEEK' EXPORTING date = '20000101' IMPORTING week = week_num.
  120 *    IF week_num+4(2) = '01'. firstweekcode = firstweekcode + 64. endif.
  121 *
  122 **   Sunday
  123 *    CALL FUNCTION 'DATE_GET_WEEK' EXPORTING date = '20060101' IMPORTING week = week_num.
  124 *    IF week_num+4(2) = '01'. firstweekcode = firstweekcode + 1. endif.
  125 *
  126 *    sfirstweekcode = firstweekcode.
  127
  128 *   Get date format
  129 *    SELECT SINGLE datfm FROM usr01 INTO datfm WHERE bname = sy-uname.
  130 *    if datfm is initial.
  131 *      datfm = '1'.
  132 *    endif.
  133
  134     data: stylepath type string,
  134     data: stylepath type string,
  135          popuppath type string.
  136          stylepath = headinclude->mc_render_lib_d2_system->stylepath.
  137     popuppath = stylepath.
  138
The error is at line 136.
What could be the problem ?? I have done all the config related to e-Recruitment... Also activated most of the SICF services...
Could something be pending from BASIS front ?? Below are some of the keywords found in SM21 log.
1. Run-time error "OBJECTS_OBJREF_NOT_ASSIGNED" occurred
2. Task: 23834, Process:Dialog work process No. 001, Program: SAPMHTTP, Problem Class: Transaction problem, Package:SABP
Module Name:abdata, Line:0430, Error text:ab_DataAddrRead
Please guide...
Thanks.
Shashank Shirali

Hi Friends,
The problem is solved. The issue was with SICF service activation.
Certain system services were not activated.
Thanks,
Shashank Shirali

Similar Messages

  • Strange Error During Page Load in Debug Mode (only) - Please Help!

    Hi All,
    Data base version: oracle 11g
    Apex version: Apex 4.1.1
    Webserver: Apache
    Need help with how to troubleshoot a Critical problem. The following error only occurs during page load in "Debug" mode. And, only occurs on a specific page within the application. A web page is served-up containing the following message and the application is blocked from running the page. The browser's (IE 8.0) back button must be clicked to proceed outside of "Debug" mode.
    "Error occurred while painting error page: ORA-06502: PL/SQL: numeric or value error: character string buffer too small ORA-06502: PL/SQL: numeric or value error: character string buffer too small"
    Debug log follows:
    "S H O W: application="2006" page="6" workspace="" request="" session="500549669426301"
    Computation point: Before Header
    ...Perform computation of item: APP_SERVER, type=FUNCTION_BODY
    ...Performing function body computation
    ...Execute Statement: declare function x return varchar2 is begin return owa_util.get_cgi_env('SERVER_NAME'); return null; end; begin wwv_flow.g_computation_result_vc := x; end;
    ......Result = 156.9.122.214
    ...Session State: Save "APP_SERVER" - saving same value: "156.9.122.214"
    Processes - point: BEFORE_HEADER
    ...Process "GET_POSITION" - Type: PLSQL
    ...Execute Statement: begin wwv_flow.g_boolean := :F109_POSITION_ID IS NULL and :APP_PAGE_ID != 101; end;
    ......Result = FALSE
    ......Skip because condition or authorization evaluates to FALSE
    ...Process "Get JARS Sifter Log File Record Count" - Type: PLSQL
    ...Execute Statement: begin DECLARE vcnt NUMBER := 0; BEGIN d('Get JARS Sifter Log File Record Count'); Select count(*) into vcnt From JARS.JARS_SIFTER_LOG Where moveid = to_number(:P6_MOVEID) and sifter_status IN ('F','J'); :F1000_P6_SIFTER_LOG_COUNT := to_char(vcnt); END; end;
    Custom: Get JARS Sifter Log File Record Count
    ...Process "Set PTM Planned Trip Status" - Type: PLSQL
    ......Skip because condition or authorization evaluates to FALSE
    ...compatibility mode - do not set mime type
    ...compatibility mode - do not set additional http headers
    ...close http header
    ...metadata, fetch item type settings
    ...metadata, fetch items
    Show page template header
    Rendering form open tag and internal values
    Add error onto error stack
    ...Error data:
    ......message: Error processing request.
    ......additional_info: ORA-06502: PL/SQL: numeric or value error: character string buffer too small
    ......display_location: ON_ERROR_PAGE
    ......is_internal_error: true
    ......apex_error_code: APEX.UNHANDLED_ERROR
    ......ora_sqlcode: -6502
    ......ora_sqlerrm: ORA-06502: PL/SQL: numeric or value error: character string buffer too small
    ......error_backtrace: ORA-06512: at "APEX_040100.WWV_FLOW", line 3027 ORA-06512: at "APEX_040100.WWV_FLOW", line 7867
    ...Show Error on Error Page
    ......Performing rollback
    Rendering form open tag and internal values
    ...Unhandled Error while painting error page: ORA-06502: PL/SQL: numeric or value error: character string buffer too small ORA-06502: PL/SQL: numeric or value error: character string buffer too small
    ...Error Backtrace: ORA-06512: at "APEX_040100.WWV_FLOW", line 2707 ORA-06512: at "APEX_040100.WWV_FLOW_ERROR", line 185
    End Page Rendering"
    Thanks!
    Bernard

    All,
    It appears that the page Javascript maximum limit size was reached. The error stopped appearing after some of the page Javascript code was removed out to Application Static Files. I wonder if there exists any "direct" indicator by the system whenever the size limit has been reached?
    Again, the run error only occurred when the page was loaded in "Debug" mode.
    Bernard

  • How to set default date of 3 weeks(21 days) from today's date during page load?

    I want to show the default date as 3 weeks from today's date during page load.
    For example ,i have given as adf.CurrentDate + 21 in EO for the attribute 'DueDate'. But it is showing me the date as 9.7.2013. 3 weeks default date is not getting set.If i give adf.currentDate also ,it not giving me today's date,it showing the 9.7.2013 only.Kindly provide your suggestions to set the default date as 3 weeks from today's date during page load.Thanks in advance.

    Hi,
    when you set the value on the entity level then you don't want to show it during page load but when the field is empty ? Correct? if so then the use case is a different one. The easiest way to implement this would be to create a Rowimpl class (Java option) and then in the get method of the entity attribute check if the value is null and if it is, set it to the current date + 21 days. This way all rows will be set with the 3 weeks due date but fields are not overridden each time the row is queried
    Frank

  • How i can check whether a component is being placed or it's being rendered during page load...

    Hi,
    I have a piece of code which needs to be triggered only when the component gets rendered.. and at the same time it shouldn't get trigerred when author places it in the page...
    For an example, Consider i have a component called samplecomponent. Also i have a piece of code in samplecomponent.jsp which should get triggered only when the component is being rendered during page load and if author places that component in the page (ofcourse the samplecomponent.jsp will get triggered but my particular piece of code should not get triggered.. Is there any condition to check that..?
    Thanks
    Shankar .A

    Hello Shankar,
    I think this is very straight forward and you can set this condition based on any of the property of your component via check null/empty condition because when you will drop your component the properties of your component will be not initialized and you can check for at (let say you have a property which is mandetory so to instantiate that component you have to have at least that property)
    And let say if above option doesn't work for you then there is one more option of checking the edit mode of the page and based on that you can differ your code. But edit mode code will not work until you will see the page in edit mode, the code will only work when you switch to preview mode (publish mode) of page from edit mode (from sidekick at bottom you have option to go to edit and preview mode).
    WCMMode mode = WCMMode.fromRequest(request);
        if (!mode.equals(WCMMode.EDIT) && !mode.equals(WCMMode.DESIGN)) {
         //this part of code never execute when your page is in edit mode (dropped content or load the page in edit mode). but this part of code will run when you switch from edit mode to previe mode (in author node) or on  publish instance of Server because there will be no edit mode there.
    Let me know if you need more information or it doesn't help you.
    Thanks,
    Pawan

  • Error during database load in ECC 5.0

    Hello All,
    i am trying to install ECC.5 with oracle 10g during database load phase he is giving me a error when i saw in log file i found this.
    C:\usr\sap\EPT\SYS\exe\run/R3load.exe: START OF LOG: 20090611085559
    C:\usr\sap\EPT\SYS\exe\run/R3load.exe: sccsid @(#) $Id: //bas/640_REL/src/R3ld/R3load/R3ldmain.c#6 $ SAP
    C:\usr\sap\EPT\SYS\exe\run/R3load.exe: version R6.40/V1.4
    C:\usr\sap\EPT\SYS\exe\run/R3load.exe -ctf I E:/sap5/51031332_1/EXP1/DATA/SAP0000.STR C:\Program Files\sapinst_instdir\ECC50\SYSTEM\ABAP\ORA\NUC\DB/DDLORA.TPL C:\Program Files\sapinst_instdir\ECC50\SYSTEM\ABAP\ORA\NUC\DB/SAP0000.TSK ORA -l C:\Program Files\sapinst_instdir\ECC50\SYSTEM\ABAP\ORA\NUC\DB/SAP0000.log -o D
    C:\usr\sap\EPT\SYS\exe\run/R3load.exe: job completed
    C:\usr\sap\EPT\SYS\exe\run/R3load.exe: END OF LOG: 20090611085559
    C:\usr\sap\EPT\SYS\exe\run/R3load.exe: START OF LOG: 20090611103425
    C:\usr\sap\EPT\SYS\exe\run/R3load.exe: sccsid @(#) $Id: //bas/640_REL/src/R3ld/R3load/R3ldmain.c#6 $ SAP
    C:\usr\sap\EPT\SYS\exe\run/R3load.exe: version R6.40/V1.4
    C:\usr\sap\EPT\SYS\exe\run/R3load.exe -dbcodepage 1100 -i C:\Program Files\sapinst_instdir\ECC50\SYSTEM\ABAP\ORA\NUC\DB/SAP0000.cmd -l C:\Program Files\sapinst_instdir\ECC50\SYSTEM\ABAP\ORA\NUC\DB/SAP0000.log -stop_on_error
    DbSl Trace: OCI-call 'OCISessionBegin' failed: rc = 1034
    DbSl Trace: CONNECT failed with sql error '1034'
    DbSl Trace: OCI-call 'OCISessionBegin' failed: rc = 1034
    DbSl Trace: CONNECT failed with sql error '1034'
    (DB) ERROR: db_connect rc = 256
    DbSl Trace: OCI-call 'OCISessionBegin' failed: rc = 1034
    DbSl Trace: CONNECT failed with sql error '1034'
    DbSl Trace: OCI-call 'OCISessionBegin' failed: rc = 1034
    DbSl Trace: CONNECT failed with sql error '1034'
    (DB) ERROR: DbSlErrorMsg rc = 99
    C:\usr\sap\EPT\SYS\exe\run/R3load.exe: job finished with 1 error(s)
    C:\usr\sap\EPT\SYS\exe\run/R3load.exe: END OF LOG: 20090611103428
    can anybody help me to sort this out.
    Any help highly appreciated.
    Thanks & Regards
    Subhash

    First of all thanks for helping me
    i have tried this
    Connected to an idle instance.
    SQL> STARTUP MOUNT
    ORACLE instance started.
    Total System Global Area  205520896 bytes
    Fixed Size                  1248116 bytes
    Variable Size             117441676 bytes
    Database Buffers           83886080 bytes
    Redo Buffers                2945024 bytes
    Database mounted.
    SQL> SET AUTORECOVERY ON
    SQL> RECOVER DATABASE
    ORA-00279: change 262364 generated at 06/11/2009 09:43:56 needed for thread 1
    ORA-00289: suggestion : C:\ORACLE\EPT\ORAARCH\EPTARCHARC00052_0689209324.001
    ORA-00280: change 262364 for thread 1 is in sequence #52
    ORA-00308: cannot open archived log
    'C:\ORACLE\EPT\ORAARCH\EPTARCHARC00052_0689209324.001'
    ORA-27041: unable to open file
    OSD-04002: unable to open file
    O/S-Error: (OS 2) The system cannot find the file specified.
    But i m not able to see any archive file on oraarch folder
    Regards
    Subhash

  • Error on page load when trying to run the jsp appl. through JDeveloper

    I created an JSP application using Oracle JDeveloper 9.0.5.2 and Business Intelligence beans 9.0.5. and i am using Embeded oc4j Server for running the application from the JDeveloper Environment.
    All the presentations are existed in the Local Catalog of the application...
    Configuration file of the Application is :
    (Project1OLAPConfig4.xml):
    <?xml version = '1.0' encoding = 'UTF-8'?>
    <!--This file is generated by the BI Designer object and specifies configuration
    settings for your application. These configuration settings do not affect
    the BI Designer object. You can specify the name of this file in the constructor
    of the BISession object for the application.
    If you want to customize this file, then choose Settings from the
    right-mouse menu of the associated BI Designer object. Or you can right click on the
    configuration file and choose Settings. You can choose whether to keep the
    configurattion settings the same for both design and runtime, which is the
    default, or to use different settings for design and runtime.
    Refer to the Help system for more information on the configuration file.
    Current Settings:
    In Sync with Designer
    -->
    <BIConfig>
    <BISession DeploymentOption="LOCAL">
    <BIUser Username="Local User"/>
    <Debug Mode="ERROR"/>
    </BISession>
    <PersistenceConnection PCID="pc1" PersistenceType="FILE" RootFolder="bidefs/Project1BIDesigner4/" BootConnection="true"/>
    <OLAPConnection OCID="oc1" ServerType="ROLAP" OLAPConnectionName="OLAPConnection1" HostName="twdpc232" SID="encore" PortNumber="1521" JdbcDriverType="thin">
    <DADFile Filename="/Project1OLAPConfig4OLAP.dad" Obfuscated="false"/>
    </OLAPConnection>
    <MetadataManager>
    <PersistenceConnection PCREFID="pc1"/>
    <OLAPConnection OCREFID="oc1"/>
    </MetadataManager>
    </BIConfig>
    Project1OLAPConfig4OLAP.dad :
    Username:CS_OLAP
    Password:CS_OLAP
    JSP page is : (biuntitled1.jsp)
    <%@ taglib uri="http://xmlns.oracle.com/bibeans/jsp" prefix="orabi" %>
    <%@ taglib uri="http://java.sun.com/jstl/core" prefix="c" %>
    <%@ page errorPage="cabo/bi/jsp/error.jsp" %>
    <%@ page contentType="text/html;charset=windows-1252"%>
    <!-- Start synchronization of the BI tags -->
    <% synchronized(session){ %>
    <orabi:BIThinSession id="bisession1" configuration="/Project1OLAPConfig4.xml" >
    <!-- Business Intelligence definition tags here -->
    <orabi:Presentation location="Presentation1" id="biuntitled1_pres1"/>
    </orabi:BIThinSession>
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
    <title>
    BI Beans JSP Page
    </title>
    </head>
    <orabi:BIBody>
    <form name="BIForm" method="POST" action="biuntitled1.jsp" >
    <orabi:InitBITags parentForm="BIForm"/>
    <!-- Insert your Business Intelligence tags here -->
    <orabi:Render targetId="biuntitled1_pres1" parentForm="BIForm"/>
    <p/>
    <p/>
    <!-- The InsertHiddenFields tag adds state fields to the parent form tag -->
    <orabi:InsertHiddenFields parentForm="BIForm" biThinSessionId="bisession1" />
    </form>
    </orabi:BIBody>
    </html>
    <% } %>
    <!-- End synchronization of the BI tags -->
    The Errors coming when loading the page are:
    Line : 25
    Char : 76
    Error : ObjectExpected
    Code : 0
    URL : http://172.29.52.77:8989/Workspace1-Project1-context-root/biuntitled1.jsp
    The same error is coming in the (line, char) combination are : (25,1);(30,1);(21,1);
    Output of bicheckconfig :
    BI Beans Diagnostics(v1.0.2.0) 8/23/04
    ===============================================================================
    JDEV_ORACLE_HOME .......................... = c:\JDeveloper
    JAVA_HOME ................................. = C:\j2sdk1.4.2_03
    JDeveloper version ........................ = 9.0.5.2.1618
    BI Beans release description .............. = BI Beans 10.1.2 Production Release
    BI Beans component number ................. = 10.1.2.5.0
    BI Beans internal version ................. = 3.2.0.37.4
    Connect to database ....................... = Successful
    JDBC driver version ....................... = 9.2.0.3.0
    JDBC JAR file location .................... = C:\JDeveloper\jdbc\lib
    Database version .......................... = 9.2.0.5.0
    OLAP Catalog version ...................... = 9.2.0.5.0
    OLAP AW Engine version .................... = 9.2.0.5.0
    OLAP API Server version ................... = 9.2.0.5.0
    BI Beans Catalog version .................. = N/A; not installed in CS_OLAP
    OLAP API JAR file version ................. = "10.1.0.3.0"
    OLAP API JAR file location ................ = c:\JDeveloper\jdev\lib\ext
    Load OLAP API metadata .................... = Successful
    Number of metadata folders ................ = 2
    Number of metadata measures ............... = 24
    Number of metadata dimensions ............. = 5
    Metadata output location .................. = C:\JDeveloper\bibeans\bi_checkconfig\bi_metadata.txt
    To interpret this output, see the "Displaying Information about your Oracle9i Business Intelligence Beans Client Configuration" technical note, whose file name is bi_checkconfig_tn.html
    These diagnostics are captured in: C:\JDeveloper\bibeans\bi_checkconfig\bi_checkconfig.xml
    Can any body help me....
    Thanks
    Bhanu.

    Copy the jdev_home/jlib/redist/uix2_install.zip file to
    jdev_home/jdev/redist folder . It will overwrite an existing uix2_install.zip file.
    Close and open the Jdeveloper IDE. It will prompt you for upgradation of projects. Press OK button in response.
    Now you should be able to run the JSP pages.

  • Lock Object error during batch load

    Batch load was delayed about an hour. First error message in the Server Log said "Object is already locked by user""Error 1053010 processing request [Lock Object]-Disconnecting"Then it went through a series of "Object locked by user admin" and "received client request: create Temporary Object(from user admin)"It did this several times until connection.Although from time to time we have had problems with Objects getting locked and preventing maintenance in the Application Manager. This is the first time that is has prevented a batch load. Does anyone know what could have triggered this during the load process?

    This happened to us a lot, I think it's due to people opening objects, then letting their session time out, leaving a phantom lock.We solved the problem by calling the UNLOCKOBJECT function before any dimbuilds. 99.9% of the time this raises an error, "..object x is not locked..", but the rare time that the otl is inadvertently locked, it prevents the script from failing.<br><br>HTH,<br><br>Jeff McAhren<br>Dallas, Texas<br><br>ex to unlock the outline for app/db flash:<br><br>UNLOCKOBJECT 1, "FLASH" "FLASH" "FLASH"

  • Safari causes system freeze during page load

    Description:
    I've been trying to figure this one out for a while now (about 2 weeks), without any luck. I've tried reading a couple of threads describing similar problems, but it looks like I've got something else going on here seeing as it affect the entire system. I appreciate any suggestion!
    When a window in Safari is open and you're loading a page, it sometimes (almost always) causes a system freeze. Any action performed on any input device within OSX while a page is loading gets delayed by 5-20 seconds. Anything from right-clicking, to opening a new tab in Safari, to navigating to a new folder in Finder.... literally anything. The actual loading of the page is also affected by this. So when I click a link, the page becomes white and the system stalls. After X seconds, the system resumes and the page is displayed fully loaded. Once the page is loaded, everything is back to normal. I can just leave the Safari-window open without anything happening. It's just during the loading of a page.
    Using the mouse to move and switch between open windows are the only actions I seem to be able to perform during the system freeze.
    When it doesn't cause a system-wide freeze, it will still take forever for any page to load. Which isn't a problem in any other browser and I've never had any speed issues in general on any device.
    What I know for sure is that I can solve the problem by closing all open Safari-tabs and windows or closing the app completely, and use Chrome instead. But I do like Safari, so I hope there's another way to fix this.
    I should also note that I've made no changes to the system for many weeks now, other than installing whatever updates might have been available on the App Store.
    What I've tried within Safari:
    - program restart
    - reset settings (every option checked)
    - disable and remove extensions (only had one installed, LiveReload for Adobe Brackets)
    - empty cache
    - delete cookies
    What I've tried within OSX:
    - system restart
    - complete OSX-recovery
    - activity monitor (CPU, HDD and RAM always within normal values during all of this)
    - checked HDD (successfull)
    - checked internet-connection (got 50Mbit/s connection, no speed issues, checked on multiple devices)
    - tried other browsers (Chrome (OSX) and IE (Win 7, Parallels) both run smoothly)
    - turned off IPv6 in terminal (based on a suggestion here at the forums)
    - disabled iCloud-sync
    - disabled Dropbox
    - probably a couple of other things i can't remember right now

    So... I finally fixed it.
    In addition to the things I mentioned I tried, I also checked if it could be malware-related. It wasnt. I then checked if it was just affecting my user-account or OSX globally. I created a new account and Safari ran perfectly. I therefore assumed it had to be something in my library-folder.
    I deleted just about any mention of Safari in the Library-folder (the visible one) and just to be absolutely sure, I deleted the Contents-folder inside Safari.app in the Applications-folder. I then downloaded and installed Safari 7.0.3. Everything runs smooth now.

  • CRM 5.0 - Error during Initial Load

    Hi,
    We have connected CRM 5.0 with ECC 5.0.
    During initial load we are getting error in the outbound queue of ECC system as 'Name or Password incorrect (Repeat Logon)'.
    Any idea, why is this happening. We have double checked the user id and password entered in SM59 is correct.
    Thanks in advance,
    Amit

    Hi Michael,
    Yes, I had checked on both the systems.
    Anyways, the problem is now solved, it seems the BASIS team did some goofup while configuring the RFC destinations. It is working now.
    Thanks for your help.
    Cheers,
    Amit

  • Sysfail error during initial load

    Got sysfail error. Checked for shortdumps and found this
    MESSAGE_TYPE_X     SAPLCRMO
    'No external system (such as CRM) connected'
    Checked the RFC. Seems ok. Any idea?
    Get the parameters for the RFC conection.
        c_stshd-mass_queue = c_stshd-mass_data.
        PERFORM get_download_params_and_queue
                TABLES t_bapistructures
                USING c_stshd-objname
                      c_stshd-objclass
                      gv_destination
                      gv_rfc_queue
                      gv_server_release
                      i_bapicrmdh2
                      c_stshd-mass_queue
                      c_stshd
                      i_transfer_data
                      i_crmrfcpar
                      e_rfcoltp.
    Set variables
        e_synchronous_call = gv_synchronous_call.
    Raise an error if the destination of the foreign system could not be
    found. (Only during Initial Load, Upload, Compare and Requests).
        IF gt_rfcdest[] IS INITIAL AND
           NOT i_bapicrmdh2-ref_id IS INITIAL.
          MESSAGE x050(c_) WITH
                  'No external system (such as CRM) connected'(007).
        ELSE.
          t_rfcdest[] = gt_rfcdest[].
        ENDIF.

    The  RFC Destination for Replication & Realignment (Clt 000) isn't set because only the root admin has access to clnt000 and he's in vacation. Could that be the problem?

  • Why is Spry Tabs dropping below content out of view and back during page load.

    Hello everyone, I'm having some
    Spry Trouble. This is happening only in IE 7.
    When the page loads, you'll notice that the tabs will
    collapse before coming back to it's designated position.
    This ruins the visual appeal. Again I don't know why this
    happens but the tabs at the bottom of the content will quickly drop
    below out of view and then jump back under the content.
    Here is the URL
    http://www.patrickjudson.com/weddingIndex2.php
    Any ideas why this is happening?
    Thanks everyone - Patrick

    quote:
    Originally posted by:
    Newsgroup User
    Webethics wrote:
    > Hello everyone, I'm having some
    Spry Trouble. This is happening only in
    > IE 7.
    > When the page loads, you'll notice that the tabs will
    collapse before coming
    > back to it's designated position.
    > This ruins the visual appeal. Again I don't know why
    this happens but the tabs
    > at the bottom of the content will quickly drop below out
    of view and then jump
    > back under the content.
    >
    > Here is the URL
    http://www.patrickjudson.com/weddingIndex2.php
    I don't see the collapse issue on my end. About the only
    visual thing going on is that the background image of the tabs
    appears later than the text, but not sure that's an issue that's
    particular to the Spry code on the page.
    Perhaps it's related, or perhaps not, but in my IE7, I get an
    error on the page. It states:
    Line: 48
    Char: 3
    Error: Object required
    Code: 0
    URL:
    http://www.patrickjudson.com/weddingIndex2.php
    I only see HTML code at line 48 both in the source code, and
    even if I pull the generated content view source from Firefox. I
    checked line 48 of both of your attached JS files and neither
    seemed to be an obvious issue. I even saved a local copy of the
    page, and didn't get an error at all. The line of code in the HTML
    does seem to be the end of the div that contains your music player,
    maybe it's causing an issue in IE, not sure.
    Danilo Celic
    |
    http://blog.extensioneering.com/
    | WebAssist Extensioneer
    | Adobe Community Expert
    So why is there an error in IE7 saying object required.
    What does this mean, and what are the side effects?
    Any idea?
    Patrick

  • POWL: Refresh the cache results of POWL during page load.

    Hi Friends,
    I am using a feeder class for my POWL. Whenever the user clicks opens the POWL, he sees the cached data/results and he is expected to do a manual refresh to see current/new data. I want to eliminate this by refreshing the cache during the page load itself and show user current data. I already know about the exporting parameter in handle_action method which is used to do refresh. But it does not work in this case.
    Pls help.

    Hello Saud,
    In which release you are? in new release you can do refresh by personalization where options are there.
    There are other options also to refresh
    1) By passing URL parameter refreshA=X it will refresh all queies when loading
    2) By passing refreshq=X, it will refresh the current query
    best regards,
    Rohit

  • Execute code on UI component during page load

    Hi All,
    I am usng Jdeveloper 11gR2.
    I want to invoke below code snippet to change the properties of input text fields and set them to enable on page load -
            FacesContext facesContext = FacesContext.getCurrentInstance();
            UIViewRoot root = facesContext.getViewRoot();
            RichPanelFormLayout formClass = (RichPanelFormLayout)root.findComponent("id");
            List<UIComponent> uiComponentList = formClass.getChildren();
                  for (UIComponent uiComponent : uiComponentList) {
                      if (uiComponent instanceof RichInputText) {
                          //((RichInputText)uiComponent).setDisabled(true);
                          ((RichInputText)uiComponent).setColumns(100);
                          Boolean flag = ((RichInputText)uiComponent).isChanged();
                          System.out.println("flag - " + flag);
    At present the code snippets works well on command component action but I want to execute the same during initial page load without the use of any command component.
    Please advise on how to achieve this.
    Best Regards,
    Ankit Gupta

    Check out https://blogs.oracle.com/adf/entry/an_epic_question_how_to
    Solution 2 (invoke actions) are deprecated in 12c so I wouldn't recommend using it.
    Timo

  • Getting error while page load

    Hi All,
    I am using Jdevloper 11.1.1.2 and i have an adf application where i have a taskflow and pages related to their page fragments.I have not used any adf security and i have a page which loads when i click on login button.But when my page loads it gives me this error.
    Error 500--Internal Server Error
    java.lang.NullPointerException
         at oracle.adf.model.binding.DCIteratorBinding.executeQueryIfNeeded(DCIteratorBinding.java:2128)
         at oracle.adf.model.binding.DCBindingContainer.internalRefreshControl(DCBindingContainer.java:3126)
         at oracle.adf.model.binding.DCBindingContainer.refresh(DCBindingContainer.java:2791)
         at oracle.adf.controller.internal.binding.TaskFlowRegionController.refreshRegion(TaskFlowRegionController.java:168)
         at oracle.adf.model.binding.DCBindingContainer.internalRefreshControl(DCBindingContainer.java:3084)
         at oracle.adf.model.binding.DCBindingContainer.refresh(DCBindingContainer.java:2791)
         at oracle.adf.controller.v2.lifecycle.PageLifecycleImpl.prepareModel(PageLifecycleImpl.java:112)
         at oracle.adf.controller.v2.lifecycle.Lifecycle$2.execute(Lifecycle.java:137)
         at oracle.adfinternal.controller.lifecycle.LifecycleImpl.executePhase(LifecycleImpl.java:192)
         at oracle.adfinternal.controller.faces.lifecycle.ADFPhaseListener.access$400(ADFPhaseListener.java:21)
         at oracle.adfinternal.controller.faces.lifecycle.ADFPhaseListener$PhaseInvokerImpl.startPageLifecycle(ADFPhaseListener.java:231)
         at oracle.adfinternal.controller.faces.lifecycle.ADFPhaseListener$1.after(ADFPhaseListener.java:267)
         at oracle.adfinternal.controller.faces.lifecycle.ADFPhaseListener.afterPhase(ADFPhaseListener.java:71)
         at oracle.adfinternal.controller.faces.lifecycle.ADFLifecyclePhaseListener.afterPhase(ADFLifecyclePhaseListener.java:53)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:364)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:177)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:265)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:292)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:191)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:97)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:420)
         at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:420)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:247)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:157)
         at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:94)
         at java.security.AccessController.doPrivileged(Native Method)
         at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313)
         at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:413)
         at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:138)
         at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:70)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.library.webapp.LibraryFilter.doFilter(LibraryFilter.java:159)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.dms.wls.DMSServletFilter.doFilter(DMSServletFilter.java:326)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3592)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2202)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2108)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1432)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    Please suggest !!
    Thanks.

    Hi,
    Do you get this error when deploying to the Integrated WLS? Or a standalone instance? If it is standalone instance, does this work fine when you run with Integrated WLS?
    -Arun

  • Errors during Data loads

    Hi,
    Our end users are preparing their scripts for UAT and I have been asked to provide a list of data errors which they might need to test during UAT.
    Can someone please help me in this. This is very urgent!!!
    Thanks,
    RPK.
    Message was edited by:
            RPK

    HI,
    1.No IDocs could be sent to the SAP BW using RFC.
    2.IDocs were found in the ALE inbox for Source System that are not
    Updated. Processing is overdue
    5.1st – That it is a PC File Source System.
    2nd - That there are Duplicate Data Records leading to error.
    7.1st – That it is a PC File Source System.
    2nd – For uploading data from the PC File it seems that the file was not kept at the application server & the job was scheduled in Background
    8.The background processing was not finished in the source system.
    It is possible that the background processing in the source system was terminated.System response .There are incomplete data packets present
    9.After looking at all the above error messages we find that if we want to load data with the delta update you must first initialize the delta process.
    10.Here we can see that the Activation of ODS has failed as the Request Status in the ODS may not be green.
    13.While Fiscal year is mostly the financial year and varies depending upon the Client using which Fiscal year Variant. Client may consider April is the start month of year (financial) .So this can be achieved by defining the fiscal year.One client can have different fiscal year definations with different Fiscal varients.So Fiscal variants differ the starting and ending of fiscal year.
    For example in India we follow Fiscal year from April to March. You can have a look at the Fiscal year Variant and the periods in transaction OB29
    14.Due to space problem these types of errors occurs

Maybe you are looking for

  • Discovery data couldn't be inserted to the database. This could have happened because of one of the following reasons:

    Discovery data couldn't be inserted to the database. This could have happened because  of one of the following reasons:   - Discovery data is stale. The discovery data is generated by an MP recently deleted.   - Database connectivity problems or data

  • Statements in calculation fields

    Can you use sql statements in calculated fields, for instance can you use a statement like IF(GL_SEGMENT-04='401000'TO'409999'THEN SUM(GL_BALANCE_PERIOD_BAL_DB-GL_BALANCE_PERIOD_BAL_CR) I would think that you could use statements within calculated fi

  • Problem with connecting my Ipod Classic 80 gb to a Phillips Portable DVD

    I just purchased a Phillips Portable DVD player that I can insert my ipod into. It plays music, but everytime I go to play a movie it keeps coming up withTV OUT ENABLED, PLEASE CONNECT VIDEO ACCESSORY. I have set all the proper settings TV OUT - ON T

  • Calculation across periods

    Hello, I have a requirement and I cannot find a solution, I have tried various combinations with calculated / restricted key figures. The query is based on a structure where the rows have several lines & calculations which are for each year. However

  • Error : test game on samsung mobile E730

    I programed a game and it played good in Emulator but when it ran in samsung E730,it had error : The application has unexpectedly quit contact the application provider to resolve the issue. I dont know how to do .Somebody helps me !