In my data model, I have a dimension that contains a list of offers/services. I put the sncode/tmcode (result of this dimension) in variables to use theme in other tables
An other table in my model contains the activations of those offers/services but the problem that not the exhaustive list of my offers are displayed in this table
if you create a concatenated key With TMCODE&OFFRE&SNCODE&SERVICE as %KeyActivation in both F_Activation_Revenu and D_offre_sans_ressource the Your sync table will be gone.
TMCODE has an Association to another table and should be keep in both table With a New name, like TMCODE as %KeyTMCODE and also in the Associated table..
Another way is to concatenate F_Activation_Revenu and D_offre_sans_ressource With each other.
You can also join D_offre_sans_ressource into F_Activation_Revenu if you need information from D_offre_sans_ressource.
The options is many, you have to know how you shold present data and what data you are intrested in.