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

saop to proxy syn scenario...no message in moni??

$
0
0

Dear experts,

 

developed soap to proxy syn scenario, we are testing the interface i can see the request message in moni and response msd ID in same message.

 

i cant find messages in message monitor in RWB and response is not yet received at sender side.

 

how to trace this issue as i can see sucess flag in moni.

 

i checked SOAP adapter log and it show sucessfully processed

 

10/29/2014 10:47:16.148InformationMessage status set to
DLVD
10/29/2014 10:47:16.149InformationSOAP: response message
leaving the adapter
10/29/2014 10:47:16.149InformationSOAP: completed the
processing

 

 

regards,

chinna


splitting file at PI

$
0
0

Hi,

 

The scenarioo is like I have .xml file at PI which need to go ECC in the form of IDOCs(Each record in xml is one IDOC) . So, by doing this the number of IDOCs count is getting increased and the process is getting failed as ECC can process only 20K records. Is there any way to divide the .xml into small files so that, the IDOCs can go to ECC batch wise?

 

Please suggest me.

 

Regards,

Bindu.

Failed to get the input stream from socket: iaik.security.ssl.SSLCertificateException: Peer certificate rejected by ChainVerifier

$
0
0

Dear Experts,

 

Facing the SSLCertificateException exception with SOAP adapter receiver communication lookup channel. We have not being configured the SSL

certificate exchange setup with Target Sales-force system in PI servers. With same configurations we have been working since April'2014. Since

Yesterday we are facing this strange issues in all the landscapes.

 

Integration Scenario: SAP PI to Salesforce communication, during initial call to get the Salesforce Session ID with receiver SOAP communication channel we are getting the below Error. Failed to get the input stream from socket: iaik.security.ssl.SSLCertificateException: Peer certificate rejected

by ChainVerifier. iaik.security.ssl.SSLCertificateException: Peer certificate rejected by ChainVerifier. Error in call over HTTP: HTTP 0 null

 

Using the EndPoint URL from SOAP Receiver channel :

 

https://test.salesforce.com/XXXX


The respective Host IPs are already maintained in Server Host file.

 

 

Please provide your inputs.

 

 

Regards

RK N

SAP PI/PO vs SOAMANAGER

$
0
0

Hi Experts,

 

For a "Services" based communication we can integrate via SAP PI and also use SOAMANAGER.

 

Can someone please point at the PROS and CONS of both the methodologies compared to each other?

 

Regards,

Vikas

Attachment Processing via receiver File Adapter

$
0
0

Hi All,

 

We are working on Email -->PI (7.4 single stack)-->File Server (NFS) scenario.

 

The requirement is to pick the mails from the mail server and store files (Mail + Attachments) at the target file server. The Mail body should be saved as .html file whereas the attachments should be saved as it is.

E.g., A mail with one word document as attachment should result in one .html file and one word document.

 

The name of the html file is derived from the mail subject and the attachments name is kept as it is.

 

 

This scenario is working fine with SFTP adapter and to process the attachments, we are using store attachments options. However, now we need to use File (NFS) instead of SFTP adapter. The problem that we are facing is that there is no option available (such as store attachments) in the receiver FILE adapter.

 

Request your suggestions on how this can be achieved.

 

 

Thanks in advance!

 

Regards,

Rahul

SFSF Login Response - Error Parsing PI Message - WRONG_VALUE in DynamicConfiguration

$
0
0

Hello,

 

I am working on SuccessFactors EmployeeData integration with HCM. The receiver adapter gives an error when performing the operation SFSFSessionHandlingLoginQueryResult_In. An extract of error message is provided below. I believe the issue is related to sap note 1805037 - Parsing Error when adapter specific attributes enabled . As you can see the length of the dynamic configuration value is more than 200 characters in this scenario.

 

Has anyone encountered this scenario?  If yes, how was it fixed? Did SAP release a customer specific note?

 

FYI:

I have done all the module configurations as per SAP recommendation

I am using two different

SAP Version is 7.4 sp5

SOAP Adapter with HTTP/Axis protocol is used in the scenario

SFIHCM0160008 is being used in this scenario

 

 

================ Error Message ====

