2010 Jul 06 2:20 PM
Hello,
I have a report that gives me the following DUMP when I run it through a JOB, I want an expert to help me see why the error:
¿Qué ha sucedido?
Error in the ABAP Application Program
The current ABAP program "SAPLKKBL" had to be terminated because it has
come across a statement that unfortunately cannot be executed.
¿Qué puede hacer?
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.
Anál.errores
You attempted to access an unassigned field symbol
(data segment 121).
This error may occur if
- You address a typed field symbol before it has been set with
ASSIGN
- You address a field symbol that pointed to the line of an
internal table that was deleted
- You address a field symbol that was previously reset using
UNASSIGN or that pointed to a local field that no
longer exists
- You address a global function interface, although the
respective function module is not active - that is, is
not in the list of active calls. The list of active calls
can be taken from this short dump.
Notas para corregir errores
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:
"GETWA_NOT_ASSIGNED" " "
"SAPLKKBL" or "LKKBLF99"
"GEN_FIELD_OUT2"
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.
The line gives me the error is:
when 030.
if gs_out_flags-slave ne 'X'.
assign .
gs_fc = gs_mfc30.
else.
Thank you...
2010 Jul 06 2:25 PM
i think there is a dynamic structure and you are not giving one of fields.
You should debug it from bottom to top(from where error occurs to code begins) and see what the name of variable trying to assging field symbol.
name of field can help you to understand what is wrong.
best regards
mehmet
2010 Jul 06 2:25 PM
i think there is a dynamic structure and you are not giving one of fields.
You should debug it from bottom to top(from where error occurs to code begins) and see what the name of variable trying to assging field symbol.
name of field can help you to understand what is wrong.
best regards
mehmet
2010 Jul 06 2:33 PM
Are you using zprogram or standard program? I think fields-symbol has not been assigned before you use, please assign the field symbol.
2010 Jul 06 2:46 PM
Hello,
The program when run on line no problem, runs fine, the problem is when running in the background ...
And if Z is a program...
Thank