‎2008 Jun 03 7:34 AM
Dump Error occured whenever we are executing CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
Error analysis
You attempted to access an unassigned field symbol
(data segment 92).
This error may occur for any of the following reasons:
- You address a typed field symbol before it is set using ASSIGN
- You address a field symbol that points to a line in an internal table
that has been deleted
- You address a field symbol that had previously been reset using
UNASSIGN, or that pointed to a local field that no longer exists
- You address a global function interface parameter, even
though the relevant function module is not active,
that is it is not in the list of active calls. You can get the list
of active calls from the this short dump.
‎2008 Jun 03 7:58 AM
hi,
hope this helps.
Please check if the data that you are passing to the Function module are type compatible or not... I mean please check in SE37 whether the data you are passing is of same type as that declared there..
reward if helpful.
regards
srishti
‎2008 Jun 03 8:32 AM
Hi,
This must be cause of incompatible field types u are passing to the function module.
Just check all the field/table declaration which are passed to the FM 'REUSE_ALV_LIST_DISPLAY'.
This should solve the dump issue.
Reward if it solves the problem!
Regards,
Lalit
‎2008 Jun 03 9:55 AM
hi,
check all the parameters you give correctly and also check the fieldcatalog you have given.
‎2008 Jun 03 10:10 AM
Hi,
I think you have not created field catalog for any of the field of output table to be dispalyed and you are passing it to the FM 'RESUE_ALV_GRID_DISPLAY'.
I would suggest you to use a break-point at this FM and see whether the field catalog table you are passing it filled with all the fields you are accessing is filled or not?
I think this should help you.
‎2008 Jun 03 11:43 AM
Hi,
Can you show the code so that it will be easy to track the Error..
Regards,
Syed
‎2008 Jun 03 12:06 PM
Hi
Check your field names in the FIELD CATALOG and INTERNAL TABLE.
And check the Specified field in field catalog is there in internal table or not.