Skip to Content
0
Former Member
Jun 08, 2011 at 10:56 AM

"Getting Short dump DETAIL_SCR_NBR_MISSING"

56 Views

Hi Experts,

A custom transaction "ZFI_KKK" That shows the content of a table with the same name. It is only ment for displaying data, but in rare cases it is possible to change the content of a particular column. When the table contains only one row while changing to u2018change modeu2019, the program generates a runtime error.

I have analysed the error.

The Error is occured on Standarad Include: LSVIMFX2.

Main Program : SAPLZFI_VGL10269_ERR.

A RAISE statement in the program "SAPLZFI_VGL10269_ERR" raised the exception

condition "DETAIL_SCR_NBR_MISSING".

I did the dump analysis and found the OSS note 762967 to solve the similar issue.

But when we tried to implement that note we found Release versions are different in SAP and SAP note as mentioned .As per our system component u2018SAP_ABAu2019 is under release 702.

But as per the SAP note 762967 there is no 702 release.(Last Release 640).

FORM process_detail_screen USING value(mode) TYPE c.
  DATA: modulpool LIKE trdir-name,                          "#EC NEEDED
        no_input_happened(1) TYPE c,                       "#EC NEEDED
        state_action(1) TYPE c.                                  "#EC NEEDED
  IF detail NE '0000'.
    IF mode EQ 'S'.
      SET SCREEN detail.
      LEAVE SCREEN.
    ELSE.
      PERFORM vim_imp_call_screen USING detail.
    ENDIF.
  ELSE.
    RAISE detail_scr_nbr_missing.                           "#EC FB_RAIS_EX
  ENDIF.
ENDFORM.                    "process_detail_screen

Can you please help by giving any idea....to solve this issue.

Thanks& Regards,

Sarkar

Edited by: Sambaran Sarkar on Jun 8, 2011 1:01 PM