Skip to content
Snippets Groups Projects
Commit 959e35c2 authored by Timo Proll's avatar Timo Proll Committed by Thomas Bindhammer
Browse files

[Projekt: ADITO / Projekt Update-/ Upgrade][TicketNr.: 1075676][Importer...

[Projekt: ADITO / Projekt Update-/ Upgrade][TicketNr.: 1075676][Importer function getConfig_CAMPAIGNLOG()]
parent 8c548e27
No related branches found
No related tags found
1 merge request!4Upgrade/2021.0.0
......@@ -1817,6 +1817,54 @@ function getConfig_CAMPAIGNCOST() {
}
function getConfig_CAMPAIGNLOG() {
return {
DataQuery:
"SELECT"
+ " CAMPAIGN_ID," // 0
+ " CAMPAIGNPARTICIPANT_ID," // 1
+ " DATE_EDIT," // 2
+ " DATE_NEW," // 3
+ " STEP_ID," // 4
+ " USER_EDIT," // 5
+ " USER_NEW"// 6
+ " FROM CAMPAIGNLOG ",
AliasFrom: aliasFrom,
AliasTo: aliasTo,
ImportCommand: "insert+update",
Mapping:
[[iMove, {
Source: 0,
Target: "CAMPAIGNPARTICIPANTLOG.CAMPAIGN_ID",
Key: true
}],// CAMPAIGN_ID
[iMove, {
Source: 1,
Target: "CAMPAIGNPARTICIPANTLOG.CAMPAIGNPARTICIPANT_ID"
}],// CAMPAIGNPARTICIPANT_ID
[iMove, {
Source: 2,
Target: "CAMPAIGNPARTICIPANTLOG.DATE_EDIT"
}],// DATE_EDIT
[iMove, {
Source: 3,
Target: "CAMPAIGNPARTICIPANTLOG.DATE_NEW"
}],// DATE_NEW
[iMove, {
Source: 4,
Target: "CAMPAIGNPARTICIPANTLOG.CAMPAIGNSTEP_ID"
}],// STEP_ID
[iMove, {
Source: 5,
Target: "CAMPAIGNPARTICIPANTLOG.USER_EDIT"
}], // USER_EDIT
[iMove, {
Source: 6,
Target: "CAMPAIGNPARTICIPANTLOG.USER_NEW"
}] // USER_NEW
]
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment