Quantcast
Channel: Support Portal
Viewing all 20315 articles
Browse latest View live

Re : Mail fetching and Exchange 2016

$
0
0
Hi Eric,

Good day !

We could not find any relevant traces from the logs you sent. However, the error displayed in the UI indicates that it is connectivity issue between ServiceDesk Plus server and Exchange server. Were you able to Telnet Exchange server from ServiceDesk Plus server ?

Also, could you please restart POP/IMAP protocol services on the Exchange and check if it resolves the issue. Verify if backend services for POP and IMAP is running. If the still persists, please generate the support file as mentioned below and send it to us for further analysis.

Steps to generate support file.

1. Click on the Admin tab --> Mail Server Settings --> Click Stop Fetching.
2. Click on save . If there is any error message send us a screen shot of the same.
3. Click Start Fetching.
4. Go to Community tab -> Support file.

Send us the Support file which should help us further analyze the issue. Please raise this with our Support Team at support@servicedeskplus.com with this forum link. We will get in touch with you to get this issue fixed.


Best Regards,
Dinesh Bhaskaran
ManageEngine ServiceDesk Plus | Asset Explorer

Re : Disallow requesters to reopen request by answering email

$
0
0
Jai, Thanks for replying on saturday ) and for explanations for workaround.

>1000 + 

cool :)

Yes, "native" Resolved status is much better , also because of useful releted settings such "resolution requariment on resoloved etc". I will wait the fix and try this script for now. 


Bad side of workaround - is that we must do it in every tempate

Re : Disallow requesters to reopen request by answering email

$
0
0
Vladmir, 

Thank you for your understanding. We will keep you posted about the progress on that. 

About the workaround, we do not have to recreate the rule on each template instead you can create once and copy it to other templates. Please click on the 'Actions' button to see the 'Copy rules' option. 

Jai Anand K
ServiceDesk Plus



Re : Timespent on Tasks

$
0
0
Zach, 

Below query will generate a consolidated report on tasks created across the modules along with the timespent. Check whether it helps, 

SELECT COALESCE(wtk.WORKORDERID , wo.workorderid) "Module ID", 'Request' "Module", CASE WHEN MAX(tk.TASKID) IS NOT NULL THEN MAX(wo2.TITLE) ELSE MAX(wo.TITLE) END "Title",max(ct.DESCRIPTION) "Time Spent Description", CAST(SUM(ct.TIMESPENT) AS FLOAT)/1000/3600 "Time Spent",dateadd(s,datediff(s,GETUTCDATE() ,getdate()) + (MAX(ct.TS_STARTTIME)/1000),'1970-01-01 00:00:00') "Time Spent Started Time", rctd.FIRST_NAME "Time Spent Technician" FROM ChargesTable ct
LEFT JOIN WorkOrderToCharge wotoc ON ct.CHARGEID=wotoc.CHARGEID
LEFT JOIN WorkOrder wo ON wotoc.WORKORDERID=wo.WORKORDERID
LEFT JOIN TaskToCharge tkc ON ct.CHARGEID=tkc.CHARGEID
LEFT JOIN TaskDetails tk ON tkc.TASKID=tk.TASKID
LEFT JOIN WorkorderToTaskDetails wtk ON tk.TASKID=wtk.TASKID
LEFT JOIN Workorder wo2 ON wtk.WORKORDERID=wo2.WORKORDERID
LEFT JOIN SDUser rcti ON ct.TECHNICIANID=rcti.USERID LEFT JOIN AaaUser rctd ON rcti.USERID=rctd.USER_ID
WHERE (wtk.WORKORDERID IS NOT NULL OR wo.workorderid IS NOT NULL) AND ct.TS_STARTTIME >= <from_yesterday> AND ct.TS_STARTTIME <= <to_yesterday> GROUP BY COALESCE(wtk.WORKORDERID , wo.workorderid), rctd.FIRST_NAME