XML tag SOAP:Envelope(1)SOAP:Header(1)sap:DynamicConfiguration(3)sap:Record(1) (or one of the attributes) has incorrect value JSESSIONID=7E2D78A35CD563201DB6B5419160A0EE.dc4bizxsfapi01;Secure;HttpOnly;Path=/sfapi;Version=1;, BIGipServerP_PM4_INT.SUCCESSFACTORS.COM-TEST=!UPM8cjIYc4R7qxwvaWnzCgIEz1DebxS/FxNnsXwcE7pOSw+jCl0SN6KTMbdyk0VqjbMYBICpQ5t6Fyg=;Secure;HttpOnly;Path=/;Version=1; An error occurred when deserializing in the simple transformation program ST_XMS_MSGHDR30_DYNAMIC Data loss occurred when converting JSESSIONID=7E2D78A35CD563201DB6B5419160A0EE.dc4bizxsfapi01;Secure;HttpOnly;Path=/sfapi;Version=1;, BIGipServerP_PM4_INT.SUCCESSFACTORS.COM-TEST=!UPM8cjIYc4R7qxwvaWnzCgIEz1DebxS/FxNnsXwcE7pOSw+jCl0SN6KTMbdyk0VqjbMYBICpQ5t6Fyg=;Secure;HttpOnly;Path=/;Version=1;</

=================End of Error MEssage ==========


Thanks

Mapping JDBC Lookup - Need to fetch Mutliple values

$
0
0

Hello Experts,

 

I have to fetch values from the JDBC table based on input fields and need to pass them to target structure and my input source xml contains multiple records(more than 10k).As the standard JDBC table will fetch one value at a time and not feasible solution in  this regard.

I thought of writing an UDF and am attaching the UDF written(not good at java)-


String query =" ";
Channel channel = null;
DataBaseAccessor accessor = null;
DataBaseResult resultSet = null;

query = "SELECT GUID FROM MASTER_EMP_NEW WHERE PWCE_STAFF_ID ='653081,094465'";
try {
channel = LookupService.getChannel("PWC_ACQUIRE","CC_JDBC_RECEIVER");
accessor = LookupService.getDataBaseAccessor(channel);
resultSet = accessor.execute(query);

for(Iterator rows = resultSet.getRows();rows.hasNext();){
Map rowMap = (Map)rows.next();
result.addValue((String)rowMap.get("PWCE_STAFF_ID"));
result.addValue((String)rowMap.get("GUID"));

}
}
catch(Exception ex) {
result.addValue(ex.getMessage());
}

 

finally{

try{

if (accessor!=null) accessor.close();

}

catch(Exception e){

result.addValue(e.getMessage());

}

 

}

It is also fetching a single record and it is giving error when i raise the cintext of the input filed to higher level.

 

Please let me teh feasible approach to handle this and i am working on Pi 7.31.

As per my knowledge, the sceanrio should be making a single query to the table and get the possible input/output combinations and store them in a array variable internal to PI mapping and  then need to pass to my target as per the input filed.

 

Please help me with the steps to acheive.

I iwll be very much thnakful if provide me with any code snippets as i m avery bad at java.

 

Awaiting for your reply all the time.

 

Thanks & Regards

Narayanaredy B

SAP LSO integration with SkillSoft

$
0
0

Hi Expert,

 

We are woking on LSO 6.0

 

 

integration with Skillsoft. Does anyone have any latest information or documentation
on how to integrate the two systems? We want users to request SkillSoft courses
through SAP LSO portal and then launch course through SkillSoft.

 

 

Basically we have the following questions:

 

 

1.Do we have to use PI (XI) for implementation? There is a document
"SAP Learning Web Service in LS 6.0" talking about interface mapping.
does that mean we don't need import AICC file into our system if we are using PI?

 

 

2. Which components will be needed to install? We currently installed LSOFE,
how is LSOAE and content player come to play if PI is used?

 

 

3. Skillsoft only send us sample AICC files. Where should we load those mata
data? Should we load aicc files to portal CMS master repository? then how the
portal CMS and PI come to play?

 

 

We are pretty new to this area and any help will be greatly appreciated.

 

.Thank you very much in advance,

 

