Associate Service Request -> You are not authorized to perform this action.
In ServiceDesk Plus, purchase orders can be created but cannot be associated with a service request. "Associate Service Requests" is in the Actions drop-down menu but attempts to use it result in "You are not authorized to perform this action." My account is an SDAdmin and a purchaser. Have I made a simple mistake in configuring Purchasing? Our version of ServiceDesk Plus is 10.0 Build 10016
Migrate postgresql to MS SQL
Dear Manage Enginee, Could you explain, how to migrate ServiceDeskPlus from PostgreSQL(local install) to MS SQL(remote install)? I need to move sql db to MS SQL. ServiceDesk version is 8.2.0 Build 8212 Best regards, Ivica
Automatic sending of tickets to the sender
I am testing the servicedesk tool, but I am stuck in the opening of tickets by email. I would like to know if it is possible that an automatic notification is sent to the person who sends the mail (sender), I see that he sends the notification to the emails in cc, but not to the sender. Thank you
Unable to modify any template
We are having a big issue from a week, we are unable to modify any incident templates because of this message: The following fields in the Layout richiedente do not have Requester Can Set Permission site we had already open a ticket to the official support, they said to wait for the 10509 release who should have solve the problem, but unfortunately it doesn't. We are in a very big problem with our customer, cannot do their requests. The problem seems to be on the SITE field, permission or something
Transfer Service Catalog or Incident Template from Test Server
We have a Test Server that matches our production environment. We initially thought that the test environment would be good for creating any new fields/templates we may need on production. Before I get in too deep on creating them though I'd like to find out how to move them to the production environment. This would include templates for Incident Request and templates under Service Catalog.
[SOLVED] Apply Rules to Tech Closing ticket
I want to Require work logs be created for each ticket before they are closed. However I don't want this to apply to all techs. Is there a way to do this?
Stuck on build 10014
I use the free version of Manage Engine ServiceDeskPlus and I seem to be stuck on build 10014. After applying any future update the service desk fails to start. I've tried running the run.bat via elevated cmd prompt, which gives me the attached error. If I manually start the ServiceDesk service, it starts for a minute or 2 then stops. I've reverted to the VM Snapshot I took before attempting the update. Any help would be great. TYIA
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.
Next Page