UNION
SELECT COALESCE(ptk.PROBLEMID , pb.PROBLEMID) "Module ID",'Problem' "Module", CASE WHEN MAX(tk.TASKID) IS NOT NULL THEN MAX(pb2.TITLE) ELSE MAX(pb.TITLE) END "Title",max(ct.DESCRIPTION) "Time Spent Description", CAST(SUM(ct.TIMESPENT) AS FLOAT)/1000/3600 "Time Spent",dateadd(s,datediff(s,GETUTCDATE() ,getdate()) + (MAX(ct.TS_STARTTIME)/1000),'1970-01-01 00:00:00') "Time Spent Started Time",rctd.FIRST_NAME "Time Spent Technician" FROM ChargesTable ct
LEFT JOIN ProblemToCharge pbtoc ON ct.CHARGEID=pbtoc.CHARGEID
LEFT JOIN Problem pb ON pbtoc.PROBLEMID=pb.PROBLEMID
LEFT JOIN TaskToCharge tkc ON ct.CHARGEID=tkc.CHARGEID
LEFT JOIN  TaskDetails tk ON tkc.TASKID=tk.TASKID
LEFT JOIN ProblemToTaskDetails ptk ON tk.TASKID=ptk.TASKID
LEFT JOIN Problem pb2 ON ptk.PROBLEMID=pb2.PROBLEMID
LEFT JOIN SDUser rcti ON ct.TECHNICIANID=rcti.USERID LEFT JOIN AaaUser rctd ON rcti.USERID=rctd.USER_ID
WHERE (ptk.PROBLEMID IS NOT NULL OR pb.PROBLEMID IS NOT NULL) AND ct.TS_STARTTIME >= <from_yesterday> AND ct.TS_STARTTIME <= <to_yesterday> GROUP BY COALESCE(ptk.PROBLEMID , pb.PROBLEMID), rctd.FIRST_NAME

UNION
SELECT COALESCE(ctk.CHANGEID , ch.CHANGEID) "Module ID", 'Change' "Module",CASE WHEN MAX(tk.TASKID) IS NOT NULL THEN MAX(ch2.TITLE) ELSE MAX(ch.TITLE) END "Title",max(ct.DESCRIPTION) "Time Spent Description", CAST(SUM(ct.TIMESPENT) AS FLOAT)/1000/3600 "Time Spent",dateadd(s,datediff(s,GETUTCDATE() ,getdate()) + (MAX(ct.TS_STARTTIME)/1000),'1970-01-01 00:00:00') "Time Spent Started Time",rctd.FIRST_NAME "Time Spent Technician" FROM ChargesTable ct
LEFT JOIN ChangeToCharge chtoc ON ct.CHARGEID=chtoc.CHARGEID
LEFT JOIN ChangeDetails ch ON chtoc.CHANGEID=ch.CHANGEID
LEFT JOIN TaskToCharge tkc ON ct.CHARGEID=tkc.CHARGEID
LEFT JOIN  TaskDetails tk ON tkc.TASKID=tk.TASKID
LEFT JOIN ChangeToTaskDetails ctk ON tk.TASKID=ctk.TASKID
LEFT JOIN ChangeDetails ch2 ON ctk.CHANGEID=ch2.CHANGEID
LEFT JOIN SDUser rcti ON ct.TECHNICIANID=rcti.USERID LEFT JOIN AaaUser rctd ON rcti.USERID=rctd.USER_ID
WHERE (ctk.CHANGEID IS NOT NULL OR ch.CHANGEID IS NOT NULL) AND ct.TS_STARTTIME >= <from_yesterday> AND ct.TS_STARTTIME <= <to_yesterday> GROUP BY COALESCE(ctk.CHANGEID , ch.CHANGEID), rctd.FIRST_NAME

UNION
SELECT tpr.PROJECTID "Module ID",'Project' "Module" , MAX(pr.TITLE) "Title", max(ct.DESCRIPTION) "Time Spent Description",CAST(SUM(ct.TIMESPENT) AS FLOAT)/1000/3600
 "Time Spent",dateadd(s,datediff(s,GETUTCDATE() ,getdate()) + (MAX(ct.TS_STARTTIME)/1000),'1970-01-01 00:00:00') "Time Spent Started Time",rctd.FIRST_NAME "Time Spent Technician" FROM ChargesTable ct
LEFT JOIN TaskToCharge tkc ON ct.CHARGEID=tkc.CHARGEID
LEFT JOIN  TaskDetails tk ON tkc.TASKID=tk.TASKID
LEFT JOIN TaskTOProjects tpr ON tk.taskid=tpr.taskid
LEFT JOIN ProjectDetails pr ON tpr.PROJECTID=pr.PROJECTID
LEFT JOIN SDUser rcti ON ct.TECHNICIANID=rcti.USERID LEFT JOIN AaaUser rctd ON rcti.USERID=rctd.USER_ID WHERE tk.MODULE IN ('project', 'milestone') AND dateadd(s,datediff(s,GETUTCDATE() ,getdate()) + (ct.TS_STARTTIME/1000),'1970-01-01 00:00:00') >= convert(varchar,'2016-04-01 00:00',21) and dateadd(s,datediff(s,GETUTCDATE() ,getdate()) + (ct.TS_STARTTIME/1000),'1970-01-01 00:00:00') <= convert(varchar,'2016-04-30 23:59',21) GROUP BY tpr.PROJECTID,rctd.FIRST_NAME
 
