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

Extended Check problem

ronaldo_aparecido
Contributor
0 Likes
601

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.

1 ACCEPTED SOLUTION
Read only

former_member404244
Active Contributor
0 Likes
575

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


2 REPLIES 2
Read only

former_member404244
Active Contributor
0 Likes
576

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


Read only

0 Likes
575

Ok thanks nagaraj .

Then I will ignore it with "#EC NEEDED

Thanks for help.