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

New Oracle VM Server for x86 Training: Now Available!

0
0

Engineered for Open Cloud Infrastructure

If you're facing increased operating costs and inefficient resource utilization, you may be exploring options to migrate to cloud computing.

Your virtualization solution has to increase data center flexibility, meet your price/performance needs, and make applications easier to deploy, manage, and support.

Oracle University offers training for Oracle VM Server x86 to help you develop the skills to build the infrastructure you want. 

What does Oracle VM deliver?

The NewOracle VM Server for x86: Administrationcourse explores building the infrastructure for open cloud computing. Expert Oracle University instructors will show you how to support enterprise applications by deploying pooled server resources to create virtual machines.

The Oracle VM Server for x86: Implementationtraining teaches you how to enhance cloud effectiveness with rapid deployment of cloud resources and applications. You will learn how to administer, redistribute, troubleshoot and protect Oracle VM resources to ensure seamless and continuous access of your applications.

Sign up for Oracle VM Server for x86 training today and start your journey to the Cloud.


OTN Summit - July 12th, 13th and 14th!

0
0
The Oracle Technology Network team invites you to attend the OTN Summit on July 12, 13 and 14, 2016 to explore the latest demos and insights from Oracle and community experts. Inderjeet Singh, Executive Vice President, Fusion Middleware Development, will kick off the OTN Summit to discuss... [Read More]

PaaS free trial accounts ICS and PCS, IoT and PaaS for SaaS

0
0

clip_image002

As part of our communities we do offer free PaaS accounts (only for partners in Europe, Middle East and Africa. In case you are not part of EMEA please contact your local partner manager):

·Integration Cloud Service & Process Cloud Service & SOA Cloud & IoT & PaaS for SaaS Service PaaS Demo Accounts  (Community membership required)

·Java Cloud Service & Application Cloud Container Service & Mobile Cloud Service PaaS Demo Accounts(Community membership required)

Watch the GSE Overview Video!Get an overview of what GSE is and how you can use GSE to help you sell. You can also get long running dedicated PaaS instances, therefore please send us details about your use cases. For instant access please request a sandbox demo

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: PaaS,Cloud,ICS,PCS,PaaS4SaaS,SOA Community,Oracle SOA,Oracle BPM,OPN,Jürgen Kress

SOA & BPM Partner Community Webcast – June 28th 2016

0
0

What’s new in Integration Cloud Service? Your High Productivity Integration Platform in the Cloud

Attend our June edition of the SOA & BPM Partner Community Webcast live on June 28th at 16:00 CET.

During this session, we will be joined by Ramkumar Menon, the Product Manager for Oracle’s Integration Cloud Service (ICS). Ram will provide you an update on the latest on ICS, which now boasts more functional and connectivity capabilities than ever before - with support for Orchestration, Scheduling, File Movement, and more than 40+ Connectors to various SaaS and on-premises Applications and systems.

Over the past year, ICS has helped several organizations dramatically accelerate and improve the delivery of integration projects. Ram will also cover what’s coming on the roadmap, and what functional use-cases they will help you accomplish. For those who are new to Integration Cloud Service, ICS is the next-gen Integration Platform in the Cloud optimized for SaaS Integration, focuses on simplified user experience using an all-in-browser designer-monitoring dashboard, and focuses on simplifying the critical, costliest and time consuming aspects of integration, including Connectivity, Data Mapping, interface discovery and transaction tracking. 

Update Webcast - Oracle's Next Generation Database Appliance (VAR Session)

0
0

Join us for this OPN Update Webcast to hear all the updates since the “Next Generation Oracle Database Appliance” webcast on May 19th .

This is a Pre-Launch update –Launch is June 21st.

Call Logistics:

NAS/EMEA/LAD - Monday, June 20th @8:30 - 9:00 am PST
  • Session number: 259 580 924
  • Session password: Oracle123
  • Click to Join Training Session
  • Toll-Free: Dial in Numbers: US/Canada: 866-518-7391 International: 484-480-9149
  • Conf. ID: 26693271
JAPAC - Monday, June 20th @8:00 - 8:30 pm PST
  • Session number: 252 784 350
  • Session password: Oracle123
  • Click to Join Training Session
  • Toll-Free: Dial in Numbers: US/Canada: 866-518-7391 International: 484-480-9149
  • Conf. ID: 26697668 

FRIDAY SPOTLIGHT: Oracle is sponsoring Red Hat Summit on June 27-30

0
0

This year Oracle is silver sponsor at the Red Hat Summit 2016. With more than 420,000 customers and deployments in more than 145 countries, Oracle offers a comprehensive and fully integrated stack of cloud applications, infrastructure and services.

Next-generation cloud data centers require robust, secure and flexible infrastructure to support a huge variety of cloud applications and use cases, and developers need cutting-edge tools to create dynamic applications. Visit our booth #221 at Red Hat Summit to learn how Oracle Linux, OpenStack, Oracle VM, VirtualBox and Software Defined Networking products power the needs of the modern cloud data center, from development to deployment. 

