Posts

Showing posts from September, 2018

Working with SOAP Input Payload in Oracle Cloud Fusion HCM

In this article we will focus on understanding how to use conditions in request payload of SOAP Web Service. In this example, we will use Worker service and operation findWorker to understand the concepts. Case 1: How to check existence of any field value Request:       <typ:findWorker>          <typ:findCriteria>             <typ1:fetchStart>0</typ1:fetchStart>             <typ1:fetchSize>-1</typ1:fetchSize>             <typ1:filter>                <typ1:group>                   <typ1:conjunction>And</typ1:conjunction>                   <typ1:upperCaseCompare>true</typ1:upperCaseCompare>                 ...

Using Generic SOAP Port Webservice to Upload file to UCM

Image
In this article, we will learn about how to use SOAP Service to upload files to UCM. This is used for automation of interfaces in Oracle Cloud Fusion HCM. In this example, we will use SOAP UI to test the service. Same concepts can be applied in Fusion Middleware or any other platform to invoke Web Service to upload files to UCM. You can upload the file by Base64 encoding the binary content of the file, in the Content tag as below: <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ucm="http://www.oracle.com/UCM"> <soapenv:Header xmlns:wsa="http://www.w3.org/2005/08/addressing"> <wsa:Action>urn:GenericSoap/GenericSoapOperation</wsa:Action> </soapenv:Header> <soapenv:Body> <ucm:GenericRequest webKey="cs"> <ucm:Service IdcService="CHECKIN_NEW"> <ucm:Document> <ucm:Field name="dUser">imp</ucm:Field> <ucm:Field name=...

How to use WebCenter Content Document Transfer Utility

In the previous article, we learnt about " How to Upload/Download files to/from Oracle WebCenter Content Server (UCM) ". In this article, we are going to learn how to use WebCenter Content Document Transfer Utility. We need to download WebCenter Content Document Transfer Utility from OTN and save in local machine. Steps to Upload Files to UCM i.                       Unzip 150521-REL10-oracle.ucm.fa_client_11.1.1.zip file. ii.                     Open command prompt. Set JAVA HOME to point the Jdk 1.7. C:\Users\XXX_ADMIN>set JAVA_HOME=C:\oracle\products\jdk1.7.0_76 C:\Users\XXX_ADMIN>SET PATH=%JAVA_HOME%\bin;%PATH% C:\Users\XXX_ADMIN>java -fullversion java full version "1.7.0_76-b13" iii.           ...

How to Upload/Download files to/from Oracle WebCenter Content Server (UCM)

Image
In the previous article, we learnt about " How to submit BI Report Online using Web Service ". Today, we are going to learn how to upload/download files to/from Oracle Content Server in Oracle Fusion Cloud environment. For inbound or outbound integrations to/from Oracle Fusion Cloud Application to work, we need to search/upload/download files from Oracle Universal Content Management (UCM) i.e. Oracle WebCenter Content Server. The methods available are as following: 1.      Files can be uploaded manually from Application using Data Exchange à Import and Load Data. You can upload files to UCM using File Import and Export as well. Ensure account is hcm/dataloader/import when uploading the file and hcm/dataloader/export when downloading the file. Additionally, these files can be accessed from Content Server ( https://<Instance host:port>/cs/idcplg ). 2.      We can also use WebCenter Content Document T...