UNION
SELECT tk.TASKID "Module ID", 'General' "Module" ,MAX(tk.TITLE) "Title",max(ct.DESCRIPTION) "Time Spent Description", CAST(SUM(ct.TIMESPENT) AS FLOAT)/1000/3600 "Time Spent",dateadd(s,datediff(s,GETUTCDATE() ,getdate()) + (MAX(ct.TS_STARTTIME)/1000),'1970-01-01 00:00:00') "Time Spent Started Time",rctd.FIRST_NAME "Time Spent Technician" FROM ChargesTable ct
LEFT JOIN TaskToCharge tkc ON ct.CHARGEID=tkc.CHARGEID
LEFT JOIN  TaskDetails tk ON tkc.TASKID=tk.TASKID
LEFT JOIN SDUser rcti ON ct.TECHNICIANID=rcti.USERID LEFT JOIN AaaUser rctd ON rcti.USERID=rctd.USER_ID
where module='general' AND dateadd(s,datediff(s,GETUTCDATE() ,getdate()) + (ct.TS_STARTTIME/1000),'1970-01-01 00:00:00') >= convert(varchar,'2016-04-01 00:00',21) and dateadd(s,datediff(s,GETUTCDATE() ,getdate()) + (ct.TS_STARTTIME/1000),'1970-01-01 00:00:00') <= convert(varchar,'2016-04-30 23:59',21)  GROUP BY tk.TASKID,rctd.FIRST_NAME ORDER BY 6 

Please do change the date filter as desired. 

Jai Anand K
ServiceDesk Plus

Re : Report Help

$
0
0
Hi, 

I think you can run a custom matrix report (Reports tab >> New custom report >> Matrix report) to achieve this. Here's a screen shot of the configuration, 



Jai Anand K
ServiceDesk Plus

Re : Custom script (powershell) does not work

$
0
0
Max, 

The script seems to be fine. However could you please add prints to show up the json it reads from the file and the response it gets when the URL is invoked? 

Jai Anand K
ServiceDesk Plus

Re : changes report with approvers and status

$
0
0
Paulo,

Could you please check whether the below query helps ?

Select ChangeDetails.ChangeID "Change ID", 
ctdef.NAME "Change Type" , 
AaaUser.first_name "Cab Approver", 
ApprovalDetails .email "Email", 
LONGTODATE(approvalstage.sent_date) "Sent for recommendation on",
LONGTODATE(ApprovalHistory.action_date) "Acted On", 
ApprovalStatusDefinition.StatusName "Status", 
ApprovalHistory.comments "Comments",
asd.StatusName "Change Status", 
aaa.FIRST_NAME "Change Approved by" , 
LONGTODATE(Changeapprovaldetails.action_date) "Change Approved On",
Changeapprovaldetails.comments "Change Comments" from ApprovalHistory 
left join ApprovalStatusDefinition on ApprovalHistory.statusid=ApprovalStatusDefinition.statusid 
Right join ApprovalDetails ON ApprovalHistory.APPROVALID=ApprovalDetails.APPROVALID 
left join SdUser ON ApprovalDetails.approverid=sduser.userid 
left join AaaUser ON sduser.USERID=aaauser.USER_ID 
left join ApprStageToChange on ApprovalDetails.Approval_StageID=ApprStageToChange.Approval_stageid 
left join Changedetails on ApprStageToChange.changeid=changedetails.changeid 
left join Changeapprovaldetails ON ChangeDetails.changeid=Changeapprovaldetails.changeid 
left join ApprovalStatusDefinition asd on Changeapprovaldetails.STATUSID=asd.STATUSID 
left join sduser sd on Changeapprovaldetails.approverid=sd.userid 
left join aaauser aaa on sd.userid=aaa.user_id 
LEFT JOIN ChangeTypeDefinition ctdef ON ChangeDetails.CHANGETYPEID=ctdef.CHANGETYPEID 
left join approvalstage on approvalstage.approval_stageid=apprstagetochange.approval_stageid 
where ChangeDetails.ChangeID is not null and ApprovalStatusDefinition.StatusName IS NULL

