cancel
Showing results for 
Search instead for 
Did you mean: 

MSS Homepage Dump Error

Former Member
0 Kudos

Hi Experts,

Facing the below error when trying to access MSS Homepage:

ST22 says:

My ABAP person told me that there is a problem in

This is the code in above program:

METHOD update_appl_log.

*****************Application Log**********************

  DATA : ls_log        TYPE bal_s_log.

  DATA : lv_log_handle TYPE balloghndl.

  DATA : lt_log_handle TYPE bal_t_logh.

  DATA : ls_msg        TYPE bal_s_msg.

  DATA : ls_message    TYPE bapiret2.

  ls_log-object    = iv_object.

  ls_log-subobject = iv_subobject.

  ls_log-extnumber = text-001.

*Application Log for Test Scenarios

  ls_log-aluser    = sy-uname.

  ls_log-alprog    = sy-repid.

  CALL FUNCTION 'BAL_LOG_CREATE'

    EXPORTING

      i_s_log      = ls_log

    IMPORTING

      e_log_handle = lv_log_handle

    EXCEPTIONS

      OTHERS       = 1.

  IF sy-subrc <> 0.

    MESSAGE x015(hrpdv).

*   Unable to Create Application log.

  ENDIF.

  LOOP AT it_messages INTO ls_message.

    ls_msg-msgty     = ls_message-type.

    ls_msg-msgid     = ls_message-id.

    ls_msg-msgno     = ls_message-number.

    ls_msg-msgv1     = ls_message-message_v1.

    ls_msg-msgv2     = ls_message-message_v2.

    ls_msg-msgv3     = ls_message-message_v3.

    ls_msg-msgv4     = ls_message-message_v4.

    CALL FUNCTION 'BAL_LOG_MSG_ADD'

      EXPORTING

        i_s_msg      = ls_msg

        i_log_handle = lv_log_handle

      EXCEPTIONS

        OTHERS       = 1.

    IF sy-subrc <> 0.

      MESSAGE e016(hrpdv).

*   Addition of exception/message to the application log failed.

    ENDIF.

  ENDLOOP.

  CALL FUNCTION 'BAL_DB_SAVE_PREPARE'

    EXPORTING

      i_replace_in_all_logs = 'X'

    EXCEPTIONS

      log_not_found         = 0

      OTHERS                = 1.

  IF sy-subrc <> 0.

    MESSAGE x018(hrpdv).

  ENDIF.

  INSERT lv_log_handle INTO TABLE lt_log_handle.

  IF sy-subrc NE 0.

    RAISE update_error.

  ENDIF.

  CALL FUNCTION 'BAL_DB_SAVE'

    EXPORTING

      i_in_update_task = iv_update_task

      i_save_all       = 'X'

      i_t_log_handle   = lt_log_handle

    EXCEPTIONS

      log_not_found    = 1

      save_not_allowed = 2

      numbering_error  = 3

      OTHERS           = 4.

  IF sy-subrc <> 0.

    MESSAGE x018(hrpdv).

*   Unable to save Application log to the DB.

  ENDIF.

  COMMIT WORK.

ENDMETHOD.

Could Someone guide where might the problem ?

Regards,

Srikanth Naidu. Akula

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi All,


I am out of Soup after a long time:


Reason for the issue:


Either the requests were not properly moved  to Quality and some standard entries were missing by default, then I have moved the entire Org.chart visu & OADP related table to QAS then it got resolved.



Thank you for your wonderful support.

0 Kudos
Hi Srikanth,

I have the same problem, the content of the tables is the same. any idea that can happen?

thanks a lot!!!.

Pablo

Answers (2)

Answers (2)

Former Member
0 Kudos

My ABAP person is unable to trace the application log for the application HRMSS_HOMEPAGE.

Could someone guide ?

Former Member
0 Kudos

The screen shot says line num 75 but it doesnt show what is in line 75.

In the dump, if u scroll down little it will show even the exact line where it dumped. That particular line  will be indicated with arrows like this >>>>

If you can provide those info, it will be easy for any one to see and understand and provide further inputs. The code at the line numbers in my system might be different than yous, it all depends on the versions. If possible provide the info. so that some one in the community can guide.

Former Member
0 Kudos

Hi Yugandhar,

The exact error point of the message you are talking about (>>>>>) and I was posted in above screens was same, below is for your reference:

If I click on this line, it led me to below screen:

And gives me HRPDV message "Unable to save Application log to the DB."

My ABAP person is unable to trace the exact application log (Source of this error).

In addition to this, when I test the application hier_vis_ui_wrapper, below error is pops-up:

Below are my release details:

     Portal 7.3

former_member182426
Active Contributor
0 Kudos

plz check BusinessSuite activated or not in SICF.

T-Code SICF : default_host -> sap -> public -> BusinessSuite

Activate complete folder including TM folder.

Former Member
0 Kudos

Hi Shankar,

Thank you for your reply.

I have done the activation in SICF.

Former Member
0 Kudos

Hi Satendra,

Yes I have gone through these documents earlier. Still appreciate your zeal & support.

We have found that there is a problem in updating application log as shown in my 3rd screenshot (top to down). We are going to raise this to SAP soon.

I will definitely get back to you with the results.

Former Member
0 Kudos

Hi All,

There is no NAKISA_ORGCHART  under /sap/public/BusinessSuite/    in SICF.
But the same was working fine in Development.

Former Member
0 Kudos

I hope you might have done the SICF and dependent services, business functions etc activations.

The dump screen shot is not showing on which line of code ur getting dump. can post that screen shot.

Former Member
0 Kudos

Hi Yugandhar,

Thanks for your reply.

Yes, I am done with all the SICF activations. It terminates at line 75:

That is last but 4th line in above code [MESSAGE x018(hrpdv).]