API UpdateUniversalPartsCategory: Porovnání verzí
Z Podpora.nextis.cz
(Založena nová stránka s textem „==== Description ==== Method allows You to update branch in system. ==== Exact name ==== <code>API_UpdateBranch</code> ==== Type ==== Standard executable…“) |
|||
Řádka 1: | Řádka 1: | ||
==== Description ==== | ==== Description ==== | ||
− | Method allows You to update | + | Method allows You to update universal parts category in system. |
==== Exact name ==== | ==== Exact name ==== | ||
− | <code> | + | <code>API_UpdateUniversalPartsCategory</code> |
==== Type ==== | ==== Type ==== |
Verze z 2. 8. 2017, 13:58
Description
Method allows You to update universal parts category in system.
Exact name
API_UpdateUniversalPartsCategory
Type
Standard executable stored procedure.
Specification
Parameter | Data type | Value range | Description | Relation |
---|---|---|---|---|
@ID | int | Internal system id | ||
@ParentID | int | Parent category ID | ||
@Name | nvarchar(250) | Name | ||
@Description | nvarchar(800) | Description | ||
@SortIndex | int | Sort index | ||
@IsRoot | bit | Is root | ||
@IsTop | bit | Is top |
Example
DECLARE @ID int
DECLARE @ParentID int
DECLARE @Name nvarchar(250)
DECLARE @Description nvarchar(800)
DECLARE @SortIndex int
DECLARE @IsRoot bit
DECLARE @IsTop bit
SELECT @ID = [ID],
@ParentID = [ParentID],
@Name = 'Name 2',
@Description = [Description],
@SortIndex = [SortIndex],
@IsRoot = [IsRoot],
@IsTop = [IsTop]
FROM [API_GetUniversalPartsCategories]
WHERE id = 3
EXECUTE [API_UpdateUniversalPartsCategory]
@ID,
@ParentID,
@Name,
@Description,
@SortIndex,
@IsRoot,
@IsTop
Notices
None.