‎2007 Dec 04 6:54 AM
Can anyone tell me the meaning of
IF NOT < Fieldname> IS INITIAL?
‎2007 Dec 04 6:58 AM
HI
IF NOT < Fieldname> IS INITIAL
IF that filedname has some value then the condition is true
if that filedname had no values then the condition is flase
Rewar di fusefull
‎2007 Dec 04 6:55 AM
Means, if the <Fieldname> value is not blank then do some process.
Regards,
Satish
‎2007 Dec 04 6:56 AM
IF NOT < Fieldname> IS INITIAL
this statement will check if the field is having any value or not.
this condition will check that the field is not empty.
Rewards if useful.
‎2007 Dec 04 6:56 AM
IF NOT <b>ZCOUNT</b> IS INITIAL.
<b>this means field should have Atleast one value in it</b>
‎2007 Dec 04 6:57 AM
Hi,
This means if not the value of the field is ' ' (in case of char) or 0 in case of int.
say var = 'xxx'
now if not var is initial .
endif.
it will check for the value of var it is not ' '.so it will get inside and do the processing
award if helpful
vivekanand
‎2007 Dec 04 6:58 AM
HI
IF NOT < Fieldname> IS INITIAL
IF that filedname has some value then the condition is true
if that filedname had no values then the condition is flase
Rewar di fusefull
‎2007 Dec 04 6:59 AM
Hi,
The statements works as follows.
IF NOT ( <Fieldname> IS INITIAL).
- Initially it checks whether fieldname is initial or not. (value exists or not).
- NOT is applied for the result of the first line.
ex: if field is initial, it returns True.
IF NOT (TRUE).
Result : False. i.e., If FALSE.
‎2007 Dec 04 7:01 AM
Hi Mona,
Lets say
if not field is initial.
write : 'Field is having a value'.
else.
write : 'Field is empty'.
endif.
Suppose field is having a value then 'Field is having a value' will be printed, if not then 'Field is empty' will be printed.
Reward points if found useful.
Thanks and Regards,
Satyesh T
‎2007 Dec 04 7:02 AM
Hi,
<b>If not........is initial</b> means that <b>if</b> the field or the table have any value..
that is it has some value.
Regards,
Pritha.
‎2007 Dec 04 7:03 AM
Hi MONA
the above answer is correct there is no meaning for this further
it is checking weather that filedname had values then go in that condition other wise don't go into that
‎2007 Dec 04 7:07 AM
Hi,
IF NOT < Fieldname> IS INITIAL?
Means if value of fieldname is not blank.
Regards,
Prashant