5/24/2025 6:24:44 AM
|
|
slxdeveloper.com Community Forums |
|
|
|
The Forums on slxdeveloper.com are now retired. The forum archive will remain available for the time being. Thank you for your participation on slxdeveloper.com!
Forum to discuss the use of the SalesLogix Web Platform, Client and Customer Portals, and the Application Architect (For version 7.2 and higher only). View the code of conduct for posting guidelines.
|
|
|
|
Custom Entity on Customer Portal - How to filter group results
Posted: 28 Nov 07 3:34 PM
|
This is how they do it for the ticket:
if (this.m_Entity == "TICKET") { string str20 = ""; WebPortalUserService service2 = ApplicationContext.Current.Services.Get() as WebPortalUserService; if (service2 != null) { str20 = service2.GetPortalUser().Contact.Account.Id.ToString(); if (builder8.Length > 0) { builder8.AppendFormat(" AND {0}.ACCOUNTID = '{1}'", FindAlias("TICKET", str18), str20); } else { builder8.AppendFormat(" {0}.ACCOUNTID = '{1}'", FindAlias("TICKET", str18), str20); } } }
Are we SOL for other entities? |
|
|
|
You can
subscribe to receive a daily forum digest in your
user profile. View the site code
of conduct for posting guidelines.
Forum RSS Feed - Subscribe to the forum RSS feed to keep on top of the latest forum activity!
|
|
|
|
|
|
|
|