Skip to content

Commit b4a04c8

Browse files
committed
Prepared scripts
1 parent f1cec85 commit b4a04c8

File tree

4 files changed

+340
-0
lines changed

4 files changed

+340
-0
lines changed

Import-Customers.ps1

+107
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,107 @@
1+
Import-Module sqlserver
2+
3+
$clientId = "a8494215-ace2-4c77-b84c-f13cbe1b6c2b"
4+
$clientSecret = "ifUCBb/qU8v88m00sQtQ9HRCW43xPuaQ1/ivozFmCt0="
5+
$scopes = "App.Elements.ReadWrite.All"
6+
7+
$authorization = Invoke-RestMethod `
8+
-Method Post `
9+
-Uri "http://bps.lumenn.local/api/oauth2/token" `
10+
-ContentType "application/x-www-form-urlencoded" `
11+
-Body "grant_type=client_credentials&client_id=$clientId&client_secret=$clientSecret&scope=$scopes"
12+
13+
$token = $authorization.access_token
14+
15+
$results = Invoke-SqlCmd -Query @"
16+
SELECT
17+
CustomerKey,
18+
FirstName,
19+
MiddleName,
20+
LastName,
21+
BirthDate,
22+
CASE
23+
WHEN Gender = 'M' THEN 'Male'
24+
WHEN Gender = 'F' THEN 'Female'
25+
END AS Gender
26+
FROM
27+
AdventureWorksDW2019.dbo.DimCustomer
28+
"@ -ServerInstance "localhost\SQLEXPRESS" -Verbose -TrustServerCertificate
29+
30+
$lumennBuisnessEntityGUID = 'E554D815-F958-463A-B4DD-E2EB29B29FF2'
31+
$customerWorkflowGUID = '8a5d448e-f8cd-45ff-a7fd-b3138390d32b'
32+
$customerFormGUID = '3017e844-6313-4ce2-ace0-ae38d913b77b'
33+
$pathGUID = 'a7465986-c850-4222-ae87-d07bb356004c'
34+
35+
$formFieldGUIDs = @{
36+
firstName = '34a16cc2-eb87-4d86-be05-62f9262cb79e';
37+
middleName = '1d6dd53d-89d8-4bc3-8f74-fef4f0ad3cd1';
38+
lastName = '7bc907b6-75ce-4f54-9453-e1ff526505b5';
39+
birthDate = '70673133-bfe7-452a-981f-4b6d0b2e16db';
40+
gender = 'b5e53681-e96d-4596-a2c8-260546882ffe';
41+
customerKey = 'd539357f-6ae7-4d0c-a05a-ba5f3080a650';
42+
}
43+
44+
$databaseId = 1
45+
$apiVersion = "v5.0"
46+
47+
$i = 1
48+
$errors = New-Object System.Collections.Generic.List[System.Object]
49+
50+
foreach($row in $results) {
51+
$requestBody = @{
52+
workflow = @{
53+
guid = "$customerWorkflowGUID"
54+
}
55+
formType = @{
56+
guid = "$customerFormGUID"
57+
}
58+
formFields = @(
59+
@{
60+
guid = $formFieldGUIDs.firstName;
61+
value = $row.FirstName;
62+
},
63+
@{
64+
guid = $formFieldGUIDs.middleName;
65+
value = $row.MiddleName;
66+
},
67+
@{
68+
guid = $formFieldGUIDs.lastName;
69+
value = $row.LastName;
70+
},
71+
@{
72+
guid = $formFieldGUIDs.birthDate;
73+
value = Get-Date -Date $row.BirthDate -Format "o";
74+
},
75+
@{
76+
guid = $formFieldGUIDs.gender;
77+
value = $row.Gender;
78+
},
79+
@{
80+
guid = $formFieldGUIDs.customerKey;
81+
value = $row.CustomerKey;
82+
}
83+
)
84+
businessEntity = @{
85+
guid = $lumennBuisnessEntityGUID
86+
}
87+
}
88+
89+
$body = ConvertTo-Json $requestBody -Depth 10
90+
91+
try {
92+
$response = Invoke-RestMethod `
93+
-Method Post `
94+
-Uri "http://bps.lumenn.local/api/data/$apiVersion/db/$databaseId/elements?path=$pathGUID" `
95+
-Body $body `
96+
-ContentType "application/json" `
97+
-Headers @{Authorization = "Bearer $token"}
98+
}
99+
catch {
100+
$errors.Add($row)
101+
}
102+
103+
Write-Progress -Activity "Import in progress" -Status "$i out of $($results.Length)"
104+
$i++;
105+
}
106+
107+
$errors | Export-Csv -Path "$env:USERPROFILE\Downloads\CustomerErrors.csv"

Import-Products.ps1

+101
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,101 @@
1+
Import-Module sqlserver
2+
3+
$clientId = "a8494215-ace2-4c77-b84c-f13cbe1b6c2b"
4+
$clientSecret = "ifUCBb/qU8v88m00sQtQ9HRCW43xPuaQ1/ivozFmCt0="
5+
$scopes = "App.Elements.ReadWrite.All"
6+
7+
$authorization = Invoke-RestMethod `
8+
-Method Post `
9+
-Uri "http://bps.lumenn.local/api/oauth2/token" `
10+
-ContentType "application/x-www-form-urlencoded" `
11+
-Body "grant_type=client_credentials&client_id=$clientId&client_secret=$clientSecret&scope=$scopes"
12+
13+
$token = $authorization.access_token
14+
15+
$results = Invoke-SqlCmd -Query @"
16+
SELECT
17+
ProductKey,
18+
ProductAlternateKey,
19+
EnglishProductName,
20+
ISNULL(ListPrice, 0) AS ListPrice,
21+
CASE
22+
WHEN Status IS NULL THEN 0
23+
WHEN Status = 'Current' THEN 1
24+
END AS Active
25+
FROM
26+
AdventureWorksDW2019.dbo.DimProduct
27+
"@ -ServerInstance "localhost\SQLEXPRESS" -Verbose -TrustServerCertificate
28+
29+
$lumennBuisnessEntityGUID = 'E554D815-F958-463A-B4DD-E2EB29B29FF2'
30+
$productWorkflowGUID = '2660ca16-457d-432f-8b43-beb282ab999a'
31+
$productFormGUID = '3d9819ff-573a-4d1a-b424-45652e963079'
32+
$pathActiveGUID = 'c6a440c1-51ce-4aa4-a2f3-39cb691f2e88'
33+
$pathBlockedGUID = 'abc2a33f-5bd3-4ba2-85d4-2b9aae166ae2'
34+
35+
$formFieldGUIDs = @{
36+
name = '7ffc9b32-ad57-4939-af60-d1ab29f6c01c';
37+
price = '669e369c-1546-4560-9794-44d46b697416';
38+
erpID = '673a9f06-055f-40b9-b6b6-57b4158db863';
39+
productKey = '8b54d6c3-a340-4909-b435-f62cf0004eb7';
40+
}
41+
42+
$databaseId = 1
43+
$apiVersion = "v5.0"
44+
45+
$i = 1
46+
$errors = New-Object System.Collections.Generic.List[System.Object]
47+
foreach($row in $results) {
48+
$requestBody = @{
49+
workflow = @{
50+
guid = $productWorkflowGUID;
51+
}
52+
formType = @{
53+
guid = $productFormGUID;
54+
}
55+
formFields = @(
56+
@{
57+
guid = $formFieldGUIDs.name;
58+
value = $row.EnglishProductName;
59+
},
60+
@{
61+
guid = $formFieldGUIDs.price;
62+
value = $row.ListPrice;
63+
},
64+
@{
65+
guid = $formFieldGUIDs.erpID;
66+
value = $row.ProductAlternateKey;
67+
},
68+
@{
69+
guid = $formFieldGUIDs.productKey;
70+
value = $row.ProductKey;
71+
}
72+
)
73+
businessEntity = @{
74+
guid = $lumennBuisnessEntityGUID
75+
}
76+
};
77+
78+
$body = ConvertTo-Json $requestBody -Depth 10
79+
80+
try {
81+
$pathGUID = If ($row.Active) {$pathActiveGUID} Else {$pathBlockedGUID}
82+
$response = Invoke-RestMethod `
83+
-Method Post `
84+
-Uri "http://bps.lumenn.local/api/data/$apiVersion/db/$databaseId/elements?path=$pathGUID" `
85+
-Body $body `
86+
-ContentType "application/json" `
87+
-Headers @{Authorization = "Bearer $token"}
88+
}
89+
catch {
90+
$errors.Add($row)
91+
}
92+
93+
Write-Progress -Activity "Import in progress" -Status "$i out of $($results.Length)"
94+
$i++;
95+
}
96+
97+
98+
if ($errors.Count -gt 0) {
99+
$errors | Export-Csv -Path "$env:USERPROFILE\Downloads\ProductErrors.csv"
100+
}
101+