Our engineers and experts will be there to answer your questions about Cloud, Linux, OpenStack and virtualization solutions from Oracle. Visit our Booth #221 at the exhibit hours of:

  • Tuesday June 28, 2016 11:00 AM - 1:30 PM and 4:30 PM - 7:30 PM
  • Wednesday June 29, 2016 11:00 AM - 1:30 PM and 4:30 PM - 7:30 PM
  • Thursday June 30, 2016 11:00 AM - 1:30 PM

We would like to also invite you to:

Session about cloud security:

Title:  Implementing Platform Security for Cloud Computing

Partner Pavilion Theater on Tuesday 6/28 at 7pm

Speaker:  Philip Morano,  Principal Sales Consultant 

See you at Red Hat Summit!

ECMAScript 6, Modules, Babel, Webpack, and NetBeans IDE

0
0

I've been talking about modularity via Require.js in enterprise JavaScript applications for some time (because Oracle JET bundles Require.js as its modularity solution). ECMAScript 6 provides its own built-in module system and, since NetBeans IDE now provides ECMAScript 6 support (in development builds), let's rewrite my Require.js application to use ECMAScript 6 modularity.

The complete sample discussed below is here:

https://github.com/GeertjanWielenga/RequireJSSamples/tree/master/ECMAScript6Sales

Handily, you can compare the ECMAScript 6 sample above to the Require.js implementation:

https://github.com/GeertjanWielenga/RequireJSSamples/tree/master/ModularSales

...as well as the non-modular Sales application:

https://github.com/GeertjanWielenga/RequireJSSamples/tree/master/SimpleSales

Here's 'main.js':

import { buyThing } from './buyer';
name = 'John Smith';
console.log(name + " enters the system");
var result = buyThing(name);
console.log("sale success " + result);

In NetBeans, the above looks as follows:

Take note that there's the "import" keyword above, enabling me to import "buyThing" from 'buyer.js', since here there's an "export" keyword:

import { verifyName } from './authenticator';
import { sendThing } from './thing';
import { sendApology } from './thing';
export function buyThing(name) {
console.log(name + " is trying to buy"); var verified = verifyName(name); if(verified){ sendThing(name); } else { sendApology(name); } return verified; }

In NetBeans, the above looks as follows:

Notice that there are three imports above, the first of which is for 'authenticator.js', which is below...

export function verifyName(name) {
    var requiredNameLength = 1;
    console.log("authenticating " + name);
    return name.length > requiredNameLength;
}

...and here's the above in NetBeans...

...and the other two are for for 'thing.js':

export function sendThing(name){
    console.log("send thing to " + name);
}
export function sendApology(name){
    console.log("say sorry to " + name);
}

Here's the above in NetBeans:

In my 'package.json', I'm using Babel and Webpack: 

"scripts": {
    "babel": "babel public_html/js/src --presets babel-preset-es2015 --out-dir public_html/js",
    "webpack": "webpack public_html/js/main.js public_html/js/bundle.js"
},
"devDependencies": {
  "babel-cli": "^6.10.1",
  "babel-preset-es2015": "^6.9.0",
  "webpack": "^1.8.5"
}

You'll now have this:

You can run "npm install" directly in NetBeans:

You can run Babel and Webpack directly in NetBeans:

When I run Babel, the JavaScript files are transpiled to ECMAScript 5, since that's what browsers support right now. When Webpack is used, the entire application is bundled into "bundle.js", which avoids problems with the "require" keyword that you get from Babel transpilation.

Now, I refer to that one single file, i.e., "bundle.js", that you see above, in my "index.html" file.

Related reading:

Structuring ECMAScript 6 Modules via Babel and Webpack

0
0

Continuing from yesterday, since transpilation of ECMAScript 6 to ECMAScript 5 is needed because of the current state of browsers, and we've chosen Babel for that, and since we're using Webpack to bundle our generated ECMAScript 5 files... what would be a logical way to structure our source code so that you can easily find the code with which you need to work?

Let me suggest the following entries in package.json:

"scripts": {
    "babel": "babel public_html/js/src --presets babel-preset-es2015 --out-dir public_html/js/gen",
    "webpack": "webpack public_html/js/gen/main.js public_html/js/bundle.js"
},

What the above gives you is this:

In the "gen" folder is the output of Babel. And 'bundle.js', in the root of the "js" folder, is the result of Webpack's bundling process. They're green above because I haven't (and won't) commit them into my repo, they're simply generated whenever I need them to be. And that's a clear structure and let's me easily see what's what.

Does anyone have other/different/complementary/conflicting ideas about this structure? 


My private Corner – Discover Portugal

0
0


clip_image002We will host the sixth edition of the Summer Camps again in Lisbon. This is your opportunity to discover the beautiful country. You can enjoy the beaches of Oeiras with your family, try a surfing lesson, visit the exiting city of Lisbon, go shopping or enjoy the wonderful seafood. Summer holiday season ends in August in Portugal. Go on a trip to the North to visit Porto and great vineyards in Douro valley. Or the Mediterranean beaches in the South – It is a great country. Or the trip is your goal like Carsten’s bike trip last year. See you in Lisbon #jkwc

