- API
- Work with apps
- Object for saving items from multiple apps within a single transaction
- Getting started [object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
- Manage types
- Global context and isolation
- Manage apps
- Batch actions with app items
- Manage external services
- Scripts in widgets
- Web components
- Access permissions
- Getting started with processes
- Getting started with signatures
- Getting started with file previews
- Getting started with the organizational chart
- Getting started with users and groups
-
Getting started with the
Table data type -
Getting started with the
Category data type - Dynamic event type calculation
- Typical use cases
-
API
- Object types
- Data types
- Global constants
-
Work with apps
- ApplicationBatchDeleteBuilder
- ApplicationBatchSaveBuilder
- ApplicationBatchSaver
- ApplicationBatchUpdateBuilder
- ApplicationBatchUpdater
- ApplicationBatcher
- ApplicationFieldOperand
- ApplicationFieldProjectionCapable
- ApplicationSearch
- ApplicationSearchWithProjection
- ApplicationTypeFieldOperand
- ApplicationsBatchSaveBuilder
- ApplicationsBatchSaver
- ApplicationsBatcher
- ApplicationsService
- BaseFieldOperand
- BaseGlobalFilters
- ComparableFieldOperand
- ContextOperand
- DirectoriesSearch
- DocflowSettings
- FieldArrayOperand
- FieldOperand
- FilesSearch
- FolderSettings
- GlobalFilters
- GlobalFiltersWithWhere
- LineApplicationFieldOperand
- MailMessageSearch
- MoneyFieldOperand
- NomenclatureRegistrationSettings
- OrganisationStructureSearch
- PhoneFieldOperand
- ProcessInstanceSearch
- ProcessInstanceTaskSearch
- RefItemFieldOperand
- RegistrationSettings
- ReminderSearch
- ReplacementRulesSearch
- ReplacementSearch
- ReportSearch
- ResetSettings
- Search
- SerialData
- SerialSettings
- SignatureSettings
- StatusHistorySearch
- StringFieldOperand
- TDocTemplate
- TFolder
- TNomenclature
- TNomenclatureDirectory
- TSettings
- UpdateOperations
- UserGroupSearch
- UserSearch
- FieldSelection
- TApplicationTypeFilter
- Web requests
- Access permissions
- Document flow
- Live Chats
- “Code” widget
- Signatures
- Business calendars
- Integration with IP telephony
- Integration with email marketing services
- Company configuration metadata
- Activity stream metadata
Report a mistake
There is a mistake in the following text:
Feedback sent successfully
Thank you for your input
Object for saving items from multiple apps within a single transaction
The object allows you to:
Hierarchy
Methods
all
The method performs batch saving of items from multiple apps within a single transaction.
Saves the items specified using the ApplicationsBatchSaveBuilder.items method within a single transaction. The number of items must not exceed the limit defined by the system (10000 by default). If the limit is exceeded,
validation will fail, none of the provided items will be saved, and the server will return an error.
await System.applications.batch().save().items((function*() { for (var i = 0; i < 100; i++) { yield Application.create(); } })()).all();Returns Promise<void>
items
The method allows defining the saved items.
The number of items must not exceed the system-defined limit (10,000 by default). If the limit is exceeded, validation will fail, and none of the passed items will be saved; the server will return an error.
Parameters
items: Iterable<ApplicationItem<ItemData, ItemData>>
Returns ApplicationsBatchSaver
notify
The method sets notifications for when app items are saved.
Parameters
enabled: boolean
Returns this
Methods