renderAndUploadTransaction
renderAndUploadTransaction(options)
Method Description | This function allows you render a transaction PDF in NetSuite and upload it to SharePoint |
Returns | DirectoryItem |
Supported Script Types | SuiteScript 2.1 |
Limitations | Record type must be a transaction record |
Module | b4cd-file-api-lib.js |
Since | FileSync 0.5.1 |
Parameters
Note: The options
parameter is a JavaScript object.
Parameter | Type | Required | Description | Since |
---|---|---|---|---|
| integer | required | The internal ID of the record in NetSuite which we are associating the transaction PDF to. | 0.5.1 |
| integer | required | Internal ID of the FileSync Record Type Configuration record (customrecord_b4cd_record_type_config). | 0.5.1 |
| integer | optional | The internal ID of the form, or custom form, for the transaction. | 0.5.1 |
Returns
Property | Type | Description | Since |
---|---|---|---|
| string | The file or folder name | 0.5.1 |
| string | The unique ID of the file or folder as assigned by the file hosting service. | 0.5.1 |
| string | Possible Values: "file", "folder" | 0.5.1 |
| integer | File size in bytes. | 0.5.1 |
| string | The URI used to access the file or folder via the API. | 0.5.1 |
| string | The relative file or folder path on the file hosting service starting from the base directory. | 0.5.1 |
| string | The user-navigable URI for the folder or file on the file hosting platform. This can be used to construct hyperlinks for users to reach the file or folder externally. | 0.5.1 |
Errors
Error Code | Details |
---|---|
| A required argument is missing or undefined. |
Example Usage
var params = {
recordId: scriptContext.newRecord.id,
configIds: [35],
formId: 11
}
fileapi.renderAndUploadTransaction(params)