In this section, we will see how to restrict ESS job to specific user. Let us create simple BIP report and ESS job based on BIP report. Follow steps mentioned in this below blog post to create Simple BIP report and ESS Job. Creating Simple BIP report in Oracle Cloud ERP Creating Custom ESS Jobs […]
How to Call BIP Report using SOAP Webservice in SOAP UI
In this section, we will see how to call BIP report using SOAP Webservice. Oracle provided a SOAP web service ExternalReportWSSService with “runReport” operation with which we can call BIP report and get output in Base64 format. We will call simple BIP report created in cloud application using SOAP Web service. Here we will use […]
Import Data Access for Users in Oracle Cloud ERP using ADFDI
In this section, we will check how to import and export data access for Users in bulk. We can import data access for users in bulk using ADFDI. Navigate to Setup and Maintenance —>Global Search—> Manage Data Access for users. Go to “Users with Data Access” as shown above. Provide Username and Role for which […]
Overview of Security Console in Oracle Fusion
Oracle Fusion Security Console: The Oracle Fusion Applications Security Console is an easy-to-use administrative work area where you perform most security-management tasks. This topic introduces the Security Console and describes how to access it Navigation to access Security Console is as below: Tools—> Security Console Click on Security Console Security Console consists of different […]
How to get UCM ID from document ID using Generic SOAP WSDL
We can get Document ID once we upload the files to UCM using Erpintegrations REST API as shown below: We can get UCM id from this document ID using generic SOAP WSDL with the details below: WSDL: Method: GenericSoapOperation Request: <soapenv:Envelope xmlns:soapenv=”http://schemas.xmlsoap.org/soap/envelope/” xmlns:ucm=”http://www.oracle.com/UCM”> <soapenv:Header/> <soapenv:Body> <ucm:GenericRequest webKey=”cs”> <ucm:Service IdcService=”GET_FILE”> <ucm:Document> <ucm:Field name=”dID”>2700074</ucm:Field> </ucm:Document> </ucm:Service> </ucm:GenericRequest> […]
Uploading File to UCM using ErpIntegrations REST API
Uploading File to UCM using ErpIntegrations REST API We can use the REST API for uploading files to UCM as below: REST API Endpoint: Method: POST Content-Type: application/json Payload: { “OperationName”:”uploadFileToUCM”, “DocumentContent”:”VGhpcyBpcyB0ZXN0IEZpbGUgZm9yIFVDTQ==”, “DocumentAccount”:”fin$/payables$/import$”, “ContentType”:”txt”, “FileName”:”TEST UCM Uplaod File.txt” } The payload details are as follows: OperationName This should be constant […]
How to resolve-Unable to See Data Set Access and Ledger Name for Import Journal Program
Issue Description: While submitting Import Journal program, we face issue that we are not able to see Data access set and Ledger Name in parameter Lov as shown below: Solution: This issue is related to roles and data access required to run the Import Journal Program. Below roles and respective data access need to provide […]
SOAP Webservice To Apply/Release Hold On Sales Order in Oracle Fusion
We need to use below SOAP Webservice to apply Hold on Sales Order in Oracle Fusion: WSDL URL: Operations: RequestHold Sample Payload: <?xml version=”1.0″ encoding=”UTF-8″?> <soapenv:Envelope xmlns:soapenv=”http://schemas.xmlsoap.org/soap/envelope/” xmlns:dood=”http://xmlns.oracle.com/apps/scm/doo/decomposition/orderDetailServices/DooDecompOrderDetailSvcComposite”> <soapenv:Header /> <soapenv:Body> <dood:RequestHoldProcessRequest> <dood:ApplyHoldRequestParams> <dood:SourceOrderSystem>OPS</dood:SourceOrderSystem> <dood:SourceHoldCode>XX_TEST_HOLD</dood:SourceHoldCode> <dood:HoldComments>XX Test Hold Comment</dood:HoldComments> <dood:SourceOrderNumber>XX_TEST_SALES_ORDER_01</dood:SourceOrderNumber> <dood:HoldName>XX Test Hold</dood:HoldName> <dood:AppliedBy>Test_user</dood:AppliedBy> </dood:ApplyHoldRequestParams> </dood:RequestHoldProcessRequest> </soapenv:Body></soapenv:Envelope> 2. Releasing Hold on Sales Order WSDL URL: […]
How to bulk import Lookup Types and Lookup Codes in Oracle Fusion
In this article, we will try to create custom lookup type and lookup values using bulk import functionality in Oracle fusion. We can create Lookup Type and respective lookup values by creating two separate files. Files should have pipe (|) as delimiter and should be of UTF-8 encoding. Part-1: – Create Lookup Type For creating […]
Using Object Triggers for Business Objects in VBCS
In this section, we will see how to use object triggers for business objects in VBCS with examples. Like we have Database triggers on database tables, we have object triggers on business objects in VBCS. Object triggers is a script which is executed in response to a specific business object event. Let us consider example- […]