Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

For running this Web Service, your user must either have SAP_BC_WEBSERVICE_CONSUMER or some more restrictive role for one Web Service only. 

Initial Web Service configuration needs to be performed in transaction SOAMANAGER. In the same transaction, a WSDL document can be downloaded.

...

You would like to download WSDL and obtain endpoint: On the above screen, press Show Details. Popup A popup message will appear:

...

WSDL files might be downloaded from WSDL URLs, and the endpoint is displayed as Access URL.

Webservice has Web Service has the same input and output parameters as function module/INT4/IFTT_F_RUN_TESTS.

...

Code Block
languagexml
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:sap-com:document:sap:soap:functions:mc-style">
   <soapenv:Header/>
   <soapenv:Body>
      <urn:RunTests>
         <!--Optional:-->
         <ItScenariosList>
            <!--Zero or more repetitions:-->
            <item>?</item>
         </ItScenariosList>
         <!--Optional:-->
         <ItTestCasesList>
            <!--Zero or more repetitions:-->
            <item>?</item>
         </ItTestCasesList>
         <!--Optional:-->
         <ItTestContainer>
            <!--Zero or more repetitions:-->
            <item>
               <Caseid>?</Caseid>
               <VarName>?</VarName>
               <VarValue>?</VarValue>
            </item>
         </ItTestContainer>
         <!--Optional:-->
         <IvDbCommit>?</IvDbCommit>
         <!--Optional:-->
         <IvExecutionLandscape>?</IvExecutionLandscape>
         <!--Optional:-->
         <IvTestRunDate>?</IvTestRunDate>
         <!--Optional:-->
         <IvTestRunName>?</IvTestRunName>
         <!--Optional:-->
         <IvTestRunTime>?</IvTestRunTime>
         <!--Optional:-->
         <IvRunAsync>?</IvRunAsync>
      </urn:RunTests>
   </soapenv:Body>
</soapenv:Envelope>

In the case of asynchronous test runs ( IvRunAsync = 'X' ) /INT4/IFTT_GET_RESULT Web Service can be used to check the status and read results.

...