OA & 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

Oracle Excellence Awards: Oracle Cloud Platform Innovation

0
0

clip_image002

Calling all Oracle Cloud Platform Innovators click here, to submit your nomination today

Call for Nominations:Oracle Cloud Platform Innovation 2016

Are your customers using Oracle Cloud Platform to deliver unique business value? If so, submit a nomination today for the 2016 Oracle Excellence Awards for Oracle Cloud Platform Innovation as their Oracle Sales Partner or encourage them to submit their own nomination. These highly coveted awards honor customers and their partners for their cutting-edge solutions using Oracle Cloud Platform. Winners are selected based on the uniqueness of their business case, business benefits, level of impact relative to the size of the organization, complexity and magnitude of implementation, and the originality of architecture.

Customer Winners receive a free pass to Oracle OpenWorld 2016 in San Francisco (September 18-September 22) and will be honored during a special event at OpenWorld.  Award Winners become great references as well!

Our 2016 Award Categories are:

Benefits:

  • Customers and partners receive awards in an Oscar style ceremony held at Yerba Buena Center of Arts during OOW. They feel acknowledged for their success with our products and winners receive a FREE OOW Pass
  • We hear about exciting new stories and invite customers to speak at various OOW sessions. Customers get a FREE OOW Pass
  • Nominator's get invited on stage at the OOW award ceremony and a special note sent out to their management chain to highlight their account's success
  • Great new public references come out of the Innovation Awards effort every year (however it is not required that customers agree to reference up front)

NOTE: The deadline to submit all nominations is 5pm Pacific on June 20th, 2016. Customers don't have to be in production to submit a nomination and nominations are for both Cloud and on-premise solutions. Click here, to submit your nomination today

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: Award,OFM Innovation Award,SOA Community,Oracle SOA,Oracle BPM,OPN,Jürgen Kress

Minor Upgrade? Going from 11.2.0.1 to 11.2.0.4?

0
0
My Belgium friend Phillipe Fierens raised a great question on Twitter last week and dropped me an email again after having a discussion with his client: For Phillipe and myself the answer is pretty clear and straight forward: There is no minor upgrade anymore since every (patch set) release is a full release... [Read More]

SOA & BPM Community Newsletter June 2016

0
0

Dear SOA & BPM Partner Community,

Oracle’s Fiscal year starts June 1st 2016 – Happy Birthday and thanks to you as a partner for another great year. We start the New Year with an update on the Oracle PaaS & Middleware Sales Plays. Make sure you attend our Webcast June 9th to get the latest information how you as a partner can sell more service, licenses and subscriptions.

Registration for our sixth edition of the PaaS & Fusion Middleware Summer Camps VI August 29th – September 2nd 2016 in Lisbon Portugal is open. Please read the registration page careful before you register. This year we offer five different hands-on training on PaaS & IaaS, Enterprise Connectivity (SOA), Mobile and Mobile Cloud Service, Java Cloud Services & WebLogic 12.2.1 and Internet of Things (IoT). Like all our past conferences we will be booked out soon –see you in Lisbon!

Stream Analytics (OSA) for SOA Suite 12c have been launched. A great opportunity to run an update workshop with your SOA Suite customer base, feel free to make use of the ISW material here (community membership required). Thanks to Guido for the great articles Stream Analytics (OSA): the new Oracle Stream Explorer and also thanks to Jose for the great article Tapping into life – An Introduction to Stream Analytics .

Part of the SOA Cloud section three ICS articles are published ICS: How to keep all data residing in your applications in sync?& ICS Security & ComplianceICS – How to use Upsert Operation, one Cloud Integration Part 4: Design Patterns and how to run SOA Suite on Amazon.

Thanks to the community for sharing all the SOA articles: Real-Time Integration Business Insight: External Dashboard& How Dev/Test in the cloud is accelerating delivery of Middleware projects& Converting ADLs to implement end to end JSON in SOA Suite 12.2.1 -PART I& Accepting Attachments into OSB, forwarding via JMS& Using Socket Adapter in Oracle Service Bus& Accessing the SOA 12c audit trail& SOA - Bypass payload validation when using Mediator& Purging Strategies in SOA Suite 12c& SOA Suite 12c Administrative Operations Series free online training series

The latest version Internet of Things 16.1.5 is available. At the community workspace you can find the latest customer presentations and request a free trail service. Additional IoT free on-demand trainings IoT - First Practical Experience and IoT Real Time Analytics: From Sensor Data to Business Value are available on-demand.

Jonathan Hult published an excellent Process Cloud Service roundup and Stefan Wörmcke released and excellent PCS free on-demand training & tutorial! Thanks to the community for sharing all the BPM articles E-Business Suite Month End Close Process& JD Edwards AP Processing& Integrating PCS, DOCS and BI Publisher using OSB/SOACS& Suppress Approval Controls in Oracle BPM – Hidden Workspace Feature& Restrict Reassignments in BPM& Using the Human Task identification key to set your own taskId with BPM (and BPEL)& BPM 12c: Browsing the SOAINFRA.

