cancel
Showing results for 
Search instead for 
Did you mean: 

Hi I am having an issue with the drop down menu (Building side-by-side extensions on SAP BTP)

Jack2
Newcomer
0 Kudos
274

Hello everyone I am having an issue where the drop down menu is not displaying.

here is what they are after 

Jack2_1-1707486359084.png

And then with mine I don't see a place to drop-down.

Jack2_2-1707486566367.png

I configured it according to the steps and made sure (display as drop down) is ticked but nothing.

 

View Entire Topic
Mark_Quincy
Product and Topic Expert
Product and Topic Expert
0 Kudos

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
};