Jai Anand K
ServiceDesk Plus

Re : How to print an Asset Group

$
0
0
Neville,

May we know is that a static / dynamic group you have created ? We can attempt to get this through query reports if it static. However for dynamic groups, only the criteria will be saved in the database and the values are dynamically shown. 

Jai Anand K
ServiceDesk Plus

Re : Disallow requesters to reopen request by answering email

$
0
0

ok. would you so kind to tell how to, using scripts, make "Resolution" field required (not empty) if my custom Resolved status is chosen? In order to get a warning when saving request with empty resolution ..

Re : Mail fetching and Exchange 2016

$
0
0
Make sure you are able to ping from the SDP server to exchange. Also, if you just activated POP/IMAP, try restarting exchange. Just make sure that the inbox of the email account used is empty; when we got it working here, we had nearly 300 requests created/reopened, as SDP starts checking all the emails, not from the current date.

Re : Unable to generate reports - after updating the service pack

$
0
0
Hi Alex,

Good day !

We suspect this issue could be because of the Logo configured under Admin -> Organization details. We request you to remove the logo and then try running the reports. 

If that works, please use another image of a smaller resolution and check if the issue persists. While importing the image Choose a custom image to import Recommended maximum dimensions  120px X 40px (W X H) and it would be better if the Image is of GIF format.

Please get back to us for further clarifications.

Best Regards,
Dinesh Bhaskaran
ManageEngine ServiceDesk Plus | Asset Explorer

Re : gencert.bat not working ubuntu

$
0
0
Jai Anand,
  1. root@sdp:/etc/ManageEngine/ServiceDesk/lib# ls -l
    итого 4580
    drwxr-xr-x 3 root root   4096 авг 26 15:52 64bit
    -rw-r--r-- 1 root root 102400 авг 26 15:52 ADAuth.dll
    -rw-r--r-- 1 root root  12304 авг 23 15:39 AdventNetDeploymentSystem.jar
    -rw-r--r-- 1 root root   1197 авг 23 16:05 AdventNetLicense.xml
    -rw-r--r-- 1 root root  81275 авг 23 15:39 AdventNetLogging.jar
    -rw-r--r-- 1 root root 267226 авг 23 15:39 AdventNetNPrevalent.jar
    -rw-r--r-- 1 root root 602934 авг 23 15:39 AdventNetUpdateManagerInstaller.jar
    -rw-r--r-- 1 root root 610646 авг 26 15:52 AdventNetUpdateManagerInstaller.jar_new
    -rw-r--r-- 1 root root   6704 авг 25 15:49 cert.jar
    -rw-r--r-- 1 root root  30938 авг 23 15:39 commons-logging.jar
    -rw-r--r-- 1 root root 168595 авг 23 15:39 concurrent.jar
    -rw-r--r-- 1 root root 407211 авг 23 15:39 dom4j.jar
    -rw-r--r-- 1 root root  10727 авг 23 15:39 getopt.jar
    -rw-r--r-- 1 root root  28876 авг 23 15:39 gnu-regexp.jar
    -rw-r--r-- 1 root root 232843 авг 23 15:39 jaxen.jar
    -rw-r--r-- 1 root root 311580 авг 23 15:39 jboss-common.jar
    -rw-r--r-- 1 root root 567037 авг 23 15:39 jboss-jmx.jar
    -rw-r--r-- 1 root root 200411 авг 23 15:39 jboss-system.jar
    -rw-r--r-- 1 root root 386818 авг 23 15:39 log4j.jar
    -rw-r--r-- 1 root root  77824 авг 26 15:52 MsiEditor.dll
    -rw-r--r-- 1 root root   2427 авг 23 15:39 namespace.jar
    drwxr-xr-x 3 root root   4096 авг 23 15:37 native
    -rw-r--r-- 1 root root   3504 авг 23 16:05 petinfo.dat
    -rw-r--r-- 1 root root    619 авг 10 10:04 product.dat
    -rw-r--r-- 1 root root 311296 авг 26 15:52 SDeskWmi.dll
    -rw-r--r-- 1 root root   1197 авг 23 15:39 StandardEvaluation.xml
    -rw-r--r-- 1 root root  66768 авг 26 15:52 startupclasses.jar
    -rw-r--r-- 1 root root  15896 авг 23 15:39 trayicon.jar
    -rw-r--r-- 1 root root 115520 авг 23 15:39 wrapper.jar
  1. root@sdp:/etc/ManageEngine/ServiceDesk/jre/bin# java -cp lib/cert.jar InstallCert mail.company.local:993
    Error: Could not find or load main class InstallCert
  1. root@sdp:/etc/ManageEngine/ServiceDesk# sh gencert.sh mail.company.local:993
  2. Loading KeyStore /etc/ManageEngine/ServiceDesk/jre/lib/security/cacerts...
    Exception in thread "main" java.io.IOException: Keystore was tampered with, or password was incorrect
        at sun.security.provider.JavaKeyStore.engineLoad(Unknown Source)
        at sun.security.provider.JavaKeyStore$JKS.engineLoad(Unknown Source)
        at java.security.KeyStore.load(Unknown Source)
        at InstallCert.main(InstallCert.java:70)
    Caused by: java.security.UnrecoverableKeyException: Password verification failed
        ... 4 more

