https://raw.githubusercontent.com/ajmaradiaga/feeds/main/scmt/topics/SAP-Exchange-Infrastructure-qa.xml SAP Community - SAP Exchange Infrastructure 2024-05-20T20:00:59.370814+00:00 python-feedgen SAP Exchange Infrastructure Q&A in SAP Community https://community.sap.com/t5/technology-q-a/error-cc-xi-error-code-jms-transmission/qaq-p/12601315 ERROR CC XI ERROR_CODE_JMS_TRANSMISSION 2022-05-30T16:59:20+02:00 mark_fryu https://community.sap.com/t5/user/viewprofilepage/user-id/709977 <P>I have this error in XI, the data set on the cc are correct:</P> <P>Message processing failed. Cause: com.sap.aii.af.ra.ms.api.RecoverableException: Error in JMS target delivery: MessagingException: ERROR_CODE_JMS_TRANSMISSION</P> <P>where could the problem be?</P> 2022-05-30T16:59:20+02:00 https://community.sap.com/t5/technology-q-a/edi-990-mapping-in-ecc/qaq-p/12633075 EDI 990 mapping in ECC 2022-06-28T23:16:39+02:00 former_member670550 https://community.sap.com/t5/user/viewprofilepage/user-id/670550 <P>Is there anyone actually using EDI 990 -&gt; idoc SHPMT_TNDR mapping for SAP shipment updates?</P> <P>Can you share your EDI to IDOC mapping</P> <P>Thx in advance</P> 2022-06-28T23:16:39+02:00 https://community.sap.com/t5/technology-q-a/not-valid-pgp-message/qaq-p/12594093 Not valid pgp message 2022-08-21T16:18:52+02:00 Usharsree_7999 https://community.sap.com/t5/user/viewprofilepage/user-id/6570 <P>Dear SAP,</P> <P>I wrote the below code to encrypt a .txt file into .gpg file.</P> <P>OPEN DATASET v_dsnam5 FOR INPUT IN TEXT MODE ENCODING DEFAULT.</P> <P>* IGNORING CONVERSION ERRORS.</P> <P>* v_msgv5 = v_dsnam5.</P> <P>* IF sy-subrc GT 0.</P> <P>* PERFORM set_bapireturn TABLES i_return</P> <P>* USING c_error 'ZZFN' '302'</P> <P>* v_msgv5 '' '' '' .</P> <P>* ENDIF.</P> <P>CHECK v_error IS INITIAL.</P> <P>** WO/NW operations/activities data (excluding status)</P> <P>data : lv_data TYPE string,</P> <P>lv_str TYPE string.</P> <P>data lv_key3 type string.</P> <P>loop at i_wo_nw1 into lv_str.</P> <P>if lv_data is INITIAL.</P> <P>lv_data = lv_str.</P> <P>else.</P> <P>lv_data = |{ lv_data }{ cl_abap_char_utilities=&gt;newline }{ lv_str }|.</P> <P>endif.</P> <P>endloop.</P> <P>DATA:</P> <P>lv_key TYPE xstring,</P> <P>lv_key1 type string,</P> <P>lt_key3 type table of c.</P> <P>types: begin of str,</P> <P>lv_st type string,</P> <P>END OF str.</P> <P>data wa_key type str.</P> <P>data lv_key2 type xstring.</P> <P>*lv_key = cl_sec_sxml_writer=&gt;generate_key( algorithm = cl_sec_sxml_writer=&gt;co_aes256_algorithm ).</P> <P>*</P> <P>*lv_key2 = cl_bcs_convert=&gt;XSTRING_TO_STRING( IV_XSTR = lv_key ).</P> <P>DO.</P> <P>READ DATASET v_dsnam5 into lv_key1.</P> <P>." in character mode.</P> <P>lv_key3 = |{ lv_key3 }{ lv_key1 }|.</P> <P>IF SY-SUBRC NE 0.</P> <P>EXIT.</P> <P>ENDIF.</P> <P>ENDDO. .</P> <P>DATA:</P> <P>lv_data_xstr TYPE xstring,</P> <P>lv_msg TYPE xstring.</P> <P>data lv_iv type xstring.</P> <P>lv_data_xstr = cl_bcs_convert=&gt;string_to_xstring( iv_string = lv_data ).</P> <P>CALL FUNCTION 'SCMS_BASE64_DECODE_STR'</P> <P>EXPORTING</P> <P>INPUT = lv_key3</P> <P>* UNESCAPE = 'X'</P> <P>IMPORTING</P> <P>OUTPUT = lv_key2</P> <P>EXCEPTIONS</P> <P>FAILED = 1</P> <P>OTHERS = 2</P> <P>.</P> <P>IF SY-SUBRC &lt;&gt; 0.</P> <P>* Implement suitable error handling here</P> <P>ENDIF.</P> <P>* lv_key2 = lv_key3.</P> <P>CALL METHOD CL_SEC_SXML_WRITER=&gt;ENCRYPT</P> <P>EXPORTING</P> <P>PLAINTEXT = lv_data_xstr</P> <P>KEY = lv_key2</P> <P>ALGORITHM = CL_SEC_SXML_WRITER=&gt;CO_AES256_ALGORITHM</P> <P>IMPORTING</P> <P>CIPHERTEXT = lv_msg.</P> <P>DATA:</P> <P>lv_str2 TYPE string.</P> <P>*</P> <P>data file_content type string.</P> <P>call function 'SCMS_BASE64_ENCODE_STR'</P> <P>exporting</P> <P>input = lv_msg</P> <P>importing</P> <P>output = lv_str2.</P> <P>DATA conv TYPE REF TO cl_abap_conv_in_ce.</P> <P>data :lv_str4 type string,</P> <P>lv_str5 type string.</P> <P>lv_str4 = '-----BEGIN PGP MESSAGE-----'.</P> <P>*lv_str2 = lv_msg.</P> <P>lv_str5 = '-----END PGP MESSAGE-----' .</P> <P>*CONCATENATE lv_str4 lv_str2 lv_str5 into lv_str2 SEPARATED BY CL_ABAP_CHAR_UTILITIES=&gt;CR_LF.</P> <P>data lt_str type table of string.</P> <P>CALL FUNCTION 'CONVERT_STRING_TO_TABLE'</P> <P>EXPORTING</P> <P>i_string = lv_str2</P> <P>i_tabline_length = 132</P> <P>* I_UNICODE = 'X'</P> <P>TABLES</P> <P>et_table = lt_str.</P> <P>TRANSFER lv_str4 TO v_dsnam1.</P> <P>LOOP AT lt_str into lv_str2.</P> <P>TRANSFER lv_str2 TO v_dsnam1.</P> <P>ENDLOOP.</P> <P>TRANSFER lv_str5 TO v_dsnam1.</P> <P>But after all this codee, I get a message in PI that this is not a valid PGP message,.</P> <P>Please advise.</P> <P>Thanks,</P> <P>Ushasri,</P> <P></P> 2022-08-21T16:18:52+02:00 https://community.sap.com/t5/technology-q-a/default-settings-in-change-orders-and-operations-section-of-orders-and/qaq-p/12626685 Default settings in Change Orders and Operations: Section of Orders and Operations 2022-09-16T16:06:14+02:00 Krvin https://community.sap.com/t5/user/viewprofilepage/user-id/116732 <P><IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/2094832-control.jpg" /></P> <P>Trying to reset "Operations WorkCenter" and "Operations Plant" sections to be cleared out. However they keep repopulating in only the 2 selections. How would one go about correcting this.</P> 2022-09-16T16:06:14+02:00 https://community.sap.com/t5/enterprise-resource-planning-q-a/exchange-rate-determination-in-purchase-order/qaq-p/12566826 Exchange rate determination in Purchase order 2022-10-11T18:36:57+02:00 ndaptare https://community.sap.com/t5/user/viewprofilepage/user-id/1195173 <P>Dear All,</P> <P>When I try to create a PO in S4 Hana cloud system is picking up an exchange rate automatically, however that exchange rate is not the one we maintain in a system. I am not sure from where the system is getting this exchange rate. We checked all MXN/USD exchange rate maintain in our system &amp; non of that has exchange rate 21.97857 assigned to it.</P> <P><STRONG>Rate maintain in a system for USD/MXN</STRONG></P> <P><IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/2103682-image.png" /></P> <P>Purchase order</P> <P><IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/2103683-image.png" /></P> 2022-10-11T18:36:57+02:00 https://community.sap.com/t5/financial-management-q-a/bank-payment-status-file-txt-not-in-sap-supported-format/qaq-p/12615667 Bank payment status file(.txt) not in sap supported format 2022-10-20T18:54:18+02:00 former_member771081 https://community.sap.com/t5/user/viewprofilepage/user-id/771081 <P>Hi Experts,</P> <P>Client has requirement to update the payment/collection status messages automatically. we are using BCM for status updates and mulesoft for file conversions.</P> <P>Bank sends us two (2) .TXT files.</P> <P>first file with Collection/payment status updates for individual line items as accepted by bank , insufficient funds etc., (for EACH LINE ITEM ,NOT OVERALL file STATUS) </P> <P>Second file for rejected status with different reason codes again (DIFFERENT from above reasons and again NOT OVERALL STATUS).</P> <P>So with bank at a high level there is no initial acceptance file response..The response directly is for rejection or acceptance...so acceptance and rejection confirmations will come based on the value date of collections mentioned..Let's say we send 20 transaction per file (Outbound- from SAP to Bank) ,Out of which<BR />5 has a value date of next day<BR />15 has a value date the day after<BR />Remaining 5 has a value date of three days after<BR />Then response will come as the transactions are processed in different days and different files.</P> <P>Can someone guide me the process to configure /map/ customize this to update the status in BNK_MONI ?</P> <P>Thanks</P> <P>TM</P> 2022-10-20T18:54:18+02:00 https://community.sap.com/t5/enterprise-resource-planning-q-a/how-to-change-exchange-rates-in-sales-documents/qaq-p/12605987 How to change exchange rates in sales documents? 2022-11-17T11:04:00+01:00 SAPSupport https://community.sap.com/t5/user/viewprofilepage/user-id/121003 <P>There is an issue with the exchange rate that is picked up by the system during billing and we would like to change the exchange rate in the sales document. Could you help how the exchange rate can be changed manually to resolve the issue?<BR /><BR />The exchange rate determined by the system is through a triangulation method where SAR/EUR and EUR/USD is maintained and system derives SAR/USD rate automatically. The issue occurs when we use a "Time and Material" contract type projects where cost postings are in SAR and the billing is done in USD.</P> <P><BR />------------------------------------------------------------------------------------------------------------------------------------------------<BR /><STRONG>Learn more about the SAP Support user and program <A href="https://blogs.sap.com/2021/09/20/maximizing-the-power-of-sap-community-at-product-support/" target="_blank" rel="noopener noreferrer">here</A>.</STRONG></P> 2022-11-17T11:04:00+01:00 https://community.sap.com/t5/product-lifecycle-management-q-a/engineering-change-number/qaq-p/12728791 Engineering Change Number 2022-12-13T01:31:37+01:00 former_member785367 https://community.sap.com/t5/user/viewprofilepage/user-id/785367 <P>There are some ECN who has a Markup file attached in the SAP production system. </P> <P>1.Is there any way to provide a relation between those two ? </P> <P>2.Also I want to extrat all those Markup files. </P> 2022-12-13T01:31:37+01:00 https://community.sap.com/t5/technology-q-a/engineering-change-number-summary-report/qaq-p/12728801 Engineering Change Number Summary Report 2022-12-13T01:38:32+01:00 former_member785367 https://community.sap.com/t5/user/viewprofilepage/user-id/785367 <P>I want to extract ECN Summary reports for all the ECN numbers under certain plant. Is there any way to do this ? </P> 2022-12-13T01:38:32+01:00 https://community.sap.com/t5/enterprise-resource-planning-q-a/about-reload-process-route-automatically/qaq-p/12725702 About reload process route automatically 2022-12-27T08:35:44+01:00 former_member789998 https://community.sap.com/t5/user/viewprofilepage/user-id/789998 <P>After rejecting the work item by the approver again process route should be trigger or reload in same ER ...but for me it is not reloading the process route after rejection. could you please help me out of this?</P> <P>Thanks in advance ....</P> <P>Regards,</P> <P>Yuvaraj G.</P> 2022-12-27T08:35:44+01:00 https://community.sap.com/t5/technology-q-a/sap-pi-ubl-2-1-recursive-node-issue/qaq-p/12707877 SAP PI: UBL 2.1 Recursive node issue. 2022-12-27T14:43:09+01:00 rohitpandey98 https://community.sap.com/t5/user/viewprofilepage/user-id/744897 <P>Hello All,</P> <P>We have a requirement where we have to UBL 2.1 XML structure to send Invoices to Customers. </P> <P>But even after importing the XSDs properly, we are having recursive node issues for some fields/segments in the message structure (as shown in the image below). </P> <P>This causes a heap error issue when we use it in message mapping as a target structure. Is there any way we can remove this error?</P> <P>Error screenshot:</P> <P><IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/2121852-image.png" /></P> <P>Thank you so much for your help!</P> <P>Best Regards,</P> <P>Rohit Kumar Pandey</P> 2022-12-27T14:43:09+01:00 https://community.sap.com/t5/technology-q-a/com-sap-aii-utilxi-misc-api-baseruntimeexception-premature-end-of-file/qaq-p/12701537 com.sap.aii.utilxi.misc.api.BaseRuntimeException; Premature end of file issue in SAP PI 7.5 2023-02-17T12:46:35+01:00 nagaraju_cygnet https://community.sap.com/t5/user/viewprofilepage/user-id/781521 <P>Dear Experts,</P> <P>My Scenario is PROXY to REST synchronous. this interface has been working fine in production since a month onwards. i got the <STRONG>Premature end of file error</STRONG>. Even in logs level RESTAPI url is not visible along with token &amp; content-type. Also i have tested the input payload in the Request message mapping level, it was executed successfully. what might be the reason? could any one help on this?</P> <P>error : <STRONG>Returning to application. Exception: com.sap.engine.interfaces.messaging.api.exception.MessagingException: Error encountered while executing mapping: com.sap.aii.af.service.mapping.MappingException: Mapping failed in runtimeRuntime Exception when executing application mapping program com/sap/xi/tf/_MM_GSTR2AReconciliationExport_RES_; Details: com.sap.aii.utilxi.misc.api.BaseRuntimeException; Premature end of file.</STRONG></P> <P><STRONG>thanks in advance.</STRONG></P> <P>Best Regards,</P> <P>nagaraju</P> 2023-02-17T12:46:35+01:00 https://community.sap.com/t5/technology-q-a/how-to-setup-load-balancing-in-pi-system/qaq-p/12703250 How to setup load balancing in PI system? 2023-03-08T21:06:08+01:00 SAPSupport https://community.sap.com/t5/user/viewprofilepage/user-id/121003 <P>Hi, <BR /><BR />How to setup load balancing? is there any parameter which will be used in Message server profile for inbound SMTP load balancing? <BR /><BR />all inbound emails are hitting to only one application server, we want to distribute the load of incoming SMTP traffic across 4 application server, is it possible? <BR /><BR /><BR />Please suggest. <BR /><BR />Regards</P><BR />------------------------------------------------------------------------------------------------------------------------------------------------<BR /><B>Learn more about the SAP Support user and program <A href="https://blogs.sap.com/2021/09/20/maximizing-the-power-of-sap-community-at-product-support/" target="_blank" rel="noopener noreferrer">here</A>.</B> 2023-03-08T21:06:08+01:00 https://community.sap.com/t5/technology-q-a/how-to-enable-tls-ecdhe-ecdsa-for-tls1-2-in-po-system/qaq-p/12695169 How to enable TLS_ECDHE_ECDSA for TLS1.2 in PO system 2023-04-12T13:18:08+02:00 SAPSupport https://community.sap.com/t5/user/viewprofilepage/user-id/121003 <P>Hi SAP, <BR /><BR />Does PO 7.50 SP11 support TLS_ECDHE_ECDSA cipher suite for TLS1.2 ?<BR />And how to enable this Cipher Suite in PO 7.50 SP11 ?</P> <P>Thank you</P><BR />------------------------------------------------------------------------------------------------------------------------------------------------<BR /><B>Learn more about the SAP Support user and program <A href="https://blogs.sap.com/2021/09/20/maximizing-the-power-of-sap-community-at-product-support/" target="_blank" rel="noopener noreferrer">here</A>.</B> 2023-04-12T13:18:08+02:00 https://community.sap.com/t5/technology-q-a/how-to-generate-x-509-and-p8-certificates-for-sftp-adapter/qaq-p/12696916 How to generate X.509 and P8 certificates for SFTP adapter 2023-04-14T09:25:00+02:00 SAPSupport https://community.sap.com/t5/user/viewprofilepage/user-id/121003 <P>Hi Dears ,<BR /><BR />When configuring a PGP scenario to connect from SAP PO to a partner system using SFTP adapter, we are stuck on the step of generating the X.509 and .P8 certificates.</P> <P>Can you please help generating those certificates? <BR /><BR />Thank you,<BR />Best Regards<BR /><BR /></P><BR />------------------------------------------------------------------------------------------------------------------------------------------------<BR /><B>Learn more about the SAP Support user and program <A href="https://blogs.sap.com/2021/09/20/maximizing-the-power-of-sap-community-at-product-support/" target="_blank" rel="noopener noreferrer">here</A>.</B> 2023-04-14T09:25:00+02:00 https://community.sap.com/t5/technology-q-a/how-to-give-redirect-uri-in-cpi/qaq-p/12783971 how to give redirect_uri in cpi 2023-09-19T13:05:05+02:00 nagaraju_cygnet https://community.sap.com/t5/user/viewprofilepage/user-id/781521 <P>Dear Experts,</P> <P>SAP &lt;-----&gt; cpi &lt;---&gt; REST system</P> <P>i have a multiple rest apis in my iflow, all are synchronous. while calling one api in the request parameter level it is asking redirect_uri. in the response level i will get code. this code will go to this particular redirect_uri. how to create this redirect_uri in cpi level. also how to get this code to my iflow.</P> <P>please help on this.</P> <P>Best Regards,</P> <P>Nagaraju</P> 2023-09-19T13:05:05+02:00 https://community.sap.com/t5/technology-q-a/how-to-increase-number-of-threads/qaq-p/12732194 How to Increase number of threads 2023-11-07T14:41:22+01:00 SAPSupport https://community.sap.com/t5/user/viewprofilepage/user-id/121003 <P>How to tune the queue consumer threads for specific adapter in PI/PO system.<BR /><BR /><BR /></P><BR />------------------------------------------------------------------------------------------------------------------------------------------------<BR /><B>Learn more about the SAP Support user and program <A href="https://blogs.sap.com/2021/09/20/maximizing-the-power-of-sap-community-at-product-support/" target="_blank" rel="noopener noreferrer">here</A>.</B> 2023-11-07T14:41:22+01:00 https://community.sap.com/t5/technology-q-a/jdbc-driver-installation/qaq-p/12781793 JDBC Driver Installation 2023-11-16T11:57:54+01:00 SAPSupport https://community.sap.com/t5/user/viewprofilepage/user-id/121003 <P>How to deploy JDBC Driver in SAP PO system</P><BR />------------------------------------------------------------------------------------------------------------------------------------------------<BR /><B>Learn more about the SAP Support user and program <A href="https://blogs.sap.com/2021/09/20/maximizing-the-power-of-sap-community-at-product-support/" target="_blank" rel="noopener noreferrer">here</A>.</B> 2023-11-16T11:57:54+01:00 https://community.sap.com/t5/technology-q-a/issues-while-trying-to-access-integration-builder/qaq-p/13584852 Issues while trying to access Integration Builder 2024-01-29T12:04:02.931000+01:00 StoickTheVast https://community.sap.com/t5/user/viewprofilepage/user-id/1384301 <P>I recently migrated an SAP PI system based on NW 7 from on prem to AWS. Migration went through successfully, however now we can see that we are unable to access the Integration builder or the Enterprise Services Repository for the system. The error I get is below:</P><DIV>java.lang.ExceptionInInitializerError</DIV><DIV><SPAN>at com.sap.aii.ibrep.server.query.LinkCheckRep.buildCLJoin(LinkCheckRep.java:1610)</SPAN></DIV><DIV><SPAN>at com.sap.aii.ibrep.server.query.LinkCheckRep.(LinkCheckRep.java:122)</SPAN></DIV><DIV><SPAN>at com.sap.aii.ibrep.server.query.LinkCheckRep.getInstance(LinkCheckRep.java:146)</SPAN></DIV><DIV><SPAN>at com.sap.aii.ibrep.server.check.GeneralDeletionCheck.(GeneralDeletionCheck.java:34)</SPAN></DIV><DIV><SPAN>at com.sap.aii.ibrep.server.applcomp.StartupCodeEntry.startup(StartupCodeEntry.java:691)</SPAN></DIV><DIV><SPAN>at com.sap.aii.ib.core.applcomp.IStartupCodeEntry.startupIfNotAlreadyDone(IStartupCodeEntry.java:33)</SPAN></DIV><DIV><SPAN>at com.sap.aii.ib.core.applcomp.ExplicitApplicationComponentImpl.startup(ExplicitApplicationComponentImpl.java:116)</SPAN></DIV><DIV><SPAN>at com.sap.aii.ib.core.applcomp.ExplicitApplicationComponents.startup(ExplicitApplicationComponents.java:383)</SPAN></DIV><DIV><SPAN>at com.sap.aii.ib.core.applcomp.ApplicationComponent.startup(ApplicationComponent.java:209)</SPAN></DIV><DIV><SPAN>at jsp_Header1704441410367._jspService(jsp_Header1704441410367.java:16)</SPAN></DIV><DIV><SPAN>at com.sap.engine.services.servlets_jsp.server.jsp.JspBase.service(JspBase.java:112)</SPAN></DIV><DIV><SPAN>at com.sap.engine.services.servlets_jsp.server.servlet.JSPServlet.service(JSPServlet.java:566)</SPAN></DIV><DIV><SPAN>at com.sap.engine.services.servlets_jsp.server.servlet.JSPServlet.service(JSPServlet.java:190)</SPAN></DIV><DIV><SPAN>at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)</SPAN></DIV><DIV><SPAN>at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401)</SPAN></DIV><DIV><SPAN>at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)</SPAN></DIV><DIV><SPAN>at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:386)</SPAN></DIV><DIV><SPAN>at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:364)</SPAN></DIV><DIV><SPAN>at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:1039)</SPAN></DIV><DIV><SPAN>at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:265)</SPAN></DIV><DIV><SPAN>at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)</SPAN></DIV><DIV><SPAN>at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:175)</SPAN></DIV><DIV><SPAN>at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)</SPAN></DIV><DIV><SPAN>at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)</SPAN></DIV><DIV><SPAN>at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)</SPAN></DIV><DIV><SPAN>at java.security.AccessController.doPrivileged(Native Method)</SPAN></DIV><DIV><SPAN>at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:102)</SPAN></DIV><DIV><SPAN>at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:172)</SPAN></DIV><DIV>Caused by: com.sap.aii.utilxi.misc.api.BaseRuntimeException: sun/awt/SunToolkit : cannot initialize class because prior initialization attempt failed</DIV><DIV><SPAN>at com.sap.aii.ib.server.pvcadapt.PvcInitHelper.getRepositoryManager(PvcInitHelper.java:209)</SPAN></DIV><DIV><SPAN>at com.sap.aii.ib.server.pvcadapt.PvcInitHelper.getPvcTablePrefix(PvcInitHelper.java:223)</SPAN></DIV><DIV><SPAN>at com.sap.aii.ib.server.persist.tables.pvc.TablePVCVERSIONSETELEMENT.(TablePVCVERSIONSETELEMENT.java:29)</SPAN></DIV><DIV><SPAN>... 28 more</SPAN></DIV><DIV>Last Exception</DIV><DIV>java.lang.NoClassDefFoundError: com/sap/aii/ibrep/server/check/GeneralDeletionCheck : cannot initialize class because prior initialization attempt failed</DIV><DIV><SPAN>at com.sap.aii.ibrep.server.applcomp.StartupCodeEntry.startup(StartupCodeEntry.java:691)</SPAN></DIV><DIV><SPAN>at com.sap.aii.ib.core.applcomp.IStartupCodeEntry.startupIfNotAlreadyDone(IStartupCodeEntry.java:33)</SPAN></DIV><DIV><SPAN>at com.sap.aii.ib.core.applcomp.ExplicitApplicationComponentImpl.startup(ExplicitApplicationComponentImpl.java:116)</SPAN></DIV><DIV><SPAN>at com.sap.aii.ib.core.applcomp.ExplicitApplicationComponents.startup(ExplicitApplicationComponents.java:383)</SPAN></DIV><DIV><SPAN>at com.sap.aii.ib.core.applcomp.ApplicationComponent.startup(ApplicationComponent.java:209)</SPAN></DIV><DIV><SPAN>at jsp_Main1704441410365._jspService(jsp_Main1704441410365.java:21)</SPAN></DIV><DIV><SPAN>at com.sap.engine.services.servlets_jsp.server.jsp.JspBase.service(JspBase.java:112)</SPAN></DIV><DIV><SPAN>at com.sap.engine.services.servlets_jsp.server.servlet.JSPServlet.service(JSPServlet.java:566)</SPAN></DIV><DIV><SPAN>at com.sap.engine.services.servlets_jsp.server.servlet.JSPServlet.service(JSPServlet.java:190)</SPAN></DIV><DIV><SPAN>at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)</SPAN></DIV><DIV><SPAN>at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401)</SPAN></DIV><DIV><SPAN>at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)</SPAN></DIV><DIV><SPAN>at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:386)</SPAN></DIV><DIV><SPAN>at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:364)</SPAN></DIV><DIV><SPAN>at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:1039)</SPAN></DIV><DIV><SPAN>at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:265)</SPAN></DIV><DIV><SPAN>at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)</SPAN></DIV><DIV><SPAN>at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:175)</SPAN></DIV><DIV><SPAN>at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)</SPAN></DIV><DIV><SPAN>at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)</SPAN></DIV><DIV><SPAN>at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)</SPAN></DIV><DIV><SPAN>at java.security.AccessController.doPrivileged(Native Method)</SPAN></DIV><DIV><SPAN>at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:102)</SPAN></DIV><DIV><SPAN>at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:172)</SPAN></DIV><DIV>Caused by: java.lang.ExceptionInInitializerError</DIV><DIV><SPAN>at com.sap.aii.ibrep.server.query.LinkCheckRep.buildCLJoin(LinkCheckRep.java:1610)</SPAN></DIV><DIV><SPAN>at com.sap.aii.ibrep.server.query.LinkCheckRep.(LinkCheckRep.java:122)</SPAN></DIV><DIV><SPAN>at com.sap.aii.ibrep.server.query.LinkCheckRep.getInstance(LinkCheckRep.java:146)</SPAN></DIV><DIV><SPAN>at com.sap.aii.ibrep.server.check.GeneralDeletionCheck.(GeneralDeletionCheck.java:34)</SPAN></DIV><DIV><SPAN>at com.sap.aii.ibrep.server.applcomp.StartupCodeEntry.startup(StartupCodeEntry.java:691)</SPAN></DIV><DIV><SPAN>at com.sap.aii.ib.core.applcomp.IStartupCodeEntry.startupIfNotAlreadyDone(IStartupCodeEntry.java:33)</SPAN></DIV><DIV><SPAN>at com.sap.aii.ib.core.applcomp.ExplicitApplicationComponentImpl.startup(ExplicitApplicationComponentImpl.java:116)</SPAN></DIV><DIV><SPAN>at com.sap.aii.ib.core.applcomp.ExplicitApplicationComponents.startup(ExplicitApplicationComponents.java:383)</SPAN></DIV><DIV><SPAN>at com.sap.aii.ib.core.applcomp.ApplicationComponent.startup(ApplicationComponent.java:209)</SPAN></DIV><DIV><SPAN>at jsp_Header1704441410367._jspService(jsp_Header1704441410367.java:16)</SPAN></DIV><DIV><SPAN>... 18 more</SPAN></DIV><DIV>Caused by: com.sap.aii.utilxi.misc.api.BaseRuntimeException: sun/awt/SunToolkit : cannot initialize class because prior initialization attempt failed</DIV><DIV><SPAN>at com.sap.aii.ib.server.pvcadapt.PvcInitHelper.getRepositoryManager(PvcInitHelper.java:209)</SPAN></DIV><DIV><SPAN>at com.sap.aii.ib.server.pvcadapt.PvcInitHelper.getPvcTablePrefix(PvcInitHelper.java:223)</SPAN></DIV><DIV><SPAN>at com.sap.aii.ib.server.persist.tables.pvc.TablePVCVERSIONSETELEMENT.(TablePVCVERSIONSETELEMENT.java:29)</SPAN></DIV><DIV><SPAN>... 28 more</SPAN></DIV><DIV>&nbsp;</DIV><DIV><SPAN>I have also been trying to access the ESR using workarounds by downloading the jnlp files for repository and directory from the source system. However, I am not sure where do these files need to be placed on the target system in order to use the java webstart to access the repository or directory URL directly from the command line.<BR />My source and target environments are both linux. I have the jnlp files downloaded on my pc and am trying to run the jnlp file using the javaws installed in my pc but it gives me an error:</SPAN></DIV><DIV>&nbsp;</DIV><DIV><SPAN>JNLParseException[ Could not parse launch file. Error at line 7.]<BR />at com.sun.javaws.jnl.XMLFormat.parse(Unknown Source)<BR />at com.sun.javaws.jnl.LaunchDescFactory.buildDescriptor(Unknown Source)<BR />at com.sun.javaws.jnl.LaunchDescFactory.buildDescriptor(Unknown Source)<BR />at com.sun.javaws.jnl.LaunchDescFactory._buildDescriptor(Unknown Source)<BR />at com.sun.javaws.jnl.LaunchDescFactory.buildDescriptor(Unknown Source)<BR />at com.sun.javaws.jnl.LaunchDescFactory.buildDescriptor(Unknown Source)<BR />at com.sun.javaws.Main.launchApp(Unknown Source)<BR />at com.sun.javaws.Main.continueInSecureThread(Unknown Source)<BR />at com.sun.javaws.Main.access$000(Unknown Source)<BR />at com.sun.javaws.Main$1.run(Unknown Source)<BR />at java.lang.Thread.run(Unknown Source)<BR />Caused by: org.xml.sax.SAXParseException; lineNumber: 7; columnNumber: 3; The element type "LINK" must be terminated by the matching end-tag "&lt;/LINK&gt;".<BR />at com.sun.org.apache.xerces.internal.util.ErrorHandlerWrapper.createSAXParseException(Unknown Source)<BR />at com.sun.org.apache.xerces.internal.util.ErrorHandlerWrapper.fatalError(Unknown Source)<BR />at com.sun.org.apache.xerces.internal.impl.XMLErrorReporter.reportError(Unknown Source)<BR />at com.sun.org.apache.xerces.internal.impl.XMLErrorReporter.reportError(Unknown Source)<BR />at com.sun.org.apache.xerces.internal.impl.XMLScanner.reportFatalError(Unknown Source)<BR />at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl.scanEndElement(Unknown Source)<BR />at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl$FragmentContentDriver.next(Unknown Source)<BR />at com.sun.org.apache.xerces.internal.impl.XMLDocumentScannerImpl.next(Unknown Source)<BR />at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl.scanDocument(Unknown Source)<BR />at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(Unknown Source)<BR />at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(Unknown Source)<BR />at com.sun.org.apache.xerces.internal.parsers.XMLParser.parse(Unknown Source)<BR />at com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.parse(Unknown Source)<BR />at com.sun.org.apache.xerces.internal.jaxp.SAXParserImpl$JAXPSAXParser.parse(Unknown Source)<BR />at com.sun.org.apache.xerces.internal.jaxp.SAXParserImpl.parse(Unknown Source)<BR />at com.sun.deploy.xml.XMLParser.parse(Unknown Source)<BR />at com.sun.deploy.xml.XMLParser.parse(Unknown Source)<BR />... 11 more<BR /></SPAN></DIV><DIV>&nbsp;</DIV><DIV><SPAN>Is there any specific location where the jnlp files need to be placed on the target server before accessing ESR using this?&nbsp;</SPAN></DIV><DIV>&nbsp;</DIV><DIV><SPAN>Best Regards</SPAN></DIV> 2024-01-29T12:04:02.931000+01:00 https://community.sap.com/t5/enterprise-resource-planning-q-a/currency-exchange-for-price-lists/qaq-p/13592939 Currency exchange for price lists 2024-02-02T15:43:52.571000+01:00 MM9 https://community.sap.com/t5/user/viewprofilepage/user-id/1389479 <P>Hello,</P><P>Do you use any standard/customer processes for currency exchange in SAP ByDesign between different currency price lists? Product prices are set on the "Base price list" and the same product price list needs to be converted to different currency. The manual process is not an option as far as the exchange rate changes once per day, and the product amounts are big enough for a manual process. Thank you in advance guys!</P> 2024-02-02T15:43:52.571000+01:00