Help Card on Technician view
Hi, Is it possible to add a technicians version of the Help Card that is displayed on the Requester form view, to the Technician form view, maybe as an optional config, or that you can hide/collapse for those businesses that wouldn't use it. I think it would be helpful to give additional advice to technician while logging up a call. To give an example: New Mobile phone request. On the Requester version we explain the conditions that need to be met before a new mobile to be approved. It would
Is it possible to restrict access to tickets to a specific group?
Good day, I'm looking at creating a group related to a security function and would like to restrict access to the tickets assigned to that group. Is there a way to make it so only members of that support group can see tickets? Thank you, Mike Taylor
How to copy or make a duplicate of an existing report?
Is there a way to copy or make a duplicate for an existing report? This is very helpful since we can save time when creating multiple reports with only a few filter difference.
How to setup Remote asset scan in SD+
Hello, I would like to use our Remote Office distribution servers to scan their LAN, i know that there is a distributed asset scan option, but how in the world do i set it up? I have the Agent installed on one of the Distribution Servers, but i do not see how to set it up as a remote scanning server. Any help would be greatly appreciated
API V3 - Module provided in the request is not supported.
Hi everybody, I'm trying to use the API V3 following this guide: http://ui.servicedeskplus.com/APIDocs3/index.html#view-request However I'm getting the follow message: I would like help to understanding what I'm doing wrong because right now I was not able to figure out what is happening wrong. I'm using the version 9.3 Build 9320. Extra info: I tried to access the API with Python, but it returned the same message. My Python request: response = requests.post('url/api/v3/requests', headers={'Authtoken':
get all requests for one technician
Hi, How to get list of "open" requests, that already assigned to a specific technician? If i use https://servicedesk/api/v3/requests, its show me all unassigned requests. Thanks
Attach receipt
Is it possible to attach receipts to an asset?
Field rule on field change "Technician" not working when using Pick up
Hi, I don't know if it's a bug or not but I created a field rule as in the image: the rule only works if the field Technician is changed by using the "Assign" button. If I use "Pick up" the rule doesn't work even if the field Technician has changed
Make a picklist selection to be selct all that apply?
I have created multiple pick lists for a specific service request form and and have been informed by the business unit that this field needs to be select all that apply and not just a single pick. Does anyone know if this is possible.
Asset Management - report to get the list of workstations that do not have agent installed on them
SELECT MAX(workstation.WORKSTATIONNAME) "Workstation Name",
MAX(net.IPADDRESS) "IP Address",
MAX(aaov.NAME) "Site",
MAX(aaaUser.FIRST_NAME) "User",
MAX(workstation.LOGGEDUSER) "Last Logged In User",
LONGTODATE(MAX(LASTSUCCESSAUDIT.AUDITTIME)) "Last Success scan" FROM SystemInfo workstation
LEFT JOIN NetworkInfo net ON workstation.WORKSTATIONID=net.WORKSTATIONID
LEFT JOIN Resources RESOURCE ON workstation.WORKSTATIONID=resource.RESOURCEID
LEFT JOIN ResourceOwner
Asset Management - report to get the list of inventoried workstations/servers along with their details
SELECT Max(workstation.workstationname) "Workstation", Max(workstation.model) "Model", Max(workstation.servicetag) "Service Tag", Max(state.displaystate) "Asset State", Max(osinfo.osname) "OS", Max(aaauser.first_name) "User", Max(deptDef.deptname) "Department", Max(aaov.NAME) "Site" FROM systeminfo workstation LEFT JOIN resources resource ON
Asset Management - report to fetch the list of detected workstations/servers along with their details
SELECT Max(workstation.workstationname) "Workstation", Max(workstation.model) "Model", Max(workstation.servicetag) "Service Tag", Max(state.displaystate) "Asset State", Max(osinfo.osname) "OS", Max(aaauser.first_name) "User", Max(deptDef.deptname) "Department", Max(aaov.NAME) "Site" FROM systeminfo workstation LEFT JOIN resources resource ON workstation.workstationid = resource.resourceid
Asset Management - report to find the last scanned time of assets and their scan status
SELECT resource.resourcename "Asset Name", Max(net.ipaddress) "IP Address", Longtodate(Max(LASTSUCCESSAUDIT.audittime)) "Last success Scan Date", Longtodate(Max(audithistory.audittime)) "Last Scan Date", Max(audithistory.auditstatus) "Audit Status", Max(aaauser.first_name) "User" FROM resources resource LEFT JOIN resourceowner rOwner ON resource.resourceid
Asset Management - report to find the user accounts of workstations
SELECT workstation.workstationname "Workstation", ua.username "User Name", ua.domainname "Domain Name", ua.description "Description", ua.status "Status", state.displaystate "Asset State" FROM usersaccountinfo ua LEFT JOIN systeminfo workstation ON ua.workstationid = workstation.workstationid LEFT JOIN resources resource ON workstation.workstationid = resource.resourceid
Change Management - count of change requests based on template
SELECT ct.NAME "Template", Count(chdt.changeid) "count" FROM changedetails chdt LEFT JOIN changetemplate ct ON chdt.templateid=ct.templateid WHERE chdt.createdtime >= <from_lastmonth> AND chdt.createdtime <= <to_lastmonth> GROUP BY ct.NAME ORDER BY 1 Click this link to navigate to the next report.
Change Management - report on change roles associated to users on a given change
PGSQL: SELECT chdt.changeid "Change ID", chdt.title "Title", orgaaa.first_name "Change Requester", ownaaa.first_name "Change Owner", cmDef.first_name "Change Manager", stageDef.displayname
Change Management - report on change stages history
SELECT chdt.changeid "Change ID", chdt.title "Title", orgaaa.first_name "Requested by", ownaaa.first_name "Technician", Longtodate(chdt.createdtime) "Created Time", Longtodate(chdt.scheduledstarttime) "Scheduled Start Time", Longtodate(chdt.scheduledendtime) "Scheduled End", Longtodate(chdt.completedtime) "Completed Time", stagedef.NAME
Change Management - changes that have assets involved
SELECT chdt.changeid AS "Change ID", chdt.title AS "Title", orgaaa.first_name AS "Change Requester", ownaaa.first_name AS "Change Owner", catadef.categoryname AS "Category", subcatadef.NAME AS "Subcategory", itemdef1.NAME AS "Item", res.ciname "Asset" FROM changedetails chdt LEFT JOIN sduser orgsd ON chdt.initiatorid = orgsd.userid LEFT JOIN aaauser orgaaa ON orgsd.userid = orgaaa.user_id
Change Management - changes that were caused by incidents
SELECT chdt.changeid "Change ID", chdt.title "Change Title", Longtodate(chdt.createdtime) "Change Created Time", Longtodate(chdt.completedtime) "Change Completed Time", orgaaa.first_name "Change Requested by", ownaaa.first_name "Change Technician", stagedef.NAME "Change Status", wo.workorderid "Request ID", aau.first_name
Change Management - incidents caused by change
SELECT chdt.changeid "Change ID", chdt.title "Change Title", Longtodate(chdt.createdtime) "Change Created Time", Longtodate(chdt.completedtime) "Change Completed Time", orgaaa.first_name "Change Requested by", ownaaa.first_name "Change Technician", stagedef.NAME "Change Status", wo.workorderid "Request ID", aau.first_name
Configuration Management - department head
This report returns the complete list of Department and the department head configured in the application SELECT dept.deptid "Department ID",
dept.deptname "Department Name",
dept.phoneno "Phone No",
dept.fax "Fax",
sdorg.name "Site Name",
aa.first_name "Department Head",
dept.deptdesc "Department Description",
da.first_name "Approver" FROM departmentdefinition dept
LEFT JOIN sduser sd ON sd.userid=dept.deptheadid
LEFT JOIN aaauser aa ON aa.user_id=sd.userid
LEFT
Purge CMDB
Hi We use ServiceDesk Plus and have been using it for a number of years. The CMDB has been abandoned for some years now and contains a lot of legacy data. I would like to start to use the CMDB again but dealing with all the old data will be a little bit complicated. Does anyone know if it is possible to purge the CMDB to start from scratch? Thanks JB
SDP 10013 - Problem with restore db
Hi. I have the problem. I need to move servicedesk DB to another MS SQL server and the problme is when I'm trying to restore db steps 1. Back up your application. 2. Create a new database using /changeDBServer.bat. 3. Start and stop the application once. 4. Restore your application into the new database. But during resrtore whe windows disapire after few sec. And I can't back to old server error occured OPEN_MASTER_KEY_FAILED I can't find any log files. so I can't check error why i can't restore
Field clearing is a resource.
Hi there. If I add an asset connection to users (requester), then when he creates an order, the asset is automatically added to the appropriate field - the resource. Is it possible to create a rule so that when creating an application the field - resources are cleared?
Auto populate Asset Info
I'm building several templates within ServiceDesk/ServiceCatalog. These will center around our Employee's moving from one physical location to another or to another Department altogether. Is there a Field & Form Rule I can create that will auto-populate the Asset field with the users assets? We will be using the On-Behalf-Of field for these forms since the submitters will almost always be the same group of people. We're on build 10508 and in an MSSQL environment.
Migrating to sql failed login
Hello, I'm installing ServiceDesk Enterprise to a customer site. I try to migrate from postgres to SQL but when i testing it the connection failed with "login failed" error I tested the username password and it works, it is the same that i used to migrate desktop Central yesterday and it work (same SQL Istances, different DB name). I see that request a MasterKey password what is that?
Restrict a service category to specific group(s) of requesters
Is there a way to specify which groups of requester can see a specific service category? For example, I have a service category that is relevant only to the HR department. I selected the HR group from the Department list in the service category properties, but it is still visible to other users.
Unable to run reIndexData.bat
After migrating from Postgre to MSSQL database we've had issues with the search results. We've since upgraded to ServiceDesk Plus 10.5 Build 10504 running on Windows Server 2016. Our MSSQL database runs on a separate server. The following command has been run from an administrator elevated CMD window: I've gone to reindex the database with: C:\ManageEngine\ServiceDesk\bin\reIndexData.bat Allmodule but I get the following error: ******************************************************* * SEVERE : Server
[SD-78981] Search Not Working on SDP 10.5 Build 10500
I recently upgraded to Build 10500 and noticing search is not returning all results. I tried re-indexing using reIndexData.bat AllModule > 1.txt and it's not working. Here is the content of 1.txt file. Exception while checking server status.Connection refused: connect stopping DB Server >>>>> false I have setup up brand new server and it's also behaving the exactly same way. If anyone can point me to the right direction that would be great help. Thanks!
Views in Solutions
Hi there, did not find any info about this "issue" here. Just noticed that the counts on views in the solutions are all 0, even when someone viewed a solution. Seems to be since April 2018. Can someone explain this? Thanks Florian
[SD-80226] SECURITY Failure: https://Your_SDP_Server/workorder/RequesterDialog.jsp?woID=XXXXXX
Hello, A log-in user can grab all the requesters details registered on the portal either they are in the same dapartment or in other companies!!!!! using the url: https://Your_SDP_Server/workorder/RequesterDialog.jsp?woID=XXXXXX An iteration on the ID allow the user to collect VERY SENSITIVE data! We urge you to fix it asap. Regards, Vincent
( SD-72081 ) Survey issue
Hello, Have customized my survey in spanish language and trying to change "Attend Survey" to spanish but I am not able to do it. Could you please help me out?. Attached you can see my problem. Thanks in advance.
IT analytics in 90 seconds: Leveraging asset change history to prepare for audits
Monitor every aspect of asset changes to ensure compliance during audits using Analytics Plus reports. If you're not already using Analytics Plus, download your free 30-day trial today.
Views
How can we remove some of the default views in Service Desk? I have attached an image of the views i want to remove. We have created views for our technicians and don't want all these default views cluttering up the interface.
How to select CAB for change management based on Change template
I need a script to select CAB based on change template :) Regards.
Ticket Pop-up Message
Hi, For some of my software or hardware tickets i would like to have a pop-up message to the users that the software or hardware will require approval and require a business case. I saw something to this effect in a video, but it didn't go into any description of what needs to be done to get it to work. Is there an action script i can enter in the "on form load" event that will pop up a note for the user? Thanks.
API get value custom fields
I create custom fields on new request template in service desk this is dropdown list field as below image I want to integrate with service desk from my custom application but I face problem to get values for this custom field and assets field using API all API found it return values (category,subcategory,item, ...)
Integrate Service desk with Alexa
Need details regarding Integration of Service desk Plus with Alexa.
Is there a way to associate contract with incident/service request?
I wonder if there is there a way to associate contract with incident/service request, even if it is indirect?
Extracting Data from ServiceDesk Plus
We've got a very old install of ServiceDesk Plus which has now accumulated so many issues that we have decided a complete fresh start is best. Among the many issues we have are such things as - stuck at build 9400 (upgrade crashes), lots of DB errors, pulls in emails whether mail fetching is running or not. I'd like to be able to migrate some calls and solutions from the old system to the new, while there's an obvious import function there doesn't seem to be any corresponding export function. I suppose
Next Page