We have many field employees transferring V&E and tools via the portal, and the activity level is high. To provide an easily accessible audit trail, pass the logged in user info to the Memo/Notes fields instead of "Transfer by Keystyle." Looking for something like the portal setting for Timecards: Create Portal Batches as the current user (instead of service account).
Company | FHG, Inc. |
Job Title / Role | Business Process 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.
Hey Michael - We REALLY need this. No way to track who is making transfer entries. Makes it a real challenge for accountability and charge back of "missing" tools. We have the code - see Thomas Green's comment below.
Michael, we have a piece of code that accomplishes this if you'd be open to incorporating it. In the [dbo].[EMProcessLocationTransfer] stored procedure, we'd just need the Notes selection (line 96 in the stored proc.) to be updated from:
,(ISNULL(@TransferNotes, '')
to this bit of code:
,'Transferred by: ' + CONVERT(varchar(10), EmplInfo.Employee) + '-' + EmplInfo.UserFullName + ISNULL(': ' + @TransferNotes, '')
Even simpler, Michael. The date and time are on the transfer transaction. Just need the username, so we have accountability around the transfer. Thanks!
Hi Melissa,
Do you see this message captures to be something as simple as "Melissa transferred on 8/21/18."