https://raw.githubusercontent.com/ajmaradiaga/feeds/main/scmt/topics/SAP-Landscape-Transformation-qa.xml SAP Community - SAP Landscape Transformation 2024-05-20T11:13:15.069165+00:00 python-feedgen SAP Landscape Transformation Q&A in SAP Community https://community.sap.com/t5/technology-q-a/is-data-present-in-stxh-and-stxl-stored-in-some-other-tables/qaq-p/12655684 Is data present in STXH and STXL stored in some other tables? 2023-02-10T16:22:56+01:00 rohitsharma1981 https://community.sap.com/t5/user/viewprofilepage/user-id/824854 <P>Dear All,</P> <P>I need know data present in STXH and STXL tables is also stored in any other transparent table(s) from where I can extract it in readable form. There are some alternatives like using READ_TEXT etc. But I just wanted to check if there is any easiest way to do it.</P> <P>Many thanks in advance. </P> 2023-02-10T16:22:56+01:00 https://community.sap.com/t5/technology-q-a/sap-bw-system-landscape/qaq-p/12665066 SAP BW System Landscape 2023-02-13T14:19:00+01:00 former_member834959 https://community.sap.com/t5/user/viewprofilepage/user-id/834959 <P>Hi Team,</P> <P>We are implementing BW project, and This is the fresh implementation in BW and ECC as well.</P> <P>Can you please suggest to us, which tools are recommended and how it is better than other for real time data replication from S4 to BW4Hana.</P> <P>Thanks</P> 2023-02-13T14:19:00+01:00 https://community.sap.com/t5/technology-q-a/can-slt-targets-be-non-sap-systems/qaq-p/12692635 Can SLT targets be non SAP systems? 2023-04-11T06:39:31+02:00 shyam_uthaman https://community.sap.com/t5/user/viewprofilepage/user-id/181974 <P>Hi All,</P> <P>Can someone help me list out the complete list of sources and targets that SLT supports?</P> <P>I want to understand if it is possible to send data from enterprise HANA to Oracle DB using SLT.</P> <P>I know the same question has been asked multiple times but they seem to be quite old and I wanted to check if there have been any updates.</P> <P>Thanks,</P> <P>Shyam</P> 2023-04-11T06:39:31+02:00 https://community.sap.com/t5/technology-q-a/execute-function-module-with-pointer-failed/qaq-p/12769661 Execute Function module With Pointer Failed 2023-06-05T11:52:42+02:00 former_member946170 https://community.sap.com/t5/user/viewprofilepage/user-id/946170 <P>I'm trying to extract data from SAP CDC system with ODP connection via Azure Data factory.</P> <P>When I run the azure pipeline, I'm facing below error. We checked ST22 dumps in SAP but no logs are found.</P> <P>Note: reached out to Microsoft team and they said this issue is related to SAP systems. Please check and let me know if you could give any recommendations for this issue.</P> <P>Error details:</P> <P>Job failed due to reason: at Source 'SAPXXX': Error Message: DF-SAPODP-012 - SapOdp copy activity failure with run id: d904fd07-0a9b-4a4e-bc97-04d0a141451e, error code: 2200 and error message: ErrorCode=SapOdpOperationFailed,'Type=Microsoft.DataTransfer.Common.Shared.HybridDeliveryException,Message=Sap Odp operation 'Execute function module RODPS_REPL_ODP_PREFETCH with pointer 20230601050314.001386000' failed. Error Number: '520', error message: 'Maximum waiting time of 7.200 seconds exceeded',Source=Microsoft.DataTransfer.Runtime.SapRfcHelper,'</P> 2023-06-05T11:52:42+02:00 https://community.sap.com/t5/technology-q-a/using-local-excel-csv-file-in-sap-data-intelligence/qaq-p/12758638 Using local Excel/CSV file in SAP Data Intelligence 2023-06-21T23:22:34+02:00 tejasdikshit https://community.sap.com/t5/user/viewprofilepage/user-id/861843 <P>I need to test my connection between SAP DI and Azure Data Lake. In order to do so can I upload a local excel/csv file from my machine? If yes, how can I test if the data is flowing through from DI to ADL, any recommended approach/best practices?</P> 2023-06-21T23:22:34+02:00 https://community.sap.com/t5/technology-q-a/data-returned-from-db-on-crystal-report-is-not-correct/qaq-p/12776932 Data returned from DB on Crystal Report is not correct 2023-06-22T21:14:14+02:00 jeromewiley https://community.sap.com/t5/user/viewprofilepage/user-id/1088126 <P>I have a report that was created in VB .NET that connected to Oracle. It has since been changed to SQL Server. The data source has been updated however the fields update with the incorrect data. The query returns shift, grade and net_wgt values. However the data is not getting updated correctly in the final report. The VS environment contains the .rpt file and we are loading the .rpt file via code with SQL Data. The data returned in the report is NOT correct. Is there something additional that needs to be done other than change the datasource? Do I need to change each field in the report? Here is the code that I am using:</P> <P>Imports CrystalDecisions.CrystalReports.Engine</P> <P>Imports CrystalDecisions.Shared</P> <P>Imports System.Data.OleDb </P> <P> Dim Connection As New OleDbConnection() 'OleDB dataprovider</P> <P> Dim strReportPath As String</P> <P> Dim cryReport As New ReportDocument</P> <P> Dim CRViewerForm As New Form1</P> <P> Dim StartYYMMDD As String, EndYYMMDD As String</P> <P> Dim strConnection As String = "Provider=SQLOLEDB;Data Source=SERVER;Initial Catalog=rodm;User ID=USER;Password=PWD;Persist Security Info=True"</P> <P> Dim qry As String</P> <P> Dim sdate As String</P> <P> Connection.ConnectionString = strConnection</P> <P> sdate = Today.ToShortDateString 'MM/DD/YYYY</P> <P> cryReport = New Scrncoil</P> <P> strReportPath = "C:\VBFiles\Reports\Reports\Scrncoil.rpt"</P> <P> StartYYMMDD = "2023-06-16"</P> <P> EndYYMMDD = "2023-06-16"</P> <P> qry = "select shift, coil_grade, net_wgt from [rodm].[oracle_admin].coils"</P> <P> qry = qry &amp; " where Log_Date between '" + StartYYMMDD + " 07:00' and '" + EndYYMMDD + " " + Format(Now, "HH:mm")</P> <P> Try</P> <P> Connection.Open()</P> <P> Windows.Forms.Application.DoEvents()</P> <P> Windows.Forms.Application.DoEvents()</P> <P> Catch ex As Exception</P> <P> MessageBox.Show(ex.Message())</P> <P> End Try</P> <P> Dim DA As New OleDbDataAdapter(qry, Connection)</P> <P> Windows.Forms.Application.DoEvents()</P> <P> Dim DS As New DataSet</P> <P> Try</P> <P> cryReport.Load(strReportPath)</P> <P> cryReport.SetDatabaseLogon("user", "pwd", "SERVER", "db")</P> <P> 'cryReport.SetDataSource(DS.Tables("[rodm].[ORACLE_ADMIN].[COILS]"))</P> <P> cryReport.SetDataSource(DS.Tables("COILS"))</P> <P> Catch ex As Exception</P> <P> MessageBox.Show(ex.Message())</P> <P> End Try</P> <P> cryReport.DataDefinition.FormulaFields("Bday").Text = "'" + Sdate + "'"</P> <P> Stop</P> <P> cryReport.ExportToDisk(ExportFormatType.Text, "\\SERVER\wwwroot\SCRNCOIL.txt")</P> <P> Windows.Forms.Application.DoEvents()</P> <P> End</P> 2023-06-22T21:14:14+02:00 https://community.sap.com/t5/technology-q-a/rms-group-by-in-sap-data-intelligence/qaq-p/12777246 RMS Group By in SAP Data Intelligence 2023-06-23T01:49:13+02:00 tejasdikshit https://community.sap.com/t5/user/viewprofilepage/user-id/861843 <P>I am creating an RMS workflow to perform ETL between S/4 and ADLS via SLT. In the RMS workflow Pproperties we have the option to group the data by Date, Hour or None ( See screenshot below) . Can someone provide more clarity on these different options and how they are different from each other. I was not able to find much documentation around this feature.</P> <P><STRONG>Use Case:</STRONG> I would like to replicate the data between S/4 and ADLS in real time but the client is fine with receiving the data in a batch mode with a daily frequency, meaning they wouldn't want the target file to be updated every time the underlying data in S/4 is updated. All the changes made in a given day can be grouped together in a target file at the end of each day ( with the respective flag for I-Insert, U-Update or D-Delete) . Is this possible and if yes, how can I go about updating the properties/tasks accordingly?</P> <P><IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/2179763-image.png" /></P> 2023-06-23T01:49:13+02:00 https://community.sap.com/t5/technology-q-a/replication-in-sap-di-from-s4-to-adl/qaq-p/12782474 Replication in SAP DI from S4 to ADL 2023-06-28T02:11:05+02:00 tejasdikshit https://community.sap.com/t5/user/viewprofilepage/user-id/861843 <P>Hi,</P> <P>I am trying to replicate data from S4 as a source into ADL as a target via SLT in SAP Data Intelligence. The Source connection with S4 and the Target connection with ADL have been established with DI and are working successfully, however I am unable to locate the Mass Transfer ID in the Source Container ( see screenshot below). When I select the Source Container I can only see the CDS folder but no sub-folders underneath it. Ideally I was hoping to see the SLT folder along with the Mass Transfer ID</P> <P>I am working through this blog for RMS replication to create the workflow: <A href="https://blogs.sap.com/2023/05/09/replicating-tables-using-slt-and-replication-flows-rms-in-sap-data-intelligence-cloud/" target="test_blank" rel="noopener noreferrer">https://blogs.sap.com/2023/05/09/replicating-tables-using-slt-and-replication-flows-rms-in-sap-data-intelligence-cloud/</A></P> <P>Are there any specific SLT configurations that I am missing here? Any additional setup/checks that I need to perform in SLT replication server to enable this ABAP connectivity?</P> <P><IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/2179896-image.png" /></P> 2023-06-28T02:11:05+02:00 https://community.sap.com/t5/technology-q-a/issue-while-merging-parquet-files-for-initial-and-delta-load/qaq-p/12743423 Issue while merging Parquet files for initial and delta load 2023-07-11T01:49:52+02:00 tejasdikshit https://community.sap.com/t5/user/viewprofilepage/user-id/861843 <P>Hi Experts,</P> <P>Has anyone successfully merged parquet files for initial and delta loads? I have several parquet files generated as a part of the initial load and would like to merge them into a single configurable file. I am using this link as a reference: <A href="https://help.sap.com/docs/SAP_DATA_INTELLIGENCE/97fce0b6d93e490fadec7e7021e9016e/4e79f7788dc94d4d80571914568aa570.html" target="test_blank" rel="noopener noreferrer">https://help.sap.com/docs/SAP_DATA_INTELLIGENCE/97fce0b6d93e490fadec7e7021e9016e/4e79f7788dc94d4d80571914568aa570.html</A></P> <P>However I am getting the below error when I try and do so. I am specifying the following details:</P> <UL> <LI>Same source and target connection ID which is the connection name from <STRONG>Connection Management</STRONG></LI> <LI><STRONG>Source Path:</STRONG> This is the folder in which the initial load parquet files are located ( see below screenshot for MARA example)</LI> <LI><STRONG>Target Path</STRONG>: This is a new folder that I created within the root S4 folder to store all the merged files</LI> </UL> <P><IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/2182321-image.png" /></P> 2023-07-11T01:49:52+02:00 https://community.sap.com/t5/technology-q-a/version-management-not-visible-for-an-abap-program/qaq-p/12754387 Version management NOT visible for an ABAP program 2023-07-11T23:51:53+02:00 ricky_shaw https://community.sap.com/t5/user/viewprofilepage/user-id/202195 <P>Hi Experts,</P> <P>I don't see any version history or current version / TR# for some ABAPp programs, FM's, other objects...etc but they are moved to other systems. Also i see these in Prod.</P> <P>Is there a reason for this?</P> <P>How do i get the TR's for such programs?</P> <P>Please suggest</P> 2023-07-11T23:51:53+02:00 https://community.sap.com/t5/technology-q-a/replicate-data-bw4-to-sql-using-sap-slt-with-delta-in-a-standard-adso/qaq-p/12800356 Replicate data BW4 to SQL using SAP SLT with DELTA in a STANDARD ADSO 2023-08-11T16:09:42+02:00 Loed https://community.sap.com/t5/user/viewprofilepage/user-id/182855 <P>Hi,</P> <P>Is there a way to have a DELTA functionality when replicating data from BW4 to SQL server using SAP SLT in a STANDARD ADSO? In DIRECT UPDATE there is a DELTA however delta is not working for a standard ADSO.</P> <P>Any idea?</P> <P>Thanks.</P> <P>Loed</P> 2023-08-11T16:09:42+02:00 https://community.sap.com/t5/technology-q-a/access-plan-calculation-jobs-for-cluster-table-konv-is-not-calculating/qaq-p/12811948 Access Plan Calculation jobs for Cluster Table KONV is not calculating 2023-09-22T05:31:16+02:00 sreelatha_reddy2 https://community.sap.com/t5/user/viewprofilepage/user-id/210420 <P>Performance Options --&gt; Initial Load options</P> <P>Reading type - 4</P> <P>Package size - 0</P> <P>Write Behaviour - No transfer behaviour</P> <P>Range on KNUMV is 900000</P> <P>Filter Options on KAPPL field is v.</P> <P>No of parallel jobs is 9. In LTRC No of Data transfer jobs is 11, Initial Load jobs is 10 and calculation jobs is 5.</P> <P>Calculation job is not showing any statistics in the job log i.e., till how much it has accessed the records. I checked the log in SM50 and the Inserts/Updates is not increasing. Does this mean the calculation job is not fetching the records and pushing it to queue?</P> <P>Please advise on how to configure Initial load for KONV table.</P> 2023-09-22T05:31:16+02:00 https://community.sap.com/t5/technology-q-a/sap-datasphere-error-partitioning-for-object-failed/qaq-p/12744622 SAP datasphere error - Partitioning for object failed 2023-10-18T09:18:46+02:00 bhat_vaidya2 https://community.sap.com/t5/user/viewprofilepage/user-id/206951 <P>Hi,</P> <P>when trying to replicate table with Load type Initial and Delta, I am getting partitioning for Object failed error. I am able to load initial load without error.</P> <P><IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/2213990-slt-load.png" /></P> <P>How do I resolve it.</P> 2023-10-18T09:18:46+02:00 https://community.sap.com/t5/technology-q-a/embedded-slt-in-s4hana/qaq-p/12781135 Embedded SLT in S4HANA 2023-10-27T09:14:49+02:00 berker_y https://community.sap.com/t5/user/viewprofilepage/user-id/92497 <P>Dear All,</P> <P>Does anyone experience regarding embedded SLT in S4HANA?</P> <P>How long does the configuration take approx.? </P> <P>Thanks</P> <P>Berker</P> 2023-10-27T09:14:49+02:00 https://community.sap.com/t5/technology-q-a/change-data-capture-not-working-for-tables-having-compatibility-view/qaq-p/12731471 Change Data Capture not working for tables having compatibility view . 2023-11-07T06:30:55+01:00 Sriyanshu https://community.sap.com/t5/user/viewprofilepage/user-id/124880 <P>Custom CDS(with CDC Capability) on top of MARD is always giving amount as Zero. We tried with Compatibility view</P> <P>NSDM_E_MARD but CDC feature is not working with it. Will CDC work for tables with compatibility views ?</P> 2023-11-07T06:30:55+01:00 https://community.sap.com/t5/technology-q-a/should-i-require-slt-license-for-below-scenario-ecc-crm-gt-slt-gt-sap-di-gt/qaq-p/13592858 Should i Require SLT License for below scenario ECC/CRM -> SLT - > SAP DI - > SNOWFLAKE 2024-02-02T15:08:25.820000+01:00 NaveenSAPID https://community.sap.com/t5/user/viewprofilepage/user-id/1383631 <P>Can you please help me to understand if i have to obtain SLT License if i am accessing data from SAP DI and inserting it to Snowflake. Kindly please update.</P><P>&nbsp;</P><P>ECC/CRM -&gt; SLT - &gt; SAP DI - &gt; SNOWFLAKE ( S3 Bucket)</P> 2024-02-02T15:08:25.820000+01:00 https://community.sap.com/t5/technology-q-a/ecc-6-0-trans-data-to-hana-cloud-if-data-has-currencies-internal-and/qaq-p/13644940 ECC 6.0 trans data to HANA Cloud (if data has Currencies, internal and external codes conversion...) 2024-03-21T03:53:19.938000+01:00 ted_kung https://community.sap.com/t5/user/viewprofilepage/user-id/888924 <P>I would like to inquire about the methods and potential challenges I might encounter when transferring data from an on-premise ERP (ECC 6.0) to SAP HANA Cloud. Here are the approaches I currently know of and the associated issues:</P><OL><LI>Direct data transfer using SLT, but how would currency or date conversion be handled?</LI><LI>Using Integration Suite, there might be limitations in transferring excessively large datasets.</LI><LI>If migrating from ECC 6.0 to S/4, can existing RFCs or APIs be directly integrated?</LI></OL><P>I'm unsure if there are solutions to these issues or if there are better methods for integrating ECC with S/4. Your assistance in addressing these queries would be greatly appreciated.</P><P><a href="https://community.sap.com/t5/c-khhcw49343/SAP+Landscape+Transformation/pd-p/01200615320800002710" class="lia-product-mention" data-product="682-1">SAP Landscape Transformation</a>&nbsp;<a href="https://community.sap.com/t5/c-khhcw49343/SAP+HANA+Cloud/pd-p/73554900100800002881" class="lia-product-mention" data-product="22-1">SAP HANA Cloud</a>&nbsp; <a href="https://community.sap.com/t5/c-khhcw49343/SAP+ERP+Central+Component/pd-p/01200314690800000122" class="lia-product-mention" data-product="584-1">SAP ERP Central Component</a>&nbsp;</P> 2024-03-21T03:53:19.938000+01:00 https://community.sap.com/t5/technology-q-a/slt-job-status/qaq-p/13659514 SLT Job Status 2024-04-04T18:34:08.767000+02:00 siba_pkd21 https://community.sap.com/t5/user/viewprofilepage/user-id/631027 <P>Hi All,</P><P>Please let me know what is the difference between Released and Ready option in Job Status , while applying T code-SM37 in SLT System</P><P><span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="siba_pkd21_0-1712248399327.png" style="width: 400px;"><img src="https://community.sap.com/t5/image/serverpage/image-id/91561iFF60C179E926D9B8/image-size/medium?v=v2&amp;px=400" role="button" title="siba_pkd21_0-1712248399327.png" alt="siba_pkd21_0-1712248399327.png" /></span></P><P>&nbsp;</P><P>Regards,</P><P>Siba</P><P>&nbsp;</P> 2024-04-04T18:34:08.767000+02:00 https://community.sap.com/t5/technology-q-a/process-detail-in-slt/qaq-p/13660744 process detail in SLT 2024-04-05T16:20:55.860000+02:00 siba_pkd21 https://community.sap.com/t5/user/viewprofilepage/user-id/631027 <P>Hi All,</P><P>Please anyone let me know how to see process details for a specific date in SLT through T code-SM50?</P><P>Rgds</P><P>Siba</P><P>&nbsp;</P> 2024-04-05T16:20:55.860000+02:00 https://community.sap.com/t5/human-capital-management-q-a/calculating-roi-while-moving-from-sap-hcm-to-successfactors/qaq-p/13668035 Calculating ROI while moving from SAP HCM to SuccessFactors. 2024-04-12T11:25:03.259000+02:00 RadhikaKailash https://community.sap.com/t5/user/viewprofilepage/user-id/1430424 <P>Hello There,</P><P>We have a customer who is migrating from SAP HCM to SuccessFactors, we need to do the ROI analysis for the same. Can you name some applications/ tools which can do so.</P> 2024-04-12T11:25:03.259000+02:00