Re : Fetching Mail from Exchange 2010

Re : Start/Stop SLA timers on response

$
0
0
Hi Bill,

Good day !

We do have an option to move a Request to different status when a Technician responds to the request from the reply window. Select OnHold after the reply is sent. Refer to the below screenshot. 



You can also do a Spot edit from the request details page, change the Status to OnHold. We have an option schedule when a request should be reopened. Refer to the below screenshot,




Both these operations need to be done manually only. As per current design, it is not possible to move a Request to OnHold automatically when a Technician responds to an Open request.


Best Regards,
Dinesh Bhaskaran
ManageEngine ServiceDesk Plus | Asset Explorer

Re : Table of User defined

$
0
0

Hi Jai Anand

Thanks for your detail description ...
And for include in your enhancements list.

Diyanto


Re : Change details grouped by Change Owner

$
0
0
Hi Hello Calero, Lissette - (EXT - US),

Thank you for contacting support, we apologize for the delay, please use the below query reports.

SELECT chdt.CHANGEID "Change ID",chdt.TITLE "Title",chandes.FULL_DESCRIPTION "Description",priodef1.PRIORITYNAME "Priority",urgdef.NAME "Urgency",ctdef.NAME "Change Type",catadef.CATEGORYNAME "Category",subcatadef.NAME "Subcategory",itemdef1.NAME "Item",qd.QUEUENAME "Group",sdo.NAME "Site",longtodate(chdt.SCHEDULEDSTARTTIME) "Scheduled Start Time",longtodate(chdt.SCHEDULEDENDTIME) "Scheduled End",orgaaa.FIRST_NAME "Change Requester",ownaaa.FIRST_NAME "Change Owner",cmDef.FIRST_NAME "Change Manager",statusDef.STATUSDISPLAYNAME "Status",stageDef.DISPLAYNAME "Stage",approvaldef.STATUSNAME "Approval Status",changeres.RESOLUTION "Resolution",changeres.IMPACTDESC "Impact",changeres.ROLLOUTPLAN "Roll Out Plan",changeres.BACKOUTPLAN "Backout Plan",changeres.CHECKLIST "Check List",changeres.REVIEW "Review",longtodate(changeres.NEXT_REVIEW_ON) "Next Review On" ,prode.title "Associated Project" , prode.projectcode "Project Code" , prode.projectid "Project ID" ,longtodate(prode.scheduledstarttime) "Project schedule start Time ",longtodate(prode.scheduledendtime) "Project schedule End time",closecode.name "Closure Code",cccode.comments "Closure Comments",longtodate(cccode.closed_on) "Closed On" FROM ChangeDetails chdt LEFT JOIN SDUser orgsd ON chdt.INITIATORID=orgsd.USERID LEFT JOIN AaaUser orgaaa ON orgsd.USERID=orgaaa.USER_ID LEFT JOIN SDUser ownsd ON chdt.TECHNICIANID=ownsd.USERID LEFT JOIN AaaUser ownaaa ON ownsd.USERID=ownaaa.USER_ID LEFT JOIN PriorityDefinition priodef1 ON chdt.PRIORITYID=priodef1.PRIORITYID LEFT JOIN UrgencyDefinition urgdef ON chdt.URGENCYID=urgdef.URGENCYID LEFT JOIN ChangeTypeDefinition ctdef ON chdt.CHANGETYPEID=ctdef.CHANGETYPEID LEFT JOIN ApprovalStatusDefinition approvaldef ON chdt.APPR_STATUSID=approvaldef.STATUSID LEFT JOIN CategoryDefinition catadef ON chdt.CATEGORYID=catadef.CATEGORYID LEFT JOIN SubCategoryDefinition subcatadef ON chdt.SUBCATEGORYID=subcatadef.SUBCATEGORYID LEFT JOIN ItemDefinition itemdef1 ON chdt.ITEMID=itemdef1.ITEMID LEFT JOIN ChangeToDescription chandes ON chdt.CHANGEID=chandes.CHANGEID LEFT JOIN QueueDefinition qd ON chdt.GROUPID=qd.QUEUEID LEFT JOIN SiteDefinition siteDef ON chdt.SITEID=siteDef.SITEID LEFT JOIN SDOrganization sdo ON siteDef.SITEID=sdo.ORG_ID LEFT JOIN Change_StageDefinition stageDef ON chdt.WFSTAGEID=stageDef.WFSTAGEID LEFT JOIN Change_StatusDefinition statusDef ON chdt.WFSTATUSID=statusDef.WFSTATUSID LEFT JOIN AaaUser cmDef ON chdt.CHANGEMANAGERID=cmDef.USER_ID left join changeresolution changeres on changeres.changeid=chdt.changeid left join changetoprojects chpro on chpro.changeid=chdt.changeid left join projectdetails prode on prode.projectid=chpro.projectid left join ChangeToClosureCode cccode on cccode.changeid=chdt.changeid left join change_closurecode closecode on closecode.id=cccode.id where ((((qd.QUEUENAME = 'Ultipro/Aspect Projects') OR (chdt.TITLE LIKE '%Ultipro%')) OR (chdt.TITLE LIKE '%Aspect%')) OR (sdo.NAME = 'Projects - Telvista IT')) ORDER BY 1 NULLS FIRST , 2 NULLS FIRST

