Oracle WebCenter Document Transfer Utility

Embed Size (px)

DESCRIPTION

Enables how to import and export documents from UCM

Citation preview

Oracle WebCenter Document Transfer UtilityIntroductionThe WebCenter Content Document Transfer Utility for Oracle Fusion Applications 11g is a feature-set Java library that provides content Download/Upload capabilities. With this utility we can upload/download documents in to Fusion Applications via WebCenter Content. Each Fusion Application will have its own WebCenter Content which stores all necessary files which helps to run Fusion Applications smoothly and also It can store files for customizations and personalization. The files can be of different types. For example LOG, Images, Zips, Document etc.Pre-requisite:Oracle Webcenter Content Utility needs to be download on the serverTypes of UtilitiesUpload UtilityPlace the file in any directory on server which needs to be uploaded into Fusion Applications and provide the below parameters for upload command to upload document.--urlContent Server Protocol-Specific Connection URL--usernameUsername to leverage--passwordPassword supplied on command-line--primaryFileFully-qualified path of local primary file to upload--dDocAccountDestination Account--dDocTitleDocument Title--dDocNameIf wanting to version an existing document - provide existing document's dDocName value

Sample Upload CommandD:\>java -classpath "oracle.ucm.fa_client_11.1.1.jar" oracle.ucm.client.UploadTool url=https://fs-aufsn4x0tqf.oracleoutsourcing.com/cs/idcplg username=asheeshsharma password=Axtria123 primaryFile="D:/Test51.csv" dDocTitle="Test51" dDocAccount=ic/incentiveCompensationTransaction/import

Screen Shot from Fusion Application Incentive Compensation

Download Utility Uploaded file can be downloaded from Webcenter Content to any local machine. Provide the below parameters for download command to download document.--urlContent Server Protocol-Specific Connection URL--usernameUsername to leverage--passwordPassword supplied on command-line--dIDID of (Document) Revision to download; unique across repository - it changes with each revision Alternatively, provide dDocName and RevisionSelectionMethod to identify the dID to leverage--dDocNamethe content Name - multiple revisions of a doc can share the same dDocName value - but otherwise it is unique; Note RevisionSelectionMethod should be provided.--RevisionSelectionMethod Which revision to download; Valid values: Latest / LatestReleased. Defaults to Latest--outputFile Output/Destination local file to write

Sample Download CommandD:/>java -classpath "oracle.ucm.fa_client_11.1.1.jar" oracle.ucm.client.DownloadTool url=https://fs-aufsn4x0tqf.oracleoutsourcing.com/cs/idcplg username=asheeshsharma password=Axtria123 dID=9843 outputFile="/temp.csv"