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 syntax check how to remove warning

Former Member
0 Likes
756

I get the following WARNING message in extended syntax xheck.

How to remove it.

INT_TABLE stands for 2 fields: Table INT_TABLE[] and its header line

Field INT_TABLE is not referenced statically in the program

Here is the definition of int_table

TYPES : BEGIN OF x_table,

SIGN(1) TYPE C,

OPTION(2) TYPE C,

LOW(10) TYPE C,

HIGH(10) TYPE C,

END OF x_table.

int_table TYPE STANDARD TABLE OF x_table.

Int_table is used in a function module as a TABLE parameter in the form,

In the perform S_user_field is used

1 ACCEPTED SOLUTION
Read only

former_member404244
Active Contributor
0 Likes
667

Hi,

Do some kind of check for ur interanl table in the program.

if not INT_TABLE[] is initial.

endif.

Regards,

Nagaraj

3 REPLIES 3
Read only

former_member404244
Active Contributor
0 Likes
668

Hi,

Do some kind of check for ur interanl table in the program.

if not INT_TABLE[] is initial.

endif.

Regards,

Nagaraj

Read only

SantoshKallem
Active Contributor
0 Likes
667

Use work area for that internal table.

regards,

santosh

Read only

Former Member
0 Likes
667

Hi,

After getting the values from funciton module r u using that internal table to display or passing it t any other table,if it is not used any where this kind of warining message will come.

Tirumal.