on 2024 Feb 09 1:56 PM
Hello everyone I am having an issue where the drop down menu is not displaying.
here is what they are after
And then with mine I don't see a place to drop-down.
I configured it according to the steps and made sure (display as drop down) is ticked but nothing.
Hello Jack.
The annotations.cds file should have this code relevant to the value help. You may want to open it up and check ( it should be under the "app" folder in your project ).
annotate service.Risks with {
miti @Common.Text : {
$value : miti.descr,
![@UI.TextArrangement] : #TextOnly,
}
};
annotate service.Risks with {
miti @(Common.ValueList : {
$Type : 'Common.ValueListType',
CollectionPath : 'Mitigations',
Parameters : [
{
$Type : 'Common.ValueListParameterInOut',
LocalDataProperty : miti_ID,
ValueListProperty : 'ID',
},
],
Label : 'Mitigation',
},
Common.ValueListWithFixedValues : true
)};
annotate service.Mitigations with {
ID @Common.Text : descr
};
annotate service.Mitigations with {
owner @Common.FieldControl : #ReadOnly
};
annotate service.Mitigations with {
timeline @Common.FieldControl : #ReadOnly
};
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.