Oracle ADF Mobile Framework for native mobile applications

Hi All,
Has anybody tell me the roadmap from Oracle for the new release of Oracle Mobile Client (Native Mobile Application Development).
What is the tentative release date for the new framework?
Regards,
Muthulakshmi

We are all waiting :(
Oracle generally don't give dates (or they are ambiguous). So all you can do is wait. Do you already visited the adf mobill page http://www.oracle.com/technetwork/developer-tools/adf/overview/adf-mobile-096323.html ?
Timo

Similar Messages

  • Selection of a mobile framework - for enterprise mobility app.

    There have been many plethora of mobility frameworks (e.g Kony, HTML5 based  frameworks) that have same features as Cordova - write your code once and run it on multiple platforms. Some are free,others are not. Having recently implemented enterprise mobility app (integrating with ECC, CRM) using one such framework, there are a certain I would like to consider before choosing a framework:
    a) How easy it to build security into the app (the login module)?
    b) How do I know that the requests for my data is an authenticated source?
    c) How good is the vendor support with plugins, upgrades to SDK?
    d) For frameworks that are free, do vendors really pay attention to issues that you are facing during (very specific to) your implementation.
    e) Scalability of the framework to support the app with newer mobile OSs, mobility sets (Motorola, Micromax, Blackberry), tabs.
    f) All mobile sets have limited memory at most to 2GB (or little more). How will the framework help in viewing huge amount of data that is there in SAP?
    From my experience, I would say it is big pain, implementing a enterprise mobility app with open framework adhering with the go live dates.
    SAP products are more easy to handle. A lot of featues comes inbuilt. Mobile apps comes as pre-packaged apps. One needs to customize it according to it needs. Product support from SAP is remarkable. Implementing and going live with such product becomes automatically easy adhering to the timelines. So is the maintenance. But of course comes the licensing price for SAP.

    Sukanta Rudra,
    I love to work with SAP products and so i m in SAP. Having worked on several other mobile applications before , i can clearly see the ease in development of Enterprise applications using SAP products portfolio.
    Often I have seem blogs in SCN, advocating for frameworks other than that of SAP. No harm
    Please mention the blogs as a reference for more understanding. I can always only see Cordova / appcelerator being the recommended platforms by SAP for cross platforms development.
    SAP Partners with Adobe-Cordova/phonegap , Appcelerator, Sencha (the three big players in cross platform development)
    Developer Announcement: Third Party Tools
    SAP Drives Openness and Choice for Millions of Mobile App Developers
    More over i have worked mostly on all the three for a while and have experienced the ease in development with cordova.
    Also the HWC (Hybrid Web Container ) - the former way for developing hybrid applications on SAP Mobile Platform till 2.x has Cordova/phonegap plugins inbuilt in it. Literally it followed the approch of Cordova and ui framework was of Jquery Mobile .
    But Now with the release of SMP 3.X things are completely under the control of developer. There are no restrictions to use a particular framework for development and developers are free to use their choice for development (SMP 3.x highlights BYOT - Bring Your Own Tools for Developers).
    Adding to above , just would like to mention there are few products mainly focused and developed on cordova technology (KAPSEL plugins, Appbuilder, Fiori Client , River RDE in future integrating Kapsel plugins)
    SMP 3.x is all open for developers , we are free to use any platform as per our requirements and convenience now.
    PLease have a look at these videos on how SMP 3.x strategy stands for
    My experience has been using Kony-SKY framework for developing the mobility apps (not mobile web). SKY plugins has been certified by SAP, to be used for developing mobility applications. (SAP does embrace other vendors). My questions pointed out above, was out of the struggles we had while implementing the project. Many at times, I felt I was reinventing the same tools while integrating into the SAP backends.
    I am not a Kony guy, but will surely look into this and would check if i can help you.But out of my experience with Cordova /HWC/ Kapsel , it was satisfactory.
    I presume you might have used/using SAP's Fiori apps, SAPUI5, mobile architecture and would like to gather some more information very specific to SAP's environment. I have no experience now on delivering apps using SAP's products. Maybe three months from now, I would get deep with 'SAP Fiori UX and SAP Screen Personas'. Maybe you could throw some light on few more queries.
    Yeah , thanks to SAP for Fiori being out of License now and UI5 an Opensource. I have had the opportunity to also work and implement Fiori transnational applications and also develop Custom UI5 applications .
    Note : Personas is really a good product , but on the down side is n't responsive in nature , so might not be a best fit for mobile devices
    How are builds generated for different platforms? (Android uses.apk, Blackberry uses .cod, iPhone uses .ipa)
    I can help you understand this with an Android Phone Gap project example
    Typically Native Android apps are developed using Core Java.
    Initially all the Core libraries of Android and java are loaded with import command
    import android.os.Bundle;
    Now Cordova libraries are added to existing libraries
    import android.os.Bundle;
    import org.apache.cordova.*;
    and Android uses the concept activities and layout for screen navigation and designing.
    and by default any android project should have an activity and layout for launching the application, for which the code looks something similar to this
    setContentView(R.layout.main);
    so , a Relative layout is initially launched as main view.
    As mentioned in the blog in  " How does it actually work section " cordova loads web views instead of the native layouts /activities
    How Does it actually work ?
    Technically the User Interface of a Cordova Application is effectively a WebView that occupies the complete screen and runs in the native Container. So , it is the same web view that is used by the Native  Operating systems. This purely means that only the Native Containers changes according to the OS and internally the web pages remain the same. (Since the browser rendering of webpages are different for each operating systems)
    For       IOS it is UIWebView class
                 Android it is in  android.webkit.webview
                 Windows it is WebViewClass and the similar goes to other OS .
    This line of code is responsible for that
    super.loadUrl("file:///android_asset/www/index.html");
    our developed web applications should reside in the above mentioned location to access as any native web view
    also few other hacks are to be done at
    public class [appname]Activity extends Activity {
    to
    public class [appname] Activity extends DroidGap {
    and to the android manifest file accordingly to get the permissions
    Now internally the android applications works just like any native applications but accessing the web applications files in the web view. and just generates the .apk accordingly to the application.
    Say a query is executed from a mobility app, say the result set is some 1000 rows, how does the data fetch mechanism work. Do you use some delta data fetch mechanism?
    if i were to handle this , would try to filter this out to sections. Lets imagine huge PO s are resulted upon a query, i would try to create some sections/categories for Unreleased/Open/Approved /... and again try to perform some dynamic filter operations on each category selection/ or make use of pagination property to move across the items/records
    Also user would not be interested to scroll and search for his item from a huge collection of items.
    More over for handling of huge records Native approach is preferred to Hybrid/mobile web.
    When a mobility connection snaps while the user is using the app, does the app stop immediately? Or rather how is user informed about non availability of the network connection?
    Lets assume two cases here
    1) Complete Online application
    2) Online Offline Application
    1) If user is trying to access the data from the application , since this being an online application , a proper network connectivity id to be checked properly before making any request .
    for phone gap/cordova , Network Object helps us to check if network connectivity is available to make any request. else throw an alert to check the connectivity/ turn on the connectivity.
    Similarly a Connectivity manager API exists for Android . Here is an example. Same would apply for other OS also.
    2) For online - offline application . user wouldn't be able to read records from back end , but can perform other necessary operations on the device, and once the device gets connected to network, can sync with the back end . An alert should be thrown to inform the user about the loss in network connectivity and the limitations in accessing the data .
    Build/release mechanism and subsequent tracking for mobility apps for periodic release of apps  - say there would regular fixes to bugs, upgrades to framework SDK, device OSs might get upgraded - Is there a tool for tracking all these, etc
    Yes. MDM tools are perfect fit for these. Afaria and Mocana are doing well now.
    And, anything that you would like to share, related to SAPs environment, that makes implementation easier.
    SAP Mobility is really booming and will grow , dominate in enterprise mobility in future.
    For our understanding:
    Let us know for more.
    Edit :
    IG is a part of SMP 3 but not a separate component as NWG
    Regards
    Virinchy
    Message was edited by: Virinchy P

  • Settings for Native Mobile App

    I'm using RoboHelp 11 to generate a native mobile app for Android.
    In the Generate Native Mobile App dialog box, I've downloaded PhoneGap, Android SDK, JDK, and Apache Ant. I've then used paths that I think would work. Here's a screen shot:
    When I attempt to generate the file, I see an error (below).
    Can you please recommend the exact path? I've looked at your documentation(Adobe RoboHelp 11 * Generate a native mobile app) and Tom Aldous's YouTube video (How To Create Android App From Your Training and Technical Manuals - YouTube). Does it matter where I download the files? Is RoboHelp 11 just compatible with certain versions of these downloads?

    @Robert I am working with someone else who is having problems. I produced some instructions for Rh10 that got things working for myself and others. The difference between 10 and 11 is that 10 required some system variables to be set whereas 11 sets the necessary paths when generating the app. Thus it is likely your problems are related to the various installations. Given where you have located them, it is not possible for me to read them. I put each app (except Java) directly off the C drive.
    To the best of my knowledge, the only app that is version specific is PhoneGap which must be 2.9.0 and that is what you have.
    First try moving the apps and generating outside your profile. This is my setup from 10 but 11 is the same as far as this part is concerned.
    See where that gets you.
    @Rick Apps are great for Knowledge Bases. As far as OLH is concerned, there are some usability issues if people don't know how to switch between apps.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • Where are the Oracle Data Binding Frameworks for Oracle Objects?

    Oracle offers a few different options for data-binding frameworks to Oracle relational data. Amongst them they include TopLink and the Oracle Application Development Framework (ADF)in JDeveloper 10G. J2EE also offers the EJB standard framework. Both of the Oracle data-binding frameworks appear to work well with relational data but fail misserably when one tries to work with a fully fledged Oracle Object-Relational schema. I have spend much time with ADF but have not been able to create successful bindings to Objects with nested complex objects (such as a 2-level nested object) or objects containing nested tables. TopLink will not even touch Object tables.
    Have other people being more successful with this? Do we have to implement our own data binding framework? Does Oracle plan on improving these frameworks to fully support Oracle Objects?

    TopLink Runtime supports both fully fledged OX mappings and nested complex objects. These mappings can be setup in the code.
    TopLink ADF design time however currently does not have support for OX mappings.
    Hope this helps,

  • Framework for creating Flash applications in AS3

    Can anyone suggest a good framework for developing Flash AS3 applications? I have worked on two Flash frameworks till date: GAIA and PureMVC.
    While GAIA is more focused on Website development and I find PureMVC a bit complex as I was not able to find anywhere the best approach to use the framework efficiently.

    Very delayed reply on this one, but I thought still worth mentioning a year after the fact.  Over the last couple of years, working in a number of ad agencies, I've progressively built my own Flash CMS framework called Redblox (http://redblox.ca). 
    It's a framework I'm positive you've never seen the likes of before!  Redblox uses XML files as a blueprint to recursively build you're entire website.  Redblox framework concentrates on separating core functionality from behavioural functionality (see website for more info on that). Every component (ie, textfield, image, menu, layout, scrollbar, video player, everything!) is represented as an XML node within a larger XML structure and therefore its parameters, animations, behaviours and functionality can be added/updated/deleted directly within the XML. Consequently, using Redblox' integrated visual XML Editor allows users the ability to make these changes directly at runtime.  Simply CTRL+CLICK on any item/component while viewing the website in editor mode and the Redblox XML Editor tool will display all the information on that component to add/update/delete. Once users have made their changes, users can then save the XML blueprint of the website back to file.  Its really that simple.
    I've only recently made this framework open-source, wanting to take a new direction in its development.  I've used this framework to build microsites for Nike Training Canada (Olympics & World Juniors Hockey), Alexandre Keiths, Rogers, Purina to name a few.
    Just check out the site, you'll love it right away!
    Cheers,
    Jason Thomas

  • How to store Custom principal in Oracle ADF security Framework

    Hi guys, hope somebody will help me out.
    I am facing the following issue, i need to have a custom principal instance after oracle adf security frame work does authenticate and authorize user.
    My custom principal instance should have per say addition attribute, say clientId. I am using Jdeveloper 11.1.2.4 and i setup weblogic to use ReadOnlySQLAuthenticator(it does most of desired functionality).
    As far as i get it, i would have to implement a custom provider to have a chance to implement a custom LoginModule, so i can set it up to use my custom principal, am i right ? and i am not sure how ReadOnlySQLAuthenticatorImpl that i chose in weblogic is bound to
    DBMSAtnLoginModuleImpl (i mean how does it knows what LoginModule should it use) and if i can , how can i make  ReadOnlySQLAuthenticatorImpl  use my custom LoginModule.
    Sorry if i violated forum rules.

    and i am not sure how ReadOnlySQLAuthenticatorImpl that i chose in weblogic is bound to
    DBMSAtnLoginModuleImpl (i mean how does it knows what LoginModule should it use)
    This info is returned by getLoginModuleConfiguration(): AuthenticationProvider (BEA WebLogic Server 10.0 API Reference)
    Dario

  • Oracle ADF Business Components Vs PL/SQL Application

    Hi,
    Has anybody used Oracle Application Development Framework's Business Components (ADF BC)? What are the disadvantages and issues that you faced? Can anyone compare PL/SQL with ADF BC?
    Would like to know the advantages and dis-advantages of both the technologies(PL/SQL and ADF BC).
    Can anybody help on this?

    Hi,
    Not sure what exactly you are looking for.
    But let me explain so that you can get some idea of their working and ofcourse difference.
    ADF BC which are nothing but the Entity Objects (EO) and View Objects (VO) which are the Java representation of the DB.
    EO is like database table and is a 1-o-1 representation of the underline database table as a Java class file.
    VO is like database view and is always based upon some custom SQL or combination of one or more EOs.
    For developing a Database based application you always layer where you can handle the database objects and can also write the business logic or validation for the
    data entered at the UI.
    PLSQL is straight forward is the language to write business logic at the database level.
    I hope this will give you some details.
    Thanks,
    KKCHOPRA

  • Sybase Mobile Sales for Window Mobile

    Mateus,
    antes de ir pra perguntas, só pra alinhar.
    A SAP está com 2 diferentes estrategias para Mobile:
    1) para microapps, backends apenas baseado em stack ABAP e empresas com plataforma móvel única, a recomendacao é o Gateway como plataforma de integracao mobile
    2) para aplicacoes mission critical (incluindo processamento offline), baseado em multiplos backends (SAP, DBs, web services etc) e/ou com multiplos devices móveis, a recomendacao é utilizar um MEAP (mobile enterprise application platform), e o MEAP da SAP é o SUP (Sybase Unwired Platform).
    Nesse contexto, vamos às perguntas.
    1. O que é o AFARIA ?
    O Afaria é uma solucao que faz parte da suite de Mobile da Sybase, juntamente com o SUP, Mobile Workflow & Mobile CRM, que foca no cenário de MDM (Mobile Device Management). Ela te permite ter uma gestão centralizada de todos os devices da empresa, controlando permissoes de acesso (usuario/perfil), bloquear/liberar funcionalidades (camera, email etc), install/update/remove de apps, remote wipe, remote lock, tudo remotamente, On-the-Air (OTA).
    2. O que é o SUP ?
    Como falado acima, o Sybase Unwired Platform (SUP) é o MEAP (mobile enterprise application platform) da SAP, ou seja, plataforma de desenvolvimento de aplicacoes móveis. Um MEAP é recomendando principalmente no caso de aplicacoes mais críticas e em cenarios heterogeneos em termos de fontes de dados (data sources) e plataformas móveis.
    3. Como instalar o ambiente de desenvolvimento ?
    Se vc for parceiro oficial SAP, vc pode receber as mídias para ambientes de desenvolvimento como faz para qualquer outro produto. Sei ainda que a Sybase oferece(ia) via site próprio um trial de 30 dias, mas não sei se ainda está disponível.
    4. Qual a linguagem utilizada ?
    No SUP vc desenvolve em Java, em Eclipse (além da linguagem de cada SDK, no caso de WinMo, .NET no Visual Studio).
    No Gateway, é ABAP* + linguagem da SDK movel.
    Mas em ambos os casos, existem aceleradores que te permitem criar apps "draft" sem nenhuma linha de código, só com cliques de mouse (wizards no Eclipse/Visual Studio/Xcode).
    se for só pra disponibilizar no mobile uma RFC/Transacao existente, dá pra fazer só com config, sem código.
    5. O que eu preciso fazer pra saber criar um u201Chello worldu201D ?
    Os treinamentos. Ou se virar batendo cabeça. :P
    No caso do SUP, há o treinamento SUP511 que a SAP Education já oferece (antes era oferecido diretamente pela Sybase).
    No caso do Gateway, ainda não há treinamento oficial, mas para parceiros há o Gateway Hands-on sessions by COIL, que introduzi no blog que vc linkou acima.
    6. Quais os cursos disponíveis no mercado ?
    Como falado, SUP511 p/ desenvolvimento em SUP.
    Ouvi falar tb de SUP611 para afaria, mas nao sei dizer se a SAP Education já está oferecendo.
    7. Como integra com o SAP ?
    O SUP pode integrar de 2 maneiras:
    - lendo um data source SAP diretamente (há um "adapador" RFC no SUP, baseado em JCo); nesse caso, o staging é feito no SUP;
    - usando o DOE (Data Orchestration Engine), componente do NetWeaver Mobile Infrastructure, como staging entre o mobile device e o backend SAP. Nesse caso, no SUP, é usado o DOE conector. É essa estratégia que as aplicacoes "standard" da SAP (por enquanto, Mobile Workflow & Mobile Sales/CRM) usam, mas não dá pra afirmar com 100% de ctz que essa vai ser a arquitetura "oficial" - mais informacoes devem sair no Sapphire.
    8. Uso somente para o SAP ?
    O Gateway sim, é focado em backends ABAP.
    Já o SUP nao, vc pode usar para integrar quaisquer plataformas compativeis com padroes abertos como JDBC, SOAP & REST.
    Espero ter ajudado.
    Abs,
    Henrique.

    Dear siva,
    Thanks for your replay.
    which then can be moved to the devices via OTA or BES
    I thought of that BES means BlackBerry Enterprise Server.
    BES  is manadatroy to work with SUP?
    Can you pleas elaborate, what it means OTA ?
    Regards
    lakshman balanagu.
    Edited by: lakshman balanagu on Mar 21, 2011 2:20 PM
    Edited by: lakshman balanagu on Mar 21, 2011 4:27 PM

  • Oracle Apex Multilpe Theme for a single application

    Hi All,
    I have a query regarding display multiple theme for a single apex application. My object is to change the color scheme for an existing apex application and use both old and new color scheme in a single application. For example I'm planning to modify apex 3.1 theme 9 (Red theme) to green and wants to use red theme for some pages and green theme for some other pages in same application.
    The following steps I have tried.
    1. Copied /theme/theme_9 to my local
    2. Changed color scheme of all the images.
    3. Renamed my local folder name from theme_9 to theme_9_1
    4. Moved my new folder to server path /theme/theme_9_1
    Now I went to my application which have theme 9 and copied One Tab page template as One Tab Template 9.1. In my new page template I changed all the the /theme_9/ reference to /theme_9_1. In my application I applied this new page template to get green color scheme. But its appearing without any css scheme (even default style is not there).
    So Please help me out to resolve my issue. and also suggest me if you have any other easy way to achieve my objective.
    Thanks in advance.

    Hi,
    You steps look okay to me, so not sure why you're CSS isn't working, I would need to see your actual templates to find out (perhaps you could put this up on apex.oracle.com). Just a few general pointers though, I would suggest using one of the newer themes, introduced in APEX 4.0 and APEX 4.1. Those themes are mostly DIV based, i.e. fewer HTML tables for formatting, and as a result, they are much smaller. They also use a DOCTYPE, prompting all modern browser to render your pages in standards more, ensuring better cross-browser compatibility. And most relevant for your task, they no longer use theme-specific class names, i.e. a class called "t9header", would now simply be "header". They also generally reference images directly from the CSS stylesheet, rather than inside your templates, making it much easier to modify your UI. So in essence, assuming you'd be using theme 21, all you'd have to do to switch from a red-look to (in this case) a blue-look, would be to reference the theme CSS file in /themes/theme_22, instead of /themes/theme_21, so in your templates, you would only need to change one path in your page templates.
    Regards,
    Marc

  • Oracle RAC and implications for custom developed applications

    Hi,
    I'm wondering if there are limitations to custom developed applications when implementing a RAC solution. I need some advice though I can find no documentation on this topic. Of course the standard database features will work correctly but what about, let's say, OS-specific PL/SQL code? Any advice is welcome.
    Thanks

    Jos,
    What do you mean by OS-specific PL/SQL code?
    The main thing here is you need to make sure it works correctly on all instances, or you must bind it to an instance by submitting it as a job.
    This implies the output needs to end up on a cluster file system, or you need to set up NFS links.
    Please feel free to contact me internally, if you are the Jos Baan I know.
    Sybrand Bakker
    Senior Oracle DBA
    (the real one)

  • Mobility framework in WebLogic Portal 10.3

    Hi,
    In WebLogic Portal 9.2, there was a project facet called - "Mobility framework for WebLogic Portal." This is not available in WebLogic Portal 10.3. At the same time, I don't see any comment in the Release notes or the in the "What's new" section of 10.x versions.
    What is the equivalent feature in 10.3?
    Thanks,
    Prashanth

    I don't recall the product shipping a facet called Mobility Framework. This might have come from another product called WebLogic Mobility Server. I do not believe that this product exists anymore since the Oracle purchase of BEA. This product came from a partner called MobileAware and I think you can still purchase it from them if you require it.
    However, you might want to read about the native capabilities in WLP for handling multiple devices. Read:
    http://download.oracle.com/docs/cd/E13155_01/wlp/docs103/portals/multichannel.html to see if this is sufficient for your requirements.
    Brad

  • Bitzer Mobile framework

    Hi All,
    I am beginner mobile iOS app developer and one of our client want to integrate "Bitzer" mobile framework for security and SSO feature. But we are not able to find any good link or tutorial to start with. Please provide any step by step guide from download SDK to development of demo app. I need to develop agent, client app and server side code.
    Thanks & Regards,
    Asheesh

    Asheesh,
    1. Download and product details are at Oracle Mobile Security Suite. Product documentation is at
    http://docs.oracle.com/cd/E52357_01/install.3/e51930/toc.htm
    2. There is no SDK to embed in your app. Once your app has been developed it can wrapped using the containerization toolkit.
    Thx.

  • Find Criteria problem in ADF BC framework with DataServices for tables 1to1

    Hi..
    I have built a DataService (Database tables exposed as WebServices) using ADF BC framework in JDeveloper.
    I have used 2 tables Cqualitycategory(Parent) and Cqualitycategoryxref(child) with 1 to 1 relationship on id Cqualitycategoryid.
    This service exposes operations such as Create, Update, Find, delete & etc.
    After providing this service WSDL path to SOAP UI tool and when I try to hit the find criteria(*childFindCriteria*) using the below request I receive all the records of the child for a single parent table(Having multiple records for the child tables). But according to the below request(childFindCriteria filter) I should only get the records which matches the filter along with the Parent record.
    <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:typ="/com/abc/csim/ebo/module/common/types/" xmlns:typ1="http://xmlns.oracle.com/adf/svc/types/">
    <soapenv:Header/>
    <soapenv:Body>
    <typ:findCqualitycategoryBO>
    <typ:findCriteria>
    <typ1:fetchStart>0</typ1:fetchStart>
    <typ1:fetchSize>-1</typ1:fetchSize>
    <typ1:filter>
    <typ1:group>
    <typ1:upperCaseCompare>true</typ1:upperCaseCompare>
    <typ1:item>
    <typ1:upperCaseCompare>true</typ1:upperCaseCompare>
    <typ1:attribute>Cqualitycategoryid</typ1:attribute>
    <typ1:operator>like</typ1:operator>
    <typ1:value>209</typ1:value>
    </typ1:item>
    </typ1:group>
    </typ1:filter>
    <typ1:childFindCriteria>
    <typ1:filter>
    <typ1:group>
    <typ1:item>
    <typ1:upperCaseCompare>true</typ1:upperCaseCompare>
    <typ1:attribute>Cqualitycategorycode</typ1:attribute>
    <typ1:operator>=</typ1:operator>
    <typ1:value>P1234</typ1:value>
    <typ1:nested/>
    </typ1:item>
    </typ1:group>
    </typ1:filter>
    <typ1:childFindCriteria/>
    </typ1:childFindCriteria>
    </typ:findCriteria>
    <typ:findControl>
    <typ1:retrieveAllTranslations>false</typ1:retrieveAllTranslations>
    </typ:findControl>
    </typ:findCqualitycategoryBO>
    </soapenv:Body>
    </soapenv:Envelope>
    But the same kind of request (find criteria) is perfectly works fine by giving the desired result(childFindCriteria) with 1 Parent tables and 2-3 childs(1 to many relationship).
    It seems to be an issue with the ADF BC Framework for the tables with 1 to 1 relationship.
    Please suggest me a solution or a work around so that the childFindCriteria works for tables with 1 to 1 relationship.
    Mahesh
    Edited by: user13174911 on Aug 17, 2011 10:03 AM
    Edited by: user13174911 on Aug 17, 2011 10:05 AM

    Hi,
    I think this can be explained the best with the fact that the web is stateless. If you mark a record for update, which you do when you submit it. Then it should get locked in the database. After commit you release the lock and whoever wants to override the value you put in can do this. I don't think that a lock should be released only if a user re-queries the data. You can code this in though: just requery the records on error
    Frank

  • Why Do I Have to PAY MORE MONEY?!?!?!?!? For The "Mobile  Hot Spot"??

    If I am ALREADY paying for an UNLIMITED access plan, why are they trying to extort more money from me?? Does it REALLY matter what device the data is being transferred to (Incredible/laptop)?? I guess UNLIMITED really DOES have it's LIMITS....  Is there a crrier that provides for this service free of charge or INCLUDES IT in their UNLIMITED plan?!?!?!?

    T-Mobile doesn't allow tethering it's within the ToS you sign when you go with them.  Carriers in Europe also charges for tethering.  You want to add more devices to use up bandwidth you gotta pay for it.  Internet bandwidth isn't free, but the content is.
    Virgin Mobile: This is what you have to add to your mobile web plan if you want to tether.  This does not include mobile web for your mobile device. You can tether with your devices just like T-Mobile, but if you get caught THEY have the right to terminate your contract or service and charge you the ETF. 
    Broadband2Go
    Broadband2Go Plans
    You may purchase a Broadband2Go data plan necessary to access the Internet from your laptop personal computer in the following data allocations ("Broadband2Go Plans"):
    $10.00 for 100 megabytes ("MB")
    $40.00 per month for unlimited mobile Internet (but not unlimited downloaded content)
    When you purchase the $10.00 Broadband2Go Plan, your data usage will be deducted from the available data allocation. Unused data expire 10 days from the date the Broadband2Go Plan was activated on your account. If you use your allocation of data before the end of the data expiration date, you must purchase an additional Broadband2Go Plan to use the Broadband2Go service.
    With the $40.00 Broadband2Go Plan, your monthly charge is due on the monthly payment date of your $40.00 Broadband2Go Plan. Your monthly payment date is based on the day of the month that you activate your $40.00 BroadBand2Go Plan, switch from another Broadband2Go Plan to the $40.00 Broadband2Go Plan, or restart the $40.00 Broadband2Go Plan. If you do not pay your monthly charge on your payment date, you will no longer have access to the Broadband2Go service, regardless of the balance in your account. When you next pay your monthly charge, you will receive the data allocation associated with that monthly plan. If you fail to pay your monthly charge when due, your payment date will be reset based on the day you successfully pay your monthly charge.
    Most carriers will give you unlimited, but if you hit a certain point they'll throttle you down, but you still can use the internet.  To even use 5G's a month is very hard to do unless you stream a lot of content.

  • Using oracle personal for developing java application?

    Can I use Oracle 9i Personal Edition for developing Java applications? Does it provide a JDBC Type 4 driver?
    Thanks a lot.
    [email protected]

    SIR I WANT TO UPLOAD MY DEVELOPER FORMS BY USING ORACLE 8I SERVER?
    CAN U TELL ME THE PROCEDURE IN DETAIL?
    I WILL BE THANKFUL TO U
    MY EMAIL ADDRESS IS [email protected]

Maybe you are looking for