cancel
Showing results for 
Search instead for 
Did you mean: 

Error in E-Recruitment Startpage

Former Member
0 Kudos

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 ??

Please guide...

Thanks.

Shashank Shirali

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Friends,

The problem is solved. The issue was with SICF service activation.

Certain system services were not activated.

Thanks,

Shashank Shirali