Supported columns from the given requirement. 

     Planning Impact, Roll Out PlanBackout PlanCheck List,Implementation Associated Project ,Testing Review,Status Comments, Close Closure Code,

Non supported Columns from the requirement 

      Line Manager, Reviewer, Change Approver, Implementer, Status Comments & Date, Notes with author and date,  Downtime (Desc, Start and end time),Status Comments, Approval (with Approvers, dates & time), Status Comments , Task Details, Work Log, Downtime Scheduling, Status Comments,  & Approval Summary,Status Comments.
 
 Reason for not supported : Each columns contains many data (eg: for a change may have N number of line manager like that rest of the columns). 

Get back to us if you have any clarifications with this.


Thanks & Regards,
Senthil kumar M,
(ServiceDesk Plus Development Team)

Re : Support Group Editing

$
0
0
Hi Khalil,

Good day !

As per current application design, Support Groups cannot be completely deleted or modified from ServiceDesk Plus due to their complex relations in the database. However, we have plans to introduce an option to disable a support group. Please make a note of the feature ID for your reference and tracking, SDF-58590.


We will be including this feature in one of our future updates based on demand and priority. We will keep you notified once this feature is released. Kindly bear with us until then.


Best Regards,
Dinesh Bhaskaran
ManageEngine ServiceDesk Plus | Asset Explorer

Re : Seeing solution viewers

$
0
0
Hi Simon,

Good day !

I'm afraid it is not possible to view the Users who have viewed a Solution article in ServiceDesk Plus.

Best Regards,
Dinesh Bhaskaran
ManageEngine ServiceDesk Plus | Asset Explorer

Import Requesters from Active Directory

$
0
0
Hy there,

it seems that i can only import user objects from Active Directory.
As i tryed to import contacts from Active Directory it failed.
Is there another solution with import contacts?

Thx in advance!

Re : Counter of opened ticket broken. Won't stop after on hold

$
0
0
Hi Cristian,

We tested this on our end with the most latest build 9226, we were not able to replicate this issue. We request you to  raise this with our Support Team at support@servicedeskplus.com with this forum link and mention my name in the Subject for my attention. We will get in touch with you to get this issue fixed.


If you have already raised this with our team, please mention the ticket ID that was acknowledged to you.


Best Regards,
Dinesh Bhaskaran
ManageEngine ServiceDesk Plus | Asset Explorer
Viewing all 20315 articles
Browse latest View live