Share via


TaxReport770Writer_IT.writeNonPosAN Method [AX 2012]

Writes _value into zero or more of the non-positional text fields.

Syntax

Note

The syntax of this method varies based on the version of Microsoft Dynamics AX that you are using.

  Microsoft Dynamics AX 2012 R3
          public int writeNonPosAN(str _code, str _value)

  Microsoft Dynamics AX 2012 R2 (SYS)
          public void writeNonPosAN(str _code, str _value)

  Microsoft Dynamics AX 2012 Feature Pack (SYS)
          public void writeNonPosAN(str _code, str _value)

  Microsoft Dynamics AX 2012 (FPK)
          public void writeNonPosAN(str _code, str _value)

  Microsoft Dynamics AX 2012 (SYS)
          public void writeNonPosAN(str _code, str _value)

Run On

Called

Parameters

  • _code
    Type: str
    The field code.
  • _value
    Type: str
    The field value.

Return Value

Type: int
The number of non-positional field that were written.

Remarks

If _value does not fit into 16 characters, the remaining part of _value is split into pieces of 15 characters.

Each piece is appended with plus ('+') symbol and written into additional non-positional field.

All inserted fields have the same field ID.

See Also

Reference

TaxReport770Writer_IT Class