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

Unicode error while upgrading to ECC6

Former Member
0 Likes
334

Hi all,

error is field is not defined in the function module

SORT DA_SERTAB DESCENDING BY DATUM UZEIT.

EXPORT DA_SERTAB TO MEMORY ID MEMID_SHIS.

SUBMIT RISERNR1 AND RETURN

error thrown is :

field " memid_shis " is unknown . it is neither defined in the tables specified nor defined by the " DATA " statement

it is asking me to create an object which im not supposed to do....

2 REPLIES 2
Read only

Former Member
0 Likes
313

Hi

U need to define the variable for the memory label: MEMID_SHIS.

If it's a std report u should check an OSS note, anyway I suppose the report RISERNR1 should do the IMPORT, so in that report u should find a line like:

IMPORT DA_SERTAB FROM MEMORY ID MEMID_SHIS.

Here u can try to get out how the MEMID_SHIS is defined, or which ID is used.

Max

Read only

jaideepsharma
Active Contributor
0 Likes
313

Can you please let us know the function module in which you have this problem ? It will help to rectify the problem soon. In case if it is a z function module please copy paste the code as well.