API UpdateUniversalPartsCategory
Z Podpora.nextis.cz
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 |
Return
0 : OK 100 : Item could not be updated
Example
DECLARE @return_value int
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 @return_value = [API_UpdateUniversalPartsCategory]
@ID,
@ParentID,
@Name,
@Description,
@SortIndex,
@IsRoot,
@IsTop
Notices
None.