Calling Receivables Adjustment SOAP Web Service from Oracle VBCS
Summary:
Hi,
I want to call SOAP Web Service to create AR Adjustment since there are no REST API to create AR Adjustment. Thus, I want to fetch the existing AR Adjustment from Oracle Fusion to VBCS.
I wrote a JavaScript code to fetch the AR Adjustment to VBCS, but keep getting CORS error. Currently, I can't even get the data since the connection keep failing due to CORS error.
Code Snippet (add any code snippets that support your topic, if applicable):
http://const url = `${baseURL}/fscmService/AdjustmentService`;
const username = 'TEST';
const password = 'TEST123';
const encodedCredentials = btoa(`${username}:${password}`);