Hi,
I hope you are well. I would like to ask: How can I configure the File Upload Custom Widget in SAP Analytics Cloud to overwrite existing data instead of summing values when uploading from an Excel worksheet or CSV file?
I appreciate your assistance in advance.
Request clarification before answering.
luis.parra
luis.parraSelecte the widget on canvas and If you go to the designer section of the widget on right hand side panel, you will see an JobSetting Option where you can decide the load option. See below

Once you change the settings, you should save and refresh the story for it to take effect.
Br.
Nikhil
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello Luis,
In the Import API, there is a parameter which can be used to specify the import method. By default the import method will be set to "Update", but this can be set to Update, Append or Clean and Replace. So, in your case if you are looking to overwrite the values, you should be okay with the default value of Update. But if you believe that isn't working as you expect then go ahead and try using Clean and Replace and specify the dimension scope that you want to be overwritten.
You could refer here for the API documentation,
Here is a sample message body:
{
"Mapping": {
"Bicycle": "Bike",
"Shop": "Store"
},
"JobSettings": {
"importMethod": "CleanAndReplace",
"dimensionScope": [
"Version",
"Bicycle"
]
}
}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
| User | Count |
|---|---|
| 5 | |
| 5 | |
| 4 | |
| 3 | |
| 2 | |
| 2 | |
| 2 | |
| 2 | |
| 2 | |
| 2 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.