first success step 1

This commit is contained in:
Rene Kaßeböhmer
2025-03-28 16:43:25 +01:00
parent 3b7ff25779
commit a3d7491d11
8 changed files with 21 additions and 48 deletions

View File

@ -0,0 +1,2 @@
Parent.Name,City,Country,PostalCode,Street,Latitude,Longitude,CountryCode
"Plantsoen de Pas 12, 6601 BK WIJCHEN, NL",WIJCHEN,Netherlands,6601 BK,Plantsoen de Pas 12,51.81388993,5.72578937,NL
1 Parent.Name City Country PostalCode Street Latitude Longitude CountryCode
2 Plantsoen de Pas 12, 6601 BK WIJCHEN, NL WIJCHEN Netherlands 6601 BK Plantsoen de Pas 12 51.81388993 5.72578937 NL

View File

@ -0,0 +1,2 @@
Name,DuplicateCheck__c,IsInventoryLocation,IsMobile,LocationType
"Plantsoen de Pas 12, 6601 BK WIJCHEN, NL",false,false,false,Site
1 Name DuplicateCheck__c IsInventoryLocation IsMobile LocationType
2 Plantsoen de Pas 12, 6601 BK WIJCHEN, NL false false false Site

View File

@ -0,0 +1,15 @@
{
"allOrNone": true,
"useSeparatedCSVFiles": true,
"excludeIdsFromCSVFiles": true,
"objects": [
{
"query": "SELECT Name,DuplicateCheck__c,IsInventoryLocation,IsMobile,LocationType,VisitorAddressId FROM Location",
"operation": "Insert",
"externalId": "Name"
},{
"query": "SELECT City, Country, PostalCode, Street, Latitude, Longitude, CountryCode, ParentId$Location FROM Address",
"operation": "Insert"
}
]
}