diff --git a/src/Settings/NumberGeneratorSettings/NumberGeneratorSettingsForm.test.js b/src/Settings/NumberGeneratorSettings/NumberGeneratorSettingsForm.test.js
index 81845d9d..c1a14716 100644
--- a/src/Settings/NumberGeneratorSettings/NumberGeneratorSettingsForm.test.js
+++ b/src/Settings/NumberGeneratorSettings/NumberGeneratorSettingsForm.test.js
@@ -32,6 +32,7 @@ describe('NumberGeneratorSettingsForm', () => {
expect(screen.getByText('ui-organizations.settings.numberGeneratorOptions')).toBeInTheDocument();
expect(screen.getByText('ui-organizations.settings.numberGeneratorOptions.info')).toBeInTheDocument();
+ expect(screen.getByText('ui-organizations.settings.numberGeneratorOptions.infoAdditional')).toBeInTheDocument();
expect(
screen.getByLabelText('ui-organizations.settings.numberGeneratorOptions.useTextFieldForVendor'),
).toBeInTheDocument();
diff --git a/src/common/constants/numberGenerator.js b/src/common/constants/numberGenerator.js
index d18894b9..9cd225f6 100644
--- a/src/common/constants/numberGenerator.js
+++ b/src/common/constants/numberGenerator.js
@@ -1,6 +1,9 @@
export const NUMBER_GENERATOR_INTERFACE_NAME = 'servint';
export const NUMBER_GENERATOR_INTERFACE_VERSION = '4.0';
+export const SERVICE_INTERACTION_API = '/settings/service-interaction';
+export const SERVICE_INTERACTION_NUMBER_GENERATOR_SEQUENCES_API = '/settings/service-interaction/numberGeneratorSequences/';
+
export const VENDOR_CODE_GENERATOR_OPTIONS = {
BOTH: 'useBoth',
TEXTFIELD: 'useTextField',
diff --git a/translations/ui-organizations/en.json b/translations/ui-organizations/en.json
index 152e757d..4e7c24d3 100644
--- a/translations/ui-organizations/en.json
+++ b/translations/ui-organizations/en.json
@@ -514,6 +514,7 @@
"settings.typeStatus.Inactive": "Inactive",
"settings.numberGeneratorOptions": "Number generator options",
"settings.numberGeneratorOptions.info": "Fields which are usually filled using a numeric sequence can use the number generator. When the generator is switched on the field can either be fixed to prevent manual update, or made fully editable. When switched off, the field must be filled manually.",
+ "settings.numberGeneratorOptions.infoAdditional": "Additional number generator settings are available under {serviceInteractionLink}. At {numberGeneratorSequencesLink} sequences can be defined by selecting the appropriate generator via the drop-down menu.",
"settings.numberGeneratorOptions.useGeneratorForVendor": "Number generator on, fixed: the vendor code can be filled using the generator only.",
"settings.numberGeneratorOptions.useTextFieldForVendor": "Number generator off: the vendor code can be filled manually only.",
"settings.numberGeneratorOptions.useBothForVendor": "Number generator on, editable: the vendor code can be filled using the generator and be edited, or filled manually.",