Quantcast
Channel: Oracle Bloggers
Viewing all 19780 articles
Browse latest View live

Oracle ATG and Oracle Endeca Knowledge Zones & Specializations are Retiring

$
0
0

Starting October 1st the ATG and Endeca Commerce Knowledge Zones have been decommissioned. The Oracle ATG and Endeca Commerce specialization and resell programs have been retired as well.

We strongly encourage you to subscribe to the Oracle Commerce Cloud Service Knowledge Zone, in order to keep receiving customized communications aligned to your areas of interest.

Oracle Commerce Cloud is a modern, flexible and scalable SaaS solution that emphasizes simplicity, allowing online businesses to quickly launch feature-rich, responsive storefronts across desktop and mobile devices without sacrificing features or brand control. Leverage our material to: 

Read More.

Knowledge Zones & Specializations in Oracle Applications to be Retired

$
0
0

Be advised that several Knowledge Zones and Specializations within Oracle Applications are soon to be retired.The retiring knowledge zones will continue to be available until December 31st, 2016.

We strongly encourage you to pursue alternative knowledge zones for the products of your interest, in order to stay updated and keep receiving customized communications.They are, as follows:

Oracle Financials: Oracle Fusion Financials Solutions

Oracle Fusion Financials Solutions Knowledge Zone - Decommissioned

Oracle Financials: Oracle Fusion Financials Solutions Knowledge Zone has been decommissioned as of October 1st,, 2016. Please subscribe to the Oracle Financials Cloud Knowledge Zone until December 31st, 2016 to receive OPN communications and stay updated!

***

Oracle Fusion Supply Chain Management: Oracle Fusion Supply Chain Management Solutions

Oracle Fusion SCM Knowledge Zone - Decommissioned

Oracle Fusion Supply Chain Management: Oracle Fusion Supply Chain Management SolutionsKnowledge Zone has been decommissioned. Please subscribe to Oracle SCM Cloud Knowledge Zone until December 31st, 2016 to receive OPN communications and stay updated!

Oracle Fusion Supply Chain Management Specialization - Retired

After September 30th, 2016, Oracle Fusion Supply Chain Management: Oracle Fusion Supply Chain Management Specialization is no longer available within the OPN Program.Please consider working towards the criteria and applying for Oracle SCM Cloud. Click here to learn about the criteria!

*** 

Oracle Procurement: Oracle Fusion Procurement Solutions

Oracle Fusion Procurement Knowledge Zone – Decommissioned

Oracle Procurement: Oracle Fusion Procurement SolutionsKnowledge Zone has been decommissioned. Please subscribe to Oracle Procurement Cloud Knowledge Zone until December 31st, 2016 to receive OPN communications and stay updated!

Oracle Procurement: Oracle Fusion Procurement Specialization - Retired

After September 30th, 2016, Oracle Procurement: Oracle Fusion Procurement Specialization is no longer available within the OPN Program.Please consider working towards the criteria and applying for Oracle Procurement Cloud. Click here to learn about the criteria!

*** 

Oracle Project Portfolio Management: Oracle Fusion Project Portfolio Management Solutions

Oracle Fusion PPM Knowledge Zone – Decommissioned

Oracle Project Portfolio Management: Oracle Fusion Project Portfolio Management SolutionsKnowledge Zone has been decommissioned. Please subscribe to Oracle PPM Cloud Knowledge Zone until December 31st, 2016 to receive OPN communications and stay updated!

Oracle Fusion PPM Specialization – Retired

After September 30th, 2016, Oracle Project Portfolio Management: Oracle Fusion Project Portfolio Management Specialization is no longer available within the OPN Program.Please consider working towards the criteria and applying for Oracle PPM Cloud. Click here to learn about the criteria!

*** 

Agile Product Lifecycle Management

Oracle Agile Product Lifecycle Management Knowledge Zone - Decommissioned

Agile Product Lifecycle ManagementKnowledge Zone has been decommissioned. Please subscribe to Oracle SCM Cloud Knowledge Zone until December 31st, 2016 to receive OPN communications and stay updated.

Oracle Agile Product Lifecycle Management Specialization - Retired

After September 30th, 2016, Oracle Agile Product Lifecycle Management Specialization is retired.Please consider working towards the criteria and applying for Oracle SCM Cloud. Click here to learn about the criteria!

*** 

Oracle Sales: Oracle Fusion CRM Solutions

Oracle Fusion CRM Solutions Knowledge Zone – Decommissioned

Starting December 31st the Oracle Sales: Oracle Fusion CRM Solutions Knowledge Zone will be decommissioned. Please subscribe to Oracle Sales Cloud Knowledge Zone to keep receiving OPN communications.

Oracle Fusion CRM Solutions Specialization & Resell Program - Retired

The Oracle Sales: Oracle Fusion CRM Solutions Specialization has been retired as of August 31st, 2016 – we recommend you check the Oracle Sales Cloud Specialization criteria.

The Oracle Sales: Oracle Fusion CRM Solutions Resell program has been retiredas of September 30th, 2016– we recommend you check the Oracle Sales Cloud Resell criteria.

*** 

Oracle ATG Commerce Suite & Endeca commerce Knowledge Zone

Oracle ATG & Oracle Endeca Commerce Knowledge Zones - Decommissioned

Starting October 1st the Oracle ATG and Endeca Commerce Knowledge Zones have been decommissioned. We strongly encourage you to subscribe to the Oracle Commerce Cloud Service Knowledge Zone, to keep receiving customized communications aligned to your areas of interest.

The Oracle ATG and Endeca Commerce specialization and resell programs have been retired as well.

UI Component Extensions for ABCS with Oracle JET (Part 2)

$
0
0

What we have so far, after part 1, is a custom component. What's we'd like to have is an extension to ABCS so that the component can be dragged and dropped into any application created in ABCS.

In the left side of ABCS, below, provided by the hamburger button in the top left, you see an item called "Extensions":

Now you're on the page below where, as you can see in the left side, you can create new UI components:

Fill in the details below, which is a dialog that appears after you click the button above:

Click Template above and then click "blackbox" below.

When you click OK above and wait some seconds, a new UI component will be created for you, as shown below. Use the Sources tab to edit the code in the UI component. The business logic goes into "Initialiser.js", while the view goes into "blackbox.html":

The other files provide related support, for example, in "Constants.js", you can tweak the display name of the new UI component. There's also files dealing with the drop dialog and property inspector that can be extended.

Back in the Page Designer, you'll see your new UI component, named "Black Box" by default (below you can see I changed it to "Greeting" because I edited the "Constants.js" file), in the "Common" category, from where you can drag and drop it into the canvas.

There's syntax coloring to help you, when editing your UI component in the browser above. On the other hand, you can also export the extension to a ZIP file and open the source files into an editor, such as NetBeans IDE, edit the files there, ZIP them up again, and upload them in the dialog above.

Further reading: UI Extensions in Application Builder Cloud Service

UI Component Extensions for ABCS (Part 3: Property Inspectors)

$
0
0

The next step is to give your citizen developers a Property Inspector for the UI component extension you're creating for them.

Let's go through the whole process from start to finish, imagining you've gone through the various dialogs in yesterday's blog entry and you now have a UI component extension generated for you from the "blackbox" template. We'll use the "Hello World" scenario from the Knockout site for this example. 

  1. Define the UI Component Extension. In 'blackbox.html', replace the content between the 'div' tags with the following:
    <p>First name: <input data-bind="value: firstName" /></p>
    <p>Last name: <input data-bind="value: lastName" /></p>
    <h2>Hello, <span data-bind="text: fullName"> </span>!</h2>

    In 'Initialiser.js', rewrite the 'ko.components.register' expression to the following and note that "text1" and "text2" do not exist yet, we'll create them in the next steps below:

    ko.components.register(Constants.COMPONENT_ID, {
        viewModel: function (params) {
            var self = this;
            self.firstName = ko.observable(params.text1);
            self.lastName = ko.observable(params.text2);
            self.fullName = ko.pureComputed(function () {
                return self.firstName() + "" + self.lastName();
            }, this);
        },
        template: template
    });

    You now have your UI component extension and should be able to reload it into your Page Designer. From there, you can drag and drop it into the canvas. In the Property Inspector, on the right side of the Page Designer, notice the "Initial Value" field, which has its value set to "Hello World!" We're going to rewrite that to a "First Name" property, and connect it to the "First Name" field in the UI component extension, so that your citizen developer can set a default first name whenever they've dragged our UI component extension into the canvas.

  2. Reuse the Default Property

    The template you used to create your extension includes a property that we can use as the basis of our own property, after which we can connect it to our component. To do this, we'll work down the list of files in the "js" folder, one by one and rewrite bits and pieces as needed:

  • Constants.js. Change the name of PROPERTY_ID_TEXT to PROPERTY_ID_FIRST and its value to 'text1'. Change the name of DEFAULT_MESSAGE to DEFAULT_FIRST and its value to 'Planet'.

  • Creator.js. In 'ComponentCreator.prototype.createView', change the property 'text' to 'text1' and DEFAULT_MESSAGE to DEFAULT_FIRST. (Tip: In Creator.js, change the "2" for "minWidth" to a different integer if you want the component, when it is dropped, to have a different width.)

  • PropertyInspectorViewModel. In the function, rewrite 'text' everywhere to 'text1' and PROPERTY_ID_TEXT to PROPERTY_ID_FIRST.

  • ViewGenerator.js. Change 'text' to 'text1'. Change all usages of 'message' to 'text1'.

Next, we'll work in the "html" folder:

  • blackboxPI.html. Rewrite 'Initial Value' to 'First Name', rewrite 'text' to 'text1'.

  • blackboxWrapper.html. Change the two usages of 'message' to 'text1'.

  • Use the Property Inspector

    On the Extensions page, click "Reload Extensions", go back to the Page Designer, drag-and-drop your component into the canvas and then notice that you're able to fill in and change the default first name in the Property Inspector:



  • Write a Property from Scratch

    Now that we've rewritten the default property and, essentially, refactored it for our purposes, let's write one ourselves. We'll write a "text2" property so that the Last Name will be customizable from the Property Inspector.

      • Constants.js. Define PROPERTY_ID_LAST and its value to 'text2'. Define DEFAULT_FIRST and set its value to 'World'.

      • Creator.js. In 'ComponentCreator.prototype.createView', add a comma after the definition of 'text1' and add 'text2', with its value set to DEFAULT_LAST.

      • PropertyInspectorViewModel. Copy 'self.text1' and related code, rename everything to 'text2' and PROPERTY_ID_LAST.

      • ViewGenerator.js. Copy the various 'text1' statements and paste them and rename to 'text2'. And then include 'text2' in the 'ViewGeneratorSupport.applyMap' construct, as shown below:
        var val = ViewGeneratorSupport.applyMap(template, {
            id: view.getId(),
            elementName: Constants.COMPONENT_ID,
            text1: text1,
            text2: text2
        });

      Next, we'll work in the "html" folder:

      • blackboxPI.html. Copy the whole "First Name" section, paste it, rename it to "Last Name", and "text1" to "text2".

      • blackboxWrapper.html. Rewrite to include your new parameter:
        <$elementName$ id="$id$" 
                       params="{text1: '$text1$', text2: '$text2$'}">
        </$elementName$>
    1. Use the Property Inspector.

      When you reload extensions, go back to the Page Designer, and drag-and-drop your component again, you'll see that you can now customize both of the properties.

      Also note that, thanks to your code in ViewGenerator.js, you have error handling built in:

    2. What you've learned is how to extend your UI component extension to include support for the Property Inspector.

      Make More Informed Business Decisions - Take Business Intelligence on Oracle Cloud Training

      $
      0
      0

      Want to learn new approaches to make quicker, more informed business decisions?

      Take Business Intelligence on Oracle Cloud training.

      This 3-day course provides step-by-step instructions for creating analyses and dashboards using Oracle Business Intelligence Cloud Service.

      You’ll learn how to load data, model data, build and modify analyses and dashboards, while configuring Business Intelligence Cloud Service on mobile.

      Learn To:

      • Build stories and organize content using Data Visualization Cloud Service.
      • Load data using Data Loader and SQL Developer to Business Intelligence Cloud Service.
      • Create and publish data models using Data Modeler in Business Intelligence Cloud Service.
      • Explore data using Visual Analyzer using Business Intelligence Cloud Service.
      • Build analyses and use views and graphs in analyses.
      • Administer Business Intelligence Cloud Service objects in the catalog.
      • Troubleshoot issues with data loading, data modeling, analyses, and dashboards.
      • Configure Business Intelligence Cloud Service on Mobile.
      • Upload data from external sources to Data Visualization Cloud Service.
      • Explore data through data wrangling and visualizations using Data Visualization Cloud Service.

      Take Flexible Training from Any Device - 24/7

      Our Platform as a Service Learning Subscription gives you access to hours of expertly-developed content for DBAs, developers and administrators interested in Oracle Platform as a Service Solutions.

      Explore our growing portfolio of Platform as a Service Cloud offerings!

      MS16-104 Security Update for IE Breaks EBS JRE Download

      $
      0
      0

      Microsoft IE LogoMS16-104: Security update for Internet Explorer: September 13, 2016 (KB3185319) breaks the JRE (oaj2se.exe) download function in Oracle E-Business Suite 12.1 and 12.2. This issue occurs with IE 11 on Windows 7, 8.1, and 10.

      Expected behaviour: If an end-user does not have the required JRE plug-in release installed on their desktop client, a dialog box appears, asking whether they wish to download it from the EBS server. When the end-user confirms the download, the oaj2se.exe file downloads and runs.

      Incorrect behaviour after the installation of KB3185319: When the end-user confirms the download via the dialog box, the oaj2se.exe will not download.

      How to fix this problem

      Microsoft has published separate fixes for this issue for Windows 7, 8.1, and 10.  The appropriate patch must be installed on all affected end-user desktop clients:

      Temporary workaround

      If an end-user has installed KB3185319 but is unable to install the fix, end-users may work around the problem by entering the file's URL in Internet Explorer's address bar.  For example:

      http(s)://<myserver.example.com>:<port>/OA_HTML/oaj2se.exe

      Reference

      Related Articles


      Integration Cloud Service use-cases & get started

      $
      0
      0

      Maximize the value of your investments in SaaS and on-premise applications through a simple and powerful integration platform in the cloud. The use-case examples are great tips to get you started and spot opportunities are your customers! Get the use-cases here.

      clip_image002

      SOA & BPM Partner Community

      For regular information on Oracle SOA Suite become a member in the SOA & BPM Partner Community for registration please visit www.oracle.com/goto/emea/soa (OPN account required) If you need support with your account please contact the Oracle Partner Business Center.

      BlogTwitterLinkedInimage[7][2][2][2]Facebookclip_image002[8][4][2][2][2]Wiki

      New Beta Exam - Oracle Policy Automation Cloud Service 2017 Implementation Essentials!

      $
      0
      0

      Starting October 1st the Oracle Policy Automation Cloud Service 2017 Implementation Essentials Exam is available in Beta. The exam is designed for OPA Senior Sales Consultant and Intermediate Policy Modelers with 1 to 4 years of experience and with previous implementation practice (2-4). Exam candidates who score a passing grade on the beta exam will be recognized as Oracle Policy Automation Cloud Service 2017 Certified Implementation Specialists.

      There are still vouchers available allowing You to take the Beta exam for free.

      Request your voucher here!


      E-Business Suite on Oracle Cloud Regional Seminars

      $
      0
      0

      Do you want to learn how running Oracle E-Business Suite and other Oracle applications (such as PeopleSoft, JD Edwards, and Siebel) on Oracle Cloud fits into your company's strategy? Join us at a free, half-day regional workshop where Oracle Cloud experts will explain how we can help you move to the enterprise cloud that is right for you. 

      Learn how Oracle Cloud helps organizations drive innovation and business transformation while maximizing the value of their Oracle investments by:

      • Lowering Cost: Increase resource utilization, lower ongoing management costs.
      • Increasing Agility: Scale up or down as business needs change, off-load daily systems management tasks.
      • Maintaining Flexibility: Move back on-premise as needed, integrate with on-prem apps, tools and assets.
      • Reducing Risk: Never run out of capacity, stay up to date, minimize security risks and meet compliance requirements.

      More information regarding the seminar series is available here:

      Click on the city below to register for the upcoming event:

      References 

      Related Articles

      UI Component Extensions for ABCS (Part 4: Drop Dialogs)

      $
      0
      0

      The next feature to be added to your UI component extension is a Drop Dialog, i.e., when the citizen developer drags and drops your component, a small dialog will appear to fill in some of the values in the component to override the defaults the component gives you:



      To achieve the above, do the following.

      1. Create the View. In your 'templates' folder, add a new HTML file, with any name, such as "popup.html", with this content:
        <div>
          <label for="componentdropCustomizer-label">First Name</label>
          <input id="componentdropCustomizer-label" type="text"
              placeholder="Enter First Name" data-bind="ojComponent: {
                  component: 'ojInputText',
                  value: text1
          }">
          <label for="componentdropCustomizer-label">Last Name</label>
          <input id="componentdropCustomizer-label" type="text"
              placeholder="Enter Last Name" data-bind="ojComponent: {
                  component: 'ojInputText',
                  value: text2
          }">
        </div>
        <div>
          <button data-bind="ojComponent: {
              component: 'ojButton',
              label: 'Finish'
          }, click: finish">
          </button>
          <button data-bind="ojComponent: {
              component: 'ojButton',
              label: 'Cancel'
          }, click: cancel">
          </button>
        </div>
      2. Add the Business Logic. All the business logic for this scenario is found in the 'Creator.js' file.

        • Rewrite the 'define' block, to load the 'popup.html' file and provide the API you'll be needing:
          define([
              'com.greeting/js/Constants',
              'components.dt/js/api/ComponentFactory',
              'components.dt/js/spi/creators/CreatorType',
              'components.dt/js/spi/creators/DropPopupController',
              'text!com.greeting/templates/popup.html'
          ], function(Constants, ComponentFactory, CreatorType, DropPopupController, popupMarkup) {
        • Change the return value of "getType" to CreatorType.POPUP.

        • Below 'createView', define 'getDropPopupController':
          ComponentCreator.prototype.getDropPopupController = function (view) {
              // right after the view is created, the infrastructure calls this method
              // to get an instance of DropPopupController, providing the html markup,
              // view model, and the callback implementation for the popup.
              var myPopupViewModel = this._createModel();
              var customizer = new ComponentCreator.MyDropCustomizer(view, myPopupViewModel);
              // create an instance of DropPopupController with required popup model and markup.
              var controller = new DropPopupController(myPopupViewModel, popupMarkup, customizer);
              // attach a finish handler to your model and dismiss the popup
              // when the model says so using an API finish method.
              myPopupViewModel.finishHandler = function (result) {
                  controller.finish(result);
              };
              return controller;
          };
        • Below the above, you need all of this:
          ComponentCreator.prototype._createModel = function () {
              var model = {
                  text1: ko.observable(),
                  text2: ko.observable(),
                  finishHandler: undefined,
                  finish: function () {
                      this.finishHandler(true);
                  },
                  cancel: function () {
                      this.finishHandler(false);
                  }
              };
              return model;
          };
          
          var MyDropCustomizer = function (view, model) {
              this._view = view;
              this._model = model;
          };
          
          MyDropCustomizer.prototype.opened = function () {
              // you can do something useful here
          };
          
          MyDropCustomizer.prototype.closed = function (accepted) {
              if (accepted) {
                  // popup was accepted and closed, let's update view properties
                  this._view.getProperties().setValue('text1', this._model.text1());
                  this._view.getProperties().setValue('text2', this._model.text2());
              }
              // do not forget to return a promise resolving to the view instance
              return Promise.resolve(this._view);
          };
          
          ComponentCreator.MyDropCustomizer = MyDropCustomizer;
      And now, when you drag and drop, you should see a small dialog for filling in initial values.

      Training Thursdays: Security Administration in Oracle Linux 7

      $
      0
      0

      Security is a key topic for all IT professionals today. In the Oracle Linux 7: What's New For Administrators, learn about about:

      • Packet-Filtering Firewalls
      • firewalld Service
      • firewall-cmd Utility

      You can take the Oracle Linux 7: What's New For Administrators course in the following formats:

      • Live Virtual Event: Attend a live event from your own desk, no travel required. Events are added to the schedule to suit different time-zones. Events currently on the schedule include 18 January, 15 March, 26 April and 31 May 2017.
      • In-Class Event:Travel to an education center to take this class. Below is a selection of the in-class events on the schedule:

       Location Date Delivery Language
      Reading, England 25 January 2017English
      Paris, France 23 November 2016 French
      Berlin, Germany 30 January 2017German
      Hamburg, Germany 24 October 2016 German

      To register for an event or to learn more about the Oracle Linux curriculum, go to http://oracle.com/education/linux.

      Which Oracle Access Manager Patchsets Can Be Used with EBS?

      $
      0
      0

      Oracle versions numbers can be very long.  Complicating matters further, different product families within Oracle use the version hierarchy differently.  This can make it confusing to determine whether a specific product update has been certified with Oracle E-Business Suite.

      Specifically, a customer recently asked whether it was acceptable to apply the Oracle Access Manager 11.1.2.2.8 patchset to their OAM instance that was integrated with EBS 12.1.3.  They were concerned because our OAM integration documentation for that combination explicitly specified compatibility with OAM 11.1.2.2.0.

      In this particular case, the fifth-level digit in the Oracle Access Manager version is not relevant.  In other words, the customer could apply OAM 11.1.2.2.8 because it was covered by the OAM 11.1.2.2.0 certification. 

      For example, all of the following OAM patchsets will work with EBS 12.1.3:

      • OAM 11.1.2.2.0 (documented certification)
      • OAM 11.1.2.2.1
      • OAM 11.1.2.2.2
      • OAM 11.1.2.2.3
      • OAM 11.1.2.2.4
      • OAM 11.1.2.2.5
      • OAM 11.1.2.2.6
      • OAM 11.1.2.2.7
      • OAM 11.1.2.2.8

      This is sometimes shown in our documentation in either of the following ways:

      • OAM 11.1.2.2
      • OAM 11.1.2.2.x

      The absence of a fifth-digit or the presence of an 'X' in the fifth digit's place means any fifth-digit level updates may be applied to an OAM environment integrated with EBS 12.1.3 without requiring a new certification.  This applies to all environments, including test and production.

      Related Articles

      Oracle Direct Digital – Partner sales alignment in Amsterdam and Malaga

      $
      0
      0

      image

      Start your Journey to the Oracle Cloud Partner Sales Workshop

      The Cloud computing growth rate is currently 5 times higher than the overall IT growth rate at $210b by the end of 2016.

      Oracle’s cloud strategy is to offer choice and flexibility with the most comprehensive, modern, and secure offering of cloud products and services for business, IT infrastructure, and development needs. Oracle Cloud is commercially and technically attractive for customers of all sizes from the smallest startups to the biggest multinationals.

      To help you understand more about these solutions and how you can take advantage of this market growth you are invited to attend a sales workshop at Oracle Direct’s Sales Centre in Malaga.

      At this session we will share the market opportunity, positioning, latest announcements from Oracle OpenWorld and give an overview of Oracle’s Cloud Platform as a Service offerings. We will focus on key sales plays where we believe partners can expect the biggest and quickest return. In addition you will be able to meet and engage directly with the Oracle Direct Sales organisation as well as Senior Executives to start working out how you can build pipeline and revenue together.


      For details please visit the registration pages here

      Malaga Spain October 18th& 19th 2016

      Amsterdam Netherlands October 26th& 27th 2016

      SOA & BPM Partner Community

      For regular information on Oracle SOA Suite become a member in the SOA & BPM Partner Community for registration please visit www.oracle.com/goto/emea/soa (OPN account required) If you need support with your account please contact the Oracle Partner Business Center.

      BlogTwitterLinkedInimage[7][2][2][2]Facebookclip_image002[8][4][2][2][2]Wiki

      User Defined Properties in SQL Developer Data Modeler

      $
      0
      0
      There are tons of properties you can set in your design objects. In fact, I discovered a ‘new’ one this week thanks to my friend David. #Oracle #SQLDev Data Modeler users please up vote my feature request to allow additional “display as” componentshttps://t.co/2fIbVXmIn9::: — david schleis (@dschleis)... [Read More]

      Oracle OpenWorld on-demand keynotes videos

      $
      0
      0
      Oracle Cloud—Built for Continuous Innovation
      Thomas Kurian, President of Product Development, Oracle Watch full-length keynote
      Complete, Integrated Cloud
      Larry Ellison, Executive Chairman and Chief Technology Officer, Oracle Watch full-length keynote

      image

      SOA & BPM Partner Community

      For regular information on Oracle SOA Suite become a member in the SOA & BPM Partner Community for registration please visit www.oracle.com/goto/emea/soa (OPN account required) If you need support with your account please contact the Oracle Partner Business Center.

      BlogTwitterLinkedInimage[7][2][2][2]Facebookclip_image002[8][4][2][2][2]Wiki


      My private Corner – Kobe – Bandit’s new friends

      $
      0
      0

      Cloud adaption increases rapidly. It’s no surprise that Kobe – Bandit’s new friend from the Griffiths Waite Team needs to relax after a hard day coding in the Cloud. Make sure you follow our leaders and try it yourself here. #jkwcimage

      SOA & BPM Partner Community

      For regular information on Oracle SOA Suite become a member in the SOA & BPM Partner Community for registration please visit www.oracle.com/goto/emea/soa (OPN account required) If you need support with your account please contact the Oracle Partner Business Center.

      BlogTwitterLinkedInimage[7][2][2][2]Facebookclip_image002[8][4][2][2][2]Wiki

      Technorati Tags: private corner,SOA Community,Oracle SOA,Oracle BPM,OPN,Jürgen Kress

      Ausemon Wins Most Innovative Project Award!

      $
      0
      0

      Remeber Ausemon? That cool app we told you about back in August that was based off of Pokemon Go? The one that Oracle team members built in only one weekend for Australia's GovHack 2016? The one that used both location services and big data to create an interactive experience for hikers along Canberra's Centenary Trail? Well... it just won the Most Innovative Project Award at GovHack 2016!

      When Oracle Australia team members Joel Nation, James Ryles, Chris Flemming, and Damien McAually decided to build Ausemon, they had little idea that eventually, they'd be taking home this prestigious honor. In a competition that included projects such as a chatbot for job seekers that used the power of IBM Watson, a giant flamethrower / art piece that incorporated government data to visually represent the spread of Australian wildfires, and a roulette wheel that suggested local points of interest to Canberra's tourists, Ausemon, built with Oracle Mobile Cloud Service, Application Container Cloud Service and Database Cloud Service, prevailed! Considering the ingenuity of some of the competing entries, this accomplishment is worth noting, and celebrating!

      So congratulations Chris, Damien, James and Joel! A fantastic job, and a fantastic mobile app!

      To learn more about Ausemon, check out our previous blog post. And don't forget to follow us @OracleMobile and to join the conversaiton on LinkedIn.

      Oracle OpenWorld 2016 Summaries

      $
      0
      0

      image

      In case you missed the Oracle OpenWorld 2016 PaaS Partner Update webcast it's now available on-demand here. Slides from the community webcasts are published here (community membership required)

      Thanks to the whole community for the excellent summaries:

      · Sven Bernhardt’s OOW 16: My thoughts and experiences

      · Phil Wilkins Open World – Key Messages

      · Remco Cats Oracle OpenWorld 2016

      · Rolando Carrasco‘s Oracle Open World 2016

      · Debra Lilley’s My OOW16 - Write Up

      · Timo Hahn’s posts Day one& Day 2& Day 3& Day 4& Day 5

      SOA & BPM Partner Community

      For regular information on Oracle SOA Suite become a member in the SOA & BPM Partner Community for registration please visit www.oracle.com/goto/emea/soa (OPN account required) If you need support with your account please contact the Oracle Partner Business Center.

      BlogTwitterLinkedInimage[7][2][2][2]Facebookclip_image002[8][4][2][2][2]Wiki

      Configuring Reverse Proxies and DMZs for EBS 12.2

      $
      0
      0

      You may have end-users outside of your organization's firewall who need access to E-Business Suite.  One way of doing that is to set up a reverse proxy server and a series of network segments separated by firewalls. 

      EBS DMZ architecture

      The outermost network segment that lies between the internet and an organization's intranet is often called a Demilitarized Zone (DMZ).  DMZs are enforced by firewalls and other networking security devices.

      Setting up a DMZ

      Instructions for deploying EBS 12.2 in a DMZ-based architecture are published here:

      Externally-facing EBS products

      A subset of EBS products can be deployed for external use, including iSupplier, iRecruitment, iSupport, and others.  Many of these products have special rules that must be enabled in the URL Firewall to work properly in external deployments.  For a complete list of E-Business Suite products certified for external use, see Section 6 in Note 1375670.1.

      Related Articles


      Oracle HCM: Oracle Fusion HCM Solutions Knowledge Zone Is Retiring

      Viewing all 19780 articles
      Browse latest View live




      Latest Images