Hi!
If you want to add a ‘ to a string, you have to add two single quotes.
So for this URL: http://......./sap/opu/odata/sap/ODATA_SRV/ZLOGINSet(Username='’SILICON’').
You could try to use the urlEncode() function in the microflow where you create the URL.
Try this:
'http://......./sap/opu/odata/sap/ODATA_SRV/ZLOGINSet(' +
'Username='+
'''' +
$Username +
'''' +
')'
$Username is a variable with a certain value, for example 'SILICON'
'http://......./sap/opu/odata/sap/ODATA_SRV/’ can be replaced by a constant.