Hi There SAP ABAPer Gurus!
Greetings with peace!
I have a problem, when we are scrolling down a certain customized program in SAP, an ABAP Runtime error occurs
And we cannot download the file. Details of the errow shown below:
Category ABAP Programming Error
Runtime Errors MESSAGE_TYPE_X
ABAP Program SAPLSLVC
Application Component BC-SRV-ALV
Date and Time 04/20/2015 17:53:11
Short text
The current application triggered a termination with a short dump.
What happened?
The current application program detected a situation which really
should not occur. Therefore, a termination with a short dump was
triggered on purpose by the key word MESSAGE (type X).
What can you do?
Note down which actions and inputs caused the error.
To process the problem further, contact you SAP system
administrator.
Using Transaction ST22 for ABAP Dump Analysis, you can look
at and manage termination messages, and you can also
keep them for a long time.
Error analysis
Short text of error message:
Long text of error message:
Technical information about the message:
Message class....... "0K"
Number.............. 000
Variable 1.......... " "
Variable 2.......... " "
Variable 3.......... " "
Variable 4.......... " "
How to correct the error
Probably the only way to eliminate the error is to correct the program.
-
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:
"MESSAGE_TYPE_X" " "
"SAPLSLVC" or "LSLVCF36"
"FILL_DATA_TABLE"
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.
Information on where terminated
Termination occurred in the ABAP program "SAPLSLVC" - in "FILL_DATA_TABLE".
The main program was "ZFIR_BIR_CAS ".
In the source code you have the termination point in line 2742
of the (Include) program "LSLVCF36".
Source Code Extract
Line SourceCde
2712 is_subtottxt_info = ls_subtot_info
2713 ip_subtot_line = lr_data
2714 changing
2715 c_subtottxt = l_subtottxt.
2716 ls_lvc_data-value = l_subtottxt.
2717
2718 append ls_lvc_data to ct_lvc_data.
2719 endif.
2720
2721 ************************************
2722 * Column per Fieldcat Entry
2723 ************************************
2724 ls_lvc_data-value = space.
2725 clear ls_lvc_data-style.
2726 loop at it_fcat_local assigning <ls_fcat>
2727 where tech ne 'X' and no_out ne 'X'.
2727 where tech ne 'X' and no_out ne 'X'.
2728 if l_invisible eq 'X'.
2729 clear l_invisible.
2730 if <ls_fcat>-do_sum is initial.
2731 continue.
2732 else.
2733 clear ls_lvc_data-col_pos.
2734 endif.
2735 endif.
2736
2737 add 1 to ls_lvc_data-col_pos.
2738
2739 assign component <ls_fcat>-fieldname
2740 of structure <ls_data> to <l_field_value>.
2741 if sy-subrc ne 0.
>>>>> message x000(0k).
2743 endif.
2744
2745 *... work on average
2746 if <ls_fcat>-do_sum eq 'C'.
2747 * Initialize average result and entries
2748 <l_field_value> = 0.
2749 clear l_entries.
2750
2751 * retrive unit from fieldcatalog
2752 assign space to <l_unit>.
2753 if not <ls_fcat>-cfieldname is initial.
2754 assign component <ls_fcat>-cfieldname
2755 of structure <ls_data> to <l_unit>.
2756 endif.
2757 if not <ls_fcat>-qfieldname is initial.
2758 assign component <ls_fcat>-qfieldname
2759 of structure <ls_data> to <l_unit>.
2760 endif.
2761
Contents of system fields
Name Val.
SY-SUBRC 4
SY-INDEX 0
SY-TABIX 11
SY-DBCNT 1
SY-FDPOS 0
SY-LSIND 0
SY-PAGNO 0
SY-LINNO 1
SY-COLNO 1
SY-PFKEY STANDARD_FULLSCREEN
SY-UCOMM %_GS 0 1
SY-TITLE BIR CAS
SY-MSGTY X
SY-MSGID 0K
SY-MSGNO 000
SY-MSGV1
SY-MSGV2
SY-MSGV3
SY-MSGV4
SY-MODNO 3
SY-DATUM 20150420
SY-UZEIT 175311
SY-XPROG SAPMSSY1
SY-XFORM XAB_READ
Kindly help me to solve this problem.
Thank you very much!
Athena