cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
atul557
Engaged Sweeper III
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
1 ACCEPTED SOLUTION
ProfileNL
Engaged Sweeper III
1. Create a custom field

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.

View solution in original post

2 REPLIES 2
ProfileNL
Engaged Sweeper III
1. Create a custom field

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.
atul557
Engaged Sweeper III
Could anyone assist us for the query raised