Export Category,subcategory, item

Export Category,subcategory, item

 This report is used to export the tree view. This report helps to import category,subcategory and item in other applications. Modify and import in the applications.

SELECT CategoryDefinition.CATEGORYNAME "Category Name",
       SubCategoryDefinition.NAME "Sub Category Name",
       ItemDefinition.NAME"Item Name" FROM CategoryDefinition
LEFT JOIN SubCategoryDefinition ON SubCategoryDefinition.CATEGORYID=CategoryDefinition.CATEGORYID
LEFT JOIN ItemDefinition ON ItemDefinition.SUBCATEGORYID = SubCategoryDefinition.SUBCATEGORYID
ORDER BY 1,2,3




                  New to ADManager Plus?

                    New to ADSelfService Plus?

                      • Related Articles

                      • How to export software data in CSV format?

                        Steps to export Software data in CSV format 1. Login to ServiceDesk Plus/AssetExplorer. 2. Click on the Reports tab and then click on New Query Report button. 3. Copy and paste the following query and click Run Report. select swm.name "Scanned ...
                      • How to Export SSL certificate using MMC?

                        When an SSL certificate is already installed on a Windows server, you may want to reinstall it on ServiceDesk Plus server. This may be required when you have a Wildcard or a Multi-domain certificate, and the subdomains or different domains are hosted ...
                      • Fix: Error while sending mail using EWS

                        Issue trace: [11:58:49:091]|[11-29-2022]|[SYSERR]|[INFO]|[122]: microsoft.exchange.webservices.data.core.exception.service.remote.ServiceResponseException: The operation can't be performed because the item is out of date. Reload the item and try ...
                      • Solution Export

                        SELECT solution.solutionid "Solutionid", KB_Topics.TOPICNAME "Topic", Solution.TITLE "Subject", Solution.DESCRIPTION "Contents", solutioninfo.noofhits "View(s)", Creator.FIRST_NAME "Created By", longtodate(SolutionInfo.CREATEDTIME) "Created Time", ...
                      • Automatic Problem Creation for Request Clustering

                        Requirement: Automatically create a problem when there are threshold number of requests created with the same category/subcategory/item within a specified time frame. Steps to configure: Download the attached scripts. Goto Admin > Developer Space > ...