https://raw.githubusercontent.com/ajmaradiaga/feeds/main/scmt/topics/SAPUI5-qa.xmlSAP Community - SAPUI52026-04-22T14:02:38.835113+00:00python-feedgenSAPUI5 Q&A in SAP Communityhttps://community.sap.com/t5/supply-chain-management-q-a/possible-extension-for-fiori-app-quot-stage-for-production-quot/qaq-p/14353726Possible extension for fiori app "Stage for Production"2026-03-19T17:07:25.924000+01:00felice_minardia6e46ehttps://community.sap.com/t5/user/viewprofilepage/user-id/2288921<P>Hello Experts,</P><P>I've been asked to add into the Fiori app "Stage for production", two fields that are already available into PMR, at item level. The fields are "Operation Number or Activity Number" (/SCWM/S_SP_A_ITEM_PRDP - /SCWM/OPERATION) and "Operation Short Description" (/SCWM/S_SP_A_ITEM_PRDP - /SCWM/OPERATION_DESCR).</P><P>Do you know if it's somehow possible to extend the app to add these two fields?</P><P>Is it somehow possible via SPRO?</P><P>Thank you for your support</P>2026-03-19T17:07:25.924000+01:00https://community.sap.com/t5/technology-q-a/question-regarding-sapui5-3d-viewer-background/qaq-p/14355415Question Regarding SAPUI5 3D Viewer Background2026-03-23T07:14:42.740000+01:00yonggyuhttps://community.sap.com/t5/user/viewprofilepage/user-id/1606323<P class=""><SPAN>Hello,</SPAN></P><P class=""><SPAN>I have a question regarding the SAPUI5 3D Viewer.</SPAN></P><P class=""><SPAN>Is it possible to change the background of the scene to a 2D image and then load a 3D CAD file on top of that background?</SPAN></P><P class=""><SPAN>If possible, could you let me know the method?</SPAN></P><P><SPAN>Thank you.</SPAN></P>2026-03-23T07:14:42.740000+01:00https://community.sap.com/t5/technology-q-a/question-about-sapui5-3d-viewer/qaq-p/14355425Question about SAPUI5 3D Viewer2026-03-23T07:25:37.217000+01:00yonggyuhttps://community.sap.com/t5/user/viewprofilepage/user-id/1606323<P>Hello,</P><P>I have a question regarding the SAPUI5 3D Viewer.</P><P>Is it possible to change the scene background by loading a 2D image, and then load a 3D model on top of that background?</P><P>If so, could you please explain how to achieve this?</P><P>Thank you in advance.</P><P>Best regards,<BR />Yonggyu Choi</P>2026-03-23T07:25:37.217000+01:00https://community.sap.com/t5/technology-q-a/how-to-use-btp-destination-with-rest-api-in-ui5-app-bas-local-development/qaq-p/14357024How to use BTP Destination with REST API in UI5 App (BAS local development)2026-03-24T13:36:11.535000+01:00TimurKalynovskyihttps://community.sap.com/t5/user/viewprofilepage/user-id/2225012<P>Hello,</P><P>I created a Destination in my SAP BTP subaccount (connection test is successful).<BR />(see screenshot below)</P><P><span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="TimurKalynovskyi_0-1774350100452.png" style="width: 400px;"><img src="https://community.sap.com/t5/image/serverpage/image-id/388304i7FAA5DA9E5FD0D7B/image-size/medium?v=v2&px=400" role="button" title="TimurKalynovskyi_0-1774350100452.png" alt="TimurKalynovskyi_0-1774350100452.png" /></span></P><P><span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="TimurKalynovskyi_4-1774354493629.png" style="width: 400px;"><img src="https://community.sap.com/t5/image/serverpage/image-id/388336iFB4C2A43BAE7314F/image-size/medium?v=v2&px=400" role="button" title="TimurKalynovskyi_4-1774354493629.png" alt="TimurKalynovskyi_4-1774354493629.png" /></span></P><P> </P><P>My goal is to deploy the app later to Cloud Foundry.<BR />However, first I want to make my UI5 app work <STRONG>locally in SAP Business Application Studio (BAS)</STRONG> using the Destination, including authentication and data retrieval from the backend.<BR /><BR />Current App Configuration:<BR /><BR />ui5.yaml</P><pre class="lia-code-sample language-yaml"><code># yaml-language-server: $schema=https://sap.github.io/ui5-tooling/schema/ui5.yaml.json
specVersion: "4.0"
metadata:
name: testproject1
type: application
server:
customMiddleware:
- name: fiori-tools-proxy
afterMiddleware: compression
configuration:
ignoreCertErrors: false
ui5:
path:
- /resources
- /test-resources
url: https://ui5.sap.com
backend:
- path: /backend
destination: TEST_BACKEND
- name: fiori-tools-appreload
afterMiddleware: compression
configuration:
port: 35729
path: webapp
delay: 300
- name: fiori-tools-preview
afterMiddleware: fiori-tools-appreload
configuration:
flp:
theme: sap_horizon</code></pre><P>xs-app.json</P><pre class="lia-code-sample language-json"><code>{
"welcomeFile": "/index.html",
"authenticationMethod": "route",
"routes": [
{
"source": "^/backend/(.*)$",
"target": "/$1",
"destination": "TEST_BACKEND",
"authenticationType": "none"
},
{
"source": "^/resources/(.*)$",
"target": "/resources/$1",
"authenticationType": "none",
"destination": "ui5"
},
{
"source": "^/test-resources/(.*)$",
"target": "/test-resources/$1",
"authenticationType": "none",
"destination": "ui5"
},
{
"source": "^(.*)$",
"target": "$1",
"service": "html5-apps-repo-rt",
"authenticationType": "xsuaa"
}
]
}</code></pre><P>AJAX in Controller</P><pre class="lia-code-sample language-javascript"><code> _loadMetadata: async function () {
$.ajax({
type: "GET",
url: "/testproject1/backend/application/api/v1/documenthub/$metadata",
headers: {
"Accept": "application/json"
},
success: function (oData) {
console.log("Success", oData);
MessageToast.show("Metadata erfolgreich geladen");
},
error: function (err) {
console.log("Error", err);
MessageBox.error("Fehler beim Laden von Metadata");
}
});
}</code></pre><DIV><DIV><SPAN><BR />Problem<BR /><BR />testproject1 </SPAN><SPAN>in AJAX-URL is my app-ID from manifest.</SPAN></DIV><DIV><SPAN>Case 1: <BR />When Calling <BR /></SPAN></DIV></DIV><pre class="lia-code-sample language-javascript"><code>url: "/testproject1/backend/application/api/v1/documenthub/$metadata"</code></pre><P><SPAN>I get 404<BR /><BR /></SPAN><span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="TimurKalynovskyi_1-1774352244766.png" style="width: 999px;"><img src="https://community.sap.com/t5/image/serverpage/image-id/388315i27B056D2F74D3B09/image-size/large?v=v2&px=999" role="button" title="TimurKalynovskyi_1-1774352244766.png" alt="TimurKalynovskyi_1-1774352244766.png" /></span></P><P>Case 2:<BR />When Calling</P><pre class="lia-code-sample language-javascript"><code>url: "/backend/application/api/v1/documenthub/$metadata"</code></pre><P>I get 500</P><P><span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="TimurKalynovskyi_2-1774352396564.png" style="width: 999px;"><img src="https://community.sap.com/t5/image/serverpage/image-id/388317i03A693F9E0DDFD0F/image-size/large?v=v2&px=999" role="button" title="TimurKalynovskyi_2-1774352396564.png" alt="TimurKalynovskyi_2-1774352396564.png" /></span></P><P>Console log shows:</P><P><span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="TimurKalynovskyi_3-1774352467600.png" style="width: 999px;"><img src="https://community.sap.com/t5/image/serverpage/image-id/388319i9C4B5BFE9C1AD2DC/image-size/large?v=v2&px=999" role="button" title="TimurKalynovskyi_3-1774352467600.png" alt="TimurKalynovskyi_3-1774352467600.png" /></span></P><P>Additional Info:<BR />- Destination "Check Connection" works in BTP<BR />- Backend works in Postman with OAuth2<BR />- Problem occurs only in BAS local preview</P><P>I have already watched some posts and questions on similar problems, but they didn't help me solve my problem.</P><P>I would be grateful if someone could help me.<BR /><BR />Timur</P><P><BR /><BR /></P>2026-03-24T13:36:11.535000+01:00https://community.sap.com/t5/technology-q-a/my-time-event-f1506b-frontend-extension/qaq-p/14357973My Time Event (F1506B) Frontend Extension2026-03-25T14:23:31.585000+01:00Vibha_Goswamihttps://community.sap.com/t5/user/viewprofilepage/user-id/2219847<P>Hi ,</P><P>We have to enhance <STRONG>"My Time Event"</STRONG> Fiori Application. But not able to see any extension point in SAP Help. Please assist.</P><P>Thanks!</P><P>Vibha.</P><P> </P>2026-03-25T14:23:31.585000+01:00https://community.sap.com/t5/technology-q-a/my-time-event-f1506b-frontend-extension/qaq-p/14357991My Time Event (F1506B) Frontend Extension2026-03-25T14:32:08.329000+01:00Vibha_Goswamihttps://community.sap.com/t5/user/viewprofilepage/user-id/2219847<P>Hi ,</P><P>We need to enhance My Time Event Fiori Application. But not able to see any extension point in SAP Help. Please assist.</P><P>Thanks!</P><P>Vibha.</P>2026-03-25T14:32:08.329000+01:00https://community.sap.com/t5/technology-q-a/odataversion-4-01-prevents-app-from-being-imported-into-work-zone-html5/qaq-p/14358807odataVersion 4.01 prevents app from being imported into Work Zone HTML5 Apps2026-03-26T12:00:39.470000+01:00MioYasutakehttps://community.sap.com/t5/user/viewprofilepage/user-id/789<P class="">Hi community,</P><P class="">I have a UI5 app that uses an OData service, and the <STRONG>odataVersion</STRONG> in manifest.json is set to <STRONG>4.01</STRONG>.</P><pre class="lia-code-sample language-json"><code> "mainService": {
"uri": "/odata/v4/quote/",
"type": "OData",
"settings": {
"annotations": [
"annotation"
],
"localUri": "localService/mainService/metadata.xml",
"odataVersion": "4.01"
}
}</code></pre><P class="">When I deploy this app to Cloud Foundry and refresh the Channel Manager in SAP Build Work Zone, the app fails to be imported, and the downloaded report contains the following error:</P><P><span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MioYasutake_0-1774522701852.png" style="width: 999px;"><img src="https://community.sap.com/t5/image/serverpage/image-id/389244i0044F0697D34220E/image-size/large?v=v2&px=999" role="button" title="MioYasutake_0-1774522701852.png" alt="MioYasutake_0-1774522701852.png" /></span></P><DIV class=""><DIV class=""><DIV class=""><DIV class=""><DIV class=""><DIV class=""> </DIV></DIV></DIV></DIV></DIV><DIV class=""><PRE><CODE><SPAN>businessapp does not match the schema, dataPath: undefined, message: 'must be equal to one of the allowed values' [ '2.0', '4.0' ]"</SPAN></CODE></PRE></DIV></DIV><P class="">Changing odataVersion to 4.0 makes the import succeed.</P><P class="">I believe this is a bug in Work Zone. I hope it will be fixed, but I am sharing this in case others are facing the same issue.</P>2026-03-26T12:00:39.470000+01:00https://community.sap.com/t5/technology-q-a/duplicate-apps-appearing-on-the-work-zone-page/qaq-p/14358816Duplicate apps appearing on the Work Zone page2026-03-26T12:07:33.499000+01:00MioYasutakehttps://community.sap.com/t5/user/viewprofilepage/user-id/789<P>Hi community,</P><P class="">When adding a UI5 app deployed to the HTML5 App Repository to a page in SAP Build Work Zone, the same application appears twice in the "Add Apps" dialog. One entry shows the system as "saas_approuter" and the other shows "saas_approuter" followed by an additional string (what appears to be a GUID).</P><P><span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MioYasutake_0-1774523175014.png" style="width: 999px;"><img src="https://community.sap.com/t5/image/serverpage/image-id/389248iF4264A3D70FD92F1/image-size/large?v=v2&px=999" role="button" title="MioYasutake_0-1774523175014.png" alt="MioYasutake_0-1774523175014.png" /></span></P><P class="">When I select the entry with the additional string, the app does not appear on the site after being added.</P><P class="">This duplicate entry with the appended string started appearing recently, and I would like to understand why it is showing up.</P>2026-03-26T12:07:33.499000+01:00https://community.sap.com/t5/technology-q-a/error-message-lb261-material-master-data-error-message/qaq-p/14360165Error Message LB261 - Material Master Data Error (?) Message2026-03-27T19:46:59.715000+01:00Folivierohttps://community.sap.com/t5/user/viewprofilepage/user-id/1496718<P>Hi all ,</P><P>we are doing an upgrade from version 1909 to 2023 .<BR />During our test we are facing a strange error (?) in the system.</P><P>In MM02 for some materials we have two different and alternative unit of measure (MASS - KG and G) because we are manaing a conversion between KG and Meters in Proport. Unit of Measure</P><P><span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Foliviero_2-1774636931264.png" style="width: 400px;"><img src="https://community.sap.com/t5/image/serverpage/image-id/389957i5588192EBABDBC7F/image-size/medium?v=v2&px=400" role="button" title="Foliviero_2-1774636931264.png" alt="Foliviero_2-1774636931264.png" /></span></P><P><span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Foliviero_1-1774636915046.png" style="width: 400px;"><img src="https://community.sap.com/t5/image/serverpage/image-id/389956i60EA92569FB84DE7/image-size/medium?v=v2&px=400" role="button" title="Foliviero_1-1774636915046.png" alt="Foliviero_1-1774636915046.png" /></span></P><P>During an update for this material i'm facing this error and system don't give me the possibility to do anything else:</P><P><span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Foliviero_3-1774637147128.png" style="width: 400px;"><img src="https://community.sap.com/t5/image/serverpage/image-id/389958iDB3273A1D31BA088/image-size/medium?v=v2&px=400" role="button" title="Foliviero_3-1774637147128.png" alt="Foliviero_3-1774637147128.png" /></span></P><P>We need the conversion and the units of measure in the tab. Alternative unit of measure for business requirements.<BR />Did you face already this error? How can we manage it?<BR />Thanks</P><P> </P>2026-03-27T19:46:59.715000+01:00https://community.sap.com/t5/technology-q-a/batch-and-country-of-origin-details-in-intrastat-report-ve01/qaq-p/14362611Batch and Country of Origin details in INTRASTAT Report-VE012026-03-31T11:14:23.192000+02:00sivasharankumar_dasari8d5bd0https://community.sap.com/t5/user/viewprofilepage/user-id/2288554<P>Hello All,</P><P>Could you please help how to populate values of batch & Country of origin details in INTRASTAT Report (VE01) for invoice. </P><P>With Batch split and without batch split need to populate values in INSTRAT Report.</P><P> </P><P>Thanks & Regards</P><P>Sivasharan</P>2026-03-31T11:14:23.192000+02:00https://community.sap.com/t5/technology-q-a/activating-the-business-function-fins-parallel-accounting-bf-in-sandbox/qaq-p/14364534Activating the business function ‘FINS_PARALLEL_ACCOUNTING_BF' in sandbox system2026-04-02T13:24:47.588000+02:00DurgaraoTirumanihttps://community.sap.com/t5/user/viewprofilepage/user-id/2110566<P>Dear Team,</P><P>We are currently testing the ABAVN (asset retirement) and ABAON (asset scrapping) processes using custom workflow functionality. The requirement is to auto-populate all mandatory fields for these transactions from a custom dashboard, present the values to the user for simulation/review, and then proceed with posting based on the user’s confirmation.<BR />The ABAP team has proposed testing the API_FIXEDASSETRETIREMENT_G4BA API to meet the auto-population and posting needs. However, per the SAP Business Accelerator Hub page “Overview | Fixed Asset – Post Asset Retirement , use of this API requires activation of the business function “Universal Parallel Accounting” (FINS_PARALLEL_ACCOUNTING_BF). Based on SAP Note 3191636 (“Universal Parallel Accounting: Scope Information, this activation may have significant system-wide implications.<BR />We are performing the initial testing in the sandbox using representative master and transaction data. If successful, the plan is to evaluate the impact, proceed with activation in the target system as appropriate, and then propose the end-to-end solution to the business.</P><P>We are not planning to implement CO-PA at this time. However, SAP Note 3191636 indicates that activating the “Universal Parallel Accounting” business function (FINS_PARALLEL_ACCOUNTING_BF) can also impact CO-PA.</P><P><STRONG>Question:</STRONG> Can we proceed with activating this business function to enable testing? If yes, is activation reversible (i.e., can it be deactivated later), and would it still be feasible to activate/deploy the impacted application components (including CO-PA along with below given one's, if needed) after this business function is enabled?</P><UL><LI>FI-GL (General Ledger Accounting)</LI><LI>FI-AA (Asset Accounting)</LI><LI>CO-OM (Overhead Cost Controlling)</LI><LI>CO-PC-OBJ (Cost Object Controlling)</LI><LI>CO-PC-OBJ-EBR (Event-Based Revenue Recognition)</LI><LI>CO-PC-PCP (Product Cost Planning)</LI><LI>CO-PC-ACT (Actual Costing)</LI><LI>CO-PC-ML (Material Subledger)</LI><LI>CO-PA (Margin Analysis)</LI><LI>CO-FIO-OM (Overhead Management)</LI><LI>IM (Investment Management)</LI><LI>MM-IM-VP (Inventory Balance Sheet Valuation)</LI><LI>MM-SRV (External Services)</LI><LI>RE-FX (Flexible Real Estate Management)</LI></UL><P> </P><P><SPAN>Please review the request above and share your inputs/recommendations. I’d appreciate your guidance on the best path forward. </SPAN></P><P> </P><P><SPAN>Thank you., </SPAN></P><P><SPAN>Regards,</SPAN></P><P><SPAN>Durgarao.T</SPAN></P><P> </P>2026-04-02T13:24:47.588000+02:00https://community.sap.com/t5/technology-q-a/unable-to-adapt-standard-fiori-travel-request-app-modification-not/qaq-p/14364595Unable to adapt standard Fiori Travel Request app – modification not supported2026-04-02T14:25:41.161000+02:00SAPHR_KPMGhttps://community.sap.com/t5/user/viewprofilepage/user-id/1955726<P>Hi Team,</P><P>I want to make changes in a standard Fiori application. I tried adapting the <STRONG>Travel Request Fiori standard app</STRONG> in <STRONG>BAS using UI Adaptation</STRONG>, but the current version does not support this change. Modification of the standard application is not supported.</P><P>I also tried making the same change from <STRONG>SAP Logon</STRONG>, but the issue still remains and the modification is not possible.</P><P>I have attached all the error screenshots and mentioned where the changes were attempted for your reference.</P><P> </P><P>Thanks & regrds,</P><P>Amruta</P>2026-04-02T14:25:41.161000+02:00https://community.sap.com/t5/technology-q-a/condition-contract-turnover-profile-konditionskontrakt-profile-zur/qaq-p/14365754Condition Contract Turnover Profile / Konditionskontrakt Profile zur Umsatzermittlung Gutschriften2026-04-04T15:57:11.755000+02:00Miriam1985https://community.sap.com/t5/user/viewprofilepage/user-id/2102547<P>Perhaps somebody can help - in the turnover calculation there is for customer Bonus 0S01 following table VWB2_VBRKVBRP_1</P><P> </P><P>Bsuiness Volume from Billing document but Credit or Debit notes are note in these tables</P><P> </P><P>EG: Customer has Invoices with volume 0f 500€ and received a credit note with value of 50 € than the bonus basis shoul be 450 € and not 500 but in our system the Credit note is not deducted from the turnover. Anybody who coould help?</P>2026-04-04T15:57:11.755000+02:00https://community.sap.com/t5/technology-q-a/sap-fiori-list-report-app-does-not-load-automatically-when-navigating-back/qaq-p/14369659SAP Fiori List report app does not load automatically when navigating back to app2026-04-09T11:57:33.066000+02:00Sugandha_Guptahttps://community.sap.com/t5/user/viewprofilepage/user-id/1471610<P>In Adaptation project which is built on a Fiori list report app, the app data does not load automatically when navigated back to this application. User has to manually click on Go. There is a mandatory filter in app, which has data when app loads.</P><P>This was working in earlier versions, but stopped working after upgrading to S4HANA 2023.</P><P>We have tried various properties in manifest of main application to enable auto loading, but its not working. </P><P>Can someone please provide possible solutions.</P>2026-04-09T11:57:33.066000+02:00https://community.sap.com/t5/technology-q-a/sap-ui5-issue-calling-deep-entity-of-json-sap-ui5-v2-odata-standard-api/qaq-p/14371604SAP UI5: ISSUE : Calling Deep Entity of JSON - SAP UI5 - V2 OData - Standard API2026-04-12T11:10:33.646000+02:00Akash0924https://community.sap.com/t5/user/viewprofilepage/user-id/2111748<pre class="lia-code-sample language-json"><code>{
"BusinessPartnerCategory": "2",
"BusinessPartnerGrouping": "0001",
"OrganizationBPName1": "My Deep Insert Customer",
"CorrespondenceLanguage": "EN",
"to_BusinessPartnerRole": [{
"BusinessPartnerRole": "FLCU01"
}],
"to_BusinessPartnerAddress": [
{
"CityName": "Hyderabad",
"ValidityStartDate" :"2024-09-23T00:00:00",
"ValidityEndDate" : "9999-12-31T00:00:00" ,
"PostalCode": "101175",
"StreetName": "Platz der Republik",
"AddressTimeZone" : "INDIA" ,
"Country": "IN",
"Language": "EN",
"to_EmailAddress": [
{ "EmailAddress": "contact@example.com" }
],
"to_MobilePhoneNumber": [
{
"PhoneNumber": "9876543210",
"IsDefaultPhoneNumber": true
}
],
"to_AddressUsage": [
{ "AddressUsage": "XXDEFAULT" }
]
}
],
"to_Customer": {
"Customer": "B000000992",
"CustomerAccountGroup" :"DEBI", // leave blank for internal number range
"to_CustomerCompany": [
{
"CompanyCode": "1710",
"ReconciliationAccount": "12100000",
"PaymentTerms": "0001"
}
],
"to_CustomerSalesArea": [
{
"SalesOrganization": "1710",
"DistributionChannel": "10",
"Division": "00",
"Currency": "EUR",
"CustomerPricingProcedure": "1",
"CustomerAccountAssignmentGroup": "01",
"CustomerPaymentTerms": "0001",
"ShippingCondition": "01",
"SupplyingPlant": "1710",
"SalesDistrict": "US0001",
"CustomerPriceGroup": "01",
"to_PartnerFunction": [
{
"PartnerFunction": "SP",
"Customer": "B000000992"
}
]
}
]
}
}</code></pre><P>The Above is the JSON Payload which i am trying to access in my sap ui5 table </P><pre class="lia-code-sample language-markup"><code> <Table
id="CustomerTable"
width="100%"
growing="true"
growingThreshold="10"
sticky="ColumnHeaders"
inset="false"
class="sapUiSizeCompact"
items="{
path: 'Customer_Model>/A_BusinessPartner',
parameters: {
expand: 'to_BusinessPartnerAddress/to_EmailAddress,to_BusinessPartnerAddress/to_MobilePhoneNumber'
}
}"
>
<headerToolbar>
<Toolbar class="sapUiTinyMarginBottom">
<Title text="Customers" level="H2" />
<ToolbarSpacer />
<SearchField
id="custSearch"
width="300px"
placeholder="Search Customer"
search="onCustSearch"
liveChange="onCustSearch"
/>
</Toolbar>
</headerToolbar>
<columns>
<Column>
<Text text="Business Partner" />
</Column>
<Column>
<Text text="Organisation Name" />
</Column>
<Column>
<Text text="BusinessPartnerFullName" />
</Column>
</columns>
<items>
<ColumnListItem
type="Navigation"
press="onCustItemPress"
>
<cells>
<ObjectIdentifier
title="{Customer_Model>BusinessPartner}"
/>
<Text text="{Customer_Model>OrganizationBPName1}" />
</cells>
</ColumnListItem>
</items>
</Table></code></pre><P>in the above table i want to access the email, phone number, address </P><H2 id="toc-hId-1794113808"><SPAN>Data Paths Used:</SPAN></H2><UL><LI><P class=""><STRONG><SPAN>Address</SPAN></STRONG><SPAN>: </SPAN><CODE>{Customer_Model>to_BusinessPartnerAddress/0/CityName}, {Customer_Model>to_BusinessPartnerAddress/0/Country}</CODE></P></LI><LI><P class=""><STRONG><SPAN>Email</SPAN></STRONG><SPAN>: </SPAN><CODE>{Customer_Model>to_BusinessPartnerAddress/0/to_EmailAddress/0/EmailAddress}</CODE></P></LI><LI><P class=""><STRONG><SPAN>Phone</SPAN></STRONG><SPAN>: </SPAN><CODE>{Customer_Model>to_BusinessPartnerAddress/0/to_MobilePhoneNumber/0/PhoneNumber}</CODE><BR /><BR /><BR /></P><span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Akash0924_0-1775984837173.png" style="width: 999px;"><img src="https://community.sap.com/t5/image/serverpage/image-id/396477i7EFC44721934637A/image-size/large?v=v2&px=999" role="button" title="Akash0924_0-1775984837173.png" alt="Akash0924_0-1775984837173.png" /></span><P>please help me in this</P></LI></UL>2026-04-12T11:10:33.646000+02:00https://community.sap.com/t5/technology-q-a/avoid-create-sales-order-from-certain-sales-office-and-invoice-from-certain/qaq-p/14374202Avoid create sales order from certain sales office and invoice from certain business area2026-04-14T16:59:02.208000+02:00sdtehttps://community.sap.com/t5/user/viewprofilepage/user-id/1384534<P>Hello SAP Community</P><P><U><STRONG>Sales Order creation in VA01</STRONG></U></P><P>I have Sales office1, Sales office2 and Sales office3 in the same sales organization.</P><P>Sales office1 and Sales office2 could create also sales orders in Sales office3. However, Sales office3 shouldn't create the sales order in the rest of the Sales offices.</P><P>We have a role that has V_VBAK_VKO with the sales organization and channel distribution.</P><P>We have try to add the sales office to block in VA01, but it hasn´t worked. It seems that it isn´t work in sales office level. Is it this correct or is there a way it can work?</P><P>I've seen the OSS note <SPAN>3046057 - Authorization check regarding sales office and sales group in sales document. This note have an example to create a z authorization object. </SPAN>Can´t we manage it by authorizations in roles, without ABAP? It's just I wanted to know if there weren't any other way apart from using user-exit.</P><P><U><STRONG>Invoice creation in VF01 and VF04</STRONG></U></P><P>We have the same problem at invoice creation VF01 and VF04 transaction, how to manage the authorizations in roles to filter by business area? I have business area1 and 2 that can see BA3, but BA3 shouldn´t see BA1 and BA2. We are using V_VBRK_VKO. Is there a way to manage by standard authorization objects?</P><P> </P><P>Kindly ask for your advice and thank you in advance.</P><P>Best regards</P>2026-04-14T16:59:02.208000+02:00https://community.sap.com/t5/technology-q-a/issue-with-japanese-ime-input-recognition-in-value-help-search-field-fiori/qaq-p/14374476Issue with Japanese IME Input Recognition in Value Help Search Field (Fiori Elements)2026-04-15T04:40:54.856000+02:00khanhvt4https://community.sap.com/t5/user/viewprofilepage/user-id/1566136<P>In a SAP Fiori Elements application running on SAPUI5 1.120.2, using OData V4 and CAPM (Nodejs) as backend service, we implement Value Help using annotations only (@Common.ValueList).</P><P><BR />When users input Japanese text using IME in the search field inside the Value Help and perform conversion (space + enter), the latest converted value is not recognized by the search field for the first time. If user closes the Value Help dialog and enters the input again for the second time, the search field works as expected.</P><P><BR /><STRONG>Unexpected result: </STRONG></P><UL><LI>The result list is not updated according to the latest input.</LI></UL><P><STRONG>Expected Result: </STRONG></P><UL><LI>The result list should be updated immediately based on the final converted Japanese text, without requiring the dialog to be reopened.</LI></UL><DIV><STRONG><STRONG>Question: </STRONG></STRONG><SPAN>Has anyone experienced this issue before? If so, how was it resolved? Any guidance would be appreciated.</SPAN></DIV>2026-04-15T04:40:54.856000+02:00https://community.sap.com/t5/technology-q-a/comp-code-1000-actg-principle-gaap-1-fixed-assets-with-processing-errors/qaq-p/14375969Comp code 1000, actg principle GAAP: 1 Fixed assets with processing errors message AB256"2026-04-16T13:26:10.442000+02:00deloitte_vimalnegihttps://community.sap.com/t5/user/viewprofilepage/user-id/2251059<P>We are getting issue while posting depreciation. Depreciation has been posted for all assets in this company code 1000 except 2 assets. We are getting error "Comp code 1000, actg principle GAAP: 1 Fixed assets with processing errors message AB256" for these 2 assets</P>2026-04-16T13:26:10.442000+02:00https://community.sap.com/t5/product-lifecycle-management-q-a/i-want-to-know-is-it-possible-to-save-the-column-width-in-variante/qaq-p/14376621I want to know is it possible to save the column width in variante.2026-04-17T08:32:15.804000+02:00Snigdha_Ramala1https://community.sap.com/t5/user/viewprofilepage/user-id/2077843<DIV><P><STRONG>Hello All,</STRONG></P><P>I have a question regarding <STRONG>column width settings</STRONG>. Whenever I adjust a new column and set its width, the changes are lost after refreshing the page.</P><P>I would like to know whether it is possible to <STRONG>save the column width in a variant</STRONG>, so that the settings are retained even after a refresh.</P><P><STRONG>Regards,</STRONG><BR />Snigdha R</P></DIV><P> </P><P><span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Snigdha_Ramala1_0-1776407423860.png" style="width: 400px;"><img src="https://community.sap.com/t5/image/serverpage/image-id/399374i3CDB642BD75B04E8/image-size/medium?v=v2&px=400" role="button" title="Snigdha_Ramala1_0-1776407423860.png" alt="Snigdha_Ramala1_0-1776407423860.png" /></span></P><P> </P>2026-04-17T08:32:15.804000+02:00https://community.sap.com/t5/technology-q-a/ui5-fiori-elements-v4-upgrade-navigating-the-addressvianavigationpath/qaq-p/14377498UI5/Fiori Elements V4 Upgrade: Navigating the AddressViaNavigationPath Breaking Change2026-04-19T11:00:52.335000+02:00kayur_goyalhttps://community.sap.com/t5/user/viewprofilepage/user-id/304198<P># Introduction</P><P>Recently, I upgraded a UI5 and Fiori Elements V4 application from version 1.132.1 to 1.136.13. While the upgrade process was relatively smooth, I encountered an interesting breaking change related to entity associations and PATCH requests that I'd like to share with the community.</P><P>## The Issue</P><P>During testing, I discovered that PATCH requests for nested entity associations were suddenly failing after the upgrade. The root cause? A behavioral change in how the framework constructs update paths for related entities.</P><P>### What Changed</P><P>In versions prior to 1.135, when updating entities with one-to-many associations, the framework used **short paths** in PATCH requests. However, starting with version 1.135 and continuing through 1.136.13, the framework began using **long paths** when the following annotation was present at the entity container level:</P><P>```xml<BR /><Annotation Term="Common.AddressViaNavigationPath" Bool="true"/><BR />```</P><P>**Example of the difference:**<BR />- **Short path (old behavior):** `/EntityA(key1)/NavPropertyB/EntityB(key2)`<BR />- **Long path (new behavior):** `/EntityA(key1)/to_NavPropertyB(key2)`</P><P>This change broke compatibility with existing backend services that expected the short path format.</P><P>## The Solution</P><P>The fix is straightforward and should be applied at the **CDS annotation level**. You need to explicitly set the `@Common.AddressViaNavigationPath` annotation to `false` on your entities:</P><P>```cds<BR /><a href="https://community.sap.com/t5/user/viewprofilepage/user-id/1648847">@Common</a>.AddressViaNavigationPath: false<BR />entity MyEntity {<BR />// entity definition<BR />}<BR />```</P><P>### Implementation Steps</P><P>1. **Locate affected entities** - Identify entities with one-to-many associations that are being updated<BR />2. **Add the annotation** - Apply `@Common.AddressViaNavigationPath: false` to the entity definition<BR />3. **Test PATCH requests** - Verify that update requests now use short paths<BR />4. **Redeploy** - Deploy your changes and test end-to-end</P><P>## Why This Matters</P><P>This breaking change highlights an important principle when upgrading frameworks: **always test data modifications thoroughly**. While UI rendering changes are often immediately visible, changes to request payload structures can silently break integrations.</P><P>## Conclusion</P><P>If you're upgrading to Fiori Elements V4 1.135 or later and experience issues with entity updates, check your entity annotations. A simple `@Common.AddressViaNavigationPath: false` annotation can restore the previous behavior and ensure backward compatibility with your backend services.</P><P>Have you encountered similar breaking changes during upgrades? Share your experiences in the comments below!</P>2026-04-19T11:00:52.335000+02:00