In our last section Architecture & PaaS4SaaS the UX team published a great articles about smart user experience & PaaS for SaaS and Sales Cloud UX.

In case you missed the Oracle OpenWorld call for papers, take the opportunity to submit an Innovation Award nomination. In case you attend the conference don’t miss your community reception on September 20th 2016. Or submit your paper for UKOUG Tech for details see the C4P wiki here.

For a short summery of our key monthly information watch the Fusion Middleware & PaaS Partner Updates on YouTube. The June edition of the Middleware Partner Update contains the wrap-up of the Summer Camps, Innovation Awards and the upcoming community webcast about Integration Cloud Service on June 28th.

As the Oracle fiscal year starts June 1st– thanks for the great partnership – looking forward to many new adventures!

To read the newsletter please visit http://tinyurl.com/SOAnewsJune2016  (OPN Account required)

Jürgen Kress

Fusion Middleware Partner Adoption
Oracle EMEA
Tel. +49 89 1430 1479
E-Mail: juergen.kress@oracle.com
clip_image003Blogclip_image004LinkedInclip_image005 Twitter

To become a member of the SOA Partner Community please register at http://www.oracle.com/goto/emea/soa (OPN account required) If you need support with your account please contact the Oracle Partner Business Center.

image

BlogTwitterLinkedInimage[7][2][2][2]Facebook

Technorati Tags: newsletter,SOA Community newsletter,SOA Community,Oracle,OPN,Jürgen Kress

Why is Java the Most Popular Programming Language?

0
0

Written by Nicole Fornacon, Director of OU Marketing, EMEA/APAC

The tech community recently celebrated the 20th anniversary of Java.

Java is one of the most widely adopted programming languages, used by some 9 million developers and running on 7 billion devices worldwide.

Grounded in readability and simplicity, Java has staying power since it has long-term compatibility, which ensures older applications continue to work now into the future. 

Since its inception in 1995, various versions of Java have been rolled out.

The TIOBE Programming Community Index, an indicator of the popularity of programming languages that's updated every month, is placing Java as #1 in its ranking for May 2016.

People use Java to develop serving side applications, video games, mobile applications and more. It's no surprise that Java jobs are readily available in the global job market. 

Demand for professionals with certified Java expertiseis expected to soar in the coming few years.

As Java's popularity reaches a new peak, Java developers are high in demand!

Their competency in coding language is priceless. Employers are readily searching for experienced industry professionals, while also hiring talented graduates at competitive starting salaries.

The ratings are based on the number of skilled engineers worldwide, courses and third party vendors.

Popular search engines such as Google, Bing, Yahoo!, Wikipedia, Amazon, YouTube and Baidu are used to calculate the ratings.

According to Computer Weekly's survey of Appointment and Trends, Java is the most favored skill in the IT recruitment market. 

Countless domestic & global IT companies, multinationals and other IT firms are constantly looking for people with Java skills.

To capitalize on this demand, Java developers need to keep polishing their skills to stay marketable. Keyboards for programming remain a popular way to increase programming efficiency.

If you’re interested in a fast-growing and lucrative career, consider investing time in learning the Java programming language. Oracle University can help!

Sources: tiobe.com, the-newshub.com, topprogramminglanguages.com

SPARC Solaris Virtualization ROCKS in SAS Analytics

0
0

A global life sciences company recently undertook a complete infrastructure refresh of its SAS Analytics environment to meet critical business requirements, such as industry compliance, scale for growth and resiliency for non-stop operations. Combining Oracle’s Solaris 11 OS with SPARC servers and ZFS Storage created a very flexible and powerful virtualization solution for this complex challenge.

The SPARC Solaris virtualization strategy enabled strict compliance to SAS licensing policy while allowing for prioritized resource allocations for memory, I/O, and network bandwidth – all without adding additional licensing and virtualization costs to the customer. 

Learn more.

SOA & BPM Partner Community Webcast June 28th 2016 What’s new in Integration Cloud Service? Your High Productivity Integration Platform in the Cloud

0
0

clip_image002

Attend our June edition of the SOA & BPM Partner Community Webcast live on June 28th at 16:00 CET.

What’s new in Integration Cloud Service? Your High Productivity Integration Platform in the Cloud

During this session, we will be joined by Ramkumar Menon, the Product Manager for Oracle’s Integration Cloud Service (ICS). Ram will provide you an update on the latest on ICS, which now boasts more functional and connectivity capabilities than ever before - with support for Orchestration, Scheduling, File Movement, and more than 40+ Connectors to various SaaS and on-premises Applications and systems. Over the past year, ICS has helped several organizations dramatically accelerate and improve the delivery of integration projects. Ram will also cover what’s coming on the roadmap, and what functional use-cases they will help you accomplish.

