‎2008 Jul 23 1:51 PM
Hi Everyone,
Can any one explain me how to reference a field statically.
As the error on Extended program check is as follows:
Field FLAG is not referenced statically in the program
where as the particular field has been defined as below in the program :
when 'SMTP_ADDR'.
DATA: flag type i.
I think is there a need to define the field globally.
Thanks and Regards,
Johny
‎2008 Jul 23 1:53 PM
U can comment/delete this field(FLAG) ..
This is not used anywhere in the program ..
‎2008 Jul 23 1:53 PM
U can comment/delete this field(FLAG) ..
This is not used anywhere in the program ..
‎2008 Jul 23 1:53 PM
It just means that you've defined the data "flag" and, unless you've done some dynamic programming, you've not used it.
If there's no dynamic programming relying on this flag, which seems likely, then just delete it.
matt
‎2008 Jul 23 1:55 PM
Hi,
We can avoid this EPC check by deleting or putting a comment Or By passeing the EPC to it ie
DATA:
w_flag type i." #EPC
we can also avoid the EPC error by this way.then this willnt be aa part of EPC check
Thanks & Regards,
Chandralekha.