‎2008 Mar 25 8:45 AM
when i am assigning null value as given below
itab0-vertn = null.
it gives error as
Field null is unknown.
How to assign null to a variabl or internal table field ?
‎2008 Mar 25 8:47 AM
‎2008 Mar 25 8:47 AM
‎2008 Mar 25 8:47 AM
hi,
you can simply try:
itab-vertn = 0.
NULL is used only by WHERE causes
hope this helps
ec
‎2008 Mar 25 8:48 AM
Hi,
Move space to the field .Its a NULL value.
Regards,
Balakumar.G
Reward Points if helpful.
‎2008 Mar 25 8:49 AM
Hi
If the field is of type char then you need to wrte the same in quotes woth caps
else
declare
constants : c_null type i value '0'.
then assign the same
itab0-vertn = c_null.
regards
Shiva
‎2008 Mar 25 8:53 AM
‎2008 Mar 25 8:49 AM
hi,
just give
itab0-vertn = 0,
try this and null will be mostly used in where classes.
reward if useful
‎2008 Mar 25 8:50 AM
Hi Santosh,
use itab0-vertn = 0.
instead of itab0-vertn = null.
or iitab0-vertn eq space.
reward if useful
regards,
sunil kairam.
‎2008 Mar 25 8:53 AM