API UpdateTECDOC Brands: Porovnání verzí
Z Podpora.nextis.cz
(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…“) |
(Žádný rozdíl)
|
Verze z 2. 8. 2017, 08:31
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 |
---|---|---|---|---|
@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.