<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="cs">
		<id>https://podpora.nextis.cz/index.php?action=history&amp;feed=atom&amp;title=API_Products_BULK</id>
		<title>API Products BULK - Historie editací</title>
		<link rel="self" type="application/atom+xml" href="https://podpora.nextis.cz/index.php?action=history&amp;feed=atom&amp;title=API_Products_BULK"/>
		<link rel="alternate" type="text/html" href="https://podpora.nextis.cz/index.php?title=API_Products_BULK&amp;action=history"/>
		<updated>2026-05-07T13:06:10Z</updated>
		<subtitle>Historie editací této stránky</subtitle>
		<generator>MediaWiki 1.28.2</generator>

	<entry>
		<id>https://podpora.nextis.cz/index.php?title=API_Products_BULK&amp;diff=2745&amp;oldid=prev</id>
		<title>Chrzaszcz: Založena nová stránka s textem „==== Description ==== Method allows You to update and create new products in system.  ==== Exact name ==== &lt;code&gt;API_Products_BULK&lt;/code&gt;  ==== Type ==== S…“</title>
		<link rel="alternate" type="text/html" href="https://podpora.nextis.cz/index.php?title=API_Products_BULK&amp;diff=2745&amp;oldid=prev"/>
				<updated>2020-08-04T12:37:14Z</updated>
		
		<summary type="html">&lt;p&gt;Založena nová stránka s textem „==== Description ==== Method allows You to update and create new products in system.  ==== Exact name ==== &amp;lt;code&amp;gt;API_Products_BULK&amp;lt;/code&amp;gt;  ==== Type ==== S…“&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Nová stránka&lt;/b&gt;&lt;/p&gt;&lt;div&gt;==== Description ====&lt;br /&gt;
Method allows You to update and create new products in system.&lt;br /&gt;
&lt;br /&gt;
==== Exact name ====&lt;br /&gt;
&amp;lt;code&amp;gt;API_Products_BULK&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Type ====&lt;br /&gt;
Standard executable stored procedure with table-Valued Parameters.&lt;br /&gt;
&lt;br /&gt;
==== Table-Valued Parameters Specification====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Columns name&lt;br /&gt;
!Data type&lt;br /&gt;
!Value range&lt;br /&gt;
!Description&lt;br /&gt;
!Relation&lt;br /&gt;
|-&lt;br /&gt;
|SupplierID&lt;br /&gt;
|int &lt;br /&gt;
|&lt;br /&gt;
|Supplier ID&lt;br /&gt;
|API_GetCustomers.ID&lt;br /&gt;
|-&lt;br /&gt;
|GroupID&lt;br /&gt;
|int &lt;br /&gt;
|&lt;br /&gt;
|Group ID&lt;br /&gt;
|API_GetProductGroups.ID&lt;br /&gt;
|-&lt;br /&gt;
|SupplierProductCode&lt;br /&gt;
|nvarchar(40) &lt;br /&gt;
|&lt;br /&gt;
|Supplier product code&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|ManufacturerSupplier&lt;br /&gt;
|nvarchar(50) &lt;br /&gt;
|&lt;br /&gt;
|Manufacturer supplier&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Prefix&lt;br /&gt;
|nvarchar(3) &lt;br /&gt;
|&lt;br /&gt;
|Prefix&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|SupplierItemName&lt;br /&gt;
|nvarchar(150) &lt;br /&gt;
|&lt;br /&gt;
|Supplier item name&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|MinimumOrderableQuantity&lt;br /&gt;
|decimal(18,2) &lt;br /&gt;
|&lt;br /&gt;
|Minimum orderable quantity&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|ForeignPrice&lt;br /&gt;
|decimal(19,6) &lt;br /&gt;
|&lt;br /&gt;
|Foreign price&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|BasicPrice&lt;br /&gt;
|decimal(18,6) &lt;br /&gt;
|&lt;br /&gt;
|Basic price&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|InfoReturnOfGoods&lt;br /&gt;
|nvarchar(50)&lt;br /&gt;
|&lt;br /&gt;
|Info return of goods&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|ID3&lt;br /&gt;
|int&lt;br /&gt;
|&lt;br /&gt;
|Internal system id. If you create it, set it to null&lt;br /&gt;
|API_GetProducts.ID&lt;br /&gt;
|-&lt;br /&gt;
|SupplierIsArchiving&lt;br /&gt;
|int&lt;br /&gt;
|&lt;br /&gt;
|Supplier is archiving. If you create it, set it to null&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Return ====&lt;br /&gt;
 0 : OK&lt;br /&gt;
 100 : Error&lt;br /&gt;
&lt;br /&gt;
==== Example ====&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;sql&amp;quot;&amp;gt;&lt;br /&gt;
DECLARE @return_value int&lt;br /&gt;
Declare @Product dbo.APIsProduct &lt;br /&gt;
INSERT INTO @Product&lt;br /&gt;
SELECT [SupplierID], [GroupID], [SupplierProductCode], [ManufacturerSupplier], [Prefix], [SupplierItemName], [MinimumOrderableQuantity], [ForeignPrice], [BasicPrice], 'Product cannot be returned', [ID], [IsArchiving]&lt;br /&gt;
FROM [API_GetProducts]&lt;br /&gt;
WHERE SupplierID = 7&lt;br /&gt;
union&lt;br /&gt;
SELECT 7, 15, 'W72100', 'WALKER', '', '', 1, 15, 400, 'Product cannot be returned', null, null&lt;br /&gt;
&lt;br /&gt;
exec @return_value = dbo.API_Products_BULK @Product&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Notices ====&lt;br /&gt;
API_Products_BULK procedure uses own data type called Products (dbo.APIsProduct).&lt;/div&gt;</summary>
		<author><name>Chrzaszcz</name></author>	</entry>

	</feed>