API UpdateUniversalPartsCategoryConnection: Porovnání verzí
Z Podpora.nextis.cz
(Založena nová stránka s textem „==== Description ==== Method allows You to update universal parts category connection in system. ==== Exact name ==== <code>API_UpdateUniversalPartsCatego…“) |
(Žádný rozdíl)
|
Verze z 2. 8. 2017, 13:48
Description
Method allows You to update universal parts category connection in system.
Exact name
API_UpdateUniversalPartsCategoryConnection
Type
Standard executable stored procedure.
Specification
Parameter | Data type | Value range | Description | Relation |
---|---|---|---|---|
@ID | int | Internal system id | ||
@GroupID | int | ID of group from product groups list (see relation) | API_GetProductGroups.ID | |
@FolderID | int | ID of folder from universal parts categories list (see relation) | API_GetUniversalPartsCategories.ID |
Example
DECLARE @ID INT
DECLARE @GroupID INT
DECLARE @FolderID INT
SELECT @ID = id,
@GroupID= [GroupID],
@FolderID = 2
FROM [API_GetUniversalPartsCategoryConnection]
WHERE id = 3
EXECUTE [API_UpdateUniversalPartsCategoryConnection]
@ID,
@GroupID,
@FolderID
Notices
None.