2024 Aug 28 10:13 PM - edited 2024 Aug 28 10:18 PM
Hello,
In my project we are using cross hdi container and there is a table which is serving as a value help like this :
.persistence.exists
entity ELEMENT_TYPES {
key ELEMENT_TYPE_ID : String(36) @title: 'ELEMENT_TYPE_ID';
key LANGUAGE : String(2) @title: 'LANGUAGE';
DESCRIPTION : String(1000) @title: 'DESCRIPTION';
MAIN_ELEMENT : String(30) @title: 'MAIN_ELEMENT';
CODE : String(4) @title: 'CODE';
master : Association to many MASTER
on master.ELEMENT_TYPE_ID = ELEMENT_TYPE_ID;
transactional : Association to many TRANSACTIONAL
on transactional.ELEMENT_TYPE_ID = ELEMENT_TYPE_ID;
}
I would like to get rid of LANGUAGE column and use this approach : Localized Data | capire (cloud.sap)
When I deployed the changes ( deleting LANGUAGE column and adding localize ) I got an error for every associated entity and their sub-entities :
Error: The file requires "db://LOCALIZED_..." which is not provided by any file
I saw the nested localized data section on the webpage but I couldn't be sure what should I do. Do I really have to create all those tables/views or is there any other workaround for this scenario ?
Request clarification before answering.
User | Count |
---|---|
31 | |
10 | |
8 | |
7 | |
6 | |
6 | |
6 | |
5 | |
5 | |
4 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.