2014 Oct 07 2:23 PM
HI Guys
When I doing the extend verification of my program it shows:
Do not use fields, field symbols (T_ENTREGA_AP) globally.
I declare it global becuse appears in 3 performs .
How could I correct it?
TYPES: BEGIN OF ty_entrega_ap.
INCLUDE STRUCTURE ztbsd_entrega_ap.
TYPES: END OF ty_entrega_ap.
*----------------------------------------------------------------------*
* Tabelas
*----------------------------------------------------------------------*
DATA: t_entrega_ap TYPE TABLE OF ty_entrega_ap,
OBS with t_entrega_ap TYPE TABLE OF ztbsd_entrega_ap. occurs the same error.
Thanks for Help.
2014 Oct 07 8:43 PM
Hello,
are you getting this as a warning ? if yes then you can ignore it. The usage of global variable is to use in multiple places.
Regards,
Nagaraj
2014 Oct 07 8:43 PM
Hello,
are you getting this as a warning ? if yes then you can ignore it. The usage of global variable is to use in multiple places.
Regards,
Nagaraj
2014 Oct 08 3:55 PM
Ok thanks nagaraj .
Then I will ignore it with "#EC NEEDED
Thanks for help.