Skip to Content
Technical Articles
Author's profile photo Dhanasupriya Sidagam

Multi Selection on SAP List Report Object Page

Hello All

I was trying for a multiselect option on table – SAP Fiori Elements List Report Object Page (LROP) floorplan and got to know below is also a way to get multiselect on table level.

I have given the “multiSelect”: true in manifest.json file. hope this was known to everyone. After adding this, still I was not able to get the selection option.

Now I have added an Extension to the LROP project (a button in the list report table toolbar). I refreshed the screen and was able to view the multiselect but not all the records can be selected at one go as shown below since the MultiSelectMode of table is set to ClearAll by the template generator.

Finally, I have written this code in controller to get the selection of all the records.

Output:

Though it looks simple, it’s a trick to get the multi selection in LROP. you can follow the same above steps to get the selections in Object Page if required.

Thank you!!
BR// Dhanasupriya Sidagam

#EnhanceLearning

Assigned Tags

      2 Comments
      You must be Logged on to comment or reply to a post.
      Author's profile photo Akash Jagga
      Akash Jagga

      Well explained. helpful.

      Author's profile photo Arathy Nair
      Arathy Nair

      Nice blog !

      For enabling multiple selections in List Report you need to add below code :

      "settings":{
      "tableSettings": {
                                  "multiSelect": true,
                                  "selectAll": true
                              }
      }
      "selectAll": true  - This line will enable selection of all records at one go .