• Share
    • Twitter
    • LinkedIn
    • Facebook
    • Email
  • Feedback
  • Edit
Show / Hide Table of Contents

"erpproductcategory" MDO List

Some tooltip text!
• 1 minute to read
 • 1 minute to read

Dynamic provider that dispatches Quote Connector lists, based on QuoteAlternativeId or SaleId and "Erp"+<list name>. Consider using "QM_"+<sale_id>+<list name> instead if you can.

See the remarks on for an overview of Quote List dispatching, which is fairly complex.

Implemented by the QuoteListsByIdProvider class. The name of the MDO list is 'erpproductcategory'.

Additional Attributes

Description Name Example Value
Quote alternative implies sale id, which tells us which quote connection to get QuoteAlternativeId 1234
Sale to get quotes from which tells us which quote connection to get SaleId 1234

Separator: &

Sample Request

GET /api/v1/MDOList/erpproductcategory
Authorization: Basic dGplMDpUamUw
Accept: application/json; charset=utf-8
Accept-Language: *

Sample Code

var listProvider = SuperOffice.CRM.Lists.SoListProviderFactory.Create("erpproductcategory", forceFlatList: true);
foreach (var item in listProvider.RootItems) {
    Console.WriteLine("{0} {1} {2} {3}", 
         item.Id, ResourceManager.ParseInlineResources(item.Name), item.StyleHint, item.ExtraInfo);
}

Sample Output

Id Name StyleHint ExtraInfo
2 Example

Related MDO Lists

  • "erpproductcategoryheadings"
  • "erpproductcategoryheadingswithallitem"
  • "erpproductcategoryheadingswithallitemwithnoselection"
  • "erpproductcategoryheadingswithnoselection"
  • "erpproductcategorywithallitem"
  • "erpproductcategorywithallitemwithnoselection"
  • "erpproductcategorywithnoselection"
© SuperOffice. All rights reserved.
SuperOffice |  Community |  Release Notes |  Privacy |  Site feedback |  Search Docs |  About Docs |  Contribute |  Back to top