Hailan


Adapter Mail Receiver PI 7.1 - THeaderCC doesn't work

$
0
0

Hi,

 

 

I have my udf with

 

DynamicConfigurationKey dck_mailAdapter;
dck_mailAdapter = DynamicConfigurationKey.create("http://sap.com/xi/XI/System/Mail", "THeaderCC");
dc.put(dck_mailAdapter, valueCC);

 

It works, because in the monitor of comunication channel i'm seeing

 

<SAP:DynamicConfiguration SOAP:mustUnderstand='1'><SAP:Record namespace='http://sap.com/xi/XI/System/Mail' name='THeaderCC'>xxxx@yyyyyy.com</SAP:Record></SAP:DynamicConfiguration>

My Comunication channel has ASMA activated and

 

Message Protocol = XIPAYLOAD

Use Mail Package checked

Content Encoding none

Keep Attachments checked

 

I'm sending all information in the message and it works.

 

The problem is that CC doesn't work.

 

Anyone knows the solution? I've checked for a relevant notes and no way.

 

Regards,

 

Xavi

get the rfc destination from PI

$
0
0

Hi all,

 

We are using the standard function modul  'rfc_read_table' in PI , to get data of the table using an RCF call  . The table that we want to get its data, has the same name in SRM, ECC, and BI.

 

CALL FUNCTION 'RFC_READ_TABLE'
      DESTINATION ????

      EXPORTING
        query_table = 'Z_TABLE'

*       DELIMITER   = ' '
*       NO_DATA     = ' '
*       ROWSKIPS    = 0
*       ROWCOUNT    = 0
      TABLES
*       OPTIONS     =
*       FIELDS      =
        data        = wt_data.

The question is , how could we determine the destination ( is it ECC or Bi or SRM ) ??

 

Cordialy

xmlns:prx="urn:sap.com:proxy:SID

$
0
0

Hi Folks,

 

when ABAP proxy responses are getting created in SAP the system generated SID is appearing as wrong system. We are in production and its genearting with Quality SID

 

 

"urn:sap.com:proxy:QX1:/1SAI/TAS33BB3A537A7B5AC4836B:701:2011/07/20">

 

 

instead of

 

 

"urn:sap.com:proxy:PX1:/1SAI/TAS33BB3A537A7B5AC4836B:701:2011/07/20">

 

 

Its not creating any issues for the payload but would like to fix this. Is there any setting specific to SID generation in Porxy settings?

File Receiver FCC parameters for multiple hierarchies Subnodes in target structure.

$
0
0

Hi All,

 

I am facing challenge while configuring FCC parameters in Receiver file channels.

I have multiple hierarchy in my target structure

 

Error getting in Receiver channel :

 

'java.lang.Exception: Consistency error: more fields found in XML structure than specified in conversion parameters! (Value 'XXXX')', probably configuration error in file adapter (XML parser error)'

 

Here value XXXX is the value of my field  "Item_Details_field_1" in output

 

So the question is : Can't I handle multiple hierarchy at my target side ?

I tried here and there but could not find any link on this.

 

My ESR structure :

 

Records ... Level 1

  Header (0..1) ... Level 2

       Header_field_1

       Header_field_2

       Header_field_3

  Details (0..Unbounded) ... Level 2

       Detail_field_1

       Detail_field_2

       Detail_field_3

  Item (0..Unbounded) ... Level 2

       Item_field_1

       Item_field_2

       Item_field_3

       Item_Details (0..Unbounded) ... Level 3

            Item_Details_field_1

            Item_Details_field_2

            Item_Details_field_3

 

 

My Sender channel :

 

Record structure : Header,Details,Item,Item_Details

 

Header.filedNames = Header_field_1,Header_field_2,Header_field_3

Header.filedFixedLength = 10,10,10

Header.endSeparator = '/n'


Details.filedNames = Detail_field_1,Detail_field_2,Detail_field_3

Details.filedFixedLength = 10,10,10

Details.endSeparator = '/n'


Item.filedNames = Item_field_1,Item_field_2,Item_field_3

Item.filedFixedLength = 10,10,10

Item.endSeparator = '/n'


