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

dynamic internal table

Former Member
0 Likes
384

Hi,

I am creating a dynamic internal table using the method

cl_alv_table_create=>create_dynamic_table

The problem i face is i am getting an error "Unable to interpret "-". Possible causes of error: 8 -"

I found that one of the entries in field catalog structure contains a hyphen '-'.

is this the reason ? Are there other characters like this which will cause similar issues ? Please advice.

Helpful answers will be rewarded.

Thanks

Pranati.

2 REPLIES 2
Read only

Former Member
0 Likes
362

Hi,

I can't give you a definitive answer as I don't know much about how that works but what you could do is debug through the method and find where it throws that error - you may find it does a number of validations which will allow you to figure out anything else that may cause it to break.

Gareth.

Read only

Former Member
0 Likes
362

Hi,

The real issue was the presence of spaces in field catalog entries.

for example, field catalog internal table should have "NoSpace" and not "No Space".

Thanks

Pranati