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

JDK 8u131, 7u141, and 6u151 Released!


Java Coding and Concepts MOOC

$
0
0
https://apexapps.oracle.com/pls/apex/f?p=44785:149:0::::P149_EVENT_ID:5448

We are pleased to announce that enrollment is open for our newest Oracle Massive Open Online Course (MOOC): Java Coding and Concepts.

The course starts April 27th! Enrollment is free!

Enroll

Do work with code periodically, but program by hacking other people's code? Are you new to programming and want to develop a deep understanding of key Java programming concepts without falling asleep in class? Would you like to see how Oracle cloud technology can accommodate the development needs of a project? If so, you may find this MOOC very helpful!

This is our first MOOC designed for a foundations-level audience. It employs a game-based learning methodology to build your understanding and prepares you to think through coding problems far better than traditional lecturing. You'll learn key Java programming concepts, go behind the scenes to understand development practices, and apply your knowledege to coding labs. This course starts April 27th, and is short - just 4 weeks. But you will learn a lot, including:

  • Object Oriented Thinking and Class Design
  • Static vs Instance Variables
  • Inheritance
  • Lambda Expressions

So click the Enroll button - read the full description of the course and watch the video - and we'll see you on April 27th!

Oracle Critical Patch Update for April 2017 Released

$
0
0

The Critical Patch Update for April 2017 was released on April 18th, 2017.
Oracle strongly recommends applying the patches as soon as possible.

The Critical Patch Update Advisory is the starting point for relevant information. It includes the list of products affected, pointers to obtain the patches, a summary of the security vulnerabilities for each product suite, and links to other important documents. Supported products that are not listed in the "Affected Products and Components" section of the advisory do not require new patches to be applied.

Also, it is essential to review the Critical Patch Update supporting documentation referenced in the Advisory before applying patches, as this is where you can find important pertinent information.

Critical Patch Update Advisories are available at the following location:

Oracle Technology Network:
http://www.oracle.com/technetwork/topics/security/alerts-086861.html

The Critical Patch Update Advisory for April 2017 is available at the following location:

Oracle Technology Network:
http://www.oracle.com/technetwork/security-advisory/cpuapr2017-3236618.html

Important information can also be found at:
https://blogs.oracle.com/security/

The next four dates for Critical Patch Updates are:

  • July 18, 2017
  • October 17, 2017
  • January 16, 2018
  • April 17, 2018

Oracle Cloud April update - Visibility into New SaaS functionality

$
0
0

Major releases are the primary vehicle for delivering new product functionality to the SaaS fleet. In addition, the SaaS fleet receives a monthly update. Monthly updates address product issues discovered mid-release. But they can also serve as a vehicle for delivering "new features". The purpose of this communication is to provide visibility into new and enhanced functionality that is delivered off-cycle via monthly updates.

Review these specific announcements:

GI 中新的基础架构 --MDNS, gipc 和 gpnp 是如何协同工作的

$
0
0

  最近一直有朋友来询问oracle 的集群管理软件从11.2 这个版本开始开始出现的新的组件mdns, gipc, gpnp 是做什么的,以及他们是如何协调工作的。所以就花了时间写了这篇文章来解释一下这些新组件的基本功能和它们之间是如何协同工作的。


  首先来回顾一下历史。对于10g版本的oracle 集群管理软件(CRS),当集群启动的时候,集群节点的列表和每个节点的公网地址,私网地址是可以从OCR当中获得的,而且如果集群包含多块私有网卡的话,是需要依赖于OS层面的网卡绑定软件(例如:linux bonding)的,也就是说集群的私网网卡数量是对CRS透明的,集群只需要知道经过聚合之后的网卡名称就可以了。


  但是,在11.2 这个版本开始,oracle的集群管理软件(GI)开始需要自己来管理集群的网卡,也就是说GI要能够管理多块私网网卡;另外,由于集群启动的流程发生了改变,OLR的出现改变了11.2 集群启动的行为,OCR在集群最初启动时不再被使用了,而完全变成了集群应用资源层的一个注册表(registry)。所以,就需要一些组件来完成节点发现,集群节点列表构建的工作(这部分信息在10.2中都是在OCR中写好的)。所以,就出现了:


1.mdns:这个组件以mdmsd.bin 的方式出现,他负责在集群启动时找到本地节点集群需要使用的所有网卡,以便为节点发现提供基本的网络通信功能。


2.gpnpd:这个组件以gpnpd.bin 的方式出现,它通过维护gpnpd profile 的方式把构建集群所需要的核心信息在节点之间进行同步。当然,这种信息同步的过程是需要借助mdns来实现的。具体说,gpnpd再启动之后会:


步骤1:读取本地的gpnp profile得到构建集群的核心信息。


步骤2:和mdns进行通行,通过mdns发现的网卡向网络中发送消息,找到集群中的其他节点。


步骤3:和其他的节点建立链接,同步彼此的gpnp profile 文件。


    注意:详细的gpnpd 的功能,请参考之前的文章“11gR2新特性---Gpnp守护进程


     当gpnp 正常启动成功之后,实际上节点发现,集群节点列表构建的工作就结束了


   3.gipc:这部分功能是以gipcd.bin 的方式出现的,它负责管理集群中节点的私网网卡。并建立节点和节点之间通过私网的点对点通信。它相当于gpnp 的一个重要客户,因为集群的核心信息是要通过gpnp来提供的。关于gipc的详细功能,请参考我之前的文章“11gR2新特性---gipc守护进程”。


  通过上面的三个组件,就可以完成节点发现,集群节点列表构建的工作,以及管理节点私有网络的工作。而这种设计的另外一个好处在于,它能够使集群的结构更加的灵活和有弹性。如果简单的解释着三个组件的关系的话,可以认为,Mdns gpnp 提供了网络通信服务, gpnp相当于mdns的客户;gpnp相当于集群的其他上层资源的一个服务组件,它能够向集群的其它组件提供集群的基本核心信息。gipc相当于gpnpd的一个重要客户,它负责管理集群节点的私有网络。


  望这篇文章对于大家理解这三个11.2新出现的组件有所帮助。

Cloud-Native DevOps workshop

$
0
0

image


Introduction

Oracle Cloud is the industry’s broadest and most integrated public cloud. It offers best-in-class services across software as a service (SaaS), platform as a service (PaaS), and infrastructure as a service (IaaS), and even lets you put Oracle Cloud in your own data center. Oracle Cloud helps organizations drive innovation and business transformation by increasing business agility, lowering costs, and reducing IT complexity. The workshop content shows different aspects of Application Development in the cloud with different set of Oracle Cloud Services.

Prerequisites

The workshop is intended to work with an Oracle PaaS trial account. To get an account look into here. Get the following account details ready to complete the tutorial and replace to your values when it is required:

  • Oracle Cloud account username and password
  • Oracle Cloud identity domain
  • Data center/region

NOTE: Before you start to use your new Oracle Public Cloud services make sure that the replication policy has been set for your account. Otherwise you can not create storage container which is necessary for most of the services. See Selecting a Replication Policy for Oracle Storage Cloud Service.

Important

During the execution you will create several public cloud service instances what will be available on the world wide web. Even if these instances are for demo purposes keep in mind it is not a best practice to use weak or known (stored here in the tutorial) passwords especially in such open environment. Thus this workshop content does not recommend any password so you need to define those. You will be asked to provide password at certain points and please remember them for later usage.

The content contains several independent modules that cover different aspects of the application development in the Oracle Cloud. These modules could be executed independently unless you find in the Prerequisites that they are dependent on each other.


Support SpringBoot application development lifecycle using Oracle Developer Cloud Service, Application Container Cloud Service and Oracle Enterprise Pack For Eclipse

Get the workshop material here.


WebLogic Partner Community

For regular information become a member in the WebLogic Partner Community please visit: http://www.oracle.com/partners/goto/wls-emea ( OPN account required). If you need support with your account please contact the Oracle Partner Business Center.

BlogTwitterLinkedInForumWiki

Technorati Tags: WebLogic Community,Oracle,OPN,Jürgen Kress