For those who are new to Integration Cloud Service, ICS is the next-gen Integration Platform in the Cloud optimized for SaaS Integration, focuses on simplified user experience using an all-in-browser designer-monitoring dashboard, and focuses on simplifying the critical, costliest and time consuming aspects of integration, including Connectivity, Data Mapping, interface discovery and transaction tracking.

Ramkumar Menon

clip_image003Principal Product Manager

LinedIn& Twitter

Twitter:  @ramkmeno

Visit the registration page here.

Call ID: 9139664 Call Passcode: 333111

Austria: +43 (0) 192 865 12
Belgium: +32 (0) 240 105 28
Denmark: +45 327 292 22
Finland: +358 (0) 923 193 923
France: +33 (0) 15760 2222
Germany: +49 (0) 692 222 161 06
Ireland: +353 (0) 124 756 50
Italy: +39 (0) 236 008 198

Netherlands: +31 (0) 207 143 543
Spain: +34 914 143 755
Sweden: +46 (0) 856 619 465
Switzerland: +41 (0) 445 804 003
UK: +44 (0) 208 118 1001
United States: 140 877 440 73
More Local Numbers

Schedule:

May 31st 2016 at 16:00-17:00 CET

Visit the registration page here.

Missed our SOA & BPM Partner Community Webcast? – watch the on-demand versions:

·Integration Strategy sales and marketing campaign update

·Microservices

·Stream Explorer

·Process Cloud Service V2

·SOA Suite 12.2.1

·Oracle OpenWorld 2015 update

·SOA & API Cloud Service

·Solutions Catalog & Cloud Marketplace

·GSE demo systems

·Hybrid sales plays

For the latest information please visit Community Updates Wiki page (SOA Community membership required).

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: Community Webcast,sales,marketing,SOA Community,Oracle SOA,Oracle BPM,OPN,Jürgen Kress


Tools and Methodology for Cloud

0
0

The Oracle Technology Network team invites you to attend the OTN Summit, an online event taking place July 12, 13 and 14, 2016. You will learn to create the next generation of  Java applications in the cloud with tools and methodologies from Oracle and Java community experts. Join us during one of three time zones: 

Americas July 12  - 9:30am to 1:00pm PT (Pacific Time, UTC -7) - Register Now 
EMEA July 13   - 9:30am to 1:00pm BST (British standard time, UTC +1) - Register Now
APAC – July 14 - 9:30am to 1:00pm IST (India Standard Time, UTC +5:30) - Register Now 

Inderjeet Singh, Executive Vice President, Fusion Middleware Development, will kick off the OTN Summit and discuss the Oracle Cloud based on questions from the Oracle Community. He will be followed by three technical sessions about application deployment including : 
  • How to Improve Your Java Development with Cloud based Agile and DevOps Platform by Shay Shmeltzer
  • Building Modern JavaScript Applications on Top of Java EE Backends by Geertjan Wielenga
  • The Pirates of DevOps: Delivering Software by Bruno Souza
Register now! Join this free and interactive event 

Oracle Data Integrator (ODI) 12.2.1.1.0 Now Available

0
0

Oracle Data Integrator 12.2.1.1.0 is now available!Please visit the ODI OTN page for downloads, documentation, related collateral and other useful links.

Take a look here for the latest details of this release – and read on for some highlights:

Hyperion Essbase and Hyperion Planning Knowledge Modules

Hyperion Essbase and Hyperion Planning Knowledge Modules have been made available out of the box with Oracle Data integrator and support the latest version (11.1.2.4) of these Hyperion Applications.

Integrated Capture/Delivery support in GoldenGate Knowledge Modules

The GoldenGate Journalization Knowledge Modules (JKMs) for Oracle databases have been updated and now support Integrated Capture and Delivery. This updated functionality can improve performance and provides better scalability and load balancing.

Support for Cubes and Dimensions
Core ETL – ELT enhancements have been made; where ODI now provides support for two types of dimensional objects: Cubes and Dimensions. Users can create and use Cubes and Dimensions objects directly in Mappings to improve developer productivity with out of the box patterns that automate the loading of dimensional objects.This also allows for improved Type 2 Slowly Changing Dimensions and brand new Type 3 Slowly Changing Dimensions support with ODI.


Big Data Configuration Wizard
A brand new Big Data Configuration wizard is now available in the ODI Studio Gallery and provides a single entry point to configure the Topology objects for Hadoop technologies such as Hadoop, Hive, Spark, Pig, Oozie, etc.

Let us know how you are using ODI – and try out this new version to keep up with what’s current!

New OA Framework 12.1 Release Update Pack 5 Now Available

0
0

Web-based content in Oracle E-Business Suite 12 runs on the Oracle Application Framework (OAF or "OA Framework") user interface libraries and infrastructure.   Since the release of Oracle E-Business Suite 12.1 in 2009, we have released several cumulative updates to Oracle Application Framework to fix performance, security, and stability issues. 

These updates are provided in cumulative Release Update Packs. "Cumulative" means that the latest Release Update Pack includes all of fixes released in previous RUPs. 

