Salesforce Dependent Picklist Matrix Export

Saves the Dependent Picklist Matrix as a CSV file

Salesforce Dependent Picklist Matrix Export là gì?

Salesforce Dependent Picklist Matrix Export là một tiện ích mở rộng Chrome được phát triển bởi maninders, và tính năng chính của nó là "Saves the Dependent Picklist Matrix as a CSV file".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Salesforce Dependent Picklist Matrix Export

Tải xuống các tệp mở rộng Salesforce Dependent Picklist Matrix Export dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        NOTE: Some users have reported that the extension does not work for them if they are using VPN or proxy. Please check if this is the case for you as well and try without VPN/proxy.

Some users have reported that the exported file does not have complete data. In all these cases, the data is trimmed after a special character (for example '+' or any other character). I am not able to replicate this issue on my end so can not fix it. If you face similar issue and willing to spend time to resolve this with me, please contact by email.

Support: 
You can support the app development here:  https://buymeacoffee.com/maninders
For any queries contact by email.

Why you need this app?

Salesforce does not provide any feature to extract the Dependent Picklist Matrix for analysis, comparison and reporting. This extension helps to export the dependency matrix as a CSV file and supports using "View All" for more than 5000 entries.

Compatibility:
- Supported in Classic
- Supported in Lightning

Demo : https://youtu.be/k0Q91yrtCeE

Licence: 
This extension requires a paid license key subscription and offers a free 7-day free trial. Your card will be charged at the end of the free trial. You can cancel the subscription during this trial and you will not be charged.

This app was free for use for more than 3 years. To compensate for the effort required to keep this app working we have set up paid licence with minimal cost and a free trial.

Steps to use:
- Install the Extension
- Set the Salesforce logged in user language to English.
- Go to the Edit/View page of the Dependent Picklist, where the picklist values are included/excluded based on the Parent value.
- You will see option to purchase a licence on this screen.
- Once you have purchased the licence, right click the extension icon to the right of the Chrome address bar and select "Options". Enter the Subscription License Key and click "Save". 
- You will have to refresh the picklist matrix page for the update to take effect. Now you can use the extension.
- Ensure you are on the first page of the matrix.
- Click the Green "Export Matrix" button. This button is added by this extension to the page only if you have a valid licence.
- The CSV file will be downloaded automatically with name "-". The file has a header row with first column as Parent Field and second column as Child Field.
- The csv data is also copied to the clipboard.
- Characters like > are  represented as > and similarly for other special characters.

For View All feature (Tested for 300 x 1000 matrix which is the max you can create):

- Click on the "View All" button to see all the values on single page. 
- Be patient for the page to load. It can take some time if the matrix is large. 
- If you get page not responsive alert click on "Wait" to continue processing. Do this as many times as you get alert.

Without using this extension when you click "View All" you will receive error "The table has over 5,000 entries. "View All" is disabled." if there are more than 5000 entries.

NOTE: Tested to work when user language is set to English.

Giving your valuable review and rating will be an appreciation token to the developer.

17/03/2023 (v0.8)
- The csv file now contains all values of the matrix with INCLUDED/EXCLUDED flag for each

v0.0.6:
- Fixed bugs, modified UI and added Licensing

v 0.0.4:
- Added support for "View All" for more than 5000 entries.

v 0.0.2:
- bug fixes                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Salesforce Dependent Picklist Matrix Export Salesforce Dependent Picklist Matrix Export
ID fpieolagnlkejcpejlbjgbdpaglffacj
URL Chính Thức https://chromewebstore.google.com/detail/salesforce-dependent-pick/fpieolagnlkejcpejlbjgbdpaglffacj
Mô tả Saves the Dependent Picklist Matrix as a CSV file
Kích Thước Tệp 9.24 KB
Số Lần Cài Đặt 3,518
Phiên Bản Hiện Tại 0.0.8
Cập Nhật Lần Cuối 2023-03-18
Ngày Phát Hành 2020-02-13
Đánh Giá 5.00/5 Tổng số 28 Đánh Giá
Nhà Phát Triển maninders
Email [email protected]
Loại Thanh Toán in_app
Trang Web Mở Rộng https://www.sfdcproducthunt.com
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Salesforce Dependent Picklist Matrix Export",
    "version": "0.0.8",
    "description": "Saves the Dependent Picklist Matrix as a CSV file",
    "author": {
        "name": "Maninder Singh",
        "url": "https:\/\/www.sfdcproducthunt.com\/"
    },
    "homepage_url": "https:\/\/www.sfdcproducthunt.com\/",
    "permissions": [
        "clipboardWrite",
        "storage"
    ],
    "icons": {
        "16": "icons\/icon16x16.png"
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/*.force.com\/*depend*",
                "https:\/\/*.salesforce.com\/*depend*"
            ],
            "all_frames": true,
            "js": [
                "js\/contentscript.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "js\/clickjs.js",
                "js\/options.html"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "options_page": "js\/options.html"
}