API UpdateUniversalPartsCategory

Z Podpora.nextis.cz
Verze z 2. 8. 2017, 14:57, kterou vytvořil Chrzaszcz (diskuse | příspěvky) (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…“)
(rozdíl) ← Starší verze | zobrazit aktuální verzi (rozdíl) | Novější verze → (rozdíl)
Přejít na: navigace, hledání

Description

Method allows You to update branch in system.

Exact name

API_UpdateBranch

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.