Currently when technicians attempt to create their own service work orders from the Work Order Dashboard they are required to know the customer name. It would be ideal if our technicians could easily perform a search for service sites and once selected the customer information would automatically populate. There are a lot of Customer Names that do not necessarily make sense for our technicians since the are ofter property managment LLC's.
Company | Beckwith Electronic Systems, LLC |
Job Title / Role | Service Manager |
I need it... | Yesterday...Come on already |
Dear Viewpoint Suggestion Box contributor;
We at Viewpoint sincerely thank you for your contribution to Suggestion Box on how we can improve Viewpoint products. While we can’t do everything at once, we rely upon your feedback to help guide the prioritization of our product improvements, and Suggestion Box is a critical tool for us to understand and prioritize our customers’ needs.
Viewpoint reviews Suggestion Box regularly for all of our products and updates statuses, adds comments, and performs various house-keeping (including deleting) as needed to ensure that Suggestion Box is maintained as a productive environment for product enhancements requests.
© 2024 Trimble Inc. All Rights Reserved. Viewpoint®, Vista™, Spectrum®, ProContractor™, Jobpac Connect™, Viewpoint Team™, Viewpoint Analytics™, Viewpoint Field View™, Viewpoint Estimating™, Viewpoint For Projects™, Viewpoint HR Management™, Viewpoint Field Management™, Viewpoint Financial Controls™, Vista Field Service™, Spectrum Service Tech™, ViewpointOne™, ProjectSight® and Trimble Construction One™ are trademarks or registered trademarks of Trimble Inc. or its affiliates in the United States and other countries. Other names and brands may be claimed as the property of others.
Brent,
It's possible to edit the lookup SMGetCustomers in SQL (see below) to add the site names so that the Techs can lookup by site name. This is not supported by Viewpoint so you need to have a backup of the original SQL in case of issues and the customization will need to be reapplied after every portal update, but can be beneficial if this is a big issue.
Kevin Halme | Constructive Tech Solutions
select kSMCustomer.SMCustomerID, (kARCM.Name + isnull(' - ' + kSMServiceSite.Description,'') ) as CustomerName, kARCM.Customer
from kSMCustomer
inner join kARCM on kSMCustomer.CustGroup = kARCM.CustGroup and kSMCustomer.Customer = kARCM.Customer
LEFT OUTER JOIN kSMServiceSite on kSMServiceSite.CustGroup = kARCM.CustGroup AND kSMServiceSite.Customer = kARCM.Customer
where kSMCustomer.SMCo = @SMCo and (1 = CASE WHEN @IncludeInactive = 1 THEN 1 WHEN @IncludeInactive = 0 and kSMCustomer.Active = 'Y' THEN 1 ELSE 0 END)
ORDER BY CustomerName asc