Sitemap

Showing posts with label Webcenter Capture. Show all posts
Showing posts with label Webcenter Capture. Show all posts

Wednesday, May 6, 2015

Execute Enterprise Capture WLST Commands

Option 1:

1. Open a CMD prompt on your WLS server, and change to the "<ECM_HOME>\common\bin" directory (e.g. "C:\Oracle\Middleware\Oracle_ECM1\common\bin").
2. Run the wlst script ("wlst.cmd" on Windows or "wlst.sh" on Linux).
3. Connect to the server using the WLST command "connect(<userID>, <password>, <url>)". An example would be: connect('weblogic','welcome1','t3://localhost:7001')
4. Execute the domainRuntime() command.
5. At this point, any capture WLST command can be executed. To list the Capture commands, execute the help('capture') command to display a list of capture commands. You can then execute the help on each of the commands returned to get the syntax that is to be used.  e.g. help('listWorkspaces').

Option 2:

1. Open the EM console.
2. Navigate to the System Mean Browser (right click on capture_server1 and select from menu).
3. In the left pane, expand the tree "Application Defined MBeans".
4. Expand the folder oracle.capture.
5. Drill down to Server: capture_server1 / Application: capture / config / Config.
6. In the right pane, select the operations tab.
7. Select the desired operation.  The operation page will be displayed.
8. On the Operation pages, supply (if needed) the parameters and click "Invoke".

For the list of the commands, check the link below:
http://docs.oracle.com/cd/E29542_01/doc.1111/e37898/advd_functions.htm

Sunday, April 5, 2015

Self-Study Learning Series for Oracle WebCenter Enterprise Capture

The following learning videos are available:
  • WebCenter Enterprise Capture Overview: This self-paced course provides an overview to WebCenter Enterprise Capture.
  • WebCenter Enterprise Capture Installation and Configuration: This self-paced tutorial walks you through the installation and configuration of WebCenter Enterprise Capture.
  • Configuring WebCenter Enterprise Capture Security: This self-paced tutorial covers how to assign permission to users for both the Workspace Console and the Client applications.
  • WebCenter Enterprise Capture Client Application Tour: This self-paced course provides a tour of the WebCenter Enterprise Capture Client application.
  • Configuring WebCenter Enterprise Capture for Processing Expense Reports: This self-paced tutorial walks you through how to configure WebCenter Enterprise Capture for the automatic processing of expense reports.
Link: https://apex.oracle.com/pls/apex/f?p=44785:24:109501904362886::NO:24:P24_CONTENT_ID%2CP24_PREV_PAGE:10004%2C16

Source: https://blogs.oracle.com/webcenteralerts/entry/self_study_learning_series_for


For step-by step instructions, follow the use case explained for processing expenses as provided in the link below:
http://docs.oracle.com/cd/E29542_01/doc.1111/e37898/expenses.htm#sthref128

Webcenter Capture: View printIn statements in Java Console

For developing and incorporating scripts, Capture uses the JavaScript script engine included with the Java Runtime Environment. The scripts also writes out a line (printIn) to the java console for each script event, for verification or debugging purposes.

importClass(java.awt.event.KeyEvent);

function ScriptStart() {
   println("ScriptStart");
}

function BatchScanBegin(event) { // BatchScanEvent
   println("BatchScanBegin");
}
...
...
...

To view the printIn statements, go to Control Panel. Click Java --> Advanced tab. Under Java Console, set the property as Show Console. Apply and OK.