https://raw.githubusercontent.com/ajmaradiaga/feeds/main/scmt/topics/SAPUI5-qa.xmlSAP Community - SAPUI52026-07-24T20:01:42.201907+00:00python-feedgenSAPUI5 Q&A in SAP Communityhttps://community.sap.com/t5/technology-q-a/cannot-select-the-data-from-the-list-of-our-previous-entries-in-sap-fiori/qaq-p/14415825cannot select the data from the list of our previous entries in SAP FIORI2026-06-10T18:20:23.152000+02:00Servierhttps://community.sap.com/t5/user/viewprofilepage/user-id/1677181<P>we can populate the fields in SAP Fiori if we add them manually, but the problem is that we cannot select the data from the list of our previous entries in SAP Fiori</P>2026-06-10T18:20:23.152000+02:00https://community.sap.com/t5/technology-q-a/f0366-my-spend-new-app-need-to-change-period-from-month-to-date-to-year-to/qaq-p/14415854F0366 - My spend new app - Need to change period from Month-to-date to Year-to-date2026-06-10T19:14:15.680000+02:00Mus_ABAPERhttps://community.sap.com/t5/user/viewprofilepage/user-id/1832261<P class="">Hi SAP community! <span class="lia-unicode-emoji" title=":waving_hand:">👋</span></P><P class="">I'm currently working with the<SPAN> </SPAN><STRONG>Fiori app F0366 – My Spend</STRONG><SPAN> </SPAN>(new version) and I'm trying to figure out if it's still possible to switch the period view from<SPAN> </SPAN><STRONG>Month-to-Date</STRONG><SPAN> </SPAN>to<SPAN> </SPAN><STRONG>Year-to-Date</STRONG>.</P><P class=""><span class="lia-unicode-emoji" title=":pushpin:">📌</span> Maybe I'm wrong, but seems this option was available in the<SPAN> </SPAN><STRONG>older version</STRONG><SPAN> </SPAN>of the app, but I can't seem to find it in the new one.</P><P class="">A few questions I'd love to get input on:</P><UL><LI>Has this option been<SPAN> </SPAN><STRONG>removed or relocated</STRONG><SPAN> </SPAN>in the new version?</LI><LI>Is there a<SPAN> </SPAN><STRONG>configuration or personalization setting</STRONG><SPAN> </SPAN>I might be missing?</LI><LI>Could this be related to a<SPAN> </SPAN><STRONG>role/authorization</STRONG><SPAN> </SPAN>restriction?</LI><LI>Any workaround or<SPAN> </SPAN><STRONG>alternative app</STRONG><SPAN> </SPAN>that provides a Year-to-Date spend view?</LI></UL><P class="">Would appreciate any feedback from those who have worked on this app, whether from a<SPAN> </SPAN><STRONG>functional, Basis, or Fiori/UI5</STRONG><SPAN> </SPAN>perspective. <span class="lia-unicode-emoji" title=":folded_hands:">🙏</span><BR /><BR />S/4 HANA On-premise 2023 SP02</P>2026-06-10T19:14:15.680000+02:00https://community.sap.com/t5/technology-q-a/fiori-tools-extension-pack-in-cursor/qaq-p/14416439Fiori Tools Extension Pack in Cursor2026-06-11T07:04:23.563000+02:00gruenikhttps://community.sap.com/t5/user/viewprofilepage/user-id/881903<P>Hi, I<SPAN>'m trying to use the SAP Fiori Tools Extension Pack in Cursor, but it seems that the extension pack (and its dependent extensions) are not available because they are not published in the Open VSX Registry, which Cursor relies on for extensions.</SPAN></P><P class=""><SPAN>Has anyone found a way to install SAP Fiori Tools in Cursor, either manually or through an alternative extension source?<BR /></SPAN><SPAN>I'd appreciate hearing about any workarounds, custom installations, or experiences using Cursor for SAP Fiori development.</SPAN></P><P class="">Thanks in advance!</P>2026-06-11T07:04:23.563000+02:00https://community.sap.com/t5/technology-q-a/production-logging-strategy-for-client-side-ui5-application-deployed-on-sap/qaq-p/14418597Production Logging Strategy for Client-Side UI5 Application Deployed on SAP BTP2026-06-15T06:49:06.806000+02:00Abhilash_Andolhttps://community.sap.com/t5/user/viewprofilepage/user-id/1834413<P>We are building an app using Ui5 freestyle that acts as a side-by-side extension in Sales and Service Cloud Version 2 (SSCv2).</P><P>Our goal is to add logging features to the app to assist developers in debugging and troubleshooting issues in the production environment.</P><P>Since we are not creating any backend services, we cannot utilize the Cloud logging services in BTP. This app is purely a client-side Ui5 application.</P><P>Could you please advise on how to implement logging within our app so that developers can access the logs when the app is deployed on BTP and running in SSCv2 as a mashup</P>2026-06-15T06:49:06.806000+02:00https://community.sap.com/t5/technology-q-a/issue-dynamically-hiding-a-column-in-an-adaptation-project/qaq-p/14418977Issue dynamically hiding a column in an adaptation project2026-06-15T12:13:44.128000+02:00bwalhttps://community.sap.com/t5/user/viewprofilepage/user-id/1558549<P>Hello,</P><P>I'm working on an adaptation project for a custom app I've developed in RAP with annotations. My requirement is to hide columns of a table created through annotations according to the value of virtual fields.</P><P>Unfortunately as I've seen in other posts that using a boolean virtual element with a LineItem.hidden(#virtelementname) doesn't work, so I've moved to an adaptation project. <SPAN>My approach is to read the virtual fields from the odata4 model through typescript, get the columns from the table through and hide them through setVisible. This is the function that I attach this to the event </SPAN><SPAN>modelContextChange of the table (the columns are visible for some objects and invisible for others) in the code file generated by the adaptation editor.</SPAN></P><pre class="lia-code-sample language-javascript"><code> setColumnsVisible = async function (this: ControllerExtension, table: Table ) {
const bindingContext = this.getView().getBindingContext();
if (!bindingContext) {
return;
}
const path = `${bindingContext.sPath}`;
const context : Context = this.getView().getModel().bindContext(path);
interface VisibilityResponse {Column1Hidden: boolean; };
const res = await context.requestObject() as VisibilityResponse;
const columns: Column[] = table.getColumns();
const columnToHide = columns.find( curr => curr.getPropertyKey().includes("ColumnToHide") );
columnToHide.setVisible(!res.Column1Hidden);
};</code></pre><P>The result of this is that when Column1Hidden is true the <STRONG>label</STRONG> of the column is hidden but the values are still there. My objective is to hide the whole column including the values.</P><P>As a sidenote, just for kicks I tried getting the index of the column, removing it from the table with removeColumn, setting visible to false (on the column) and inserting it back at the right index, it didn't work either. I also tried to call invalidate() on the Table and Column controls after setting the visibility (in case it's evaluated during rendering) and still no luck.</P><P>Does anybody have any ideas how to achieve this?</P><P>Thanks,</P><P>Ben</P>2026-06-15T12:13:44.128000+02:00https://community.sap.com/t5/technology-q-a/werb-service-pw-self-serv-missing-in-system/qaq-p/14419127Werb Service PW-SELF-SERV missing in system2026-06-15T15:42:57.119000+02:00Shujahhttps://community.sap.com/t5/user/viewprofilepage/user-id/1497611<P>Hello Support Team,</P><P>In our system Webservice (<STRONG>T-Code: SICF</STRONG>) <STRONG>WD_PW_SELF_SERV</STRONG> service is missing.</P><P>Please guide to solve the issue.</P><P> </P><P>Thank you in advance for your support</P><P>Shujah</P>2026-06-15T15:42:57.119000+02:00https://community.sap.com/t5/human-capital-management-q-a/story-report-formula-functions-day-of-week/qaq-p/14419187Story report - formula functions - Day of Week2026-06-15T17:35:25.096000+02:00Patricia_Martinez1https://community.sap.com/t5/user/viewprofilepage/user-id/1662132<P>Hi there,</P><P>In Canvas report, I have a column with a calculated formula to get the Day of Week from the date, I am trying to replicate the same in Story report, but have no function for that. May someone knows a workaround formula to bring this calculated column?</P>2026-06-15T17:35:25.096000+02:00https://community.sap.com/t5/technology-q-a/odata-fml-uplmatinvpr-srv-usage/qaq-p/14427196ODATA - FML_UPLMATINVPR_SRV usage2026-06-25T12:53:41.786000+02:00ritushreehttps://community.sap.com/t5/user/viewprofilepage/user-id/136149<P>Hi Team ,</P><P>We would like to integrate this functionality directly from the SAP backend (ABAP) using the odata service - FML_UPLMATINVPR_SRV without using the Fiori UI. Specifically, our requirement is:</P><P>Read an existing Excel file stored within SAP (e.g., MIME repository / application server)<BR />Pass the file content programmatically to the OData service<BR />Trigger the same processing flow (upload → validation → batch → post)<BR />Is it supported to use the OData service FileContentForUploadSet in a backend-driven scenario where:<BR />The Excel file is not uploaded via Fiori UI<BR />Instead, the file content (XSTRING) is read directly from SAP repository<BR />And sent programmatically via HTTP client (CL_HTTP_CLIENT) or similar framework?</P><P>Thanks & Regards</P><P>Ritushree </P>2026-06-25T12:53:41.786000+02:00https://community.sap.com/t5/technology-q-a/saving-variants-and-layouts-after-upgrade/qaq-p/14428057Saving Variants and Layouts after upgrade2026-06-26T12:01:59.791000+02:00CBANDWALhttps://community.sap.com/t5/user/viewprofilepage/user-id/2238253<P>Hi Team,</P><P>We are currently in process of upgrading our existing S/4 Hana from 2022 to 2025 Version. As end users have created multiple Variants (Public and Private) and layouts in Fiori, Webdynpro and GUI applications in Launchpad.</P><P>Could you please let us know, how we can make sure that variants and layouts are not impacted post Upgrade?</P><P>Additionally, if possible , can we save these old variants and layouts in the 2025 Version?</P>2026-06-26T12:01:59.791000+02:00https://community.sap.com/t5/technology-q-a/fiori-elements-v2-adaptation-project-need-to-enforce-mandatory-field/qaq-p/14430861Fiori Elements V2 (Adaptation Project) – Need to enforce mandatory field validation before Save/Appl2026-07-01T02:02:00.292000+02:00EdsonBravo93https://community.sap.com/t5/user/viewprofilepage/user-id/1631448<P class="">Hello SAP community,</P><P>I am working on a <STRONG>Fiori Elements V2 application (Object Page / List Report)</STRONG> using an <STRONG>Adaptation Project (SAP BAS – codeExt Controller Extensions + UI Adaptation)</STRONG>.</P><P>I am trying to enforce a business requirement where a specific field must be mandatory before saving the document.<BR /><BR /></P><P> </P><H2 id="toc-hId-1819021189">Technical Context</H2><UL><LI>Application: Standard SAP Fiori Elements V2 app (Object Page)</LI><LI>Extension approach: <STRONG>Adaptation Project (no full custom controller, only Controller Extensions via codeExt)</STRONG></LI><LI>Backend service: <STRONG>OData V2 service</STRONG></LI><LI>Field source: <CODE>Edm.Decimal</CODE> field in OData entity</LI><LI>Field name: <CODE>NoDaysReminder1</CODE></LI><LI>Annotation applied:</LI></UL><DIV class=""><DIV class=""><DIV class=""><DIV class=""><DIV class=""><DIV class=""><DIV class=""><DIV class=""> </DIV></DIV></DIV><DIV class=""><DIV class=""><DIV class=""><DIV class=""><DIV class=""><DIV class=""><DIV class=""><DIV class=""><DIV class=""><PRE><CODE><SPAN>com.sap.vocabularies.Common.v1.FieldControl = Mandatory</SPAN></CODE></PRE></DIV></DIV></DIV></DIV></DIV></DIV></DIV></DIV></DIV></DIV></DIV></DIV></DIV></DIV><UL><LI>Field also appears inside a FieldGroup in Object Page sections.</LI></UL><HR /><H2 id="toc-hId-1622507684"> Observed Behavior</H2><UL><LI>The field is displayed as mandatory in the UI (red asterisk appears correctly).</LI><LI>However, the application still allows saving the document when the field is empty.</LI><LI>No frontend validation blocks the Save/Apply action.</LI></UL><HR /><H2 id="toc-hId-1425994179"> What I already tried</H2><H3 id="toc-hId-1358563393">1. Controller Extension (codeExt)</H3><P>I attempted to override lifecycle hooks in the Object Page extension:</P><UL><LI><CODE>beforeSaveExtension</CODE></LI><LI><CODE>onAfterRendering</CODE></LI><LI>Custom validation logic</LI></UL><P>However, none of these hooks are triggered during Save/Apply in this Adaptation Project context.</P><HR /><H3 id="toc-hId-1162049888">2. UI interception attempts</H3><P>I also tried:</P><UL><LI>Intercepting the Apply button (OverflowToolbar / DOM inspection)</LI><LI>Using event delegates on SmartField/Input controls</LI><LI>Using <CODE>extensionAPI</CODE> and <CODE>TransactionController</CODE></LI></UL><P>None of these approaches allowed reliable interception of the Save event.</P><HR /><H3 id="toc-hId-965536383">3. Metadata analysis</H3><P>The OData metadata shows:</P><P> </P><DIV class=""><DIV class=""><DIV class=""><DIV class=""><DIV class=""><DIV class=""><DIV class=""><DIV class=""> </DIV></DIV></DIV><DIV class=""><DIV class=""><DIV class=""><DIV class=""><DIV class=""><DIV class=""><DIV class=""><DIV class=""><DIV class=""><PRE><CODE><SPAN class=""><Property</SPAN> <SPAN class="">Name</SPAN><SPAN class="">=</SPAN><SPAN class="">"NoDaysReminder1"</SPAN><BR /> <SPAN class="">Type</SPAN><SPAN class="">=</SPAN><SPAN class="">"Edm.Decimal"</SPAN><BR /> <SPAN class="">sap:field-control</SPAN><SPAN class="">=</SPAN><SPAN class="">"NoDaysReminder1_fc"</SPAN> <SPAN class="">/></SPAN></CODE></PRE></DIV></DIV></DIV></DIV></DIV></DIV></DIV></DIV></DIV></DIV></DIV></DIV></DIV></DIV><P>The field is NOT marked as <CODE>Nullable="false"</CODE>, so from a service contract perspective it is optional.</P><HR /><H2 id="toc-hId-639940159">Key Issue</H2><P>It seems that:</P><UL><LI>FieldControl annotation only affects UI behavior</LI><LI>OData V2 service contract allows null values</LI><LI>Fiori Elements V2 does not expose a supported Save-interception hook in Adaptation Projects</LI></UL><HR /><H2 id="toc-hId-443426654">Question to the community</H2><P>Question to the community</P><P>Given the limitations of Fiori Elements V2 Adaptation Projects, what is the recommended SAP-supported pattern to enforce mandatory field validation BEFORE Save/Apply for a standard Object Page?</P><P>Specifically:</P><P>1. Is there any supported Fiori Elements V2 extension point (within Adaptation Projects / codeExt) that allows intercepting or validating the Save/Apply action?</P><P>2. If frontend-only enforcement is not supported, what is the recommended SAP backend approach for enforcing mandatory business validation in OData V2 services (e.g., BAdI, enhancement spots, gateway validations)?</P><P>3. In standard SAP design, should FieldControl be considered only a UI indication, or can it ever enforce transactional validation without backend support?</P><HR /><H2 id="toc-hId-246913149">Additional context</H2><P>This requirement is strictly frontend-driven at the moment, as backend modifications are currently uncertain or restricted.</P><P>Additional technical detail:</P><P>The application is part of SAP standard S/4HANA Fiori Elements V2 (Object Page) and is extended via SAP Business Application Studio Adaptation Project.</P><P>The extension is limited to controller extension artifacts generated via <a href="https://community.sap.com/t5/user/viewprofilepage/user-id/2302137">@SAP</a>-ux/adp tooling (codeExt), meaning:</P><P>- No full override of standard controller lifecycle<BR />- No access to Fiori Elements internal Save lifecycle hooks<BR />- Limited access to extensionAPI hooks only</P><HR /><P>I am trying to confirm whether this is a limitation of the Adaptation Project framework or a misunderstanding of the available extension points in Fiori Elements V2.</P><P>Any clarification from SAP experts or official pattern references would be highly appreciated.</P>2026-07-01T02:02:00.292000+02:00https://community.sap.com/t5/technology-q-a/issue-in-fiori-apps-in-selecting-the-value-from-the-history/qaq-p/14430872Issue in Fiori Apps in selecting the value from the History2026-07-01T03:34:09.401000+02:00Vijay_Neelakandan1https://community.sap.com/t5/user/viewprofilepage/user-id/1621477<P>We have been having this issue recently where value is not getting populated in the input field when selecting the value from the History. </P><P> </P><P> </P><P> </P><P> </P>2026-07-01T03:34:09.401000+02:00https://community.sap.com/t5/technology-q-a/does-accessing-applications-hosted-in-html5-application-repository-incur/qaq-p/14431544Does Accessing Applications Hosted in HTML5 Application Repository Incur Costs?2026-07-01T16:42:59.290000+02:00Philipe_Said9https://community.sap.com/t5/user/viewprofilepage/user-id/2315288<P class=""><SPAN>We are trying to better understand the licensing model for applications hosted in the </SPAN><STRONG><SPAN>HTML5 Application Repository</SPAN></STRONG><SPAN>.</SPAN></P><P class=""><SPAN>Does accessing an application deployed in the HTML5 Application Repository generate any licensing or usage charges by itself?</SPAN></P><P class=""><SPAN>If so:</SPAN></P><UL><LI><SPAN>Which SAP BTP service is responsible for the billing?</SPAN></LI><LI><SPAN>How is the usage measured (e.g., requests, active users, connections, storage, runtime, etc.)?</SPAN></LI><LI><SPAN>Is there any difference in the billing model when the application is accessed through a custom AppRouter instead of SAP Build Work Zone?</SPAN></LI></UL><P class=""><SPAN>The reason for this question is that we are evaluating replacing SAP Build Work Zone due to the high licensing costs associated with external user connections. We would like to understand whether using the HTML5 Application Repository directly would avoid those charges or simply shift the costs to another BTP service.</SPAN></P><P><SPAN>Any clarification or references to the official SAP documentation would be greatly appreciated.</SPAN></P>2026-07-01T16:42:59.290000+02:00https://community.sap.com/t5/technology-q-a/existe-forma-de-registrar-no-drc-public-notas-hist%C3%B3ricas-j%C3%A1-autorizados-em/qaq-p/14431656Existe forma de registrar no DRC(Public) notas históricas já autorizados em outro sistema?2026-07-01T20:25:48.780000+02:00guilhermesdlhttps://community.sap.com/t5/user/viewprofilepage/user-id/2313792<P>Olá, pessoal!</P><P>Estou passando por uma situação no SAP S/4HANA Cloud Public Edition (release 2602) no Brasil, e chegamos em um cenário que não encontramos documentado em nenhum lugar. Se alguém do time de DRC puder ajudar, agradeço muito.</P><P>**Cenário**<BR />O cliente operava em um sistema legado (não-SAP) antes desta implantação. Esse sistema legado emitiu e transmitiu notas fiscais de saída (NF-e modelo 55) que já foram autorizadas pela SEFAZ em períodos fiscais anteriores (ou seja, já possuem chave de acesso, protocolo de autorização e XML autorizado pela SEFAZ).</P><P>O cliente agora precisa que esses documentos históricos apareçam no monitor fiscal do novo sistema S/4HANA Cloud Public Edition (app Administrar Documentos Eletrônicos / SAP Document and Reporting Compliance, opção de faturamento de saída para o Brasil) — unicamente para fins de registro interno e continuidade de auditoria. Não queremos retransmitir esses documentos à SEFAZ, já que eles foram autorizados sob uma numeração/série diferente, gerada pelo sistema legado.</P><P>**Perguntas**<BR />1. Existe algum relatório, app ou objeto de migração padrão para registrar documentos de saída (NF-e e possivelmente CT-e/NFS-e) já autorizados, no monitor DRC do Brasil, sem disparar transmissão à SEFAZ?<BR />2. A funcionalidade "Upload Electronic Documents to eDocument Cockpit" (documentação DC_NFe) se aplica a esse cenário, ou tem outra finalidade?</P><P>Qualquer indicação — documentação oficial, SAP Notes ou experiência real de projeto — ajudaria muito. Desde já, agradeço!</P>2026-07-01T20:25:48.780000+02:00https://community.sap.com/t5/technology-q-a/unable-to-select-data-from-the-entries-list/qaq-p/14436441Unable to select data from the entries list2026-07-09T03:39:34.093000+02:00LanAnh135https://community.sap.com/t5/user/viewprofilepage/user-id/2280056<P>Regarding the issue where data cannot be selected from the entries List, I previously checked the related SAP Note and found that this issue is planned to be fixed in version 2606 or 2608.</P><P>In that case, what actions are required on our system side to resolve this issue? Do we need to take any additional steps, or will the issue be fixed automatically after the upgrade?</P><P>I would appreciate your guidance.</P><P>SAP Note reference: <A href="https://me.sap.com/notes/3763555/E" target="_blank" rel="noopener noreferrer">3763555 - WEBGUI: History not working after Chrome / Edge 149 update - SAP for Me</A> </P>2026-07-09T03:39:34.093000+02:00https://community.sap.com/t5/technology-q-a/sapui5-updating-the-bootstrap-to-release-1-149-1-150/qaq-p/14437983sapui5 - updating the bootstrap to release 1.149 / 1.1502026-07-10T15:51:29.274000+02:00hdeklerkhttps://community.sap.com/t5/user/viewprofilepage/user-id/57842<P>My apologies ahead of time, but I am looking for the note containing the TCI for those UI5 update(s). I've looked at 3155948 - ABAP SAPUI5 patch version update, following the instructions under "Solution", but can not find any relevant note for the updates. I've also searched other notes/documentation, but I still can't find a thing.</P><P>This request is because of a notification we received under SAP event ID: EVB13291295</P><P>Thank you for your time.</P><P>Herman</P>2026-07-10T15:51:29.274000+02:00https://community.sap.com/t5/technology-q-a/sapui5-versions-ending-cloud-provisioning-in-q3-26/qaq-p/14440892SAPUI5 Versions Ending Cloud Provisioning in Q3/262026-07-15T10:30:25.383000+02:00TUENGhttps://community.sap.com/t5/user/viewprofilepage/user-id/1703385<P>依照附件的公告內容, 請問我們要如何檢查及確認現有的BTP application 是否有受到影響.</P><P> 是直接在Work Zone平台上進行確認即可 ?</P><P> 亦或要從UI5專案開發的角度,檢查 index.html or manifest.json 之類的檔案 ? 」</P>2026-07-15T10:30:25.383000+02:00https://community.sap.com/t5/technology-q-a/metadata-error-in-btp-cockpit-when-trying-to-reach-s3p-system/qaq-p/14441065Metadata error in BTP Cockpit when trying to reach S3P system2026-07-15T12:02:31.271000+02:00Ysil_Basishttps://community.sap.com/t5/user/viewprofilepage/user-id/1629988<P>Hi Team,</P><P> </P><P>As I am trying to do changes in the existing UI5 application developed in the BAS from my trail account I am unable to get the data for the app from S3P system from the backend. I am facing the Metadata Error and SAP Client Error.</P>2026-07-15T12:02:31.271000+02:00https://community.sap.com/t5/technology-q-a/fieldglass-sso-client-wants-to-implement-sso-for-their-msp-users/qaq-p/14442472Fieldglass SSO - Client wants to implement SSO for their MSP users2026-07-16T18:19:59.457000+02:00David_Tonghttps://community.sap.com/t5/user/viewprofilepage/user-id/2125223<P>Hello All,</P><P>The company I work for is the MSP for a Fieldglass client that utilizes SSO for their internal users (AKA Hiring Managers). They would like to enhance security by having the MSP users who support their program go through SSO as well. Are any of you in the same situation and how was this accomplished in your case? I'm looking for any/all the different options to share with our client so that they can evaluate each. I'm not an SSO expert nor am I a very technical person so please use simple words/terminology. <span class="lia-unicode-emoji" title=":winking_face_with_tongue:">😜</span></P><P>Thank you in advance.</P>2026-07-16T18:19:59.457000+02:00https://community.sap.com/t5/technology-q-a/reforma-tribut%C3%A1ria-contabiliza%C3%A7%C3%A3o-efetiva-dos-lan%C3%A7amentos/qaq-p/14442596Reforma Tributária - Contabilização efetiva dos lançamentos2026-07-16T22:50:32.617000+02:00Frantobitthttps://community.sap.com/t5/user/viewprofilepage/user-id/2097418<P><STRONG>A contabilização efetiva</STRONG> (lançamento contábil real, com débito/crédito impactando resultado) entra em vigor em 2027 para CBS e 2029 para IBS, desta forma existe alguma atualização da SAP disponível para aplicarmos nos ambientes e iniciarmos a validação?</P><P>Alguém já iniciou esta tratativa? pois alguns clientes estão questionando e solicitando a contabilização efetiva no ambiente de teste para validação.</P><P>Obrigada.</P>2026-07-16T22:50:32.617000+02:00https://community.sap.com/t5/technology-q-a/persona-flavour-issue/qaq-p/14444734Persona Flavour Issue2026-07-20T19:42:57.007000+02:00ShashikanthMarapallihttps://community.sap.com/t5/user/viewprofilepage/user-id/2319586<P>Hi Team,<BR />We observed 2 issues in the Opentext as below.<BR />1) We made changes to a Personas flavor in the Development system (SD2) and transported them to the Quality system (SQ2), but the updates are not reflected in SQ2.</P><P>2) Additionally, any field position changes made to standard fields are not being retained. After saving the flavor, the field positions revert back to the previous layout</P>2026-07-20T19:42:57.007000+02:00