cancel
Showing results for 
Search instead for 
Did you mean: 

Customer Exit Error

Former Member
0 Kudos

Hi Experts,

I hav e problem while creating an Customer Exit.

Scenerio: I have created a customer exit variable in a Query over material. Now there is a routine to be included it in se80 -


>Function Module---->EXIT_SAPLRRSO_0001 (Customer Exit Global Variables)

I have included the routine within the case i_vnam statement. Upon doing a check it gives the following error - "Field "‘ZCEAPIDR’" is unknown. It is neither in one of the specified tables nor defined by a "DATA" statement. "DATA" statement. "DATA" statement."

Any pointers.

Thanks.

Sharat.

Accepted Solutions (1)

Accepted Solutions (1)

ChandranGanesan
Active Contributor
0 Kudos

Hello Sharat,

Please declare the field ZCEAPIDR, before the case or before the using it. Don't use inside a loop statement.

Data : ZCEAPIDR( length) type n.

Use Type C for chars

or if you are referring some fields then

data: ZCEAPIDR like Fieldname.

Thanks

Chandran

Former Member
0 Kudos

Hi,

You want me declare a variable ? IF thts the case could you please tell me where it should be done?

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Sharat,

Pls paste the code to have a look at . It seems to be some syntax error at a glance.

Regards

Kapadia