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

EPC check

Former Member
0 Likes
835

Hi,

I am getting following warning after EPC

'Field V_BOMUSAGE is not referenced statically in the program'

Please explain how to eliminate it.

Thanks,

Rabiya.

Hi,

I am getting following warning after EPC

'Field V_BOMUSAGE is not referenced statically in the program'

Please explain how to eliminate it.

Thanks,

Rabiya.

6 REPLIES 6
Read only

Former Member
0 Likes
787

the error means that the 'Field V_BOMUSAGE is not used anywhere in the program

Delete the declaration of that field

Read only

Former Member
0 Likes
787

Hi

if u declare a feild in a program and dont use it anywhere it gives this error in epc.

Read only

Former Member
0 Likes
787

that means that the Field V_BOMUSAGE is not being used anywhere in the program, so it is ok to remove it. Unless it is being access dynamically. Ii don't think this is a hard error, so you can probably ignore it.

Regs

Edited by: Tushar Mundlik on Feb 21, 2008 10:30 AM

Read only

Former Member
0 Likes
787

Hi

If you declare any variables and not used then it will show that error message in EPC so please remove un wanted and un used variables

SAP recomonds don't use un nessary variables in the program

Read only

Former Member
0 Likes
787

Hi,

whenever a variable is declared, some memory is allocated for the variable.

if there are any unsed variables, its an memory overhead.

EPC will throw an error stating the un-used variables.

regards,

teja.

Read only

Former Member
0 Likes
787

Hi,

You will get the corresponding,if you delcared the variable,but not used anywhere in the pgm.

So you can comment that declaration of the variable.