From a5102e0f4e0005fe0dfede5c66eb7aa67a93d6c1 Mon Sep 17 00:00:00 2001 From: Nicolas Lunet Date: Tue, 25 Oct 2022 10:23:52 +0200 Subject: [PATCH 1/2] Replace all reference to `custom` folder with `ext` --- docs/06_SAP_Fiori_Elements/actions-cbf16c5.md | 18 +++++++++--------- ...ding-a-section-to-an-object-page-a357047.md | 10 +++++----- ...m-actions-using-extension-points-7619517.md | 18 +++++++++--------- ...-custom-fields-to-the-filter-bar-5fb9f57.md | 18 +++++++++--------- ...-content-to-object-page-sections-8e01a46.md | 8 ++++---- ...erties-in-the-navigation-context-199a496.md | 4 ++-- ...ons-added-using-extension-points-dd78aca.md | 4 ++-- ...igation-to-different-detail-page-75002b3.md | 4 ++-- ...ponsive-table-in-the-list-report-a12ad60.md | 4 ++-- ...ponsive-table-on-the-object-page-b20dc7a.md | 4 ++-- ...ng-sap-fiori-elements-based-apps-358cf25.md | 4 ++-- ...nts-for-forms-on-the-object-page-4e49753.md | 4 ++-- ...ts-for-object-page-header-facets-61cf0ee.md | 16 ++++++++-------- ...-for-sections-on-the-object-page-92ad996.md | 6 +++--- ...r-subsections-on-the-object-page-ce8d468.md | 2 +- .../extension-points-for-tables-d525522.md | 6 +++--- ...nts-for-views-in-the-list-report-eb37203.md | 10 +++++----- ...en-sap-keep-alive-is-set-to-true-f1c2704.md | 2 +- .../share-functionality-022bf0d.md | 4 ++-- 19 files changed, 73 insertions(+), 73 deletions(-) diff --git a/docs/06_SAP_Fiori_Elements/actions-cbf16c5.md b/docs/06_SAP_Fiori_Elements/actions-cbf16c5.md index 5af6f9b8..786cd081 100644 --- a/docs/06_SAP_Fiori_Elements/actions-cbf16c5.md +++ b/docs/06_SAP_Fiori_Elements/actions-cbf16c5.md @@ -1599,7 +1599,7 @@ The following default values are available: > "@com.sap.vocabularies.UI.v1.LineItem": { > "actions": { > "DataFieldForAction::com.c_salesordermanage_sd.CreateWithSalesOrderType": { - > "defaultValuesFunction": "SalesOrder.custom.CustomActions.getDefaultValues" + > "defaultValuesFunction": "SalesOrder.ext.CustomActions.getDefaultValues" > } > } > } @@ -1775,11 +1775,11 @@ Make the following settings in the manifest to group actions under a menu button > "header": { > "actions": { > "myFirstAction": { -> "press": "SalesOrder.custom.CustomActions.message", +> "press": "SalesOrder.ext.CustomActions.message", > "text": "My First Action" > }, > "mySecondAction": { -> "press": "SalesOrder.custom.CustomActions.message", +> "press": "SalesOrder.ext.CustomActions.message", > "text": "My Second Action" > }, > "MenuActions": { @@ -1811,13 +1811,13 @@ Make the following settings in the manifest to group actions under a menu button > "@com.sap.vocabularies.UI.v1.FieldGroup#OrderData": { > "actions": { > "myFirstAction": { -> "press": "SalesOrder.custom.CustomActions.getCustomerName", +> "press": "SalesOrder.ext.CustomActions.getCustomerName", > "visible": true, > "enabled": true, > "text": "My First Action" > }, > "mySecondAction": { -> "press": "SalesOrder.custom.CustomActions.message", +> "press": "SalesOrder.ext.CustomActions.message", > "text": "My Second Action" > }, > "MenuActions": { @@ -1848,13 +1848,13 @@ Make the following settings in the manifest to group actions under a menu button > "@com.sap.vocabularies.UI.v1.LineItem": { > "actions": { > "myFirstAction": { -> "press": "SalesOrder.custom.CustomActions.getCustomerName", +> "press": "SalesOrder.ext.CustomActions.getCustomerName", > "visible": true, > "enabled": true, > "text": "My First Action" > }, > "mySecondAction": { -> "press": "SalesOrder.custom.CustomActions.message", +> "press": "SalesOrder.ext.CustomActions.message", > "text": "My Second Action" > }, > "MenuActions": { @@ -1928,8 +1928,8 @@ For certain properties, you can overwrite the annotation-based values via the ma > "@com.sap.vocabularies.UI.v1.LineItem": { > "actions": { > "DataFieldForAction::com.c_salesordermanage_sd.CreateWithSalesOrderType": { -> "enabled": "SalesOrder.custom.CustomActions.enabledIfTwoSelected" -> "visible": "SalesOrder.custom.CustomActions.visibleIfAConditionIsTrue" +> "enabled": "SalesOrder.ext.CustomActions.enabledIfTwoSelected" +> "visible": "SalesOrder.ext.CustomActions.visibleIfAConditionIsTrue" > } > } > } diff --git a/docs/06_SAP_Fiori_Elements/adding-a-section-to-an-object-page-a357047.md b/docs/06_SAP_Fiori_Elements/adding-a-section-to-an-object-page-a357047.md index 974e4a0c..8438d6c3 100644 --- a/docs/06_SAP_Fiori_Elements/adding-a-section-to-an-object-page-a357047.md +++ b/docs/06_SAP_Fiori_Elements/adding-a-section-to-an-object-page-a357047.md @@ -149,14 +149,14 @@ The object page of the *Manage Products* app shows the new section *Product Desc In the editor of your choice, open the folder structure of the project where you want to make the adaptation and proceed as follows: -1. In the `webapp` folder, create a new subfolder called `custom`. -2. In the folder `custom`, create the file `CustomSection.view.xml`. +1. In the `webapp` folder, create a new subfolder called `ext`. +2. In the folder `ext`, create the file `CustomSection.view.xml`. 3. Define the view with its elements, in this example a `VerticalLayout` with several other controls is used. Bindings can be used as well. > ### Sample Code: > ```xml > - > + > >