Import-Sales.ps1

+131
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,131 @@
1+
Import-Module sqlserver
2+
3+
$clientId = "a8494215-ace2-4c77-b84c-f13cbe1b6c2b"
4+
$clientSecret = "ifUCBb/qU8v88m00sQtQ9HRCW43xPuaQ1/ivozFmCt0="
5+
$scopes = "App.Elements.ReadWrite.All"
6+
7+
$authorization = Invoke-RestMethod `
8+
-Method Post `
9+
-Uri "http://bps.lumenn.local/api/oauth2/token" `
10+
-ContentType "application/x-www-form-urlencoded" `
11+
-Body "grant_type=client_credentials&client_id=$clientId&client_secret=$clientSecret&scope=$scopes"
12+
13+
$token = $authorization.access_token
14+
15+
$results = Invoke-SqlCmd -Query @"
16+
SELECT DISTINCT
17+
CONCAT(WFD_ID, '#', WFD_Signature) AS Customer, /*Customer*/
18+
SalesOrderNumber
19+
FROM
20+
AdventureWorksDW2019.dbo.FactInternetSales JOIN
21+
BPS_Content.dbo.WFElements ON CustomerKey = WFD_AttText4 /*Customer Key*/ AND WFD_DTYPEID = 1003 /*Customer*/
22+
"@ -ServerInstance "localhost\SQLEXPRESS" -Verbose -TrustServerCertificate
23+
24+
$lumennBuisnessEntityGUID = 'E554D815-F958-463A-B4DD-E2EB29B29FF2'
25+
$saleWorkflowGUID = '5525a5f2-a71b-43eb-914d-1d489ca81da5'
26+
$saleFormGUID = '58a2b9af-d569-4fd6-b8cf-d61528a2085f'
27+
$pathGUID = '9ee1e141-d289-4b75-9785-3b8fc9789a09'
28+
29+
$formFieldGUIDs = @{
30+
customer = 'dd8a11db-e99b-4b8f-ba5a-d4e772235ca1';
31+
orderNumber = 'b4a1f00a-be47-45a7-8332-81fbde8b5f71';
32+
orderedItems = @{
33+
guid = '0175b3a8-0e1d-4f35-b9ff-57e25d6367bf';
34+
product = '5402c7e5-338e-4ef0-989e-317a6bf537d6';
35+
quantity = 'c120eb08-4b50-4692-94bb-37dd7c969e24';
36+
unitPrice = '480df9a1-4309-42c7-aeb3-a5d8380290e8';
37+
}
38+
}
39+
40+
$databaseId = 1
41+
$apiVersion = "v5.0"
42+
43+
$i = 1
44+
$errors = [System.Collections.ArrayList]::new()
45+
46+
foreach($row in $results) {
47+
$saleItems = Invoke-SqlCmd -Query @"
48+
SELECT
49+
SalesOrderLineNumber,
50+
CONCAT(WFD_ID, '#', WFD_Signature) AS Product,
51+
OrderQuantity AS Quantity,
52+
UnitPrice AS Price
53+
FROM
54+
AdventureWorksDW2019.dbo.FactInternetSales JOIN
55+
BPS_Content.dbo.WFElements ON ProductKey = WFD_AttText7 /*Product Key*/ AND WFD_DTYPEID = 2004 /*Product form*/
56+
WHERE
57+
SalesOrderNumber = '$($row.SalesOrderNumber)' COLLATE DATABASE_DEFAULT
58+
ORDER BY
59+
SalesOrderLineNumber
60+
"@ -ServerInstance "localhost\SQLEXPRESS" -Verbose -TrustServerCertificate
61+
62+
$rows = [System.Collections.ArrayList]::new()
63+
64+
foreach($sale in $saleItems) {
65+
$cells = @(
66+
@{
67+
guid = $formFieldGUIDs.orderedItems.product;
68+
svalue = $sale.Product;
69+
},
70+
@{
71+
guid = $formFieldGUIDs.orderedItems.quantity;
72+
value = $sale.Quantity;
73+
},
74+
@{
75+
guid = $formFieldGUIDs.orderedItems.unitPrice;
76+
value = $sale.Price;
77+
}
78+
)
79+
$rows.Add(@{cells = $cells})
80+
}
81+
82+
$listItemsBody = @(
83+
@{
84+
guid = $formFieldGUIDs.orderedItems.guid;
85+
rows = $rows;
86+
}
87+
)
88+
89+
$body = @{
90+
workflow = @{
91+
guid = $saleWorkflowGUID
92+
};
93+
formType = @{
94+
guid = $saleFormGUID
95+
};
96+
formFields = @(
97+
@{
98+
guid = $formFieldGUIDs.customer;
99+
svalue = $row.Customer;
100+
},
101+
@{
102+
guid = $formFieldGUIDs.orderNumber;
103+
value = $row.SalesOrderNumber;
104+
}
105+
);
106+
itemLists = $listItemsBody;
107+
businessEntity = @{
108+
guid = $lumennBuisnessEntityGUID;
109+
}
110+
}
111+
$bodyJSON = ConvertTo-Json $body -Depth 10
112+
try {
113+
$response = Invoke-RestMethod `
114+
-Method Post `
115+
-Uri "http://bps.lumenn.local/api/data/$apiVersion/db/$databaseId/elements?path=$pathGUID" `
116+
-Body $bodyJSON `
117+
-ContentType "application/json" `
118+
-Headers @{Authorization = "Bearer $token"}
119+
}
120+
catch {
121+
$errors.Add($row)
122+
}
123+
124+
Write-Progress -Activity "Import in progress" -Status "$i out of $($results.Length)"
125+
$i++;
126+
}
127+
128+
if ($errors.Count -gt 0) {
129+
$errors | Export-Csv -Path "$env:USERPROFILE\Downloads\SaleErrors.csv"
130+
}
131+

Readme.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Scripts for article on importing data to WEBCON using REST API at blog.lumenn.pl

0 commit comments

Comments
 (0)