
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-01-2016 02:27 PM
Hi Team,
We need to add additional details like desk location, division , tower in the custom fields of the monitors which are scanned by LS.
And this activity needs to be done in bulk.
So request to assist further.
Regards,
Atul S
We need to add additional details like desk location, division , tower in the custom fields of the monitors which are scanned by LS.
And this activity needs to be done in bulk.
So request to assist further.
Regards,
Atul S
Solved! Go to Solution.
Labels:
- Labels:
-
General Discussion
1 ACCEPTED SOLUTION

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-13-2016 03:01 PM
1. Create a custom field
2. Edit the following SQL query to you're preferences
As you can see, it isnt hard to change the custom fields in bulk. You just need a little bit of SQL knowledge and youre good to go.
2. Edit the following SQL query to you're preferences
Update tblAssetCustom
Set Custom1 = 'Location X' -- Change custom1 to the custom field you want to edit.
Where AssetName Like '%Assetname%' -- Change %AssetName% to you're preferred Assetname
As you can see, it isnt hard to change the custom fields in bulk. You just need a little bit of SQL knowledge and youre good to go.
2 REPLIES 2

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-13-2016 03:01 PM
1. Create a custom field
2. Edit the following SQL query to you're preferences
As you can see, it isnt hard to change the custom fields in bulk. You just need a little bit of SQL knowledge and youre good to go.
2. Edit the following SQL query to you're preferences
Update tblAssetCustom
Set Custom1 = 'Location X' -- Change custom1 to the custom field you want to edit.
Where AssetName Like '%Assetname%' -- Change %AssetName% to you're preferred Assetname
As you can see, it isnt hard to change the custom fields in bulk. You just need a little bit of SQL knowledge and youre good to go.

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-13-2016 02:39 PM
Could anyone assist us for the query raised
