digicust_types 1.8.342 → 1.8.343
Sign up to get free protection for your applications and to get access to all the features.
@@ -305,29 +305,41 @@ export interface ExecutionStrategy {
|
|
305
305
|
*/
|
306
306
|
masterDataIntegrationAutomation?: {
|
307
307
|
/**
|
308
|
-
* Enable creation
|
308
|
+
* Enable creation of stakeholder master data that does not exist yet
|
309
309
|
*/
|
310
|
-
|
310
|
+
createStakeholderMasterData?: boolean;
|
311
311
|
/**
|
312
|
-
*
|
312
|
+
* Enable updates of fields in automatically created stakeholders
|
313
313
|
*/
|
314
|
-
|
314
|
+
updateAutomaticallyCreatedStakeholders?: boolean;
|
315
315
|
/**
|
316
|
-
* Enable
|
316
|
+
* Enable updates of fields in manually created stakeholders
|
317
317
|
*/
|
318
|
-
|
318
|
+
updateManuallyCreatedStakeholders?: boolean;
|
319
319
|
/**
|
320
|
-
*
|
320
|
+
* Enable creation of material master data that does not exist yet
|
321
321
|
*/
|
322
|
-
|
322
|
+
createMaterialMasterData?: boolean;
|
323
323
|
/**
|
324
|
-
* Enable
|
324
|
+
* Enable updates of fields in automatically created materials
|
325
325
|
*/
|
326
|
-
|
326
|
+
updateAutomaticallyCreatedMaterials?: boolean;
|
327
327
|
/**
|
328
|
-
*
|
328
|
+
* Enable updates of fields in manually created materials
|
329
329
|
*/
|
330
|
-
|
330
|
+
updateManuallyCreatedMaterials?: boolean;
|
331
|
+
/**
|
332
|
+
* Enable creation of tariff number master data that does not exist yet
|
333
|
+
*/
|
334
|
+
createTariffNumberMasterData?: boolean;
|
335
|
+
/**
|
336
|
+
* Enable updates of fields in automatically created tariff numbers
|
337
|
+
*/
|
338
|
+
updateAutomaticallyCreatedTariffNumbers?: boolean;
|
339
|
+
/**
|
340
|
+
* Enable updates of fields in manually created tariff numbers
|
341
|
+
*/
|
342
|
+
updateManuallyCreatedTariffNumbers?: boolean;
|
331
343
|
/**
|
332
344
|
* Matching options for tariff number master data, effectively which properties from the shipment will be used to match the tariff number
|
333
345
|
* These properties from the shipment (and item) will also be automatically persisted in the master data, each combination of these properties will be a separate master data entry
|