SOA & BPM Partner Community Webcast – April 25th 2017 Drive DevOps Agility and Operational Efficiency with Oracle Management Cloud

$
0
0

image

Attend our April editionof the SOA & BPM Partner Community Webcast live on April 25th 2017 at 16:00 CET.

Drive DevOps Agility and Operational Efficiency with Oracle Management Cloud
Calling all DevOps Enthusiasts! Oracle Management Cloud is now providing the industry’s most complete cloud –based application and systems management solutions. It enables all  DevOps stakeholders – whether in IT Operations, Development, Support or the line-of-business to play an active part in understanding and optimizing customer experience and operational efficiency for their heterogeneous application environments. In this session we will discuss the benefits of a unified IT Operations big data platform as well as the latest additions to our family of cloud services including infrastructure monitoring, orchestration, compliance monitoring, and security monitoring and analytics.

Jurgen Leijer Blog & LinkedIn& Twitter

imageVisit the registration page here.

Call ID: 5566478 Call Passcode: 333111 and WebEx Session Number: 592211973

UK: +44 (0) 208 118 1001 & United States: 140 877 440 73

More Local Numbers


Schedule:

April 25th 2017 at 16:00-17:00 CET

Visit the registration page here.

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

·Implementing DevOps and Agile Methodologies in Oracle Projects March 21st 2017

·Mobile Cloud Service & Chat Bots February 28th 2017

·b2b January 31st 2017

·Community Resources & free Cloud trails December 20th 2016

·SOA 12 & BPM Suite 12c Roadmap update November 29th 2016

·Microservices October 25th 2016

·Oracle OpenWorld 2016 update September 27th 2016

·API Cloud Platform Service August 30th 2016

·BPM Suite & PCS Update July 26th 2016

·Integration Cloud Service June 28th 2016

·Sales Plays Webcast June 9th 2016

·Real-Time Integration Business Insight May 31st 2016

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

Oracle Critical Patch Update for April 2017 Released

$
0
0

The Critical Patch Update for April 2017 was released on April 18th, 2017.
Oracle strongly recommends applying the patches as soon as possible.

The Critical Patch Update Advisory is the starting point for relevant information. It includes the list of products affected, pointers to obtain the patches, a summary of the security vulnerabilities for each product suite, and links to other important documents. Supported products that are not listed in the "Affected Products and Components" section of the advisory do not require new patches to be applied.

Also, it is essential to review the Critical Patch Update supporting documentation referenced in the Advisory before applying patches, as this is where you can find important pertinent information.

Critical Patch Update Advisories are available at the following location:

Oracle Technology Network:
http://www.oracle.com/technetwork/topics/security/alerts-086861.html

The Critical Patch Update Advisory for April 2017 is available at the following location:

Oracle Technology Network:
http://www.oracle.com/technetwork/security-advisory/cpuapr2017-3236618.html

Important information can also be found at:
https://blogs.oracle.com/security/

The next four dates for Critical Patch Updates are:

  • July 18, 2017
  • October 17, 2017
  • January 16, 2018
  • April 17, 2018

Apr 2017 Exalogic PSUs released

$
0
0

Apr 2017 PSU's for Exalogic have been released. These PSUs are applicable to X2-2, X3-2, X4-2 and X5-2 racks.

Please refer to the following MOS Docs for detailed information.

- Exalogic Patch Set Update (PSU) Release 2.0.6.2.170418 (Linux - Physical) for April 2017 (Doc ID 2251393.1)

- Exalogic Patch Set Update (PSU) Release 2.0.6.2.170418 (Solaris - Physical) for April 2017 (Doc ID 2251394.1)

- Exalogic Patch Set Update (PSU) Release 2.0.6.2.170418 (Linux - Virtual) for April 2017 (Doc ID 2251415.1)

- Exalogic Infrastructure Apr 2017 PSU – Fixed Bugs List (Doc ID 2251392.1)

The Master Note for all Exalogic PSU's is Doc ID 1314535.1

Bundle Patch Update: Oracle WebCenter Content 11.1.1.9.170418 has been released!

