Application Development 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: 

Weird Code Error

Former Member
0 Kudos
173

tables: mara,eina.

DATA: ze1edp19 like e1edp19 occurs 0 with header line.

DATA: begin of zinteina occurs 0,

matnr like mara-matnr,

idnlf like eina-idnlf,

end of zintEINA.

data: i_mara like mara occurs 0.

CLEAR ZE1EDP19.

clear zinteina.

MOVE segment-SDATA TO ZE1EDP19.

etc......

-


Wrote that code in the user exit of INPUT_IDOC_ORDERS.

No syntax error... but in debugging, the system does not recognize the inernal table zinteina nor i_mara but it recognizes ZE1EDP19.

1 REPLY 1

Former Member
0 Kudos
93

I dono't if there is something like system refresh for user exits but the code started working after couple of hours. Weird!