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

Weird Code Error

Former Member
0 Likes
464

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
Read only

Former Member
0 Likes
384

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