API UpdateTECDOC Brands: Porovnání verzí

Z Podpora.nextis.cz
Přejít na: navigace, hledání
(Založena nová stránka s textem „==== Description ==== Method allows You to update TecDoc brands in system. ==== Exact name ==== <code>API_UpdateTECDOC_Brands</code> ==== Type ==== Stand…“)
 
Řádka 15: Řádka 15:
 
!Description
 
!Description
 
!Relation
 
!Relation
 +
|-
 +
|@ID
 +
|int
 +
|
 +
|Internal system id
 +
|
 
|-
 
|-
 
|@TecDocID
 
|@TecDocID

Verze z 2. 8. 2017, 09:32

Description

Method allows You to update TecDoc brands in system.

Exact name

API_UpdateTECDOC_Brands

Type

Standard executable stored procedure.

Specification

Parameter Data type Value range Description Relation
@ID int Internal system id
@TecDocID int TecDoc ID
@Name nvarchar(80) Name


Example

 DECLARE @ID INT 
 DECLARE @TecDocID INT 
 DECLARE @Name nvarchar(255)
 
 SELECT @ID = id, 
       @TecDocID = 300, 
       @Name = [Name] 
 FROM   [API_GetTecDocBrands] 
 WHERE  id = 3
 
 EXECUTE [API_UpdateTECDOC_Brands] 
  @ID, 
  @TecDocID,
  @Name

Notices

None.