Item_Details.filedNames = Item_Details_field_1,Item_Details_field_2,Item_Details_field_3

Item_Details.filedFixedLength = 10,10,10

Item_Details.endSeparator = '/n'

 

 

Thank you in advance...


Thank you.

Ramiz.

File to Mail Scenario

$
0
0

Hi SDNites,

 

In File to Mail scenario, everything is working fine (Getting the file name using UDF, getting the email ID using RFC look up) except attachmnet not being sent.

 

Also attachment is not visible in the payload of sender and receiver.

 

Regards,

Abhishek

PI 7.3 dual stack: Do we need restart of SSL service and ICM after importing keys in NWA keystore ?

$
0
0

Hi,

 

I have recently imported the keys in keystore of NWA PI 7.3 dual stack which is accessed by java mapping. When i execute the java mapping, it is giving below error.

 

"java.security.KeyStoreException: No key found with alias"

 

Though i am able to see the key in NWA keystore. Can anybody help on this ?

 

Also on looking on some scn help, it is suggested that after importing keys restart of ssl service and ICM is required. I am not changing the PI server SSL keys but the i am importing the new key which is used for signing the message. Please suggest if still i need to restart SSL service and ICM ?

 

Appreciate Quick help !

 

Thanks,

Amit


     
   

JDBC to RFC to JDBC with RequestResponseBean and ResponseOneWayBean ERROR.

$
0
0

Hi Experts,

I have configured the JDBC to RFC to JDBC scenario.

While executing the RFC BAPI in SAP system, the function module failed or crashed. So out put of RFC is nothing.

In that case in PI, I am getting the below error.

JBDC Error.png

 

How to update the failed or crashed information back to database ?

 

Regards,

Sreeni.


doubt : ALE settings

$
0
0

Hi experts,

 

I am new to the sap pi and while doing the ALE settings..I came up with a doubt

 

I have 2 ECC system ..so 2 LS should be created.

so those LS should be creted in there respective server?.

I mean if I have  eccA system with clnt 200 and other eccB is with clnt 400

so LS for clnt 200 should be creted in   eccA and likewise for ECCB..?

or can I create the  LS in either of ECC ..it wont matter?

 

Thanks in advance

Idoc_AAE receiver channel slow processing

$
0
0

Hi All,

 

We have an Idoc to Idoc scenario where I have more than 15k messages in to be delivered status. there is no error in the system and on the channel

but the processing is very slow, when I do start and stop of the channel then the processing is increasing and the idocs are getting posted rapidly to receiver ECC system.

 

Can you tell me the solution for this?

 

I am on PI 7.31 single stack.

 

Regards,

Rahul Kulkarni

Message not coming in seeburger with transaction code filter

$
0
0

Hi All,

 

We have a scenario, where in we have to send EDI852 from SAP to 3rd party. This scenario is working perfectly okey and the 3rd party is also able to receive the EDI_852. We are able to see the communication channels (sender and receiver) are having success logs. Where as when we go to Seeburger Message Tracker, and try to search on transaction code 852, it dosen't show us any result (though it is success in PI).

 

When we try to search as '*' we can see those messages, but the transaction code and the other fields are blank. see below the screen shot (red marks are blank).

 

We are able to see other messages in seeburger. Are we missing any configuration in seeburger. Pl suggest.

seeburger message tracker error.png

 

Regards,

Krishna Chauhan

SAP PI JDBC Sender using SSL Certificate to get data from mysql

$
0
0

Hello,

 

I have a requirement to connect using SAP PI to a mySQL database and fetch some data.

 

My issue in short is that apart from the normal username and password credentials it also requires an SSL Certificate to be used.

 

I've set-up everything in my jdbc sender adapter, including the driver and the connection url but I am not sure where to put the certificates.

 

Is there some place in Netweaver Administrator to add these certificates and then call them from the adapter?

 

 

Thank you

How can I read a flat file into one field with FCC?

$
0
0

Hi Experts,

 

I am trying to read a flat file into one field wit FCC and my file structure is like

 

aaaaaaaaaaa

bbbbbbbbbbb

ccccccccccc

 

 

Thanks for your replies

Viewing all 6719 articles
Browse latest View live




Latest Images

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