NetSuite: Dataset/Workbook Export

Export your saved datasets and workbooks to SuiteQL. Workbooks MUST have a table.

NetSuite: Dataset/Workbook Export란 무엇입니까?

NetSuite: Dataset/Workbook Export은(는) David Smith에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Export your saved datasets and workbooks to SuiteQL. Workbooks MUST have a table."입니다.

확장 프로그램 스크린샷

screenshot

NetSuite: Dataset/Workbook Export 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Export your saved NetSuite Workbooks to SuiteQL.
For NetSuite developers who want to export saved Workbooks with tables for use in their SuiteScript code. Provides formatted SQL and sample SuiteQL SuiteScript code.

From the a Saved Workbook in NetSuite, click the "Export as SuiteScript" to display a popup with the code samples. Copy directly to your clipboard for easy code insertion to your projects.

Some workbook types may not be supported. Datasets are not supported at this time.                    

확장 프로그램 기본 정보

이름 NetSuite: Dataset/Workbook Export NetSuite: Dataset/Workbook Export
ID oelcfnbhhooggpkgobcghlanlpnjfjka
공식 URL https://chromewebstore.google.com/detail/netsuite-datasetworkbook/oelcfnbhhooggpkgobcghlanlpnjfjka
설명 Export your saved datasets and workbooks to SuiteQL. Workbooks MUST have a table.
파일 크기 98.64 KB
설치 횟수 1,367
현재 버전 0.5
최근 업데이트 2023-11-09
출시 날짜 2021-10-13
평점 5.00/5 총 2 개의 평점
개발자 David Smith
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "browser_action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "all_frames": false,
            "css": [
                "jquery-ui_dataimages.css"
            ],
            "js": [
                "jquery-1.11.2.min.js",
                "jquery-ui.min.js",
                "nsworkbook.js"
            ],
            "matches": [
                "https:\/\/*.netsuite.com\/app\/common\/report\/report.nl*",
                "https:\/\/*.netsuite.com\/app\/common\/report\/dataset.nl*"
            ],
            "run_at": "document_idle"
        }
    ],
    "description": "Export your saved datasets and workbooks to SuiteQL. Workbooks MUST have a table.",
    "icons": {
        "128": "ns-saved-search-export.png"
    },
    "manifest_version": 2,
    "name": "NetSuite: Dataset\/Workbook Export",
    "permissions": [
        "storage",
        "https:\/\/*.netsuite.com\/*"
    ],
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.5",
    "web_accessible_resources": [
        "NLUtil.js",
        "NLAPI.jsp",
        "NsRequire.js",
        "es6-promise-2.0.1.js",
        "N.js",
        "format.js",
        "event.js",
        "bootstrap_shared.js",
        "bootstrap.js",
        "FocusManager.js"
    ]
}