The fifth OAF update is now available:

    OAF 12.1 RUP 5

    Where is the documentation for this update?

    Instructions for installing this OAF Release Update Pack are here:

    Who should apply this patch?

    All EBS 12.1 users should apply this patch.  Future OAF patches for EBS 12.1 will require this patch as a prerequisite.

    What's new in this update?

    Over 70 updates to various OA Framework components are included in this Release Update Pack:

    • Bug 10007122 FRM-41058 ERROR OCCURS WITH CTRL+E KEYS WHEN THE CURSOR FOCUS IS ON THE BUTTON.
    • Bug 10057139 GSI: QUERY IN FND_GLOBAL CAUSES HIGH CPU/NODE CRASH DUE TO MUTEX WAIT
    • Bug 10078872 1OFF:10057139:GSI: QUERY IN FND_GLOBAL CAUSES HIGH CPU/NODE CRASH DUE TO MUTEX W
    • Bug 10192670 12.1.4:10192626 FORWARD PORT: BI 3.1.1.11 :GRAPH IS NOT WORKING ON 64 BIT LINUX
    • Bug 10196565 10112858 FORWARD PORT: VO SUBSTITUTION DISPLAY AFTER 'DISABLE SELF-SERVICE PERSO
    • Bug 10285481 GOING TO SOURCING HOME PAGE FROM FAVOURITES, CREATING A QUOTE CAUSING EXCEPTION
    • Bug 10335521 THE APPLICATIONS BACKGROUND TURNS COMPLETELY BLUE INTERMITTENTLY
    • Bug 10385406 CLASSCASTEXCEPTION OCCURED WHEN ADDING OAHEADERBEAN AS 1ST CHILD TO OAPAGELAYBEA
    • Bug 10390503 EBS 12.1.3 EXPORT TXT MIME TYPE CANNOT BE MAPPED FOR EXCEL
    • Bug 10435049 PEOPLE GROUP SEGMENTS BLANKED DURING UPDATE WHEN THOSE SEGMENTS NOT DISPLAYED
    • Bug 11059366 :RO:OAPAGECONTEXTIMPL.GETPARAMETERVALUES RETURNS MACED VALUES
    • Bug 11781531 NOT ABLE TO ADD HTTPS URL TO FAVORITES LINK IN 12.1.2. HTTP IS PRE-PENDED TO URL
    • Bug 11832737 FORWARD PORT OF 9908921 TO 12.1.3
    • Bug 11856365 CAN NOT OPEN FAVORITES LINKS IN NEW WINDOW FROM PREFERENCES PAGE
    • Bug 11879499 CREATION_DATE AND LAST_UPDATE_DATE ARE NOT CORRECT
    • Bug 11891959 FORWARD PORT OF BUG 9614874 TO 12.1.3
    • Bug 11924872 EMPTY SUB MENUS IN THE NEW TREE MODE NAVIGATOR ON HOMEPAGE (12.1.3)
    • Bug 12350371 UNABLE TO SEE LOGINPAGE PROBLEM 12.1.3
    • Bug 12424716 SAVE RESPONSIBILITY CONTEXT WHEN CREATING FAVORITES
    • Bug 12661140 12.1.3 :FAVORITES ADDED USING 'ADD TO FAVORITE' LOOSES MENU CONTEXT INFORMATION
    • Bug 12763903 PROBLEM OF FRENCH TRANSLATION - OAFSLIDEOUTMENU.JS ISSUE
    • Bug 12814546 SYMANTEC ICAP CLIENT ALWAYS THROWS JAVA.LANG.STRINGINDEXOUTOFBOUNDSEXCEPTION
    • Bug 12820394 MDS QUERY - PERFORMANCE ISSUE
    • Bug 12829410 INCORRECT REQUISITIONS SHOWN WHEN USING OA FAVORITES
    • Bug 12900897 PERFORMANCE ISSUE WITH PERSONALIZATION IMPORT EXPORT PAGE UNDER FUNCTIONAL ADMIN
    • Bug 13028359 VIRUS SCAN DOES NOT KICK IN AFTER THE ATTACHMENTS ARE ADDED
    • Bug 13033466 MOZILLA : COPY PASTING AND TYPING BEHAVE DIFFERENT IN RTE
    • Bug 13033815 AFTER APPLYING PATCHES :12654106 AND 11894708, TEXT STYLE CHANGED IN POPUPS
    • Bug 13038333 RO SEGEMENTS WHEN DEFAULTED ARE NOT STORING THE VALUES ON SUBMIT
    • Bug 13109125 ALT+TAB TO TOGGLE IN AND OUT OF APPS CAUSING O AND N TO ACTIVATE SLIDEMENU
    • Bug 13243104 ISSUE WITH EXCEL DRILLDOWN
    • Bug 13322060 PLANNING- FORECAST SCHEDULE LINK FAILS WITH JAVA ERROR MESSAGE
    • Bug 13340173 QUANTITY FIELD DOES NOT VALIDATE DECIMAL SEPARATOR
    • Bug 13402264 UNABLE TO CREATE QUERY CRITERIA MAP IN PERSONALIZATION
    • Bug 13549105 NEED FORWARD PORT PATCH FOR BUGS 13108282 AND 13373481 IN 12.1.3
    • Bug 13550248 YOU ARE TRYING TO ACCESS A PAGE THAT IS NO LONGER ACTIVE - MACCHECK SECURITY ERR
    • Bug 13555434 CANNOT IMPORT PERSONALIZATIONS USING FUNCTIONAL ADMINISTRATOR
    • Bug 13626261 POPUP THROWS EXCEPTION WHEN CHANGING RESPONSIBILITY IN CONTEXT SWITCHER
    • Bug 13691585 ENTITY CACHE NOT HONORED WHEN EO ACCESSED VIA AO
    • Bug 13710707 ($RO$) SUFFIX MAKES SEGMENT VALUES DISAPPEAR IN KFF LOV WINDOW RESULTS TABLE
    • Bug 13737406 HIJRAH DATE FORMAT ISSUE WHEN A DATE VALUE IS GETTING DEFAULTED
    • Bug 13738942 SUPPORT OPENING OF LOV WINDOW WHEN EXACT MATCH IS ALSO A PARTIAL MATCH
    • Bug 13822452 CONNECTION LOCKED IN OANAVIGATEPORTLETAM AFTER LOGIN WITH CONFIGURABLE HOME PAGE
    • Bug 13915163 RESPONSIBILITY ID NOT VISIBLE WHILE PERSONALIZING THROUGH FUNCTIONAL ADMINISTART
    • Bug 13919206 NEW BASE-DESKTOP.XSS CHANGES OAF DESIGN DUE TO 12350371
    • Bug 14071624 START PAGE PROFILE/PREFERENCES GETTING RESET
    • Bug 14343026 AM LEAK IN ICXFAVORITESAM AND OANAVIGATEPORTLETAM LEADING TO JDBC CONNECT LEAKS
    • Bug 14345705 THE NUMBER OF ERROR MESSAGE STACKED IN ARRAYLIST IS RESET FROM 10TH IN OAF
    • Bug 14365312 PROJECT INFORMATION NOT GETING SAVED IN IPROC
    • Bug 14467324 OADESCRIPTIVEFLEXBEAN REFERS INCORRECT SEGMENT LIST CORRESPONDING TO THE CONTEXT
    • Bug 14550047 1OFF: R12.1.4 CONSOLIDATED PATCH FOR CORE FLEXJ FLEXFIELD FILES STANDALONE
    • Bug 14634957 DYNAMIC POPLIST DID NOT GET REFRESHED ON PPR EVENT
    • Bug 14644892 7505198 - PERFORMANCE ISSUE WHILE ENTERING CHARGE ACCOUNT IN REQUISITION PAGE IN
    • Bug 14682009 HIGH DATA (HTML) TRANSFER OVER NETWORK ON PAGE RENDERING AND PPR
    • Bug 14759713 NOT RE-NEW CONTEXT WHEN CREATING FAVORITES BY "ADD TO FAVORITES"
    • Bug 14780941 DUPLICATE EXECUTION OF SAVED SERACH RESULTING IN PERF ISSUE
    • Bug 14830586 MOVING ITEMS IN THE MANAGE FAVORITES PAGE SENDS USER TO LAST PAGE AFTER MOVE
    • Bug 15828154 13933688: IPRO SHOPPING CART PAGE CONSUMES HUGE HEAP MEMORY AND USER CAN'T CONTI
    • Bug 15929270 LOV WINDOW COMING UP AFTER SELECTING THE VALUE FROM LOOKAHEAD LOV
    • Bug 16675890 HIDDEN REQUIRED FLEX SEGMENT NOT DEFAULT
    • Bug 16753850 RINNING IN ISSUE WITH ... IS NOT A DATE FORMATTED AS
    • Bug 17032279 ITEMS IN R12 HOMEPAGE FAVOURITES DROP DOWN MENU MISSING AFTER UPGRADE
    • Bug 17245992 WRONG VALUE POPULATED ONCE SELECTION THROUGH AHEAD LOV IS MADE
    • Bug 17308202 TRANSLATION ISSUE IN POPUP TITLE
    • Bug 17344496 PERSONALIZED VIEW IN BUYER WORK CENTER COPIES VALUE TO OTHER VIEWS WHEN CREATING
    • Bug 17351418 IMPROPER HANDLING OF EXCEPTIONS SENT ON LOV INVALIDATION
    • Bug 17385100 "UPDATE ATTACHMENT" POP-UP IN THE BWC DOES NOT FULLY UPDATE THE ATTACHMENT CATEG
    • Bug 17418969 NLS: HOVER TEXTS EXPAND/COLLAPSE OF RESPONSIBILITY TREE VIEW ARE HARDCODED
    • Bug 17458320 NLS: HARDCODED HOVER TEXT FOR RESPONSIBILITY/PAGE PULLDOWN IN PREFERENCES PAGE
    • Bug 17472133 HOVER TEXT "CLOSE POPUP" IS UNTRANSLATED
    • Bug 17548019 R12 HOMEPAGE "-" MINUS SIGNS NEXT TO RESPONSIBILITY HAVING ONE MENU ISSUE
    • Bug 17618077 IE10 COMPATIBILITY PATCH AND FIX FOR R: AFTER 9773527, NEW BLANK ROW AUTO-ADDED
    • Bug 17659762 "WARNING QUERY HAS EXCEEDED 100 ROW ; "FND: VIEW OBJECT MAX FETCH SIZE"
    • Bug 17811126 ADDRESS VALIDATION/SUGGESTION BOX DOES NOT WHEN DFF ENABLED
    • Bug 17842417 MENUS WITH GRANT DISABLED AT MENU AND FUNCTION LEVEL ARE VISIBLE ON LOGIN PAGE
    • Bug 17857284 ABOUT THIS PAGE DOES NOT SHOW ANYTHING

    Related Articles

      Oracle GoldenGate Studio 12.2.1.1.0 Release is Available

      0
      0

      Oracle GoldenGate Studio (OGGS) 12.2.1.1.0 is released on June 21st, 2016. You can now download the software from OTN and eDelivery. This is the second release after we launched the OGGS at the start of this calendar year. In this release, we have certified two new heterogeneous databases (MySQL and Microsoft SQL Server) that you can use to design and deploy in high-volume, real-time database replication.

      Key Features

      • Design and deploy high-volume, real-time replication across heterogeneous platforms in just a few clicks
      • Best practice solution templates and wizards
      • Automap tables and drag and drop custom maps
      • Deploy the same solution to multiple locations
      • Monitor active deployments with many monitoring points and track deployment history
      • Refresh the metadata in mapping editor

      You can refer GoldenGate Studio 12.2.1.1 Data Sheet  for brief information about Studio, new features and benefits. The detailed information can be read from Oracle GoldenGate Studio 12.2 documentation.

      Hope to see you guys using new Studio release. Feel free to reach out to me for your queries by posting in this blog or tweeting @nisharsoneji

      Oracle Cloud Platform & Middleware Partner Sales Plays on-demand Webcast

      0
      0

      Oracle EMEA Partner SalesJune 2016


      Oracle Cloud Platform & Middleware Partner Sales Plays on-demand Webcast



      Oracle Invitation


      Want to increase the PaaS & Middleware Oracle business? Create new service offerings and solutions for the Cloud?

      Dear Partner,

      FY17 Oracle Cloud Platform (PaaS and IaaS) & Middleware sales plays bring new opportunities to you as a partner:

      »System Integrators: generate consulting revenue with hybrid PaaS, IaaS& Middleware
      »Outsourcing companies: offer private and hybrid cloud solutions
      »Independent Software Vendors: build solutions based on PaaS, IaaS & middleware
      »SaaS partners: Extend, integrate and secure SaaS solutions with PaaS
      »Hardwarepartners: Combine hardware with PaaS and IaaS to increase margins

      Watch our on-demand Webcast and get all the details about FY17 Oracle Cloud Platform & Middleware Sales Plays.

      Register









      LogisticsLogistics

      Calendar Community registration


      Free for OPN Partners


      Webcast Webcast Details


      Register Now



      Icon Get in Touch


      Jürgen Kress
      Oracle EMEA







      SpeakersSpakers

      Ed Zou's Profile Photo


      Ed Zou
      Vice President Product Management, Oracle Cooperation


      Jürgen Kress


      Jürgen Kress
      PaaS & Fusion Middleware Partner Adoption, Oracle EMEA








      For Partner Community members the presentation and
      FY17 PaaS & Middleware Sales kits are available.

      SOA & BPM Partner Community: Sales Kit FY17 PaaS (membership required)

      WebLogic & Developer Partner Community: Sales Kit FY17 PaaS (membership required)

      Note: Sales kits will be updated in the next week with details and customer presentations.



      PaaS & Middleware Partner Communities

      The free PaaS & Middleware Partner Communities support you to grow your partner business:

      • Sales: Sales kits with cheat sheet & customer ppt presentations
      • Marketing: Marketing kits with campaign material & services
      • Pre-Sales: Free PaaS & middleware trial services & demos
      • Enablement: training calendar & material and certifications

      Register for the Partner Communities here




      ResourcesResources



      SOA on OPNBlue Arrow






      SOA Community WebsiteBlue Arrow






      SOA Community
      Blog
      Blue Arrow






      SOA TwitterBlue Arrow






      SOA on LinkedInBlue Arrow






      SOA FacebookBlue Arrow






      PaaS Summer Camps

      Image






      Video

      Image









      Oracle Corporation
      FacebookTwitterLinkedInYoutubeGoogle+Blog

      Integrated Cloud



      Viewing all 19780 articles
      Browse latest View live




      Latest Images