Technology Blogs by SAP
Learn how to extend and personalize SAP applications. Follow the SAP technology blog for insights into SAP BTP, ABAP, SAP Analytics Cloud, SAP HANA, and more.
cancel
Showing results for 
Search instead for 
Did you mean: 
ashishsingh1987
Employee
Employee
The purpose of this document to explain how to pass on the "x-www-form-urlencoded" format data in a REST API using ABSL programming.

 


  • First let us try to see how we pass "x-www-form-urlencoded" kind of data via Postman tool.




P.S. It is an example URL. Each API has it's own specific way of being consumed. 

 

a) Maintain the URL for which the operation needs to be performed as shown in the below screen shot.

Also choose the type of operation (GET/POST/PATCH/PUT) as per the guidelines of the API being used, along with the authorization

 



 

b) Move on to the Body tab and select the ""x-www-form-urlencoded" radio button.

By default screen display a Key & Value tabular view to maintain the required Data. User may wish to change the view by clicking on the "Bulk Edit" option on the right corner.

 



 

c) Once all required parameters and values w.r.t. API is maintained, you can click on "Send" to view the response.

 



 


  • Now let us try to replicate the similar process via ABSL code in SDK (C4C - Sales and Service Cloud)




 

a) Create an External Web Service Integration Object



 

b) Click on Next and Choose the Web Service Type as "Rest".

 



 

c) Click on Next and provide the URL.

 



 

d) Select "Create Communication Scenario" check box and provide the name for the same. 

 



 

e) Click Next and Finish. Activate the .wsid and .csd files. 

 



f) Create the communication arrangement for the above created communication scenario definition. 

 

Move to the Communication Arrangement section and Choose New as highlighted Below.



 



 

Choose the respective communication system for this arrangement.



 

Maintain the Credentials required for this arrangement.



 

In order to update the endpoint url of the API, click on the "Edit Advanced Settings" option as highlighted below.



 

Maintain the endpoint path in the highlighted field.



 

Click Next and Finish the Activation process for the arrangement.

g)Once the communication arrangement is available, Enhance the ABSL script where you wish to implement the code.

h) Below is the code snippet, showing how you should pass the data in the body for the format "x-www-form-urlencoded".

 



You need to pass the Key and Value pair separated via "&" (ampersand). 

The key & value pair is similar to how we passed data in Postman in a tabular view.

 



Once all the settings and code are placed, you would be able to establish the connection and receive the response from the target system.

 

 

 
3 Comments