RetailTransactionService::getCustomerOrderList Method [AX 2012]

Gets the customer order details for the given customer.

NoteNote

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


  Microsoft Dynamics AX 2012 R3
          client server public static container getCustomerOrderList(
            CustAccount _custAccount, 
           [str _startDate, 
            str _endDate, 
            int _resultsMaxCount, 
            boolean _includeQuotes])

  Microsoft Dynamics AX 2012 R2 (SYS)
          client server public static container getCustomerOrderList(
            CustAccount _custAccount, 
           [str _startDate, 
            str _endDate, 
            int _resultsMaxCount])

  Microsoft Dynamics AX 2012 Feature Pack (SYS)
          client server public static container getCustomerOrderList(CustAccount _custAccount)

Run On

Called

Parameters

_custAccount
Type: CustAccount Extended Data Type
Customer account number.
_startDate
Type: str
_endDate
Type: str
_resultsMaxCount
Type: int
_includeQuotes
Type: boolean

Return Value

Type: container
A container having the customer order details for the given customer.
Show: