Quantcast
Channel: SCN : Unanswered Discussions - Process Integration (PI) & SOA Middleware
Viewing all 6719 articles
Browse latest View live

PI 7.4 - AF_Modules/XMLAnonymizerBean - JMS Adapter - Remove namespace and prefix

$
0
0

Hi Experts,

 

I have to remove Namespace and Namespace Prefix in my JMS Adapter Receiver.

 

I have configured AF_Modules/XMLAnonymizerBean , but no luck. Still I am getting Namespace & Namespace prefix.

 

Kindly help me in resolving this issue.

 

Configured as below in Module Tab. {Line item 2 & 3 are default parameters available} , I have kept AF_Modules/XMLAnonymizerBean in 1.

Module_.png

 

Parameters_.png

Audit Logs:

 

RWB.PNG

Output Message in Receiver JMS Channel:

 

<?xml version="1.0" encoding="UTF-8" ?>

- <ns1:Items xmlns:ns1="http://xx.xyz.com/abc/sample/full">

  <Item AdjustmentType="ABS" ItemID="F100" OrganizationCode="XYZ" Quantity="879.25" ShipNode="F009" SupplyType="ON HAND" />

  </ns1:Items>

 

Thanks in Advance,

Baskar


Alert Configuration in SAP PO 7.4 Single Stack

$
0
0

Dear Experts,


I have followed One of the Michals popular blog  Michal's PI tips: Component-Based Message Alerting to create Alert Configuration.


I have created an alert rule, enable the PO system to send e-mails and schedule the alert consumer job as told in the blog.


But i am getting the following error when Job Completes ( Also no mail is getting triggered ) :                                                                                                                                                    


javax.mail.MessagingException: Exception reading response;

nested exception is:

java.net.SocketException: Connection reset

 

Job.onJob() execution finished with errors (caused by job)


Regards,

Ruban.S







asynchronous consumer proxy error - ERP to HCI

$
0
0

Dear experts,

 

We have configured an Integration scenario ERP -> HCI -> S/4HANA cloud edition, where the data is exported from ERP through an asynchronous Consumer Proxy pointing to the HCI endpoint. We created the ABAP proxy based on the HCI wsdl and implemented a Z* report which is filling the data and calling the consumer proxy. Also, we created the logical port to point to HCI (ping is succesfully executed).

 

But when we run the Z* report to export the data, at COMMIT WORK the following short dump occurs.

 

ShortDump.PNG

 

Do you have any idea what can cause this short dump?

 

Thank you in advance for your input!

Best regards,

Andreea Mutascu

Java mapping Dynamic directory getting error as K:\Staging\LandingArea\2016\/ does not exists

$
0
0

Hi Experts,

 

I am on PI 7.31 single stack file to SFTP scenario.

 

I made the java code to dynamically create the target directory path based on the file name.

 

The target directory will be E:\Staging\LandingArea\2016\

 

Code logic:

 

String targetDir= "E:\\Staging\\LandingArea";

 

filename = filename.substring(9,13);

  subDir = filename;

 

targetDir = targetDir + "\\" + subDir + "\\";


in receiver channel I am getting error as "Message processing failed. Cause: javax.resource.ResourceException: java.lang.Exception: K:\Staging\LandingArea\2016\/ does not exists.


extra "/ " is adding at the end.


Can you please help me to resolve the issue.


Thanks,

Akhila.A



Mail Adapter without file/payload attachment

$
0
0

Hi Experts,

 

I have a pass through scenario, once the file is delivered I have to send an email saying "File successfully delivered". I have configured 2 Receiver interfaces. One to deliver file and second to send an email. I have also checked the checkbox Maintain order at runtime.

 

The interface is working as expected however the email is going out with Payload as an attachment. I have tested after unchecking Keep Attachment checkbox however its sending payload in the email.

 

Please advice how to remove the payload/attachment from email.

 

 

 

 

 

 

SFTP Sender channel File name schema

$
0
0

Hi All,

 

My requirement is  SFTP sender channel should pick all files with ".pgp " extension. Please provide me the file name Schema for this.

 

Appreciate the quick reply!

 

Thanks,

Gayathri.

Webservice proxy - Response Transformation issue

$
0
0

Hi Experts,

 

I'm facing issue when calling webservice proxy in ABAP (ECC). Response from webservice looks as follows:

<?xml version="1.0" encoding="UTF-8"?><SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:c14n="http://www.w3.org/2001/10/xml-exc-c14n#"
xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd"
xmlns:ds="http://www.w3.org/2000/09/xmldsig#"
xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd"
xmlns:abc="abc.xsd">   <SOAP-ENV:Header/>   <SOAP-ENV:Body>      <abc:operationResponse>         <id>123456</id>      </abc:operationesponse>   </SOAP-ENV:Body></SOAP-ENV:Envelope>

I'm getting exception during webservice call with message GENERAL ERROR UNKNOWN PART. I was trying to change Response Transformation (Simple Transformation) to help proxy engine to parse incoming message. The main problem is that SAP is calling transformation with message payload only as XML source for transformation it means that input for transformation is:

 

  <abc:operationResponse>       <id>123456</id>   </abc:operationesponse>

I made custom Z* simple transformation to test how reponse transformation should looks like but i'm stuck.

 

<?sap.transform simple?><tt:transform xmlns:tt="http://www.sap.com/transformation-templates"
xmlns:ddic="http://www.sap.com/abapxml/types/dictionary"
xmlns:def="http://www.sap.com/abapxml/types/defined"
xmlns:abc="abc.xsd">  <tt:root name="OPERATION" type="ddic:Z_OPERATION_RESPONSE"/>  <tt:template>    <abc:operationResponse>      <id>        <tt:value ref=".OPERATION.ID"/>      </id>    </abc:operationResponse>  </tt:template></tt:transform>

Above transformation works only with following XML as input.

  <abc:operationResponse xmlns:abc="abc.xsd">       <id>123456</id>   </abc:operationesponse>

So, the problem is that in reponse that I receive abc namespace prefix is defined at Envelope tag level and is not considered by SAP during response transformation (Envelope is not part of payload). Without prefix declaration inside response payload i'm getting match element exception. Transformation without prefix declaration at level operationResponse or higher (tt:transform) etc. couldn't be activated - editor shows "undeclared namespace prefix" error. Empty namespace for that prefix also doesn't work.

 

Any idea how to force ws proxy to parse such response correctly? Or maybe other ideas, is there any way to access received response before proxy raise an exception and then try to parse it manualy or using XSLT instead of simple transformation?

 

Best Regards,

Maciej

Migration Issue PI7.11 to PI7.31

$
0
0

Hi ,

 

We are facing a issue during migration for one of the mappings. The mapping is working fine in the source system and on migration the same mapping is giving error. Are there any changes done in PI7.31 with respect to runtime functionality of UDF.

Because in this mapping we have one UDF with all values of context and Result List and the mapping failure is at the field where in the UDF is written.

 

We have not done any changes to any of the objects but the behaviour is different in both systems. Can someone please provide inputs on the same.


Proxy - PO 7.4

$
0
0

Hello

 

We are currently migrating from PI7.01 to PO 7.4 SP11 single stack.

 

The plan is to go live by phases. So, some interfaces will be running in old version and some running in new version.

 

We have only one ECC system to test.

 

My question is with respect to following Outbound and Inbound Proxies.

 

1. How do i make sure that the outbound extract program goes to PO and not to PI and how do i configure based on interfaces. There may be 5 outbound proxy interfaces where 2 of them needs to go PO and remaining PI.

 

2. Similar for inbound proxy, what adapter should i use and how to configure.

Regards

Sam

Regarding the Connectivity of Hana Cloud Integration with the SFTP server

$
0
0

Hi Experts,

 

i am trying to connect to the SFTP Server to the Hana Cloud Integration tenant.But i am getting an error like keystore is not maintained .i came to know that we need to create the keystore by using the keystore explorer tool .But i am not able to find the known_hosts to deploy on the hci tenant.So please let me know where can i find the known_hosts file.if i am not having the known_hosts file please let me know how to create the file.Please help me

 

 

 

 

Regards

Giridhar

how we can migrate j2ee developments ( adapter and modules) 7.3 to 7.4

$
0
0

Hello All,

 

We are migrating from PI 7.3 (dual stack ) to 7.4 (single stack).

 

I wanted to know how we can migrate j2ee developments ( adapter and modules) which were developed by previous company and we dont have the relevant information for same.

 

In the application server of PI i can find the relevant jar files ,but dont know
1.how to download those jar files (i tried using sxda_tools but not working)
2.how to convert jar files to format deployable in pi

 

Any help will be much appreciated.

 

Thanks

Naveen Tripathi

Message Log not obtained

$
0
0

Hi SDNites,

 

I am currently working on Dual Stack. I am able to do all monitoring from SXMB_MONI but when I go to Message monitor in adapter engine, I am not able to view the Message log there though as per configuration it should maintain the details for a day. But I can see that message log for SOAP adapter only is visible,

 

19.02.2016 12:50:04.697 Information The message was successfully retrieved from the receive queue

19.02.2016 12:50:04.702 Information Delivering to channel: communicaion channel name

19.02.2016 12:50:04.702 Information MP: processing local module localejbs/sap.com/com.sap.aii.af.soapadapter/XISOAPAdapterBean

19.02.2016 12:50:04.702 Information Message status set to DLNG

19.02.2016 12:50:04.703 Information SOAP: Request message entering the adapter processing with user J2EE_GUEST

 

Can you please let me know why the same is happening as my objective is to make the sysytem compatible with Single stack going forward and all monitoring can be done with no hassles.

 

Also do we need to set some configuration parameters to make this happen and if yes can you please help me with details.

 

Regards,

Abhi

PI Upgrade : Mapping runtime and Adapter data cache pointing to old SID

$
0
0

Hi Experts,

 

I have a case in our PI upgrade wherein when we go to-

 

Administration -> Repository/Directory tab -> Data Cache

 

Under Data Cache, when we click on either Mapping Runtime cache or Adapter cache refresh, it opens up the old SID, it basically still points to the old system.

 

We have cofigured the required RFC destinations in both AS ABAP and Java (in SM59 and NWA respectively).

 

Any suggestions as to where to set the host where the cache points to?

 

 

Regards,

Karthik

How to register decentral AEX to same domain of PO in SLD

$
0
0

Hi Experts,

 

We installed PO system and it registered all the components in SLD, We also installed de central  AEX on separate instance on same host, how to register the de central AEX to same domain of PO system in PO local SLD?

 

Regards,

Santhi

JDBC insert fails when no child records-No 'action' attribute found in XML document (attribute "action" missing or wrong XML structure)

$
0
0

Hi, I am working on a jdbc insert for a parent table (po header) and two children tables (po line item and po service items) using idoc orders.orders05. I had some problems because for e1edc01 there is a header record that I needed to remove. I accomplished this with the below:map.JPG

My mapping works when there are service items and removes the empty e1edc01. My problem is when the po is a service limit and there are no service items. The service item insert fails. How can I stop this insert when there are no service items?servitminsert.JPG


multimapping on dynafile name how to create?

$
0
0

Hi Experts,

 

 

can you please suggest me,how to create to create dynamic file name in multi mapping.

 

 

 

 

Thanks

Narendra

Java Services lost after SP upgrade

$
0
0

Hi Team,

 

We have upgraded our NW 7.31 Java Stack from SP14 to SP17, The upgrade was successful however we have lost some java services which were deployed on the instance.

 

Has anyone faced similar issues ?

 

Regards,

Arpit

SAP PI 7.4 - Success Factor connection issue

$
0
0

Hi Experts,

 

I am trying to connect our SAP PI 7.4 single stack version with Success Factor for employee data integration. But I am not able to connect properly as pinging the channel is showing could not open connection to success factor URL.Network team is confirmed that port 443 is open and PI can telnet.

 

I have done below . Please help me to create the successful connection. I am using below URL to connect to SF -https://salesdemo4.successfactors.com/sfapi/v1/soap?wsdl

 

Opening this URL in Web browser I got 3 certificates and exported all 3 in local. successfactors.com is saved as successfactors.crt as saving as it is making this a MS DOS application due to .com extension.

pic3.JPG

VeriSignClass3PublicPrimaryCertificationAuthority-G5.crt

                  SymantecClass3SecureServerCA-G4.crt

                             successfactors.crt

I have imported all 3 certificates as it is without renaming anything in Keystore under view TrustedCAs and WebServiceSecurity. Below is my channel configuration where I put all required module parameters as per SFIHCM600 01. I have tried by putting other 2 certificates name as well in the channel but no luck.

pic1.JPG

When I am pinging the channel , I am getting below error -

pic2.JPG

Please help if I am missing anything or doing anything wrong.

 

Thanks in advance,

SAP PI 7.1 EHP1 Upgrade with MOPZ (Please help)

$
0
0

Dear Friends,

 

We have SAP PI 7.1 EHP1 installed.

 

Now when i am creating stack.xml with MOPZ its only suggesting NetWeaver 7.5 Upgrade with automatic calculation option in MOPZ transaction.

 

Is it fine?? Only NW 7.5 upgrade required?? No other JAVA SPS of PI??

 

Please help.

 

Regards,

Qazi

Sender communication channel using ARIBA adapter for pushing messages

$
0
0

Hi All,

 

We have a requirement to connect our SAP system with ARIBA network using PI. We have installed the ARIBA PI adapter.

We want to configure sender communication channel where ARIBA can push the messages. PI should send the response in cXML format.

We noticed that the sender communication channel configured using ARIBA adapter always pulls the messages. Looks like this adapter cannot be used ARIBA to push the messages.

We are not sure whether we have installed the correct  adapter or there is something need to be done to make it available for pushing messages.

Could somebody please help me. If you need more information please let me know

Shantha

Viewing all 6719 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>