Problem management helper for Creatio

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

Problem management helper for Creatio란 무엇입니까?

Problem management helper for Creatio은(는) creatiornd에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Helps you manage problems connected to "Cases" records in Creatio system (https://creatio.com)."입니다.

확장 프로그램 스크린샷

screenshot

Problem management helper for Creatio 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 Problem management helper for Creatio Problem management helper for Creatio
ID gkjlfpnicbjbckkclciipeojmlghjcni
공식 URL https://chromewebstore.google.com/detail/problem-management-helper/gkjlfpnicbjbckkclciipeojmlghjcni
설명 Helps you manage problems connected to "Cases" records in Creatio system (https://creatio.com).
파일 크기 29.7 KB
설치 횟수 68
현재 버전 1.5.1
최근 업데이트 2023-03-18
출시 날짜 2020-06-17
평점 5.00/5 총 2 개의 평점
개발자 creatiornd
이메일 [email protected]
결제 유형 free
지원되는 언어 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:\/\/\/*"
    ]
}