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

Multiple table entries Creation in single object page Without Navigation to another page

User_1443410
Explorer
0 Likes
833

Hi Community ,

We got a requirement in RAP(ABAP Environment ) which contains header data, multiple purchase order creation table and attachment table.

In Purchase order table , we need to create multiple PO in same screen itself without navigating to next screen/page (screenshots are added ) .We have trying to developing this screen using Managed Scenario. Pls guide us . 

 

ABAP RESTful Application Programming Model   SAP S/4HANA Cloud, extended edition 

@peterpersiel 

Accepted Solutions (0)

Answers (1)

Answers (1)

Maciej__Galica
Explorer
0 Likes

Hi,

You can try to disable navigation to the PO Object page by removing the navigation in manifest.json

example:   

    "HeaderDataObjectPage": {
    "name": "sap.fe.templates.ObjectPage",
          "options": {
            "settings": {
              "navigation": {
                "_PurchaseOrderDetail": {
                  "detail": {
                 "route": "PurchaseOrderDetailObjectPage" -> delete this line
                  }
                }
              }...

Or you can use inline creation mode

sapui5/docs/06_SAP_Fiori_Elements/enabling-inline-creation-mode-or-empty-row-mode-for-table-entries-...

 

Best Regards

Maciej