$
0
0
A Bundle Patch Update for Oracle WebCenter Content 11.1.1.9.x has been released.

This Bundle Patch is available from the My Oracle Support | Patches & Updates section.

Oracle WebCenter Content 11.1.1.9.170418
Patch 25751735

Supported Platforms:

See Oracle Fusion Middleware Supported System Configurations

Bugs Resolved by This Patch:

  • 25828710 - R13 SMC: ERROR LOADING JMS/CSJMSMODULE-JMS.XML
  • 25828193 - SET JMSPUBLISHER TRACE SECTION TO "REFINERY" IN INBOUNDREFINERY COMPONENTS
  • 16681273 - BAD ERROR MESSAGE WHEN DELETING WORKFLOW ITEM FROM WITHIN FRAMEWORK FOLDERS
  • 25563617 - POSTCONVERSION CLEANUP DOES NOT REMOVE TEMPDIR DURING JMS IBR CONVERSION
  • 25729754 - UCM SUPPORT A INTRADOCSOCKET IN SMC SCALE-UP MODE DURING TRANSITION
  • 25584960 - PREVENT APPDATADIRECTORY MIGRATION FROM OVERWRITING EXISTING STATE
  • 25367694 - PLEASE PROVIDE A PLUGIN FOR JMS RE-TARGETING FROM UCM FOR SCALE-OUT
  • 25134738 - REMOVE CRM VIRUSSCANFILTER COMPONENT AUTOMATICALLY IN REL12+
  • 24848007 - FA DBCONFIG - SERVICE TO COPY FILES TO/FROM DBCONFIG
  • 23343741 - ORA-12899 THROWN WHEN SETTING UP NEW SERVER WITH PRE-EXISTING BOOTSTRAP FILE
  • 25645845 - SEARCHES ARE NOT ACCURATE WITH CONFIG OTSSORTFIELDS=DDOCNAME,DDOCTITLE,DDOCAUTHO
  • 25640949 - TAKE THE JMS BEANS OUT OF CS/IBR EAR FILES
  • 21385638 - MESSAGE IN ERROR DIALOG DOES NOT WRAP PROPERLY

                  Review the Read Mefile prior to proceeding with this Bundle Patch implementation for important information that includes a full list of the defects fixed, along with additional support information, prerequisites, details for applying patch.

                  It is important to ensure that the requirements and support paths to this patch are met as outlined within the Readme file. The Readme file is available from the Patches & Updates download screen.

                  To locate the latest Bundle Patch Updates for the WebCenter Content products visit the My Oracle Support (MOS) Knowledge Article:

                  Available Bundle Patches for
                  Oracle WebCenter Content

                  Doc ID 1509747.1

                  To share your experience about installing this patch ...

                  In the MOS | Patches & Updates screen for Oracle WebCenter ContentPatch 25751735 - click the "Start a Discussion" and submit your review.

                  The patch install reviews and other patch related information is available within the My Oracle Support Communities. Visit the Patch Reviews - Middleware sub-space:

                  Patch Reviews - Middleware

                  For other Oracle WebCenter Content questions and assistance visit the My Oracle Support Community:

                  Oracle WebCenter Content

                  Advisor Webcast: Setup & Troubleshooting Strategies in Oracle Advanced Collections

                  $
                  0
                  0

                  Webcast_icon.jpgSetup & Troubleshooting Strategies in Oracle Advanced Collections


                  Date: April 27, 2017 10 am ET, 7 am PT, 4 pm CET, 7:30 pm IST


                  This one-hour Advisor Webcast is recommended for Advanced Collections users who would like to learn more about how to setup and troubleshoot Strategies in Oracle Advanced Collections.

                  Topics will include:

                  • How to setup Strategies
                  • Troubleshooting tips on Strategies issues
                  • Q&A

                  REGISTER.jpg
                  Details & Registration via the My Oracle Support Community thread:  Advisor Webast: 27-APR-2017: Setup & Troubleshooting Strategies in Oracle Advanced Collections

                  Training On Demand for EMEA partners: Oracle Service Cloud, May 2017

                  $
                  0
                  0
                  The Oracle Service Cloud (RightNow) Implementation Camp was created to enable partners with the implementation tools and methodologies required to implement solutions to their clients with an advanced level of understanding of the technology, its features and its market preparedness. The course will cover a wide range of topics to give each student a basis of understanding of the product. Each student will learn the key points in each topic area, and will learn how the product should be configured and implemented in various different situations.

                  By the end of the boot camp each student should be able to design, and implement a RightNow CX environment in many different markets and scenarios. Each student will complete the course with a level of understanding which will allow them prepare to take and pass the Oracle RightNow CX Cloud Service certification exam in the future.

                  This bootcamp is made available to registered participants only and must be consumed between May 1st and 26th.

                  See details, prerequisites and registration page here.

                  Live Twitter Chat on Headless CMS – Tomorrow!

                  $
                  0
                  0

                  You are invited! Have you heard the term "headless CMS" going around? Decoupled/headless CMS architecture is rising in popularity in the development world and we want to hear from you! If you have something to say about headless CMS or WCM, if you have questions on this topics, if you have experience working with coupled or decoupled CMS or WCM, if you've been following the discussions on this topic or if you are just interested in trying a Twitter Chat out for the first time, we invite you to participate in the live Twitter conversation on "Is headless CMS signaling the end of WCM?" @oraclewebcenter will be kicking off the live Twitter Chat on Thursday, April 20 at 10:00am PT / 1:00pm ET, and we hope to hear from you!

                  The live Twitter Chat would run about an hour long, and we look to have a meaningful conversation on the topic. So, if you have a Twitter handle, we encourage you to participate in the live discussion. Join or simply follow along using hashtag: #contentdgtl

                  And, if you have questions in mind, simply send those to us @oraclewebcenter and we will do our best to include or have those addressed by the Digital Experience community.

                  So, mark your calendar and please join us!

                  Live Twitter Chat
                  • Topic: Is headless CMS signaling the end of WCM? 
                  • Date: Thursday, April 20 (tomorrow!)
                  • Time: 10:00am PT / 1:00pm ET
                  • Hashtag: #contentdgtl
                  • Host: @oraclewebcenter
                  We will archive and post the discussion shortly after the live event. Talk to you soon!

                  Oracle Critical Patch Update for April 2017 Released

                  $
                  0
                  0

                  The Critical Patch Update for April 2017 was released on April 18th, 2017.
                  Oracle strongly recommends applying the patches as soon as possible.

                  The Critical Patch Update Advisory is the starting point for relevant information. It includes the list of products affected, pointers to obtain the patches, a summary of the security vulnerabilities for each product suite, and links to other important documents. Supported products that are not listed in the "Affected Products and Components" section of the advisory do not require new patches to be applied.

                  Also, it is essential to review the Critical Patch Update supporting documentation referenced in the Advisory before applying patches, as this is where you can find important pertinent information.

                  Critical Patch Update Advisories are available at the following location:

                  Oracle Technology Network:
                  http://www.oracle.com/technetwork/topics/security/alerts-086861.html

                  The Critical Patch Update Advisory for April 2017 is available at the following location:

                  Oracle Technology Network:
                  http://www.oracle.com/technetwork/security-advisory/cpuapr2017-3236618.html

                  Important information can also be found at:
                  https://blogs.oracle.com/security/

                  The next four dates for Critical Patch Updates are:

                  • July 18, 2017
                  • October 17, 2017
                  • January 16, 2018
                  • April 17, 2018

                  Why Partners like Essbase

                  $
                  0
                  0

                  Essbase ("Extended Spread Sheet dataBASE") helps you extend and differentiate your analytics solutions: especially for existing Oracle BI partners and using the new Oracle Analytics Cloud with Essbase.

                  Most analytics tools are essentially “Read-Only”– that is why Excel is so popular, because it lets you input data, work on it with formulae, and then analyse it. But, spreadsheets are essentially 2-dimensional (row-column) and single user. People often try to collaborate with spreadsheets via email, but most would acknowledge this is a messy and error prone approach.

                  So imagine you could have a multi-user spreadsheet, which is also multi-dimensional (e.g. time, sales-channel, product, customer-segment, accounting-code… etc), and can hold huge amounts of data – which was also easy to use and access with analytics tools such as Oracle BI,Data Visualisation, Excel and Smart-View.

                  That is Essbase: it un-leashes business people from the limitations of spreadsheets and enriches any analytics application with Workflowto collaborate with 100s or 1000s of people entering new analytic data, forecasting, modeling multiple assumptions and What-if-Analyses to better understandthe effect of decisions on the business. For example, that is why Essbase is the foundation for our pre-built Planning and Budgeting application.

                  To learn more, take a look at:


                  Bundle Patch Updates for Oracle WebCenter Content 12c have been released!

                  $
                  0
                  0
                  The first Bundle Patch Updates for Oracle WebCenter Content 12.2.1.2.0, 12.2.1.1.0 and 12.2.1.0.0 have been released.

                  These Bundle Patches are available from the My Oracle Support | Patches & Updates section.

                  Supported Platforms: See Oracle Fusion Middleware Supported System Configurations

                  Oracle WebCenter Content 12.2.1.2.170418
                  Patch 25694492

                  Bugs Resolved by This Patch:

                  • 23753742: Checkin Not Working With DCL
                  • 25635957: csSystemCodeExecutionError NullPointerException NPE at AfSecurityFilter.java:491
                  • 25366579: Connection error to access WEBDAV folders using DIS
                  • 24907596: Fix for Bug 24907596
                  • 25528107: Slow performance from VCR_GET_CONTENT_TYPES when IPM components are enabled
                  • 24340936: Query when migrating Folders_g to FrameworkFolders causes performance issues
                  • 17301225: ILLEGAL MESSAGE ERROR WHEN LOCALIZING VIA BLFIELDTYPES=DPDISPLAYLABEL MESSAGE
                  • 24786709: Even with DrillDownFields the ADF UI is not able to order the filter by Category
                  • 25245180: Managed Attachments functionality breakage

                                  Review the Read Mefile prior to proceeding with this Bundle Patch implementation for important information that includes a full list of the defects fixed, along with additional support information, prerequisites, details for applying patch.

                                  It is important to ensure that the requirements and support paths to this patch are met as outlined within the Readme file. The Readme file is available from the Patches & Updates download screen.

                                  Oracle WebCenter Content 12.2.1.1.170418
                                  Patch 25699709


                                  Bugs Resolved by This Patch:

                                  • 23753742: Checkin Not Working With DCL
                                  • 25635957: csSystemCodeExecutionError NullPointerException NPE at AfSecurityFilter.java:491
                                  • 23233003: csIndexerMetaOnlyFailed when import/export expired content with DB 12.1.0.2.0
                                  • 24340936: Query when migrating Folders_g to FrameworkFolders causes performance issues
                                  • 24907596: Fix for Bug 24907596
                                  • 23421391: Unable to upload CMU bundle due to csCmuZipInvalidFile error
                                  • 24786709: Even with DrillDownFields the ADF UI is not able to order the filter by Category
                                  • 23175860: Search Results sorting is not updated consistently after Custom Metadata Update
                                  • 24607305: My URLs in the Native UI fails with a http 404

                                  Review the Read Me%20id=">%20id=">%20id=">%20id=">%20id=">%20id=">%20id=">file prior to proceeding with this Bundle Patch implementation for important information that includes a full list of the defects fixed, along with additional support information, prerequisites, details for applying patch.

                                  It is important to ensure that the requirements and support paths to this patch are met as outlined within the Readme file. The Readme file is available from the Patches & Updates download screen.

                                  Oracle WebCenter Content 12.2.1.0.170418
                                  Patch 25671649


                                  Bugs Resolved by This Patch:

                                  • 21089981: Removing a field and add a creating a new field with same name causes error
                                  • 22293302: RELEASE DATE DEFAULTING TO ORIGINAL RELEASE DATE WHEN USING DIS OR SS
                                  • 23753742: Checkin Not Working With DCL
                                  • 22915251: Due To The Invalid Date Format, Can't Make The New Revision Docs Via The DIS.
                                  • 21522198: FFolders browse popup causes form to lose loaded value for metadata
                                  • 21442982: Content Folio Buttons/ Actions Do Not Work in IE 8, even with Compatibility mode
                                  • 20743427: DEP80:Doc & Folder not getting listed once UCM account limit is reached
                                  • 24907596: Fix for Bug 24907596
                                  • 23421391: Unable to upload CMU bundle due to csCmuZipInvalidFile error
                                  • 22550865: Doc with XRegionDefinition="idcnull" vs. "IDCNULL" sends different response
                                  • 22278477: Require white-list feature to selectively enable display of CS page in iFrame
                                  • 21077631: Unable to update portal in web layout editor
                                  • 21644673: Extensive access to pne file during checkins
                                  • 24607305: My URLs in the Native UI fails with a http 404
                                  • 22293656: Auto Disposition Actions Not Approved During Nightly Batch services.
                                  • 22174265: Unable to export content with MS SQL DB using SQL_Latin1_General_CP1_CS_AS
                                  • 22854024: CC-ADF-11401: Error executing WebCenter Content service 'GET_DISPLAY_FIELDS'

                                  Review the Read Mefile prior to proceeding with this Bundle Patch implementation for important information that includes a full list of the defects fixed, along with additional support information, prerequisites, details for applying patch.

                                  It is important to ensure that the requirements and support paths to this patch are met as outlined within the Readme file. The Readme file is available from the Patches & Updates download screen.

                                  To locate the latest Bundle Patch Updates for the WebCenter Content products visit the My Oracle Support (MOS) Knowledge Article:

                                  Available Bundle Patches for
                                  Oracle WebCenter Content 12c

                                  Doc ID 2150629.1

                                  To share your experience about installing these patches ...

                                  In the MOS | Patches & Updates screen for each patch - click the "Start a Discussion" and submit your review.

                                  The patch install reviews and other patch related information is available within the My Oracle Support Communities. Visit the Patch Reviews - Middleware sub-space:

                                  Patch Reviews - Middleware

                                  For other Oracle WebCenter Content questions and assistance visit the My Oracle Support Community:

                                  Oracle WebCenter Content

                                  OAM 11.1.2.3.170418 is released

                                  $
                                  0
                                  0

                                  By Mike Campbell

                                  The OAM 11.1.2.3.170418 is released today. This patch is a **Suite Bundle Patch** containing other products and its suite patch description may not match with the version of Oracle Access Manager it contains:  

                                  OAM 11.1.2.3.170418: Released via Oracle Identity Management Suite Bundle Patch 11.1.2.3.170418 MOS Patch: 25654150
                                  This release is identified as Patch 25348595 within the Identity Management Suite Bundle Patch.

                                  To download OAM 11.1.2.3.170418 refers to MOS document;
                                  OAM Bundle Patch Release History (Doc ID 736372.1)

                                  Search for  string 11.1.2.3.170418 (BP10) Access Server or directly search for patch 25654150 from the My Oracle Support | Patches & Updates section.

                                  OAM WebGate 11.1.2.3.170418 is released

                                  $
                                  0
                                  0

                                  By Mike Campbell 

                                  The OAM WebGate 11.1.2.3.170418 is released today. This patch is available for the following platforms/webservers:

                                  •  Linux 64-bit - iPlanet/OTD, OHS, Apache 2.2, & Apache 2.4
                                  •  Solaris Sparc 64-bit - iPlanet/OTD & OHS
                                  •  Windows 64-bit - OHS & IIS
                                  •  AIX - OHS
                                  •  HP-Itanium - OHS
                                  •  Linux 32-bit - OHS
                                  •  Solaris 64-bit - iPlanet/OTD & OHS

                                  OAM WebGate 11.1.2.3.170418: Released via MOS Patch: 21118593
                                  To download OAM WebGate 11.1.2.3.170117 Bundle Patch search for and download patch 25491910.

                                  For more detail about other OAM WebGate patch releases, refer document;
                                  OAM Bundle Patch Release History (Doc ID 736372.1)

                                  Search for  string 11.1.2.3.170418 (BP06) Webgate or directly search for patch 25654150 from the My Oracle Support | Patches & Updates section.

                                  New blog platform soon !

                                  $
                                  0
                                  0

                                  We’re moving to a new platform in the next few days.

                                  Do not expect significant changes, however comments posted from now till migration will not be migrated.

                                  April Roundup: OAUX team attends action-packed events

                                  $
                                  0
                                  0

                                  It’s conference season, and that means members of the Oracle Applications User Experience (OAUX) team are traveling the globe: doing research with users, working with Oracle partners to make sure customers get the best user experience possible, and sharing our thought-leadership messages.


                                  Attendees at COLLABORATE17 participate in an activity 
                                  at the OAUX onsite lab.

                                  COLLABORATE17: Earlier this month, the OAUX onsite lab headed to COLLABORATE17, a technology and applications forum for Oracle users in Las Vegas. This conference comprises three user groups:  the Independent Oracle (IOUG), the Oracle Applications (OAUG), and Quest, who connect annually at this action-packed event.

                                  The focus of the user experience (UX) lab was to test the usability and intuitiveness of new features in Oracle ERP Cloud, including financials applications, in hour-long, one-on-one customer feedback sessions. For the first time at a COLLABORATE conference, the lab also held a group design jam, like this one last fall, that focused on financial technology. Participants worked with Oracle usability engineers and other customers to brainstorm enterprise use-cases. More than 30 Oracle customers and partners participated in the lab. For a behind-the-scenes look at our time at COLLABORATE, check out the lab’s Facebook photo album.  



                                  Dale Dougherty, founder and CEO of Maker Media, and Jeremy Ashley, OAUX Group Vice President, spoke together at SXSW 2017. 

                                  SXSW 2017:
                                  OAUX Group Vice President Jeremy Ashley was at SXSW in Austin, Texas, in March. He and Dale Dougherty, founder and CEO of Maker Media, had a conversational presentation about change management and design. Listen to the presentation, and visit our Facebook page for an album of photos.

                                  BSL SUMMIT: The Oracle Business Solution Lead (BSL) Summit was held at the Oracle Reading, U.K. offices in February. This event brought together 65 application SCs from EMEA and APAC who lead large-scale, strategic, and complex multi-pillar opportunities. They learned and shared skills and insights for winning deals in FY ’17 and beyond through opportunity planning, execution, and strategy engagements.

                                  OAUX GVP Ashley and OAUX Senior Director Aylin Uysal gave a strategic overview of the Oracle Applications Cloud UX approach. They talked about the upcoming visual evolution, as well as wearables, voice integration, and how machine learning will change things forever.

                                  For more on where members of the team have been recently, check the UsableApps blog.

                                  HCM TALK RADIO: Uysal also appeared in a podcast this month, discussing what Oracle’s customers and partners can expect to see as the big UX story in Oracle HCM Cloud’s Release 12. Listen to “Increase User Participation in Oracle HCM Cloud Release 12” to learn more about the visual evolution of HCM Cloud and more.

                                  MORE RESOURCES: Check in with the UX Innovation Events blog for the latest on our innovation events. Look for new posts soon at our upcoming blog portal, the OAUX blog, which will be the primary publication channel for OAUX authors once it goes live.

                                  Also, don’t miss the AppsLab blog, where the OAUX emerging technologies team posts. There are two new posts on the Developer Experience. Read them to find out what that means and why it’s important. 

                                  You can also find us on our social channels, which focus on sharing the UX strategy and what drives the evolution you see in the Cloud UX. To keep up with what’s new, we encourage you to like and follow our OAUX Facebook page and OAUX on Twitter. If you’re interested in our tools and how we can help you build, follow @usableapps. To participate in our usability feedback sessions and find out where our onsite lab will be next, join us on LinkedIn.


                                  Viewing all 19780 articles
                                  Browse latest View live




                                  Latest Images