Skip to content

fix: code sample indentation for Create Object Dialog #187

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 3, 2025
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