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

Dump Msg

Former Member
0 Likes
448

Dump Msg

I have prepared a report which is ALV based ad soon as i click local file it gives following Dump.

Wht is the reason.

The current statement only supports character-type data objects.

In statement

"STRLEN( obj )..."

the argument "obj" can only take a character-type data object.

In this case, the operand "obj" has the non-character type "P".

Regards,

3 REPLIES 3
Read only

Former Member
0 Likes
417

hi,

check your fieldcatalog. and also the some fields of character type creates problem which you have declared in your internal table structure. look for some standard fields.

Read only

Former Member
0 Likes
417

Hi

take a char type variable and pass obj in ti and then use strlen

Data: v_temp(100) type c.

v_temp = obj.

strlen(v_temp).

Regards

Aditya

Read only

Former Member
0 Likes
417

resolved