Problem management helper for Creatio

Helps you manage problems connected to "Cases" records in Creatio system (https://creatio.com).

Vad är Problem management helper for Creatio?

Problem management helper for Creatio är en Chrome-tillägg utvecklad av creatiornd, och dess huvudfunktion är "Helps you manage problems connected to "Cases" records in Creatio system (https://creatio.com).".

Tilläggsskärmbilder

screenshot

Ladda ner Problem management helper for Creatio-förlängningens CRX-fil

Ladda ner Problem management helper for Creatio-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        It enhances the next interfaces:
1. In the "Cases" section helps you manage problems connected to the selected case without opening the case page.
2. In the "Case" page helps you add problems connected with the current case.

In the "Cases" section, once you select a case record, it will:
- Replace usual contents of the "Problem" column with a list of all problems connected to this case.
- Display "Subject", "Owner" and "Status" fields for each connected problem.
- Highlight "Status" field with different colors depending on its status (only for out-of-the box statuses).
- Allow you to delete any of the connected problems with a single click. It deletes only connection to the selected case, not the entire "Problem" record.
- Allow you to add connected problems to the selected case using "Add problem" button. This button opens a search dialog with much better search algorithm than stock Creatio lookup. For example, if your query is "performance%indicator%calc", extension will run queries for all order combinations of search terms "performance", "indicator" and "calc" automatically. The first search results will be for "performance%indicator%calc" query using "starts with" comparison type. The following results will be for all combinations of search terms using "contains" comparison type (6 in this example).

In the "Case" page it adds "Quick problem search" button to the "Problems" detail. This button opens the same search dialog as in "Cases" section.

Set it up in 2 simple steps:
1. Install the extension.
2. Set up problem column in the "Cases" section.
That's it! Select a record and see how it works :)


What's new:
- You can search for canceled problems.
- Works with the new Freedom UI shell (available in Creatio 8.0.6+).

Further development is focused on:
- Adapting the plugin to the new Freedom UI Case pages (not to confuse with overall Freedom UI shell, that is supported).

Known restrictions:
Only works with:
- Classic UI pages.
- Records list in "Cases" section (out of the box section in some Creatio products) and out of the box Case record page ("CasePage").
- Sites in Creatio cloud (*.creatio.com domains).
- Creatio version 7.11.3 and higher.
Other restrictions:
- "Add problem" button only adds existing problems to the case. If you need to create a new problem, please use built-in Creatio functions.
- Columns setup in problem search window is fixed.
- In case when: 1. You use tiled view. 2. There is no connected problems when selecting the case for the first time. 3. You connect it to the problem.
Connections to the problems will be successfully saved in database but will not show up in the "Problem" column. Refresh cases list if you want to see it.                    

Grundläggande Information om Tillägg

Namn Problem management helper for Creatio Problem management helper for Creatio
ID gkjlfpnicbjbckkclciipeojmlghjcni
Officiell webbadress https://chromewebstore.google.com/detail/problem-management-helper/gkjlfpnicbjbckkclciipeojmlghjcni
Beskrivning Helps you manage problems connected to "Cases" records in Creatio system (https://creatio.com).
Filstorlek 29.7 KB
Antal Installationer 68
Aktuell Version 1.5.1
Senast Uppdaterad 2023-03-18
Publiceringsdatum 2020-06-17
Betyg 5.00/5 Totalt 2 Betyg
Utvecklare creatiornd
E-post [email protected]
Betalningssätt free
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Problem management helper for Creatio",
    "description": "Helps you manage problems connected to \"Cases\" records in Creatio system (https:\/\/creatio.com).",
    "version": "1.5.1",
    "manifest_version": 2,
    "author": "Creatio labs",
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/[email protected]",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.bpmonline.com\/0\/Nui\/ViewModule.aspx*",
                "https:\/\/*.creatio.com\/0\/Nui\/ViewModule.aspx*",
                "https:\/\/*.terrasoft.ua\/0\/Nui\/ViewModule.aspx*",
                "https:\/\/*.bpmonline.com\/0\/Shell*",
                "https:\/\/*.creatio.com\/0\/Shell*",
                "https:\/\/*.terrasoft.ua\/0\/Shell*",
                "https:\/\/*.bpmonline.com\/0\/shell*",
                "https:\/\/*.creatio.com\/0\/shell*",
                "https:\/\/*.terrasoft.ua\/0\/shell*"
            ],
            "css": [
                "problemManagementHelper.css"
            ],
            "js": [
                "contentscript.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "problemManagementHelper.js"
    ],
    "browser_action": {
        "default_icon": {
            "16": "images\/icon16.png",
            "19": "images\/icon19.png",
            "32": "images\/[email protected]",
            "38": "images\/[email protected]"
        },
        "default_title": "Problem management helper for Creatio"
    },
    "permissions": [
        "file:\/\/\/*"
    ]
}