NetSuite: Dataset/Workbook Export

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

Was ist NetSuite: Dataset/Workbook Export?

NetSuite: Dataset/Workbook Export ist eine Chrome-Erweiterung, die von David Smith entwickelt wurde, und ihr Hauptmerkmal ist "Export your saved datasets and workbooks to SuiteQL. Workbooks MUST have a table.".

Erweiterungsscreenshots

screenshot

NetSuite: Dataset/Workbook Export-Erweiterungs-CRX-Datei herunterladen

Laden Sie NetSuite: Dataset/Workbook Export-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name NetSuite: Dataset/Workbook Export NetSuite: Dataset/Workbook Export
ID oelcfnbhhooggpkgobcghlanlpnjfjka
Offizielle URL https://chromewebstore.google.com/detail/netsuite-datasetworkbook/oelcfnbhhooggpkgobcghlanlpnjfjka
Beschreibung Export your saved datasets and workbooks to SuiteQL. Workbooks MUST have a table.
Dateigröße 98.64 KB
Installationsanzahl 1,367
Aktuelle Version 0.5
Letztes Update 2023-11-09
Veröffentlichungsdatum 2021-10-13
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler David Smith
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
    ]
}