RMAs
Summary
The RMAs
loop lets you display various information about specific RMA.
Examples
Basic usage
Notice the use of @item.GetValue to get data from the loop variable.
If you just write @GetValue, the data will be taken from outside the loop.
Similarly, you have to use @item.GetLoop to use loops inside a loop.
Check if the loop exists
Example of usage
The following general example illustrates how to use a loop construct.
Check if the loop exists
Available tags
Ecom:CustomerCenter.Paging.EvenRowClass
Returns event row class of the paging/
@GetString("Ecom:CustomerCenter.Paging.EvenRowClass")
Ecom:CustomerCenter.RMA.AddCommentURL
Returns URL to add comment to the RMA.
@GetString("Ecom:CustomerCenter.RMA.AddCommentURL")
Ecom:CustomerCenter.RMA.AddURL
Returns URL to add new RMA.
@GetString("Ecom:CustomerCenter.RMA.AddURL")
Ecom:CustomerCenter.RMA.HasRMAOrderLines
Returns True if the RMA has order lines.
@GetString("Ecom:CustomerCenter.RMA.HasRMAOrderLines")
Ecom:RMA.Customer.AccessUserID
Returns value of AccessUserID field the RMA's customer.
@GetString("Ecom:RMA.Customer.AccessUserID")
Ecom:RMA.Customer.AccessUserUserName
Returns value of AccessUserUserName field for the RMA's customer.
@GetString("Ecom:RMA.Customer.AccessUserUserName")
Ecom:RMA.Customer.Address
Returns value of Address field for the RMA's customer, based on corresponding field in User Management module.
@GetString("Ecom:RMA.Customer.Address")
Ecom:RMA.Customer.Address2
Returns value of Address2 field for the RMA's customer, based on corresponding field in User Management module.
@GetString("Ecom:RMA.Customer.Address2")
Ecom:RMA.Customer.Cell
Returns value of Cell Phone number field for the RMA's customer, based on corresponding field in User Management module.
@GetString("Ecom:RMA.Customer.Cell")
Ecom:RMA.Customer.City
Returns value of City field for the RMA's customer, based on corresponding field in User Management module.
@GetString("Ecom:RMA.Customer.City")
Ecom:RMA.Customer.Company
Returns value of Company field for the RMA's customer, based on corresponding field in User Management module.
@GetString("Ecom:RMA.Customer.Company")
Ecom:RMA.Customer.Country
Returns value of Country field for the RMA's customer, based on corresponding field in User Management module.
@GetString("Ecom:RMA.Customer.Country")
Ecom:RMA.Customer.EAN
Returns value of EAN field for the RMA's customer, based on corresponding field in User Management module
@GetString("Ecom:RMA.Customer.EAN")
Ecom:RMA.Customer.Email
Returns value of E-mail address field for the RMA's customer, based on corresponding field in User Management module
@GetString("Ecom:RMA.Customer.Email")
Ecom:RMA.Customer.Fax
Returns value of Fax field for the RMA's customer, based on corresponding field in User Management module.
@GetString("Ecom:RMA.Customer.Fax")
Ecom:RMA.Customer.Name
Returns value of Name field for the RMA's customer, based on corresponding field in User Management module
@GetString("Ecom:RMA.Customer.Name")
Ecom:RMA.Customer.Number
Returns value of Number field for the RMA's customer, based on corresponding field in User Management module.
@GetString("Ecom:RMA.Customer.Number")
Ecom:RMA.Customer.Phone
Returns value of Phone field for the RMA's customer, based on corresponding field in User Management module.
@GetString("Ecom:RMA.Customer.Phone")
Ecom:RMA.Customer.RefID
Returns value of RefID field for the RMA's customer, based on corresponding field in User Management module.
@GetString("Ecom:RMA.Customer.RefID")
Ecom:RMA.Customer.Region
Returns value of Region field for the RMA's customer, based on corresponding field in User Management module.
@GetString("Ecom:RMA.Customer.Region")
Ecom:RMA.Customer.VatRegNumber
Returns value of VatRegNumber field for the RMA's customer, based on corresponding field in User Management module.
@GetString("Ecom:RMA.Customer.VatRegNumber")
Ecom:RMA.Customer.Zip
Returns value of ZIP field for the RMA's customer, based on corresponding field in User Management module.
@GetString("Ecom:RMA.Customer.Zip")
Ecom:RMA.Delivery.Address
Returns value of Address field for the RMA's delivery, can be based on corresponding field in User Management module.
@GetString("Ecom:RMA.Delivery.Address")
Ecom:RMA.Delivery.Address2
Returns value of Address2 field for the RMA's delivery, can be based on corresponding field in User Management module.
@GetString("Ecom:RMA.Delivery.Address2")
Ecom:RMA.Delivery.Cell
Returns value of Cell field for the RMA's delivery, can be based on corresponding field in User Management module.
@GetString("Ecom:RMA.Delivery.Cell")
Ecom:RMA.Delivery.City
Returns value of City field for the RMA's delivery, can be based on corresponding field in User Management module.
@GetString("Ecom:RMA.Delivery.City")
Ecom:RMA.Delivery.Company
Returns value of Company field for the RMA's delivery, can be based on corresponding field in User Management module.
@GetString("Ecom:RMA.Delivery.Company")
Ecom:RMA.Delivery.Country
Returns value of Country field for the RMA's delivery, can be based on corresponding field in User Management module.
@GetString("Ecom:RMA.Delivery.Country")
Ecom:RMA.Delivery.Email
Returns value of E-mail field for the RMA's delivery, can be based on corresponding field in User Management module.
@GetString("Ecom:RMA.Delivery.Email")
Ecom:RMA.Delivery.Fax
Returns value of Fax field for the RMA's delivery, can be based on corresponding field in User Management module.
@GetString("Ecom:RMA.Delivery.Fax")
Ecom:RMA.Delivery.Name
Returns value of Name field for the RMA's delivery, can be based on corresponding field in User Management module.
@GetString("Ecom:RMA.Delivery.Name")
Ecom:RMA.Delivery.Phone
Returns value of Phone field for the RMA's delivery, can be based on corresponding field in User Management module.
@GetString("Ecom:RMA.Delivery.Phone")
Ecom:RMA.Delivery.Region
Returns value of Region field for the RMA's delivery, can be based on corresponding field in User Management module.
@GetString("Ecom:RMA.Delivery.Region")
Ecom:RMA.Delivery.Zip
Returns value of ZIP field for the RMA's delivery, can be based on corresponding field in User Management module.
@GetString("Ecom:RMA.Delivery.Zip")
Available loops
RMAComments
The RMA Comments
loop lets you display various information about RMA's comment.
@foreach (LoopItem item in GetLoop("RMAComments")){ <p>@item.GetValue("TagName")</p> }
RMAOrderLines
The RMAOrderLines
loop lets you display various information about order line of an order the RMA's is based on.
@foreach (LoopItem item in GetLoop("RMAOrderLines")){ <p>@item.GetValue("TagName")</p> }