IoT Addresses and Locations fixed
This commit is contained in:
@ -1 +1 @@
|
|||||||
python .\extract_via_simple_salesforce.py --context qa2
|
python .\extract_via_simple_salesforce.py --context qa2 --country NL
|
@ -59,6 +59,9 @@ merged_df_location_iot = merged_df_location_iot.drop('ParentId', axis=1)
|
|||||||
|
|
||||||
merged_df_location_iot.columns = ['Id', 'Name', 'VisitorAddressId', 'PKey__c']
|
merged_df_location_iot.columns = ['Id', 'Name', 'VisitorAddressId', 'PKey__c']
|
||||||
|
|
||||||
|
# Drop rows where VisitorAddressId is null
|
||||||
|
merged_df_location_iot = merged_df_location_iot.dropna(subset=['VisitorAddressId'])
|
||||||
|
|
||||||
##--------------------------------------------------------------------------##
|
##--------------------------------------------------------------------------##
|
||||||
## Address and Location (Parent and Child)
|
## Address and Location (Parent and Child)
|
||||||
##--------------------------------------------------------------------------##
|
##--------------------------------------------------------------------------##
|
||||||
|
@ -1 +1 @@
|
|||||||
sf sfdmu run --sourceusername csvfile --targetusername rene.kasseboehmer@vaillant.de.devrene
|
sf sfdmu run --sourceusername rene.kasseboehmer@vaillant.de.devrene --targetusername rene.kasseboehmer@vaillant.de.devrene
|
@ -1,9 +1,11 @@
|
|||||||
{
|
{
|
||||||
"allOrNone": true,
|
"allOrNone": true,
|
||||||
|
"importCSVFilesAsIs": true,
|
||||||
"objects": [
|
"objects": [
|
||||||
{
|
{
|
||||||
"query": "SELECT Id FROM Address WHERE CountryCode = 'NL'",
|
"query": "SELECT Id FROM Address",
|
||||||
"operation": "Readonly",
|
"operation": "Readonly",
|
||||||
|
"externalId": "Id",
|
||||||
"master": false
|
"master": false
|
||||||
},{
|
},{
|
||||||
"query": "SELECT Id,Name,VisitorAddressId,PKey__c FROM Location",
|
"query": "SELECT Id,Name,VisitorAddressId,PKey__c FROM Location",
|
||||||
|
Reference in New Issue
Block a user