PurchFormletterParmData::chooseLinesServer Method [AX 2012]

Creates posting data.

NoteNote

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


  Microsoft Dynamics AX 2012 R3
          server public static container chooseLinesServer(
            container _purchFormletterContractPacked, 
            boolean _append, 
           [boolean _reuseParmUpdate, 
            boolean _onlyCreateParmUpdate, 
            boolean _executeLateSelection, 
            boolean _canShowDialogs])

  Microsoft Dynamics AX 2012 R2 (SYS)
          server public static container chooseLinesServer(
            container _purchFormletterContractPacked, 
            boolean _append, 
           [boolean _reuseParmUpdate, 
            boolean _onlyCreateParmUpdate, 
            boolean _executeLateSelection, 
            boolean _canShowDialogs])

  Microsoft Dynamics AX 2012 Feature Pack (SYS)
          server public static container chooseLinesServer(
            container _purchFormletterContractPacked, 
            boolean _append, 
           [boolean _reuseParmUpdate, 
            boolean _onlyCreateParmUpdate, 
            boolean _executeLateSelection])

  Microsoft Dynamics AX 2012 (FPK)
          server public static container chooseLinesServer(
            container _purchFormletterContractPacked, 
            boolean _append, 
           [boolean _reuseParmUpdate, 
            boolean _onlyCreateParmUpdate, 
            boolean _executeLateSelection])

  Microsoft Dynamics AX 2012 (SYS)
          server public static container chooseLinesServer(
            container _purchFormletterContractPacked, 
            boolean _append, 
           [boolean _reuseParmUpdate, 
            boolean _onlyCreateParmUpdate, 
            boolean _executeLateSelection])

Run On

Server

Parameters

_purchFormletterContractPacked
Type: container
A packed version of a PurchFormletterContract class.
_append
Type: boolean
A boolean value determining whether existing lines should be deleted.
_reuseParmUpdate
Type: boolean
A boolean value determining whether to reuse any exising PurchParmUpdate record; optional.
_onlyCreateParmUpdate
Type: boolean
A boolean value determining whether it is only the PurchParmUpdate record that should be created; optional.
_executeLateSelection
Type: boolean
A boolean value determining whether to execute the late selection Query; optional.
_canShowDialogs
Type: boolean
A boolean value determining whether dialogs will be shown as part of this execution; optional.

Return Value

Type: container
A container with the result of the data creation; optional.

Passing false in the _canShowDialogs parameter forces the code to be executed in IL.

Show: