OIG 11G R2 Field Enablement Training

Size: px
Start display at page:

Download "OIG 11G R2 Field Enablement Training"

Transcription

1 OIG 11G R2 Field Enablement Training Appendix-A How to Create a TaskFlow Disclaimer: The Virtual Machine Image and other software are provided for use only during the workshop. Please note that you are responsible for deleting them from your computers before you leave. If you would like to try out any of the Oracle products, you may download them from the Oracle Technology Network ( or the Oracle E-Delivery WebSite ( 1 P a g e

2 Table of Contents Introduction 3 Creating a new taskflow 3 Packaging the taskflow.61 UI changes using SandBox..63 Grant View Permission on Taskflow..73 Testing the task flow.74 2 P a g e

3 1. Introduction In Lab 4.1 we have seen the task flow for gathering the additional request information at the cart level and at the cart item level. In this lab we will take a look at how to create a simple taskflow and how to hook it up to OIM in order to gather additional information at the cart item level. We would create a task flow which will have only 2 fields collected. Justification and Office. As with the Lab4.1 when you save the information. We use the newly introduced AdditionalRequestInfo class to store the information user has entered. Note: If you are doing it in the workshop VM environment, please revert to the snapshot taken before Lab4.1 -PS2-Request-Enhancements. This is recommended as we want to experience end to end task flow creation and hooking it into OIM. Lab4.1 has already done hooking the task flow in OIM as part of that Lab. 2. Creating a new Taskflow Using JDeveloper Note: You can either do this in the workshop VM environment or in your Own JDeveloper. 1. In the VM open a terminal window and create a directory Appedix. We will be creating our new taskflow in this directory mkdir /app/dummydata/appendix 2. Launch the JDeveloper using the launchjdev.sh located in Deskstop/Startup_Scripts 3 P a g e

4 3. In JDeveloper click on New Application 4. Provide the Name as RequestUI and the directory as /app/dummydata/appendix. The application is of type Generic Application. Click on Finish 4 P a g e

5 5. Application will create a generic project Project1. We would need to delete this project as we need to create a ADF project. Right Click on Project1 and click Delete Project 5 P a g e

6 In the Pop up select the following option to delete the project from JDeveloper and from file system 6 P a g e

7 6. In the Jdeveloper Menu Click on File-> New. Create a project of type ADF View Controller Project Click Ok 7. Name the Project as RequestUI and click Finish 7 P a g e

8 8. You should see the following structure in JDeveloper 8 P a g e

9 9. We need to add the jar files needed for writing and compiling the Java Bean we will be writing In the next step. We need to add two jars files. These files are <IDM-HOME>/server/modules/oracle.iam.ui.model_11.1.2/adflibCommonModel.jar <IDM-HOME>/server/modules/oracle.iam.ui.view_11.1.2/adflibPlatformUI.jar Right Click on the Project RequestUI->Project Properties Click on Libraries and ClassPath -> Add Jar/Directory Select <IDM-HOME>/server/modules/oracle.iam.ui.model_11.1.2/adflibCommonModel.jar 9 P a g e

10 Click Select to add the Jar file. Now Click on Add Jar/Directory Again Select <IDM-HOME>/server/modules/oracle.iam.ui.view_11.1.2/adflibPlatformUI.jar 10 P a g e

11 Click Select to choose the file Now you should see the two jars in the list. Click Ok to close the window. Now we should have the Jars needed for compiling the files later. 11 P a g e

12 10. We first need to create a managed bean. Managed bean is responsible to doing the work in the backend. In our case the managed bean will collect the information entered in the two text fields Justification and Office. It will also save the information entered in these two fields by user when Save button is clicked. We also need a Utility class as well which will do some supporting functionality for managed bean. Let s first create the Utility class. Right Click on Request UI -> New 11. Click on Java & Select Java Class 12 P a g e

13 12. Specify the name as UIUtil and package as com.oracle.ui.view. Click OK. It will create a Java file 13 P a g e

14 14 P a g e

15 13. Enter the following lines just under the package import javax.faces.component.uicomponent; 14. In the java class paste the below code public static UIComponent findparentcomponent(uicomponent component, Class parentclass) { UIComponent comp = component; while ((comp!= null) && (!parentclass.isassignablefrom(comp.getclass()))) { comp = comp.getparent(); } return comp; } 15 P a g e

16 Note: Our taskflow we are creating will open in a new popup window. This code above will find the parent component ( OIM Main window) so that the taskflow can be closed. 15. Now Let s create the Managed Bean class. In the JDeveloper From the Menu Click on File-> New Click on Java and Select Java Class 16 P a g e

17 16. Specify the name as RequestBean. Package should be populated automatically. Click Ok You should have the Java Class Created 17 P a g e

18 17. Now Import the following classes in the java fie import javax.faces.event.actionevent; import oracle.adf.view.rich.component.rich.richpopup; import oracle.iam.ui.common.model.catalog.requestdetails.additionalrequestinfo; import oracle.iam.ui.platform.view.requestformcontext; 18. Now define the following variables in the code. private String justification; private String office; private Boolean readonly; private String cartitemid; private RequestFormContext requestformcontext; private AdditionalRequestInfo additionalrequestinfo; 18 P a g e

19 19. Since we are writing a managed bean, we need to create setter and getter methods. Right click from within the java file and select Generate Assessors 19 P a g e

20 20. Select the following to generate these methods 20 P a g e

21 21 P a g e

22 21. You should see the methods generated by JDeveloper 22. Now we need to make this bean Serializable. Import the class first import java.io.serializable; 22 P a g e

23 23. Now make the class implement Serializable interface 24. Add two more methods Save and Cancel in the bean. These are called when the user clicks on Save and Cancel button respectively. Also Notice that once the data is saved. We hide the pop up window public void Save(ActionEvent e){ System.out.println(" ---- Inside Save "); savedata(); RichPopup popup = (RichPopup)UIUtil.findParentComponent(e.getComponent(), RichPopup.class); } if (popup!= null) popup.hide(); public void Cancel(ActionEvent e){ System.out.println(" ---- Inside Cancel "); RichPopup popup = (RichPopup)UIUtil.findParentComponent(e.getComponent(), RichPopup.class); } if (popup!= null) popup.cancel(); 23 P a g e

24 25. Now we need to define one more method savedata() which is getting called from Save as shown able. public void savedata(){ System.out.println("--- Inside #savedata ---"); if ((this.requestformcontext!= null) && (this.additionalrequestinfo!= null)) { this.cartitemid = this.requestformcontext.getuniquecartitemidentifier(); System.out.println(" -- Cart Item Id "+cartitemid+" ----"); this.readonly = Boolean.valueOf((this.requestFormContext.getActionType()!= RequestFormContext.ActionType.REQUEST) && (this.requestformcontext.getactiontype()!= RequestFormContext.ActionType.APPROVAL)); System.out.println(" -- readonly "+readonly+" ----"); 24 P a g e

25 } this.additionalrequestinfo.setattribute(this.cartitemid, this.justification); "justification", this.additionalrequestinfo.setattribute(this.cartitemid, "office", this.office); System.out.println(" ---Saving Done "); } If you look at the above code snippet. Request Context and additionalrequestinfo will get passed into managed bean automatically. We can get the cartitem ID once we have these two. The ID will tell us what is getting requested and based on what is being requested (i.e app instance, role, entitlement) we can collect different information from user by calling different taskflow. Take a look at the IdentitySamples -> CatalogUI project for more information. We will keep it simple here in this task flow. Once the user enters the information for justification and office in the screen and saves it. The setters methods are called first which will set the values for these in the bean. The Save action will call the save method in the bean which in turn is calling savedata() We call additonrequestinfo.setattribute method to set these additional values. So that OIM can save these values and these values will show up In the approval chain as well. The setattribute & geattribute has two types. One as shown above where you pass the cartitemid which will be useful if you have multiple items in the cart and the corresponding values needs to be save. The other method without the cart Item Id which is simpler version. 25 P a g e

26 26. We also need to add an Initialize() method. This method is called first everytime managed bean is called. This method will call the getattribute method from AdditonalRequestInfo interface. So if the values are already selected by the user when he has accessed last time (i.e the interface is opened by approver where we need to display already selected value). This initialize() method will get the already set value and display it to the user. Add the following lines just after the consturtor public void initialize(){ System.out.println("--- Inside Initialize------"); if (requestformcontext!= null && additionalrequestinfo!= null) { // initialize attribute values this.cartitemid = this.requestformcontext.getuniquecartitemidentifier(); System.out.println(" -- Cart Item Id "+cartitemid+" ----"); justification = (String)additionalRequestInfo.getAttribute(cartItemId,"justification"); System.out.println(" --- Jusstification is "+justification + " "); office = (String)additionalRequestInfo.getAttribute(cartItemId,"office"); System.out.println(" --- office is "+office + " "); // and "mode" readonly = requestformcontext.getactiontype()!= RequestFormContext.ActionType.REQUEST && requestformcontext.getactiontype()!= RequestFormContext.ActionType.APPROVAL; } } System.out.println(" --- Read Only is "+readonly + " "); 26 P a g e

27 This completes the Managed Bean code. 27. Right click on the project RequestUI. Click on Rebuild Request UI Make sure that there are no compilation errors 27 P a g e

28 28. Now we are done with the Bean needed to hold the values we supply in the OIM UI and we also have the logic to save the values using AdditionalRequestInfo interface. Lets design the taskflow which will collect the values in the OIM UI. Right Click on the Project RequestUI -> New 29. Select JSF and make sure ADF Task Flow is selected (default) 28 P a g e

29 Click Ok 30. Enter the name as request-flow. Make sure the task flow is bounded task flow and also make sure page fragments is selected. Task Flow ID ia automatically populated. Click Ok. 29 P a g e

30 31. You should see the taskflow created. The project should now look like this 30 P a g e

31 32. Now lets define the elements in taskflow. In the ADF Task-Flow component pallet click on View and drag and drop to the canvas. Note: if you don t see the pallet on right side. Click on View -> Component Pallet 33. You would have the view in the canvas. Change the name to requestdata 31 P a g e

32 After the change it should look like this 34. Now we should register our managed bean RequestBean with this taskflow so that the managed bean can be used to hold the values set by the user and to save the data. Click on the Overview tab to open it 32 P a g e

33 Click on Managed Beans. Click on + to register the managed bean we created 33 P a g e

34 Enter the following Name: RequetBean Class: com.oracle.ui.view.requestbean Scope: PageFlow Click on Parameters We need to create two input parameters requestformcontext and requestadditionalinfo. These will be passed by OIM to bean automatically. Click on + as shown Name: requestformcontext Class: oracle.iam.ui.platform.view.requestformcontext 34 P a g e

35 For the Value expand and click on the Arrow select Expression Builder Delete the existing value under Expression 35 P a g e

36 Open ADF Managed Bean -> pageflowscope -> RequestBean. Select requestformcontext. It should populate the Expression box as shown. Click Ok Now click on + to define another variable Enter the following Name : additionalrequestinfo Class: oracle.iam.ui.common.model.catalog.requestdetails.additionalrequestinfo 36 P a g e

37 For the value click on expand and click Expression Builder. Clear (Delete) the Expression first Select ADF Managed Bean -> pageflowscope -> RequestBean -> additionalrequestinfo The Expression box should be populated like shown below Click Ok. You should have the configuration as shown below. Click on Save All to save. 37 P a g e

38 35. Lets generate jsff page where we can have our fields to collect input from user Click on the Diagram tab again. Double click on requestdata. It will open up a jsff page creation wizard as shown. Accept the default and Click Ok 38 P a g e

39 36. It would create a jsff page and you are ready to design the page 39 P a g e

40 37. In the component panel, Locate Panel Group layout under Layout and drag and drop into canvas It should look like this 38. Locate Input Text under Common Components and drag and drop inside the group layout you created. 40 P a g e

41 Rename the name to Justification from Label 1 ( You can type to change the name) 39. Highlight the field Justification, you should see a property inspector window in Jdeveloper (This could be a separate window by itself as well). Click on the expand mark near the field Value and select Expression Builder 41 P a g e

42 Navigate to ADF Managed Bean -> pageflowscope-> RequestBean -> justification. Select Justification. The Expression should be populated as shown. Click Ok 42 P a g e

43 40. Now let s add one more field. Back under Common component pallet. Drag and Drop an Select One List Box inside the panel group layout (highlighted by border). It will open a pop up for us to define list of values. Click on Create List and then click on + 43 P a g e

44 Add two values as shown below. For the second you need to click on + Again. Click on Next button Enter the Label as Office. Click on next to Value and Method Expression Builder brings up expression Builder. 44 P a g e

45 Navigate ADF Managed Beans -> pageflowscope-> RequestBean-> office Select office Expression text should populate as shown click Ok Now back on the Select Value list screen it should look like this. Click on Finish 45 P a g e

46 Now the taskflow should look like this 41. Now let s create two buttons Save and Cancel Under the common components pallet chose Button and drag and drop on the canvas inside the Panel Group layout identified by the border You should see a property pallet for the command button. Change the Text to Save Scroll down to the Action Listener and click on the Arrow 46 P a g e

47 Click on Edit In the Dialog Select the Select Following Managed Bean -> Request Bean Method -> Save Click Ok to save the change 47 P a g e

48 You should see the Action Listener Populated This will call the Save method of the managed bean when the user clicks on Save button. Back into the Common Component Pallet Drag and drop another button inside the Panel Group Layout Change the Text to Cancel 48 P a g e

49 Now Scroll down to Action Listener Section under the property for Button Select the following Managed Bean -> Request Bean Method : Cancel Click Ok You should see the Action Listener populated 49 P a g e

50 When the user clicks on the Cancel button cancel method of Bean Request Bean is getting called. You should see the page like this below Click on Save All in JDeveloper to Save the updates 50 P a g e

51 The Project now should look like this. 42. Now we need to call the initialize method designed in the managed bean first from the ADF task flow. Click on the request-flow.xml tab in jdeveloper to open it 51 P a g e

52 43. From the component pallet drag and drop a method call 44. Change the name to initialize 45. From the component panel select Control Flow Case and connect initialize and requestdata The Arrow should go from initialize to requestdata 52 P a g e

53 46. Now Rename the name of the Arrow to initialized 47. Now we need to associate the manage bean method initialized to the method call we have created. Double click on initialize method call Select Managed Bean -> Request Bean Method -> initialize Click Ok 53 P a g e

54 48. Now highlight the method call initialize. You should see the property inspector on the right hand side 49. For the field Fixed Outcome. Enter initialized. Hit Enter Key to save the change. 50. Once you complete the step you should not see any warning icon in the taskflow for initialize method 54 P a g e

55 51. Now we need to make the initialize method call as the default activity in the taskflow. While in the request-flow.xml taskflow. Click on the Overview tab 52. Change the Default Activity to initialize 55 P a g e

56 53. Click Save All in JDeveloper to save all the files 54. Let s compile the project. Right click on Request UI -> Rebuild Make sure that that are no errors and project compiles successfully 55. Now our task flow is complete and we should package it as a JAR file. Right Click on Project RequestUI-> New Select Deployment Profiles -> ADF Library Jar File 56 P a g e

57 Accept the Default name and click Ok It will open one more window click Ok 57 P a g e

58 If you see an WAR file listed, Highlight it and click Delete 58 P a g e

59 Now Click Ok 59 P a g e

60 Highlight the Request UI -> Deploy ->adflibrequestui1 Click Finish You should see a Deployment tab at the bottom of jdeveloper and it should be successful 60 P a g e

61 The Jar has been created at the following Directory We are done with the task flow development. You can close the JDeveloper. 3. Packaging the taskflow OIM out of the box supplies a shell WAR file which allows you to bundle all your customizations. This war file is called oracle.iam.ui.custom-dev-starter-pack.war. You can include all your customizations which include your custom taskflow in this WAR file. We will package our taskflow in this WAR file and distribute to OIM 1. Open a command terminal and navigate to /app/dummydata/appendix folder 2. Copy the WAR file from server to current directory cp /app/middleware/oracle_idm1/server/apps/oracle.iam.ui.custom-dev-starterpack.war. 3. Extract the war file unzip d taskflow oracle.iam.ui.custom-dev-starter-pack.war 4. Now navigate inside taskflow and observe the directory 61 P a g e

62 5. We would be putting our taskflow jar into lib directory inside WEB-INF. Lets create the directory 6. Now lets copy our file into this directory cd lib cp /app/dummydata/appendix/requestui/deploy/adflibrequestui1.jar. Make sure the jar is in the lib directory 7. Now lets rezip the jar file again Go back to taskflow directory Cd.. cd.. Make sure you are in directory /app/dummydata/appendix/taskflow issue the command zip r oracle.iam.ui.custom-dev-starter-pack.war * 62 P a g e

63 You should see the WAR file created in taskflow directory Copy this file to OIM cp oracle.iam.ui.custom-dev-starter-pack.war /app/middleware/oracle_idm1/server/apps/. Verify the timestamp at target OIM directory to make sure file is copied 4. UI changes using SandBox Our goal is to provide an Additional Link in the Cart for each item in the cart. When the user clicks on the link our custom task flow will allow them to enter the value for justification and office and when user clicks on save he should be able to save the values. In order for us to do this. We need to create a Sandbox, export it and insert the taskflow invocation, import and publish the sandbox. 63 P a g e

64 1. Start the OIM Server using./startoim.sh 2. Login to Identity console as admin/oracle Click on SandBoxes and create a sandbox RequestInfo 4. Click on Catalog Search for Enterprise. Select The Enterprise Directory OUD Add it to cart and checkout 5. Now Click on Customize. Click on View -> Source on the left Hand Side 6. Now click on the row which has Enterprise Directory Server OUD in the cart 7. Locate the below section which has the Remove button in it. Click on panelgrouplayout:horizontal and click on Add Content 64 P a g e

65 8. Scroll down and locate Web Components and open it 65 P a g e

66 9. Locate the CommandLink and Click on Add 10. Close the components window 11. You should see a Command link getting added 12. Right Click on CommandLink -> Edit 13. Enter the Text as Additional Item Information. Click Apply & OK 66 P a g e

67 14. You should see the newly added command link. Click Close at the top to come out of composer mode. 15. Close the catalog Tab. Go back to manage Sandboxes tab 16. Highlight the RequestInfo sandbox and click on Export Sandbox 67 P a g e

68 17. Save the file in /app/dummydata/appendix folder 18. We now need to insert the taskflow invocation in this sandbox (For the Command Link we created) and import it. Open a terminal and navigate to /app/dummydata/appendix 19. Unzip the sandbox unzip -d sandbox sandbox_requestinfo.zip 20. Now user gedit to open the file cart-details.jsff located at /app/dummydata/appendix/sandbox/oracle/iam/ui/catalog/pages/mdssys/cust/site/site 21. Observe the file. Notice that the commandlink we have added is in this file. 68 P a g e

69 22. Add the following lines at the end of af:commandlink line actionlistener="#{catalogrequestbean.launchadditionalrequestinfotaskflow}" Note: This ActionListener bean catalogrequestbean is supplied out of the box by OIM. In order to launch any custom task flow we need to use this link. 23. Remove the closing / tag from CommandLink line since we need to add child tags. It should be like this 24. Add the following lines in the file inside <ad:commandlink> Tag & before </mds:insert> tag. <af:clientattribute xmlns:af=" name="taskflowid" value="/web-inf/requestflow.xml#request-flow"/> <af:clientattribute xmlns:af=" name="dialogtitleicon" value="/images/request_ena.png"/> <af:clientattribute xmlns:af=" name="headertext" value="additional Cart item Information"/> <af:clientattribute xmlns:af=" name="dialogtitle" value="please Enter Additional Information for the Cart Item"/> </af:commandlink> 69 P a g e

70 Now make sure the gedit is not creating backup copy of the file Click on Edit -> Preferences in the GEdit Menu Make sure that Create Backup copy is not enabled (Checked) Click Close. Now Save and close the file. Note : Now if you look the lines we have added. taskflowid identifiys the taskflow we have created in this lab. If you look at the JAR file we have created. WEB-INF has our task flow 70 P a g e

71 request-flow.xml. Within a task flow xml it can have multiple taskflows. We only have one task flow identified by id request-flow. This is how you invoke the task flow. The other items we have added HeaderText and Dialog Title indicate the text that appear in the dialog when our new task flow is opened. These could be dynamic values as well. If you would like to make it as dynamic you can create the values in a managed bean and call it instead of hot coding which will be useful if different task flows are called for app instance, role & entitlement cart items. Take a look at the Identity Samples for this code. We would like to keep it simple in this example. 25. Now we will package the sandbox again and import it. In the command terminal navigate to /app/dummydata/appendix/sandbox Issue command zip r sandbox.zip * You should have the sandbox.zip created 71 P a g e

72 26. Let s import the sandbox. Login to identity console as admin/oracle Click on Sandboxes and Import Sandbox 28. Choose the sandbox.zip we created in /app/dummydata/appendix/sandbox 72 P a g e

73 29. Click Import 30. Now highlight the sandbox RequestInfo and click Publish Sandbox 5. Grant View Permission on Taskflow In order to execute the taskflow. User needs to have view permission on the taskflow. The permissions can be granted through either Athorization Policy Manager (APM) console or through using the WLST. Lets grant the permission using WLST script. 1. Start the Admin Server by using startadmin.sh script in Desktop/Startup_Scripts folder. Wait till the admin server is up and running. 2. Open a terminal and navigate to /app/middleware/oracle_idm1/common/bin 3. Invoke WLST script using./wlst.sh 4. Connect using connect( weblogic, Oracle123 ) 5. Execute the below command (In single line) grantpermission(appstripe="oracleidentitymanager", principalclass="oracle.security.jps.service.policystore.applicationrole", principalname="oimsysadmin", permclass="oracle.adf.controller.security.taskflowpermission", permtarget="/web-inf/request-flow.xml#request-flow", permactions="view") 73 P a g e

74 We are granting the view permission on our taskflow request-flow to OIMSysAdmin user. 6. Restart the OIM Server. 7. You can stop the Admin Server 6. Testing the TaskFlow Now that we have our task flow deployed. Let s test it. 1. Start the SOA Server using the startsoa.sh script in Desktop/Startup_Scripts folder. 2. Login to Identity console as jkrause/oracle Open the Catalog and search for Legal. This is an entitlement `` 4. Add the item to Cart 5. Click on Checkout 6. You should see the Additional Item Information link 7. Click on the link. It should bring up the taskflow you have created 74 P a g e

75 Notice the Dialog title we provided in the sandbox. If you look at the OIM terminal, you can see that the initialize method is getting called. Since we have not set the values for the fields yet, there are no values 8. You can enter some information and click on Save 9. You should see the logs in OIM Servers Terminal where the managed bean is saving the values you have entered. The Save button click will call the save () method and savedata() method in our managed bean RequestBean. The savedata() will save the information using the AdditionalRequestInfo interfaces setattribute method. 75 P a g e

76 We use cart item ID while saving in this method. Which allows us to save the additional information even if multiple items are in the cart. 10. Now you can follow just like Lab 4.1 Submit the request. 11. The approval will go to DCRANE as dcrane is the manager of this user. Login Identity console as dcrane/oracle Open the InBox. You should see a request from Joseph Krause. Open the request 13. Click on the Additional Item Information link. You should see the values jkrause has set. 14. Check the OIM terminal. You should see the initialize method is getting called which will bring the values set using the setattribute method of AdditionRequestInfo interface using the getattribute method. You can 76 P a g e

77 approve the request at which point jkrause will be granted with the entitlement Legal Summary For more complex use cases including calling different taskflow dynamically please see the IdentitySamples. In this lab we saw how to create a taskflow and how to attach it into OIM. We also saw how to use the newly introduced AdditionalRequestInfo interface to save and retrieve the additional information in the request at the cart item level. The same concept can be extended to call different task flows for different types of cart items dynamically as well. 77 P a g e

Customizing Oracle Identity Governance: Populating Request Attributes

Customizing Oracle Identity Governance: Populating Request Attributes Customizing Oracle Identity Governance: Populating Request Attributes Page 1 of 29 Customizing Oracle Identity Governance : Populating Request Attributes Overview When creating requests for application

More information

OIG 11G R2 Field Enablement Training

OIG 11G R2 Field Enablement Training OIG 11G R2 Field Enablement Training Lab 4.1 PS2 Request Enhancements Disclaimer: The Virtual Machine Image and other software are provided for use only during the workshop. Please note that you are responsible

More information

OIG 11G R2 Field Enablement Training

OIG 11G R2 Field Enablement Training OIG 11G R2 Field Enablement Training Lab 20 - Notification Lab Disclaimer: The Virtual Machine Image and other software are provided for use only during the workshop. Please note that you are responsible

More information

OIG 11G R2 Field Enablement Training

OIG 11G R2 Field Enablement Training OIG 11G R2 Field Enablement Training Lab 9- UI Customization Simple Disclaimer: The Virtual Machine Image and other software are provided for use only during the workshop. Please note that you are responsible

More information

OIG 11G R2 Field Enablement Training

OIG 11G R2 Field Enablement Training OIG 11G R2 Field Enablement Training Lab 5 - Request Using Profiles Disclaimer: The Virtual Machine Image and other software are provided for use only during the workshop. Please note that you are responsible

More information

OIG 11G R2 Field Enablement Training

OIG 11G R2 Field Enablement Training OIG 11G R2 Field Enablement Training Lab 4 - Configure Request Scenarios Disclaimer: The Virtual Machine Image and other software are provided for use only during the workshop. Please note that you are

More information

OIG 11G R2 Field Enablement Training

OIG 11G R2 Field Enablement Training OIG 11G R2 Field Enablement Training Lab 2 - Install and Configure Connector Disclaimer: The Virtual Machine Image and other software are provided for use only during the workshop. Please note that you

More information

OIG 11G R2 Field Enablement Training

OIG 11G R2 Field Enablement Training OIG 11G R2 Field Enablement Training Lab 14 - Reconciliation Lab Disclaimer: The Virtual Machine Image and other software are provided for use only during the workshop. Please note that you are responsible

More information

Lab 1 - Getting started with OIM 11g

Lab 1 - Getting started with OIM 11g Lab 1 - Getting started with OIM 11g Contents Lab 1 - Getting started with OIM 11g... 1 1. Introduction... 1 2. Contents... 3 2.1 VM Accessibility... 3 2.2 Understand directory structures... 4 2.3 Database

More information

OIG 11G R2 PS1 Field Enablement Training

OIG 11G R2 PS1 Field Enablement Training OIG 11G R2 PS1 Field Enablement Training Lab27_ Disclaimer: The Virtual Machine Image and other software are provided for use only during the workshop. Please note that you are responsible for deleting

More information

Lab 19: Event Handlers for User Entities

Lab 19: Event Handlers for User Entities Lab 19: Event Handlers for User Entities Disclaimer: The Virtual Machine Image and other software are provided for use only during the workshop. Please note that you are responsible for deleting them from

More information

Lab 20: UI Customization

Lab 20: UI Customization Lab 20: UI Customization Note: Please view the PDF version as 150% for the clearest display of the screenshots. 1. Introduction In this lab, you will customize various aspects of the user interfaces available

More information

ADF Code Corner How-to launch a popup upon rendering of a page fragment in a region using JSF 2. Abstract: twitter.

ADF Code Corner How-to launch a popup upon rendering of a page fragment in a region using JSF 2. Abstract: twitter. ADF Code Corner 108. How-to launch a popup upon rendering of a page Abstract: A common requirement in Oracle ADF is to launch a popup dialog when a page fragment is rendered in a region. In JDeveloper

More information

OES Permission Checks in ADF Task Flows

OES Permission Checks in ADF Task Flows OES Permission Checks in ADF Task Flows Overview This example is used to demonstrate how to integrate OES permissions into an ADF UI. This example describes integrating OES permissions into a new ADF task

More information

ADF Code Corner How-to build a reusable toolbar with Oracle ADF Declarative Components. Abstract: twitter.com/adfcodecorner

ADF Code Corner How-to build a reusable toolbar with Oracle ADF Declarative Components. Abstract: twitter.com/adfcodecorner ADF Code Corner 024. How-to build a reusable toolbar with Oracle ADF Abstract: This article explains how to use Oracle ADF declarative components to build a reusable toolbar that can be used throughout

More information

OIG 11G R2 PS2 Field Enablement Training. Table of Contents

OIG 11G R2 PS2 Field Enablement Training. Table of Contents OIG 11G R2 PS2 Field Enablement Training Lab 22 - Changes in OIM triggered to downstream app Disclaimer: The Virtual Machine Image and other software are provided for use only during the workshop. Please

More information

ADF Hands-On. Understanding Task Flow Activities / 2011 ADF Internal Enterprise 2.0 Training. Abstract:

ADF Hands-On. Understanding Task Flow Activities / 2011 ADF Internal Enterprise 2.0 Training. Abstract: ADF Hands-On Understanding Task Flow Activities Abstract: In this hands-on you create a bounded task flows to run as an ADF Region in an ADF Faces page. Within this hands-on you create and use the following

More information

Functional. Pattern Embeding Regions inside PopUp Windows

Functional. Pattern Embeding Regions inside PopUp Windows Pattern Pattern 2.8 Revision Technologies JDeveloper 11g, ADF, ADF Faces, ADF Controller Keywords Publisher Pattern Team Publish Date September 19. 2008 Last Updated May 21, 2009 Date: Problem Description

More information

Lab 13: Configure Advanced Provisioning Infrastructure for Request based scenarios

Lab 13: Configure Advanced Provisioning Infrastructure for Request based scenarios Lab 13: Configure Advanced Provisioning Infrastructure for Request based scenarios Contents Lab 13: Configure Advanced Provisioning Infrastructure for Request based scenarios... 1 1. Introduction... 1

More information

Question No: 1 In which file should customization classes be specified in the cust-config section (under mds-config)?

Question No: 1 In which file should customization classes be specified in the cust-config section (under mds-config)? Volume: 80 Questions Question No: 1 In which file should customization classes be specified in the cust-config section (under mds-config)? A. web.xml B. weblogic.xml C. adf-config.xml D. adfm.xml Question

More information

Oracle Retail Accelerators for WebLogic Server 11g

Oracle Retail Accelerators for WebLogic Server 11g Oracle Retail Accelerators for WebLogic Server 11g Micro-Applications Development Tutorial October 2010 Note: The following is intended to outline our general product direction. It is intended for information

More information

JDeveloper Downloading a Workspace for WebCenter Spaces Development

JDeveloper Downloading a Workspace for WebCenter Spaces Development 49 49Extending WebCenter Spaces Using JDeveloper Note: This PDF contains important updates to the current version of Chapter 49 Developer s Guide for WebCenter on Oracle Technology Network (OTN). The OTN

More information

1Z0-430

1Z0-430 1Z0-430 Passing Score: 800 Time Limit: 0 min Exam A QUESTION 1 On a normally well-performing environment, you are experiencing unexpected slow response times, or no server response, for some page requests

More information

Oracle Identity Governance 11g R2 PS1 - Creating a Parallel Approval Process

Oracle Identity Governance 11g R2 PS1 - Creating a Parallel Approval Process Oracle Identity Governance 11g R2 PS1 - Creating a Parallel Approval Process Overview Effective 06/05/12 Page 1 of 97 Rev 1 Overview of Creating a Parallel Approval Processes In this tutorial, you learn

More information

Extensibility Guide Oracle Financial Services Lending and Leasing Release [October] [2013] Part No. E

Extensibility Guide Oracle Financial Services Lending and Leasing Release [October] [2013] Part No. E Extensibility Guide Oracle Financial Services Lending and Leasing Release 14.1.0.0.0 [October] [2013] Part No. E51268-01 Table of Contents 1. PREFACE... 1-2 1.1 AUDIENCE... 1-2 1.2 CONVENTIONS USED...

More information

Developing an ADF 11g client for Agile PLM. Developing an ADF 11g client for Agile PLM

Developing an ADF 11g client for Agile PLM. Developing an ADF 11g client for Agile PLM Table of Contents 1 LAB OVERVIEW... 3 2 GETTING STARTED... 4 2.1 Starting Oracle JDeveloper 11gR1... 4 3 CREATE THE ADF CLIENT... 5 3.1 Create the ADF Application... 5 3.2 Create the Web Service Data Control...

More information

Lyudmil Pelov, A-Team, Oracle December Development Lifecycle for Task Flows in Oracle WebCenter Portal 11gR1 version

Lyudmil Pelov, A-Team, Oracle December Development Lifecycle for Task Flows in Oracle WebCenter Portal 11gR1 version Lyudmil Pelov, A-Team, Oracle December 2013 Development Lifecycle for Task Flows in Oracle WebCenter Portal 11gR1 version 11.1.1.8.0 Table of Contents Introduction...3 About the Examples Used in This Paper...3

More information

OIG 11G R2 Field Enablement Training

OIG 11G R2 Field Enablement Training OIG 11G R2 Field Enablement Training Lab 21 - Reports Lab Disclaimer: The Virtual Machine Image and other software are provided for use only during the workshop. Please note that you are responsible for

More information

1 Copyright 2011, Oracle and/or its affiliates. All rights reserved.

1 Copyright 2011, Oracle and/or its affiliates. All rights reserved. 1 Copyright 2011, Oracle and/or its affiliates. All rights reserved. Fast, but not Furious - ADF Task Flow in 60 Minutes Frank Nimphius, Senior Principal Product Manager Oracle Application Development

More information

Lab 5: Configuring Custom Notifications for Significant Enterprise Events

Lab 5: Configuring Custom Notifications for Significant Enterprise Events Lab 5: Configuring Custom Notifications for Significant Enterprise Events Contents Lab 5: Configuring Custom Notifications for Significant Enterprise Events... 1 1. Introduction... 1 2. Content... 2 2.1.

More information

User Guide Using AuraPlayer

User Guide Using AuraPlayer User Guide Using AuraPlayer AuraPlayer Support Team Version 2 2/7/2011 This document is the sole property of AuraPlayer Ltd., it cannot be communicated to third parties and/or reproduced without the written

More information

Perceptive Interact for Salesforce Enterprise

Perceptive Interact for Salesforce Enterprise Perceptive Interact for Salesforce Enterprise Installation and Setup Guide Version: 3.x.x Written by: Documentation Team, R&D Date: January 2019 Copyright 2015-2019 Hyland Software, Inc. and its affiliates.

More information

ADF Code Corner How-to bind custom declarative components to ADF. Abstract: twitter.com/adfcodecorner

ADF Code Corner How-to bind custom declarative components to ADF. Abstract: twitter.com/adfcodecorner ADF Code Corner 005. How-to bind custom declarative components to ADF Abstract: Declarative components are reusable UI components that are declarative composites of existing ADF Faces Rich Client components.

More information

Perceptive Interact for Salesforce Enterprise

Perceptive Interact for Salesforce Enterprise Perceptive Interact for Salesforce Enterprise Installation and Setup Guide Version: 3.x.x Written by: Product Knowledge, R&D Date: April 2018 Copyright 2015-2018 Hyland Software, Inc. and its affiliates.

More information

ADF Code Corner. 97. How-to defer train-stop navigation for custom form validation or other developer interaction. Abstract: twitter.

ADF Code Corner. 97. How-to defer train-stop navigation for custom form validation or other developer interaction. Abstract: twitter. ADF Code Corner 97. How-to defer train-stop navigation for custom form Abstract: ADF developers can declaratively define a bounded task fow to expose a train model for users to navigate between views.

More information

1 Getting Started with Oracle Service Bus

1 Getting Started with Oracle Service Bus 1 Getting Started with Oracle Service Bus 1 Getting Started with Oracle Service Bus...1 1.1 Prerequisites...1 1.2 Introduction...1 1.2.1 High-level Steps...3 1.3 Setup and Deploy Composites...4 1.3.1 URLs

More information

Creating your first JavaServer Faces Web application

Creating your first JavaServer Faces Web application Chapter 1 Creating your first JavaServer Faces Web application Chapter Contents Introducing Web applications and JavaServer Faces Installing Rational Application Developer Setting up a Web project Creating

More information

Installation and Configuration Manual

Installation and Configuration Manual Installation and Configuration Manual IMPORTANT YOU MUST READ AND AGREE TO THE TERMS AND CONDITIONS OF THE LICENSE BEFORE CONTINUING WITH THIS PROGRAM INSTALL. CIRRUS SOFT LTD End-User License Agreement

More information

Oracle Identity Governance 11g R2: Develop Identity Provisioning

Oracle Identity Governance 11g R2: Develop Identity Provisioning Oracle University Contact Us: 20 (0)2 35350254 Oracle Identity Governance 11g R2: Develop Identity Provisioning Duration: 5 Days What you will learn In this intensive course, you'll learn about Oracle

More information

Creating Domain Templates Using the Domain Template Builder 11g Release 1 (10.3.6)

Creating Domain Templates Using the Domain Template Builder 11g Release 1 (10.3.6) [1]Oracle Fusion Middleware Creating Domain Templates Using the Domain Template Builder 11g Release 1 (10.3.6) E14139-06 April 2015 This document describes how to use the Domain Template Builder to create

More information

Oracle Web Service Manager 11g Component Level Role Authorization (in SOA Suite) March, 2012

Oracle Web Service Manager 11g Component Level Role Authorization (in SOA Suite) March, 2012 Oracle Web Service Manager 11g Component Level Role Authorization (in SOA Suite) March, 2012 Step-by-Step Instruction Guide Author: Prakash Yamuna Senior Development Manager Oracle Corporation Table of

More information

Oracle WebCenter Portal 11g Developer Workshop

Oracle WebCenter Portal 11g Developer Workshop Oracle WebCenter Portal 11g Developer Workshop Lab 02 Creating the OraHealth Page Template and Skin Page 1 of 24 Overview WebCenter Portal uses page templates and skins to control the look-and-feel of

More information

JReport Enterprise Viewer for JREntServer Manual

JReport Enterprise Viewer for JREntServer Manual JReport Enterprise Viewer for JREntServer Manual Table of Contents Installing and Launching JReport Enterprise Viewer...1 Installing JReport Enterprise Viewer...1 Installing on Windows...1 Installing on

More information

Building Multi-Language Portals. Copyright 2011, Oracle and/or its affiliates. All rights reserved.

Building Multi-Language Portals. Copyright 2011, Oracle and/or its affiliates. All rights reserved. Building Multi-Language Portals The goal of this module is to teach you about functionality introduced in Oracle WebCenter 11g R1 (11.1.1.4), commonly referred to as PS3. The product itself will be rebranded

More information

1Z0-560 Oracle Unified Business Process Management Suite 11g Essentials

1Z0-560 Oracle Unified Business Process Management Suite 11g Essentials 1Z0-560 Oracle Unified Business Process Management Suite 11g Essentials Number: 1Z0-560 Passing Score: 650 Time Limit: 120 min File Version: 1.0 http://www.gratisexam.com/ 1Z0-560: Oracle Unified Business

More information

Contents Overview... 5 Upgrading Primavera Gateway... 7 Using Gateway Configuration Utilities... 9

Contents Overview... 5 Upgrading Primavera Gateway... 7 Using Gateway Configuration Utilities... 9 Gateway Upgrade Guide for On-Premises Version 17 August 2017 Contents Overview... 5 Downloading Primavera Gateway... 5 Upgrading Primavera Gateway... 7 Prerequisites... 7 Upgrading Existing Gateway Database...

More information

Oracle 1Z Oracle Identity Governance Suite 11g PS3 Implementation Essentials.

Oracle 1Z Oracle Identity Governance Suite 11g PS3 Implementation Essentials. Oracle 1Z0-339 Oracle Identity Governance Suite 11g PS3 Implementation Essentials http://killexams.com/exam-detail/1z0-339 QUESTION: 72 Which two parameters from the User profile audit data collection

More information

Exposing CICS Transactions to WLE

Exposing CICS Transactions to WLE Exposing CICS Transactions to WLE Lab Exercise Author: David J Brett, Version 1.0 IBM BPM 7.5 Lab Number 1 Copyright IBM Corporation, 2011 US Government Users Restricted Rights - Use, duplication or disclosure

More information

ADF Code Corner. 048-How-to build XML Menu Model based site menus and how to protect them with ADF Security and JAAS. Abstract:

ADF Code Corner. 048-How-to build XML Menu Model based site menus and how to protect them with ADF Security and JAAS. Abstract: ADF Code Corner 048-How-to build XML Menu Model based site menus and Abstract: There are different types of menus you can use within an application: breadcrumbs, to navigate a process within unbounded

More information

4 Connecting to Composites

4 Connecting to Composites 4 Connecting to Composites 4 Connecting to Composites...1 4.1 Prerequisites...1 4.2 Introduction...1 4.3 OSB to SOA Suite Direct binding...3 4.3.1 What is being done?...3 4.3.2 Create Direct Binding exposed

More information

Oracle WebCenter Portal 11g Developer Workshop

Oracle WebCenter Portal 11g Developer Workshop Oracle WebCenter Portal 11g Developer Workshop Lab 11 Creating The Patient Chart Task Flow Page 1 of 45 Overview In the previous lab, you developed and deployed a portlet to the portal. In this lab, you

More information

Contents Overview... 5 Downloading Primavera Gateway... 5 Primavera Gateway On-Premises Installation Prerequisites... 6

Contents Overview... 5 Downloading Primavera Gateway... 5 Primavera Gateway On-Premises Installation Prerequisites... 6 Gateway Installation and Configuration Guide for On-Premises Version 17 September 2017 Contents Overview... 5 Downloading Primavera Gateway... 5 Primavera Gateway On-Premises Installation Prerequisites...

More information

Oracle WebCenter Hands-On Practices. A Practical Introduction to Oracle WebCenter

Oracle WebCenter Hands-On Practices. A Practical Introduction to Oracle WebCenter Oracle WebCenter Hands-On Practices A Practical Introduction to Oracle WebCenter Table of Contents Before You Start... 3 Estimated timings for the practices... 3 Accessing the hands-on setup files... 3

More information

Lab 3: Configuration of OIM to manage user accounts lifecycle in DSEE application

Lab 3: Configuration of OIM to manage user accounts lifecycle in DSEE application OIM 11g Workshop Lab 3 Lab 3: Configuration of OIM to manage user accounts lifecycle in DSEE application Contents Lab 3: Configuration of OIM to manage user accounts lifecycle in DSEE application... 1

More information

Oracle Entitlements Server 11gR2 Integration Guide Published: May 2013

Oracle Entitlements Server 11gR2 Integration Guide Published: May 2013 Oracle Entitlements Server 11gR2 Integration Guide Published: May 2013 Applies To Oracle API Gateway v11.1.2.x Contents Introduction Prerequisites Integration Configuration Steps OES Configuration: Step

More information

EnterpriseTrack Reporting Data Model Configuration Guide Version 17

EnterpriseTrack Reporting Data Model Configuration Guide Version 17 EnterpriseTrack EnterpriseTrack Reporting Data Model Configuration Guide Version 17 October 2018 Contents About This Guide... 5 Configuring EnterpriseTrack for Reporting... 7 Enabling the Reporting Data

More information

Encode Rule Explorer App v1.0.2 for IBM QRadar Documentation

Encode Rule Explorer App v1.0.2 for IBM QRadar Documentation Encode Rule Explorer App v.0.2 for IBM QRadar Documentation Encode Rule Explorer App for IBM QRadar, Copyright 207 Encode SA, All rights reserved. Revision to This Document Date Revision Description 30

More information

Oracle Utilities Customer Self Service Release Whitepaper: Consuming OUCSS Taskflows in Custom Portals E October 2011

Oracle Utilities Customer Self Service Release Whitepaper: Consuming OUCSS Taskflows in Custom Portals E October 2011 Oracle Utilities Customer Self Service Release 2.0.0 Whitepaper: Consuming OUCSS Taskflows in Custom Portals E26553-01 October 2011 Copyright 2011, Oracle and/or its affiliates. All rights reserved. This

More information

ADF Mobile Code Corner

ADF Mobile Code Corner ADF Mobile Code Corner m03. Abstract: Dependent lists is a common functional requirement for web, desktop and also mobile applications. You can build dependent lists from dependent, nested, and from independent,

More information

IBM. IBM WebSphere Application Server Migration Toolkit. WebSphere Application Server. Version 9.0 Release

IBM. IBM WebSphere Application Server Migration Toolkit. WebSphere Application Server. Version 9.0 Release WebSphere Application Server IBM IBM WebSphere Application Server Migration Toolkit Version 9.0 Release 18.0.0.3 Contents Chapter 1. Overview......... 1 Chapter 2. What's new........ 5 Chapter 3. Support..........

More information

Using Spaces Extension Samples ( )

Using Spaces Extension Samples ( ) An Oracle White Paper December 2011 Using Spaces Extension Samples (11.1.1.6.0) Executive Overview... 3 Introduction... 4 Deploying and Undeploying Sample Spaces Extensions... 5 Overview... 5 Downloading,

More information

Oracle BPEL Tutorial

Oracle BPEL Tutorial Oracle BPEL Tutorial This exercise introduces you to the Business Process Execution (BPEL) language, the Oracle JDeveloper BPEL Designer and to the Oracle BPEL Process Manager engine. INSTALL JDEVELOPER

More information

Perceptive Connect Runtime

Perceptive Connect Runtime Perceptive Connect Runtime Installation and Setup Guide Version: 1.0.x Compatible with ImageNow: Version 6.7.x or higher Written by: Product Knowledge, R&D Date: August 2016 2015 Perceptive Software. All

More information

Question: 1 Which item must be enabled on the client side to allow users to complete certification in offline mode?

Question: 1 Which item must be enabled on the client side to allow users to complete certification in offline mode? Volume: 81 Questions Question: 1 Which item must be enabled on the client side to allow users to complete certification in offline mode? A. In Microsoft Excel, navigate to Excel Options >Trust Center tab

More information

NetApp SANtricity Plug-in for Oracle Enterprise Manager 3.1

NetApp SANtricity Plug-in for Oracle Enterprise Manager 3.1 NetApp SANtricity Plug-in for Oracle Enterprise Manager 3.1 Array Manager Installation and User Guide NetApp, Inc. Telephone: +1 (408) 822-6000 Part number: 215-09304_A0 495 East Java Drive Fax: +1 (408)

More information

Just Get it Written: Deploying Applications to WebLogic Server Using JDeveloper and WLS Console. Don t get it right, just get it written.

Just Get it Written: Deploying Applications to WebLogic Server Using JDeveloper and WLS Console. Don t get it right, just get it written. Just Get it Written: Deploying Applications to WebLogic Server Using JDeveloper and WLS Console Peter Koletzke Technical Director & Principal Instructor Co-author: Duncan Mills, Oracle Moral Don t get

More information

Contents. Add a Form Element to a Group Box Add a Field to a Form... 22

Contents. Add a Form Element to a Group Box Add a Field to a Form... 22 Workflow Design Guide Version 17 November 2017 Contents About This Guide... 7 Workflows and Forms Overview... 7 Security Permissions for Workflows and Forms... 8 Search for a Workflow Design, Workflow

More information

Don t get it right, just get it written.

Don t get it right, just get it written. Just Get it Written: Deploying Applications to WebLogic Server Using JDeveloper and WLS Console Peter Koletzke Technical Director & Principal Instructor (coauthored by Duncan Mills, Oracle) Moral Don t

More information

Archivists Toolkit Internal Database

Archivists Toolkit Internal Database Archivists Toolkit Internal Database The Archivists Toolkit now includes (AT 2.0, update 9 and later), support for an internal database based on HyperSQL 2.0 (HSQLDB). HyperSQL is a small, reliable, high

More information

HR-Lite Database & Web Service Setup Guide

HR-Lite Database & Web Service Setup Guide HR-Lite Database & Web Service Setup Guide Version: 1.00 HR21 Limited All rights reserved. No part of this document may be reproduced or transmitted in any form or by any means, electronic or mechanical,

More information

OBIEE. Oracle Business Intelligence Enterprise Edition. Rensselaer Business Intelligence Finance Author Training

OBIEE. Oracle Business Intelligence Enterprise Edition. Rensselaer Business Intelligence Finance Author Training OBIEE Oracle Business Intelligence Enterprise Edition Rensselaer Business Intelligence Finance Author Training TABLE OF CONTENTS INTRODUCTION... 1 USER INTERFACE... 1 HOW TO LAUNCH OBIEE... 1 TERMINOLOGY...

More information

Receiving PeopleSoft Message (PeopleTools 8.17) through the Oracle AS PeopleSoft Adapter. An Oracle White Paper September 2008

Receiving PeopleSoft Message (PeopleTools 8.17) through the Oracle AS PeopleSoft Adapter. An Oracle White Paper September 2008 Receiving PeopleSoft Message (PeopleTools 8.17) through the Oracle AS PeopleSoft Adapter An Oracle White Paper September 2008 Receiving PeopleSoft Message (PeopleTools 8.17) through the Oracle AS PeopleSoft

More information

Roxen Content Provider

Roxen Content Provider Roxen Content Provider Generation 3 Templates Purpose This workbook is designed to provide a training and reference tool for placing University of Alaska information on the World Wide Web (WWW) using the

More information

WebCenter Portal Task Flow Customization in 12c O R A C L E W H I T E P A P E R J U N E

WebCenter Portal Task Flow Customization in 12c O R A C L E W H I T E P A P E R J U N E WebCenter Portal Task Flow Customization in 12c O R A C L E W H I T E P A P E R J U N E 2 0 1 7 Disclaimer The following is intended to outline our general product direction. It is intended for information

More information

IBM WebSphere Java Batch Lab

IBM WebSphere Java Batch Lab IBM WebSphere Java Batch Lab What are we going to do? First we are going to set up a development environment on your workstation. Download and install Eclipse IBM WebSphere Developer Tools IBM Liberty

More information

Oracle Identity Governance 11g R2 PS2

Oracle Identity Governance 11g R2 PS2 Oracle Identity Governance 11g R2 PS2 IQ online training facility offers Oracle Identity Governance 11g R2 PS2 online training by trainers who have expert knowledge in the Oracle Identity Governance 11g

More information

Create a Customised Tab on the Office 2013 Ribbon

Create a Customised Tab on the Office 2013 Ribbon Create a Customised Tab on the Office 2013 Ribbon Office 2007 saw the addition of the Ribbon feature, which some users found confusing. However, you can use it to your advantage by adding your own custom

More information

Oracle Identity Manager Training

Oracle Identity Manager Training Oracle Identity Manager Training The University of Wisconsin Service Center will Serve the people of the University of Wisconsin System Collaborate by being supportive and constructive Act with Integrity

More information

ADF Code Corner. 64. How-to implement a Select Many Shuttle with pre- selected values. Abstract: twitter.com/adfcodecorner

ADF Code Corner. 64. How-to implement a Select Many Shuttle with pre- selected values. Abstract: twitter.com/adfcodecorner ADF Code Corner 64. How-to implement a Select Many Shuttle with pre- selected Abstract: The ADF binding layer currently only supports a single current row which works for single select lists updating he

More information

SAP NW CLOUD HANDS-ON WORKSHOP

SAP NW CLOUD HANDS-ON WORKSHOP SAP NW CLOUD HANDS-ON WORKSHOP CD261 Exercises Sajjad Ahmed, Steven Taylor / SAP 2 Table of Contents Introduction P. 3 Application Description P. 3 Workshop Agenda P. 3 Exercise 1 Configure Development

More information

Hotfix 913CDD03 Visual Data Explorer and SAS Web OLAP Viewer for Java

Hotfix 913CDD03 Visual Data Explorer and SAS Web OLAP Viewer for Java Hotfix 913CDD03 Visual Data Explorer and SAS Web OLAP Viewer for Java BEFORE DOWNLOADING: The hot fix 913CDD03 addresses issue(s) in 9.1.3 of Component Design and Development Components on Windows as documented

More information

APAR PO06620 Installation Instructions

APAR PO06620 Installation Instructions IBM Corporation APAR PO06620 Installation Instructions IBM Counter Fraud Management 1.5.0.5 IBM Counter Fraud Development 3-31-2017 Table of Contents 1 Fix readme... 1 2 Abstract... 1 3 Contents... 1 4

More information

IMPLEMENTING SINGLE SIGN-ON (SSO) TO KERBEROS CONSTRAINED DELEGATION AND HEADER-BASED APPS. VMware Identity Manager.

IMPLEMENTING SINGLE SIGN-ON (SSO) TO KERBEROS CONSTRAINED DELEGATION AND HEADER-BASED APPS. VMware Identity Manager. IMPLEMENTING SINGLE SIGN-ON (SSO) TO KERBEROS CONSTRAINED DELEGATION AND HEADER-BASED APPS VMware Identity Manager February 2017 V1 1 2 Table of Contents Overview... 5 Benefits of BIG-IP APM and Identity

More information

Oracle Banking Platform Collections

Oracle Banking Platform Collections Oracle Banking Platform Collections User Provisioning Guide Release 2.6.0.2.0 E91250-01 October 2017 Oracle Banking Platform Collections User Provisioning Guide, Release 2.6.0.2.0 E91250-01 Copyright 2011,

More information

In order to update you will have to uninstall the current version and install the newer version using the same procedure.

In order to update you will have to uninstall the current version and install the newer version using the same procedure. Installing the 3M Cloud Library app on your Kindle Fire DISCLAIMER These instructions are to be used as a reference only. Please note that by downloading the 3M Cloud Library app you assume all risk of

More information

DOCUMENTUM D2. User Guide

DOCUMENTUM D2. User Guide DOCUMENTUM D2 User Guide Contents 1. Groups... 6 2. Introduction to D2... 7 Access D2... 7 Recommended browsers... 7 Login... 7 First-time login... 7 Installing the Content Transfer Extension... 8 Logout...

More information

AuraPlayer Server Manager User Guide

AuraPlayer Server Manager User Guide AuraPlayer Server Manager User Guide AuraPlayer Support Team Version 2 2/7/2011 This document is the sole property of AuraPlayer Ltd., it cannot be communicated to third parties and/or reproduced without

More information

Mastering Oracle ADF Task Flows. Frank Nimphius Principal Product Manager Oracle JDeveloper / ADF

Mastering Oracle ADF Task Flows. Frank Nimphius Principal Product Manager Oracle JDeveloper / ADF Mastering Oracle ADF Task Flows Frank Nimphius Principal Product Manager Oracle JDeveloper / ADF 1 ADF Controller Introduction Real Life Control Flow: How to get to the Opera? The Rules You Are Here Opera

More information

Build Mobile Apps for Oracle E-Business Suite with Oracle Mobile Platform Part 2

Build Mobile Apps for Oracle E-Business Suite with Oracle Mobile Platform Part 2 Build Mobile Apps for Oracle E-Business Suite with Oracle Mobile Platform Part 2 Bruce Bailey Principal Mobile / Social Solutions Consultant Srikant Subramaniam Director, FMW Product Management, AppAdvantage

More information

Heiler Catalog Intelligence Installation Manual

Heiler Catalog Intelligence Installation Manual Installation Manual Heiler Catalog Intelligence 1.2 - Installation Manual Valid since version 1.2 (1.2.00.00) Heiler Software AG R&D - Research & Development Last changed: April 23, 2015 Table of Contents

More information

An Oracle White Paper August Using WebCenter Spaces Extension Samples ( )

An Oracle White Paper August Using WebCenter Spaces Extension Samples ( ) An Oracle White Paper August 2011 Using WebCenter Spaces Extension Samples (11.1.1.4.0) Executive Overview... 2 Introduction... 2 Deploying and Undeploying Sample WebCenter Spaces Extensions 3 Overview...

More information

FX SERIES. Programmer s Guide. Embedded SDK. MN000540A01 Rev. A

FX SERIES. Programmer s Guide. Embedded SDK. MN000540A01 Rev. A FX SERIES Embedded SDK Programmer s Guide MN000540A01 Rev. A Table of Contents About This Guide Introduction...4 Chapter Descriptions... 4 Notational Conventions...5 Related Documents and Software...5

More information

Spatial Data Standards for Facilities, Infrastructure, and Environment (SDSFIE)

Spatial Data Standards for Facilities, Infrastructure, and Environment (SDSFIE) Spatial Data Standards for Facilities, Infrastructure, and Environment (SDSFIE) Model Builder User Guide Version 1.3 (24 April 2018) Prepared For: US Army Corps of Engineers 2018 Revision History Model

More information

Unified Task List Developer Pack

Unified Task List Developer Pack Unified Task List Developer Pack About the Developer Pack The developer pack is provided to allow customization of the UTL set of portlets and deliver an easy mechanism of developing task processing portlets

More information

IBM WebSphere Lombardi Edition 7.2 Business Process Management Workshop

IBM WebSphere Lombardi Edition 7.2 Business Process Management Workshop IBM IBM WebSphere Lombardi Edition 7.2 Business Process Management Workshop Lab Exercises Contents LAB 1 BUILD-FROM-SCRATCH LAB - PART 1... 4 1.1 START LOMBARDI AUTHORING ENVIRONMENT... 4 1.1.1 START THE

More information

Overview. Principal Product Manager Oracle JDeveloper & Oracle ADF

Overview. Principal Product Manager Oracle JDeveloper & Oracle ADF Rich Web UI made simple an ADF Faces Overview Dana Singleterry Dana Singleterry Principal Product Manager Oracle JDeveloper & Oracle ADF Agenda Comparison: New vs. Old JDeveloper Provides JSF Overview

More information

New World ERP-eSuite

New World ERP-eSuite New World ERP-eSuite 2018.1 INSTALLATION GUIDE April 9, 2018 Review important information for installing this release: SSL is required for esuite Services and Website servers. 2018 Tyler Technologies.

More information

Just Get It Written: Deploying Applications to WebLogic Server Using JDeveloper and WLS Console Hands on Practice

Just Get It Written: Deploying Applications to WebLogic Server Using JDeveloper and WLS Console Hands on Practice This hands on practice describes the steps for deploying an existing Java EE application written with Oracle ADF technologies. Although the practice refers to specific features and files in a sample application

More information

De La Salle University Information Technology Center. Microsoft Windows SharePoint Services and SharePoint Portal Server 2003

De La Salle University Information Technology Center. Microsoft Windows SharePoint Services and SharePoint Portal Server 2003 De La Salle University Information Technology Center Microsoft Windows SharePoint Services and SharePoint Portal Server 2003 WEB DESIGNER / ADMINISTRATOR User s Guide 2 Table Of Contents I. What is Microsoft

More information

AquaLogic BPM Enterprise Configuration Guide

AquaLogic BPM Enterprise Configuration Guide AquaLogic BPM Enterprise Configuration Guide IBM WebSphere Edition Version: 6.0 2 ALBPM TOC Contents Getting Started...4 Document Scope and Audience...4 Documentation Roadmap...4 What is ALBPM Enterprise?...4

More information