Flowfield Status

infonoteinfonote Member Posts: 233
Hi,

Is there a way to know when a flowfield is being calculated i.e. if it is still processing?

E.g. 1 = processing
0 = done.

Thanks in advance

Comments

  • NaviDevNaviDev Member Posts: 365
    edited 2008-03-06
    Something like
    Status = 1;
    rec.CALCFIELDS(FlowFieldName);
    Status = 0;
    


    Does it help? :D
    Navision noob....
  • tinoruijstinoruijs Member Posts: 1,226
    From help on CALCFIELDS:

    CALCFIELDS (Record)
    Use this function to update the FlowFields in a record.

    [Ok :=] Record.CALCFIELDS(Field1, [Field2],...)
    Ok

    The optional return value.

    Field1, Field2, ...

    Data type: field

    The FlowFields you want to update. Each field must be defined as a FlowField and must belong to the same record variable.


    So you can use the return value.

    Tino Ruijs
    Microsoft Dynamics NAV specialist
Sign In or Register to comment.