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

IF not ...........IS INITIAL

Former Member
0 Likes
41,723

Can anyone tell me the meaning of

IF NOT < Fieldname> IS INITIAL?

1 ACCEPTED SOLUTION
Read only

Former Member
9,506

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

10 REPLIES 10
Read only

Former Member
0 Likes
9,506

Means, if the <Fieldname> value is not blank then do some process.

Regards,

Satish

Read only

Former Member
0 Likes
9,506

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.

Read only

Former Member
0 Likes
9,506

IF NOT <b>ZCOUNT</b> IS INITIAL.

<b>this means field should have Atleast one value in it</b>

Read only

Former Member
0 Likes
9,506

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

Read only

Former Member
9,507

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

Read only

Former Member
0 Likes
9,506

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.

Read only

Former Member
9,506

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

Read only

Former Member
0 Likes
9,506

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.

Read only

Former Member
0 Likes
9,506

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

Read only

former_member386202
Active Contributor
0 Likes
9,505

Hi,

IF NOT < Fieldname> IS INITIAL?

Means if value of fieldname is not blank.

Regards,

Prashant