Hi all,
This issue was resolved by setting the inbound destination in 000 Client.
Regards,
Felipe A. Contreras
Hi all,
This issue was resolved by setting the inbound destination in 000 Client.
Regards,
Felipe A. Contreras
Hi all,
After invoking the local SAP ERP inbound Web Service that receives the Employee Master Data replication from EC (employee Central) through Boomi.
I can see that the message in the SXMB_MONI with status Released for Processing WS as you can see the screenshot.
I Have checked the SMQ2 and there is nothing in the Queues, and also I have make sure that the Queues are Registered and Activated.
In the SRTUTIL-> Look for Async Messages, I can see that the message is waiting. But I don't what is waiting for:
And in the SRT_TOOLS->bgRFC Monitor, am able to see also that the message is in 'green' status and its queued.
Any ideas of what I'm missing for this message to be totally executed?
Thanks for your inputs!
Felipe A. Contreras
Yes, we are web dispatcher using https, that solves our problem.
Hi Experts,
I have created proxy and logical port but when i am trying to test by executing method, I am getting below errors.
1.Error when calling SOAP Runtime functions: SRT: Processing error in Internet Communication Framework: (ICF Error)
2.Error when processing Web service call
3.SOAP:1.023 SRT: Processing error in Internet Communication Framework: (ICF Error when receiving the response: ICM_HTTP_SSL_ERROR)
Thanks in advance
Regards,
Sid
Hi Chaipon,
the only concern is if the provider the changes the password , I have to update in SOAMANAER , in that case the given base64 is constant or does it change as well?
if the base64 type string value changes 'VU5JQ0VGV1NQVVA6UzR2NHlVOGE='. , then we have to update the ABAP code , that's pain.
still no luck from SAP notes.
Thanks
Krishna
Hi,
I have exposed a BAPI function Module as a web service. From the SOAMANAGER I am able to access the WSDL URL.
BUT when I try to consume the same web service from PHP Iam receiving below error.
SoapFault Object ( [message:protected] => SRT: Unexpected failure in SOAP processing occurred: ("No configuration for this HTTP server instance") [string:Exception:private] => [code:protected]
Below is the PHP code used. Currently URL is accessible only in our Internal network.
<?php
$client = new SoapClient($url,
array('login' => "**",
'password' => "**",
'trace' => false,
'exceptions' => false));
$fcs = $client->__getFunctions();
$fcs1 = $client->__getTypes();
var_dump($fcs);
//var_dump($fcs1);
$test = $client->PoGetdetail(array("Purchaseorder"=>5500000086));
print_r($test);
?>
Can you please share the solution? i am getting this error too.
Can you please share the solution? i am getting this error too.
Hi Matthias,
RSSIDL_SIMPLIFY_WSDL is a program that was created for this purpose, it can be run from se38. You input the WSDL file that has the correct references to the external schema files and the program will return a so-called monolithic WSDL file that includes all in one file.
It was delivered with note 2001539
|VALID FOR
| Release 702 SAPKB70213 - SAPKB70215 |
| Release 730 SAPKB73011 - SAPKB73011 |
| Release 731 SAPKB73111 - SAPKB73112
Botond
Hi Ingo,
you could test following link:
https://www.sap.com/cmp/dg/crm-xm14-tec-dev-tr09/index.html
Access works a little bit strange. I log on with my SAP credentials on the left hand side of the screen. After logon I stay on the screen and on the right hand side my user data is displayed. Confirm on buttom right and then you get after some more pop-us to the ES Workplace.
Regards,
Winfried
Hi guys,
Could you sort this issue out ?
I'm having the same issue, employeenumber is valid in SAP HCM filled in the soap xml request and yet I'm getting this error message (missing mandatory field employeenumber)...
Thanks.
Br,
-Omar.
Thanks Winfried, but I was still able to access the old SOA workplace. But as this doesn't get updated any more, I was wondering (four month) ago whether there is any replacement.
Meanwhile, I rather doubt it
Best regards, Ingo
Hello! I'm getting same error during contract replication from srm 7.0 ehp3 to erp ehp7 via SOA PurchasingContractERPRequest_In_V1. Any solution?
Hello,
Few queries on SAP EAF space: Please help to understand..
1. What is the SAP road map / future prospect for SAP EAF?
2. How much different it is from TOGAF 9.1 ? (never the less TOGAF was derived from EAF, I'm aware)
3. Is EAF only for SOA or generic like TOGAF?
4. Any documentation on details of EAF ?
Thanks.
Dear all,
i tried to implement test webservice from the following blog Consuming WebServices directly from ABAP
But when I test it I got the following error: "SOAP:1023 SRT: Processing error in Internet Communication Framework: ("Connect to www.webservicex.net:80 failed: NIECONN_REFUSED"
Exception of class CX_SOAP_CORE
My second problem creating the service was using the url instead of local file, I got the message:
Exception of class CX_PROXY_GEN_ERROR
I guess that both problems has the same issue.
How can I solve the problems.
Best regards
Marcus
Hi everybody,
I don't know whether you have solved this issue or not. I've found out the cause and a workaround to avoid the error.
As the error description says, the problem is in the Employeenumber field. The BAPI_CREATE_TRIP_FROM_DATA FM has the same name both for an input and an output parameter. Once you create the WS, only one descriptor remains in de WSDL and the FM is called wrongly.
To avoid this problem I have encapsulated the standard FM BAPI_CREATE_TRIP_FROM_DATA into a ZBAPI_CREATE_TRIP_FROM_DATA that hasn't got the output parameters employeenumber and tripnumber. Once you create the WS out of this FM you won't get the error.
This is the code for the FM:
FUNCTION zbapi_trip_create_from_data.
*"----------------------------------------------------------------------
*"*"Interfase local
*" IMPORTING
*" VALUE(EMPLOYEENUMBER) LIKE BAPIEMPL-PERNR
*" VALUE(FRAMEDATA) LIKE BAPITRMAIN STRUCTURE BAPITRMAIN
*" VALUE(STATUS) LIKE BAPITRVSTA STRUCTURE BAPITRVSTA OPTIONAL
*" VALUE(BATCH_SESSION_NAME) LIKE APQI-GROUPID OPTIONAL
*" VALUE(CHANGE) LIKE BAPITRVHIS STRUCTURE BAPITRVHIS OPTIONAL
*" VALUE(BATCH_INPUT_ONLY) LIKE BAPITRVXXX-BOOLEAN OPTIONAL
*" EXPORTING
*" VALUE(RETURN) LIKE BAPIRETURN STRUCTURE BAPIRETURN
*" TABLES
*" RECEIPTS STRUCTURE BAPITRVREC OPTIONAL
*" ADDINFO STRUCTURE BAPITRADDI OPTIONAL
*" ADVANCE STRUCTURE BAPITRVSCH OPTIONAL
*" TEXT STRUCTURE BAPITRTEXT OPTIONAL
*" MILEAGE STRUCTURE BAPITRVMIL OPTIONAL
*" STOPOVER STRUCTURE BAPITRVSTO OPTIONAL
*" DEDUCTIONS STRUCTURE BAPITRVDED OPTIONAL
*" TRANSPORT STRUCTURE BAPITRVTRN OPTIONAL
*" COSTDIST_TRIP STRUCTURE BAPITRVCOT OPTIONAL
*" COSTDIST_STOP STRUCTURE BAPITRVCOS OPTIONAL
*" COSTDIST_RECE STRUCTURE BAPITRVCOR OPTIONAL
*" COSTDIST_MILE STRUCTURE BAPITRVCOM OPTIONAL
*" RECEIPTS_JURCODES STRUCTURE BAPIJURCODE OPTIONAL
*"----------------------------------------------------------------------
DATA: employeenumber_out LIKE bapiempl-pernr,
tripnumber_out LIKE bapitrip-tripno.
CALL FUNCTION 'BAPI_TRIP_CREATE_FROM_DATA'
EXPORTING
employeenumber = employeenumber
framedata = framedata
status = status
batch_session_name = batch_session_name
change = change
batch_input_only = batch_input_only
IMPORTING
return = return
employeenumber = employeenumber_out
tripnumber = tripnumber_out
TABLES
receipts = receipts
addinfo = addinfo
advance = advance
text = text
mileage = mileage
stopover = stopover
deductions = deductions
transport = transport
costdist_trip = costdist_trip
costdist_stop = costdist_stop
costdist_rece = costdist_rece
costdist_mile = costdist_mile
receipts_jurcodes = receipts_jurcodes.
ENDFUNCTION.
Hello Vishnu,
Please check following SAP note:-
1124553 - Inaktive ICF services of Web Service runtime
Regards
Anand
Hi Trevor,
I am doing the same exercise for CE server resizing, and tried to access the information page and I am getting Access Denied Error...
Can you please let us now if any other way to access that information.
Thanks,
Divyesh