Retrieve a payment made via AC Calls: xct_spACGetARPayment


Namespace: ctAC
Assembly: ctAC (in ctAC.dll)

Syntax

Visual Basic (Declaration)
<WebMethodAttribute(Description := "Retrieve a payment made via AC", MessageName := "getARPayment"), _
 SoapHeaderAttribute("myCTACHeader", Direction := SoapHeaderDirection.In)>

Public Function getARPayment( _ 
   ByVal tmpCustID As String,  _ 
   ByVal tmpRefNbr As String,  _ 
   ByVal tmpBatNbr As String _ 
) As DataSet
C#
[WebMethodAttribute(Description = "Retrieve a payment made via AC", MessageName = "getARPayment")]
[SoapHeaderAttribute("myCTACHeader", Direction = SoapHeaderDirection.In)]
public DataSet getARPayment(
   string tmpCustID,
   string tmpRefNbr,
   string tmpBatNbr
)
C++
[WebMethodAttribute(Description = L"Retrieve a payment made via AC", MessageName = L"getARPayment")]
[SoapHeaderAttribute(L"myCTACHeader", Direction = SoapHeaderDirection::In)]
public:
 DataSet getARPayment(
   String tmpCustID,
   String tmpRefNbr,
   String tmpBatNbr
) sealed 
J#
/** @attribute WebMethodAttribute(Description = "Retrieve a payment made via AC", MessageName = "getARPayment") */
/** @attribute SoapHeaderAttribute("myCTACHeader", Direction = SoapHeaderDirection.In) */
public DataSet getARPayment(
   string tmpCustID,
   string tmpRefNbr,
   string tmpBatNbr
)
JScript
public 

   WebMethodAttribute(Description = "Retrieve a payment made via AC", MessageName = "getARPayment")
   SoapHeaderAttribute("myCTACHeader", Direction = SoapHeaderDirection.In)
function getARPayment(
   tmpCustID : String,
   tmpRefNbr : String,
   tmpBatNbr : String
) : DataSet

Parameters

tmpCustID
tmpRefNbr
tmpBatNbr

See Also