‎2007 Jun 07 4:56 AM
Hello
i did not understand this what is this key word if not intial and if if intail are going to perform
‎2007 Jun 07 4:58 AM
Hi,
Initial: Initial value
Not initial: Defined value
In case of internal tables initial means no records or empty and not initial means contains records
Regards,
Younus
<b>Reward Helpful Answers:-)</b>
‎2007 Jun 07 4:58 AM
Hi,
if not initial means it is having some value.
if initial means this field is empty and not containing any value.
regards,
Ruchika
reward points if useful.
‎2007 Jun 07 4:58 AM
hi,
If not initial means there r some records existing in the table for the condition u have given.
If initial means there r no records.
‎2007 Jun 07 4:58 AM
Hi,
Initial: Initial value
Not initial: Defined value
In case of internal tables initial means no records or empty and not initial means contains records
Regards,
Younus
<b>Reward Helpful Answers:-)</b>
‎2007 Jun 07 5:01 AM
Hi,
if u say if not initial, when u go to debugging mode u will find some value associated with the variable. like u can say flag is set.
if initial then it is zero .
when u go to debugging mode u can understand alot better .
reward pts if found usefull:)
Regards,
Sathish
‎2007 Jun 07 5:02 AM
hi,
suppose there is an itab.
thn we want chk whthr it has data or not.
use this.
if not itab[] is initial.
*itab has data.
endif.similarly we can chk the variables.
Regards
Anversha
‎2007 Jun 07 5:04 AM
Hi,
Check this code,
data : flag1 type i value '1'.
If flag1 is initial.
write : 'Flag1 dont having any value'.
Elseif flag1 is not initial.
write : 'Flag1 having some value'.
endif.
Initial means it Contains No value.
Not Initial Means It contains some values.
Thanks,
Reward If helpful.