Problem management helper for Creatio

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

Cos'è Problem management helper for Creatio?

Problem management helper for Creatio è un'estensione di Chrome sviluppata da creatiornd, e la sua funzione principale è "Helps you manage problems connected to "Cases" records in Creatio system (https://creatio.com).".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Problem management helper for Creatio

Scarica i file di estensione Problem management helper for Creatio in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Problem management helper for Creatio Problem management helper for Creatio
ID gkjlfpnicbjbckkclciipeojmlghjcni
URL Ufficiale https://chromewebstore.google.com/detail/problem-management-helper/gkjlfpnicbjbckkclciipeojmlghjcni
Descrizione Helps you manage problems connected to "Cases" records in Creatio system (https://creatio.com).
Dimensione del File 29.7 KB
Conteggio Installazioni 68
Versione Corrente 1.5.1
Ultimo Aggiornamento 2023-03-18
Data di Pubblicazione 2020-06-17
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore creatiornd
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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:\/\/\/*"
    ]
}