Hi Experts,I've been following and have already finishedthe configuration.However, CTS is still grayed out from our PI system. Here are some steps taken to recheck:1. CTS Deploy RFC with J2EE admin user in Solman: Ok2. RFC Destination pointing to Sol...
The SAP standard function module HTTP_GET can be used to perform an HTTP GET Request from a target URL. The problem is that an RFC Lookup cannot be performed on that function module since it is not remote-enabled. The purpose of this PoC is to ...
Hello experts,I have been getting a "Premature End of File" error in moni. I am using the SOAP HTTP Axis Receiver and have the following modules configured:Module processing sequence is as follows:
1. afreq
2. dc
3. xireq
4. tph
5. trp
6. xires
7. af...
Hello Experts,We are experiencing an issue in the Call Adapter pipeline, Get logon data for adapter engine (SAI_AE_DETAILS_GET) is returning a 401 issue for PIISUSER. I already checked the forums for the same issue but all were unsolved. The profile ...
Hi Experts,Good day! I'd like to consult with you about an HTTP scenario of mine. The data flow goes like thisSAP <-(ABAP Proxy)-> PI <-(SOAP)-> 3rd PartyI'm currently using SOAP HTTP but without the SOAP Envelope so that it would behave like an HTTP...
Hi Antony,Have you set the proxy type to be On Premise in your receiver adapter configuration? If it is still 404, can you do a ping check in CPI for the cc connection? It could also be missing the location id.Regards,Marl
Hi Mani,Have you enabled session reuse in your iflow? The PUT could be failing because the receiving system determines the PUT call as a separate call and it could not validate the csrf token being passed using the second connection.Regards,Mark
Hello,You need a UDF to combine the values in the Line field.Here is the code for the UDF:StringBuffer sb = new StringBuffer();
for(int a=0;a<inp.length;a++){
sb.append(inp[a]);
}
result.addValue(sb.toString());Regards,Mark