Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

ALV

Former Member
0 Likes
587

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.

6 REPLIES 6
Read only

Former Member
0 Likes
569

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

Read only

Former Member
0 Likes
569

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

Read only

Former Member
0 Likes
569

hi,

check all the parameters you give correctly and also check the fieldcatalog you have given.

Read only

Former Member
0 Likes
569

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.

Read only

Former Member
0 Likes
569

Hi,

Can you show the code so that it will be easy to track the Error..

Regards,

Syed

Read only

asik_shameem
Active Contributor
0 Likes
569

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.