‎2008 Jun 06 5:41 AM
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,
‎2008 Jun 06 5:49 AM
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.
‎2008 Jun 06 5:51 AM
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
‎2008 Aug 11 11:49 AM