cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Flexible Column Layout while using Multiple Views in List Report

0 Likes
2,323

Hi experts,

I'm currently having some issues using the Flexible Column Layout in my List Report. The List report consists of three different (but very similar) entity sets in accordance with the documentation here.

In the manifest I have configured it as

"config": {
    "flexibleColumnLayout": {
        "defaultTwoColumnLayoutType": "TwoColumnsBeginExpanded",
        "defaultThreeColumnLayoutType": "ThreeColumnsMidExpanded"
    },
    "routerClass": "sap.f.routing.Router"
}

However, this only seems to work correctly for one of the tables. On one table tab, I get the expected result:

But on the other tabs, when I click:

It opens the Object page in fullscreen mode:

Any ideas as to what may be causing this would be much appreciated!

Best Regards,

Jibbril

View Entire Topic
nicolas_lunet
Product and Topic Expert
Product and Topic Expert

Ok, for both the first and second tab you now defined the following targets

"target": "SubtaskObjectPage"

"target": "SubtaskObjectPage"

Which means only this page will be displayed so only one column in full screen.

If you want more you have to define an array with all the view that should be included.

Furthermore this "subtaskObjectPage" is configured to display the SubTask entityset and not the other two, if you want navigation and everything to work properly you need dedicated objectpage for the other kind of entityset.

0 Likes

That fixed it, thanks a lot!