![](https://pdfstore-manualsonline.prod.a.ki/pdfasset/7/e4/7e4f09e5-2cbc-46d8-934f-9c9031bdf248/7e4f09e5-2cbc-46d8-934f-9c9031bdf248-bg49.png)
NodeBuilder Errors Guide 5-53
NCC# Description
436
The specified NV has already been used as an fblock member
[NCC#436]
A network variable (or element of a network variable array) can be a
member of at most one functional block.
437
The member ‘<name>’ already has an NV implementation
[NCC#437]
Each member of a profile can be implemented by a network variable
in the device's functional block declaration, but the member can only
have one implementation. See the chapter discussing the use of
functional blocks in the Neuron C Programmer's Guide.
438
The name ‘<name>’ is not a member of the FPT ‘<FPT-name>’
[NCC#438]
An implements statement appears in the member list of an fblock
declaration, and the member name (which follows the keyword
implements) does not exist in the FPT record. The FPT record is
read from the FPT resource file. Use the NodeBuilder Resource
Editor to examine the list of members for the FPT, and check the
spelling of the member name.
If you are trying to implement a custom member that is not in the
FPT record, you may use the implementation_specific keyword to
accomplish that. See the Neuron C Reference Guide for more details.
439
The FPT ‘<FPT-name>’ specifies that NV member ‘<name>’
must be implemented [NCC#439]
Network variable members of the FPT are each marked as either
mandatory or optional. All mandatory members must have an
implementation, as declared using the implements statement in the
member list in the fblock declaration.
440
441
The FPT specifies that the NV member must be ‘input’
[NCC#440]
The FPT specifies that the NV member must be ‘output’
[NCC#441]
Network variable members of the FPT are each marked as either
input or output. The network variables that are used to implement
the FPT members must match the specification in the FPT record for
that member. Check the declared network variable direction.