1. Identification
| Parameter | Value |
|---|---|
| Object Type | Catalog |
| Name | DeleteAdditionalInformationStorage |
| Full Name | Catalog.DeleteAdditionalInformationStorage |
| Synonym | “(Do not use) Additional Information Storage” |
| Configuration | Accounting for Kazakhstan, edition 3.0 (version 3.0.74.2) |
| Status | Deprecated — intended only for compatibility with old data |
Purpose. The catalog is a deprecated technical object, as indicated by the prefix Delete in the name and the note “(Do not use)” in the synonym. Previously, it served as a storage for additional information and files linked to the main accounting objects — counterparties, individuals, and organizations. Data of different categories were classified by enumerating types, and the file itself was stored in a property of type ValueStorage directly in the database.
In the current versions of “1C:Accounting for Kazakhstan 3.0”, this functionality has been fully transferred to the subsystem of attached files (BSP). The catalog is preserved solely to ensure readability and portability of previously accumulated data. It must not be used in new development, modifications, or daily operations.
Where to find in 1C
- Interface: section “Universal Mechanisms” → “(Do not use) Additional Information Storage”.
- Navigation link:
e1cib/list/Catalog.DeleteAdditionalInformationStorage
The object is hidden from the ordinary user. Accessing it is advisable only when analyzing historical data or controlling the correctness of completed conversion.
2. Header Attributes and Table Parts
2.1 Header Attributes
| Name | Type | Mandatory | Purpose |
|---|---|---|---|
| DataType | Enumeration.DeleteAdditionalInformationTypes |
No (DontCheck) | Classifier of the type of stored additional information. Defines the category of data of the element (documents, scanned copies, certificates, etc.). Used for filtering and grouping. |
| FileName | String |
No (DontCheck) | The original name of the attached file with the extension. Preserves the name that the file had upon upload. Necessary for export and for displaying a user-friendly document name. |
| Object | Composite: Catalog.Counterparties, Catalog.Individuals, Catalog.Organizations |
No (DontCheck) | Reference to the accounting object to which the additional information relates. The composite type allows linking files to three main accounting subjects. Key field for linking to the main data. |
| Storage | ValueStorage |
No (DontCheck) | Binary data of the file in 1C format. Contains the file itself in encoded form, allowing documents of any format to be stored directly in the database. Mechanism used before the transition to attached files. |
| AttachedFile | Composite: Catalog.OrganizationsAttachedFiles, Catalog.CounterpartiesAttachedFiles, Catalog.NomenclatureAttachedFiles |
No (DontCheck) | Reference to the element of the modern catalog of attached files, where the information was transferred during conversion. Used to match old records with new objects of the file subsystem after migration. |
All attributes are marked as optional (DontCheck) — this is typical for a service object that was filled programmatically, not through a form with validation.
2.2 Table Parts
Table parts are absent. The catalog has a flat structure: only header attributes.
2.3 Standard Attributes
Standard attributes of the catalog are used: Code, Name, Reference, DeletionMark, Predefined. Hierarchy and owner are not applied — the catalog is linear, not hierarchical, and not subordinate.
3. Forms
No custom forms are defined in the metadata. Given the status “(Do not use)”, interface forms were either removed when the object was decommissioned or were never created for the end user.
When opened via the navigation link, the platform generates auto-forms:
- List Form (auto) — view of the list of elements; used for controlling historical data and conversion results.
- Element Form (auto) — view of a single record: data type, file name, owner object, reference to the attached file.
- Selection Form (auto) — theoretically available, but practically not utilized, as composite type fields in new objects no longer reference this catalog.
Work with the catalog was mainly done programmatically (in migration/conversion code) or through universal forms in debug mode.
4. Key Module Procedures
Evidence with module texts (BSL) for this object is not attached. Below are typical handlers characteristic of a service catalog of this type. Specific lines of code in your release should be viewed in the configurator.
Object Module (CatalogObject)
FillProcessing(FillingData, ...)— usually empty or absent: the object was filled by conversion.BeforeWriting(Refusal)/OnWriting(Refusal)— service objects usually do not contain business logic; if present — blocking manual creation of new elements.FillCheckProcessing(Refusal, CheckedAttributes)— due to theDontCheckflag, filling check is not actually performed for all attributes.
Manager Module (CatalogManager)
- May contain service functions for reading data from the
Storageattribute (GetFile,ReadBinaryData) for conversion needs.
Migration Handlers (most significant logic). The main logic related to this object is found not in the catalog modules, but in the update handlers of the IB (BSP subsystem “IB Version Update”, procedures like FillData... / TransferAttachedFiles...). They:
- read binary data from the
Storageattribute; - create elements of modern catalogs of attached files (
CounterpartiesAttachedFiles,OrganizationsAttachedFiles,NomenclatureAttachedFiles); - write a reverse reference in the
AttachedFileattribute to match the old and new records.
Requires verification (version-specific): the exact composition and names of the update handler procedures depend on the release of the BSP platform and the specific version of the configuration.
5. Posting and Movements
The catalog is not a document and is not posted. It does not generate movements in accumulation registers, information registers, or accounting entries.
Accordingly, the object does not affect accounting and tax records and does not participate in calculations. For context: in “Accounting for Kazakhstan 3.0”, economic operations are reflected by documents according to the standard chart of accounts of the RK — for example, sales generate entries Dr 1210 Cr 6010 (revenue from sales), Dr 7010 Cr 1330 (write-off of the cost of goods), Dr 1210 Cr 3130 (VAT payable at the rate of 16%, effective in 2026); receipt of money — Dr 1030 Cr 1210; settlements with suppliers — Dr 1330 Cr 3310. Electronic documents (ESF in the ESF IS, SCT) are generated by relevant documents of the configuration. The catalog in question is not involved in any of these operations — it only stores files and service links.
6. Related Objects and Input Based On
Input based on for this catalog is not provided either as a source or as a receiver.
Related Objects:
| Object | Nature of Connection |
|---|---|
Enumeration.DeleteAdditionalInformationTypes |
Values of the DataType attribute (classifier of categories). |
Catalog.Counterparties, Catalog.Individuals, Catalog.Organizations |
Owner objects of additional information (attribute Object). |
Catalog.CounterpartiesAttachedFiles, Catalog.OrganizationsAttachedFiles, Catalog.NomenclatureAttachedFiles |
Target catalogs of attached files where data has been transferred (attribute AttachedFile). |
| BSP subsystem “File Management” / “Attached Files” | The current mechanism that replaced this catalog. |
The logical direction of connections is one-way migration: old data from Storage → new attached files, with a reverse reference being recorded.
7. Extension Points
Given the status of the object, expanding its functionality is not recommended. Acceptable scenarios are limited to servicing historical data:
- Configuration Extension (without decommissioning). It is possible to add handlers to the manager/object module for one-time audit tasks: unloading remaining files from the
Storageattribute, checking the completeness ofAttachedFile, searching for “orphaned” records without a match in the new catalogs. - Programmatic Access. Reading data via a request to
Catalog.DeleteAdditionalInformationStoragefor controlling the completeness of conversion; extracting a file viaStorage.Get(). - Quality Control of Migration. Report/processing comparing the number of non-empty
Storageand filledAttachedFile. - What should NOT be done: creating new elements, referencing this catalog from new objects, adding attributes and forms. For new work with files, use the attached files subsystem.
Requires verification (version-specific): the presence of a planned procedure for the physical deletion of the object in future releases of the configuration — before developing any extension, ensure that the data has already been fully migrated and the catalog can be cleared.
