‎2008 May 05 11:54 AM
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....
‎2008 May 05 12:06 PM
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
‎2008 May 05 12:08 PM
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.