Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -70,47 +70,41 @@ The option to create objects using a dialog now appears in the list report appli
>
> ```
> "sap.ui.generic.app": {
> "pages": [{
> "pages": {
> "ListReport|STTA_C_SO_SalesOrder_ND": {
> "entitySet": "C_STTA_SalesOrder_WD_20",
> "component": {
> "name": "sap.suite.ui.generic.template.ListReport",
> "list": true,
> "settings": {
> "quickVariantSelectionX": {
> "showCounts": true,
> "variants": {
> "0":
> {
> "key": "_tab1",
> "annotationPath": "com.sap.vocabularies.UI.v1.SelectionVariant#Expensive"
> },
> "1":
> {
> "key": "_tab2",
> "annotationPath": "com.sap.vocabularies.UI.v1.SelectionPresentationVariant#Cheap",
> "tableSettings": {
> "createWithParameterDialog": {
> "fields": {
> "bp_id":
> {
> "path": "bp_id"
> },
> "currency_code":
> {
> "path": "currency_code"
> },
> "op_id":
> {
> "path": "op_id"
> }
> }
> }
> }
> }
> "quickVariantSelectionX": {
> "showCounts": true,
> "variants": {
> "0": {
> "key": "_tab1",
> "annotationPath": "com.sap.vocabularies.UI.v1.SelectionVariant#Expensive"
> },
> "1": {
> "key": "_tab2",
> "annotationPath": "com.sap.vocabularies.UI.v1.SelectionPresentationVariant#Cheap",
> "tableSettings": {
> "createWithParameterDialog": {
> "fields": {
> "bp_id": { "path": "bp_id" },
> "currency_code": { "path": "currency_code" },
> "op_id": { "path": "op_id" }
> }
> }
> }
> }
> }
> }
> }
> },
> ...
> }
> },
> }
> }
> ```

If this feature is enabled, you cannot navigate to an object page in create mode. However, you can navigate to the object page in display mode to modify objects.
Expand Down
Loading