Hello Gurus,
I added 3 segmented buttons to the Object page using the @UI.selectionVariant annotation at the metadata extension level and updating the manifest.json(Screen #1) file.
Everything works fine, but every time the Object page is loaded, errors appear in the console(Screen #2).
Can anyone help me solve this problem, please?
I would appreciate any helpful comments/tips/feedback.
Metadata Extension
@Metadata.layer: #CORE
@UI:{
// Some annotations
selectionVariant: [
{ qualifier: 'All',
text: 'All' },
{ qualifier: 'PositiveValue',
text: 'Positive Value',
filter: 'MyGuestNumb GT 0' },
{ qualifier: 'NegativeValue',
text: 'Negative Value',
filter: 'MyGuestNumb LT 0' }
],
// Some annotations
}

