Quick Start Sample

Hi,
I did the Business Process Architect installation from the file Oracle_BPA_Suite_11gR1_OTN_download.zip. Now I am looking at the QuickStart Guide, sec. 5.2.1.4 where it says:
"You must download the Quickstart.zip file from the samples folder in the installation directory and extract it to a working directory".
But I cannot find any "samples" folder or any Quickstart.zip file in my installation directory. Please advise.
Thank you,
Ugo

Hi Ugo,
just to complete this thread:
In the current BPA release (11gR1 - V19193-01), the Quickstart database is available from the following folder:
Databases and Filters > Databases: OBPA Release 11 Quick Start.adb
additionally you find here also the file
Databases and Filters > Databases: QuoteToCash.adb
Best Regards, Volker

Similar Messages

  • Quick Start Guide Info not working. Need info for Job Interview

    I am brand spanking new to Java but I have a job interview next week and this is one of the topics I need to learn a little about. Here is my issue if someone would kind enough to help.
    I downloaded and installed SDK and JDK I am going through the quick start guide I am using the Quick Start guide that comes with Application Server PE 9. The quick start guide requires you to download a "Tutorial Bundle" that comes with the Java EE 5 Tutorial.
    The Quick start guide then tells you to access certain files that are in the Tutorial bundle. For example it wants me to go to /Samples/Quickstart directory in the tutorial bundle and look for the hello.war. Unfortunately that directory and file does not exist (there is an /examples/web/hello1 directory but no hello.war
    Long story short is there anyway to find a Tutorial Bundle that actually works with the software that I downloaded? Thanks in advance for your help

    I found another guide. Thanks anyway

  • Quick start guide for WL Portal 10.0 required

    Hi all,
    I am new to BEA WebLogic Portal but have a lot of experience on open-source portal frameworks. After downloaded a copy of the latest 10.0 version I want to have a try how it looks like. What I want is a quick start guide which will answer the following two questions.
    1) I think there is an example portal installed with a full installation of WL Portal 10.0, how to start up the server and access the url?
    - Start up script seems to be $WL_HOME/samples/domains/portal/startWebLogic.sh
    2) A quick start guide is required to demonstrate how to deploy a JSR 168 portlet inside WL Portal.
    Thanks in advance,
    X. Yang

    hi
    i havent used 10.0 but if you check the logs/system.out it should print out which ip and port the server is listening on when it starts up and using that login to the console or u can check the config files for the ip/port(ip:port/console) and weblogic/weblogic and you should be able to find out from your deployed ear and its descriptors what the url to access the app is
    I assume your not using windows because then there is an entry in your program files.
    regards
    deepak

  • S10-3 Wifi Problem in Quick Start OS (Splashtop​)

    I just got my S10-3 on last Saturday, and I found out that the wifi is keeping disable in Quick Start OS. No matter I press Fn+F5 or switch the wifi button, the Wifi cannot be enabled in Quick Start OS. But everything is alright in Windows.
    I guess if it is the problem of the driver issue in Quick Start OS? As all known that Wifi card driver is a main issue in Linux system (Quick Start OS is actually built by Splashtop in Linux), and so the wifi chipset is still not ready in releases. By the way, my Wifi chipset is Atheros AR9285.
    Anyone got the same problem for that??
    Solved!
    Go to Solution.

    Hi and welcome,
    (Quick Start OS is actually built by Splashtop in Linux), and so the wifi chipset is still not ready in releases. By the way, my Wifi chipset is Atheros AR9285.
    think that isnt ready in release ... Look  for updated   .. S10-3 Windows 7 Driversection .. there is still no QS to download..
    sincerely KalvinKlein
    Thinkies 2x X200s/X301 8GB 256GB SSD @ Win 7 64
    Ideas Centre A520 ,Yoga 2 256GB SSD,Yoga 2 tablet @ Win 8.1

  • Source Safe causing LabVIEW Quick Start Screen to not appear after closing open vi windows?

    Hey All,
    We've recently implemented Source Safe version control for LabVIEW on XP and I've noticed that LabVIEW is hanging between closing open vi windows and showing the Quick Start Screen.  The usual pattern is for the Quick Start window to appear after the last open vi window is closed.  Instead the vi window is closed, the tab at the bottom of the screen says debug development and the Quick Start Screen does not appear, the tab does not read "Getting Started."
    I think it is a LabVIEW <--> Source Safe issue when I do a Task Manager Exit on the LabVIEW process that I sometimes see a dialog box asking if I want to save changes in memory to disc and those files are not checked out.  But it is too late at that point to do anything as XP clobbers the application before I can do anything.
    Anyone else have this issue?
    Message Edited by Drewski on 05-30-2008 02:28 PM

    What LabVIEW version do you use?
    I have used SourceSafe in every version from 8.0, and in the way some bugs are resolved.
    Ton
    Free Code Capture Tool! Version 2.1.3 with comments, web-upload, back-save and snippets!
    Nederlandse LabVIEW user groep www.lvug.nl
    My LabVIEW Ideas
    LabVIEW, programming like it should be!

  • Cannot find class CustomerFacadeRemote in NetBeans IDE 5.0 Quick Start Guid

    Hi,
    I am new to Sun Java Studio Enterprise 8.1. I am follwing NetBeans IDE 5.0 Quick Start Guide for J2EE Applications example and got two following errors:
    C:\SunStudioWS\CustomerBook\CustomerBook-war\src\java\web\CustomerDetail.java:41: cannot find symbol
    symbol : class CustomerFacadeRemote
    location: package ejb
    ejb.CustomerFacadeRemote custFacade = lookupCustomerFacadeBean();
    C:\SunStudioWS\CustomerBook\CustomerBook-war\src\java\web\CustomerDetail.java:41: cannot find symbol
    symbol : method lookupCustomerFacadeBean()
    location: class web.CustomerDetail
    ejb.CustomerFacadeRemote custFacade = lookupCustomerFacadeBean();
    2 errors
    C:\SunStudioWS\CustomerBook\CustomerBook-war\nbproject\build-impl.xml:299: The following error occurred while executing this line:
    C:\SunStudioWS\CustomerBook\CustomerBook-war\nbproject\build-impl.xml:141: Compile failed; see the compiler error output for details.
    BUILD FAILED (total time: 1 second)
    Here is the code:
    * CustomerDetail.java
    * Created on July 23, 2007, 3:27 PM
    package web;
    import java.io.*;
    import java.net.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    * @author yl
    * @version
    public class CustomerDetail extends HttpServlet {
    /** Processes requests for both HTTP <code>GET</code> and <code>POST</code> methods.
    * @param request servlet request
    * @param response servlet response
    protected void processRequest(HttpServletRequest request, HttpServletResponse response)
    throws ServletException, IOException {
    response.setContentType("text/html");
    PrintWriter out = response.getWriter();
    out.println("<html>");
    out.println("<head>");
    out.println("<title>Servlet customerDetail</title>");
    out.println("</head>");
    out.println("<body>");
    out.println("<h1>Servlet customerDetail at " + request.getContextPath () + "</h1>");
    String customerNr = request.getParameter("customer_nr");
    if((customerNr != null) && !(customerNr.equals("")))
    try{
    ejb.CustomerFacadeRemote custFacade = lookupCustomerFacadeBean();
    out.println("Customer's info for nr. " + customerNr + ": " + custFacade.getCustomerInfo(
    Integer.parseInt(customerNr)));
    }catch(javax.ejb.FinderException ex){
    out.println("Customer with nr. " + customerNr +" not found");
    out.println("<form>");
    out.println("Customer number: <input type='text' name='customer_nr' />");
    out.println("<input type=submit value=Select />");
    out.println("</form>");
    out.println("</body>");
    out.println("</html>");
    out.close();
    // <editor-fold defaultstate="collapsed" desc="HttpServlet methods. Click on the + sign on the left to edit the code.">
    /** Handles the HTTP <code>GET</code> method.
    * @param request servlet request
    * @param response servlet response
    protected void doGet(HttpServletRequest request, HttpServletResponse response)
    throws ServletException, IOException {
    processRequest(request, response);
    /** Handles the HTTP <code>POST</code> method.
    * @param request servlet request
    * @param response servlet response
    protected void doPost(HttpServletRequest request, HttpServletResponse response)
    throws ServletException, IOException {
    processRequest(request, response);
    /** Returns a short description of the servlet.
    public String getServletInfo() {
    return "Short description";
    // </editor-fold>
    private web.ServiceLocator serviceLocator;
    private web.ServiceLocator getServiceLocator() {
    if (serviceLocator == null) {
    serviceLocator = new web.ServiceLocator();
    return serviceLocator;
    private ejb.CustomerFacaderRemote lookupCustomerFacaderBean() {
    try {
    return ((ejb.CustomerFacaderRemoteHome) getServiceLocator().getRemoteHome("java:comp/env/ejb/CustomerFacaderBean",ejb.CustomerFacaderRemoteHome.class)).create();
    } catch(javax.naming.NamingException ne) {
    java.util.logging.Logger.getLogger(getClass().getName()).log(java.util.logging.Level.SEVERE,"exception caught" ,ne);
    throw new RuntimeException(ne);
    } catch(javax.ejb.CreateException ce) {
    java.util.logging.Logger.getLogger(getClass().getName()).log(java.util.logging.Level.SEVERE,"exception caught" ,ce);
    throw new RuntimeException(ce);
    } catch(java.rmi.RemoteException re) {
    java.util.logging.Logger.getLogger(getClass().getName()).log(java.util.logging.Level.SEVERE,"exception caught" ,re);
    throw new RuntimeException(re);
    Thank you very much for any help.
    ylou

    In the code you have posted, some places refer to '.CustomerFacader' while others refer to '.CustomerFacade' leading to issues.
    Also: Have you considered using NetBeans 5.5.1 as an alternative to JSE 8.1?
    http://forum.java.sun.com/thread.jspa?threadID=5192837

  • My quick start icons will not work why?

    The quick start icons have always worked but yesterday they stopped working. Why?

    If your card hasn't been activated then you will need to try contacting iTunes Support (these are user-to-user forums) : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then iTunes Cards And Codes (you will probably need to give them images of the front and back of the card, and possibly its receipt)

  • BeehiveOnline quick start button results in "Page Not Found"

    I am a sponsor of a Beehiveonline group. This group contains oracle and non-oracle members.
    Oracle group members (with Oracle id) can access this group, however, our partners have
    partial access. Please note that all the partners have valid account on OTN. Our partners
    can access the main beehiveonline page, they can also browse the other helpful links. However,
    when they press "start" under quick start, it results in "page not found" error. All the partners
    are facing this issue. THey have tried various browsers and PC but they can't get to group
    workspace.
    Please help.

    Hi,
    Send the group details and the problem user list to [email protected] and we will investigate.
    Phil

  • Tomcat Quick Start?

    I would like to set up a java Servlet training & development environment on my home computer which is an MS/Windows 2003 Server edition running IIS. I only have one, MS Front Page web page up and I'm willing to scrap that because I don't have much invested in that and I can easily redo it. I'm using the current releases of Java J2SE, J2EE, and Win/2003. I want to use the current version of Tomcat.
    I have Java up and running; I want to 'quick start' the Tomcat installation so I have something to look at as I work my way through its documentation while multi-tasking myself with my Servlet studies.
    My questions are:
    1 Are there functional and/or performance issues between running tomcat as a server or as an IIS plugin in my target environment? I don't mind going either way for now. I just don't want to be struggeling with tools while I'm learning Servlets.
    2. Specifically, which Tomcat down load file should I use? The descriptions on the download page are a bit cryptic for a Tomcat newbe like me.
    3. In the event that I'm off topic with this, is there a Tomcat forum as good as this one where I should be directing these questions?
    Thanks
    Jim

    1) Test environment? No... except that you'd be running as a server vs as an IIS plugin.
    The difference is that IIS would handle all the contents of a site except the JSP/servlet stuff, whereas Tomcat standalone would do all that. For the most part it doesn't matter, unless your site needs to take advantage of some special IIS features.
    For the purposes of learning JSP/servlets, I would stick with Tomcat standalone, because the IIS part has nothing to do with it. You can worry about deployment on IIS, or Apache or other servers later.
    2) Not sure what you mean.
    3) There's a mailing list for Tomcat, I think.

  • Quick start Key Question ( S10-2)

    When I first used the Quick Start key after the normal boot up of windows OS, a config screen appeared, wherein I could choose 1) one Application, 2) One Folder or File and  3) an URL for quick launch. After I chose one URL, it disappeared never to reappear again.
    Can these be reconfigured?
    How can I get that initial screen again so that I can choose other choices? 
    Can I configure all 3 things or only one of the 3?
    Thanks.

    Just in case I have not made myself clear, i think this key can be used for quick launching of  selected Apps, Files or URL (after logging in to Windows).
    What I want to know is once after making a selection, how to select a different set if need be.
    Thanks in advance if anybody can chip in.

  • ANN: Adobe Lightroom 5 - Quick Start Guide free download

    I'm pleased to announce the release of Adobe Photoshop Lightroom 5 – Quick Start Guide, which is a FREE 76 page PDF eBook.  It’s designed to help you get started with Lightroom and understand the basics, while avoiding the most frequent problems.
    You can download the PDF at: http://www.lightroomqueen.com/free-downloads/quickstart/lr5/
    I meet a lot of people on the forums who have ended up in a tangle because they’ve misunderstood the basics, and much as I’d like to meet you, I’d prefer it’s not because you’ve accidentally deleted all of your photos!

    Victoria Bampton wrote:
    Hi Bill.  I hope you find it useful!  Where did you register - in the Members Area or for the mailing list?  I'll track it down!  Scratch that, I've tracked you down in the Members Area.  You are registered, but there's a bug in the software that didn't send the email.  Thanks for letting me know.
    Thanks.  I was trying for the email list!  Yes, I like junk mail about things that interest me.  Being a "Member" sounds better than just getting email.
    Bill

  • Has anyone got a quick start manual like this?

    Hi all,
    I recently bought a refurb Macbook Air 11 (2013) from the australian apple store and I noticed that the quick start guide that I had was not on the apple store. Whats more, it says that my macbook air has a thunderbolt 2 port! Has anyone got one like this? Note the copyright 2014 on the right. Is this the actual quick start guide?

    Thanks for reply Demo. What I mean by 'failed' is nothing happened when I hit the 'Verify Now' box on the email from Apple in my Inbox  I expected to move to another page to enter further details but that didn't happen and there was no message saying 'verification accepted' or similar. I spoke to Apple Support and after about an hour she advised me to speak to a friend. If my friend can solve this, Apple needs to give her a job. Thanks again.

  • Missing Quick Start features option in BIOs setup

    I would like to enable Quick Start in Ideapad S10-3s.  But the Lenovo Quick Start features option is not available in the BIOs configuration.
    I upgraded the BIOs to the latest version, still do not have the Quick Start features option in the BIOS configuration menu.
    Is there a hardware problem with the Ideapad?

    it's probably hardware. it's actually linux operation system and comes with pre-loaded operation system. did you make any changes on volumes?
    edit:typo 

  • After installing Elements 11 the Quick Start tab is missing?

    i installed and paid for elements 11 but now i cannot access the program. the quick start tab is missing. I cant start the program but i still have the files?

    mrspecialk
    I think that the answer will end up being a complete uninstall reinstall of Premiere Elements 11 to default computer location if you have installation files or installation disc. But, please read the following first.
    Thanks for the additional information. The following is going to be based on the information supplied, that is,
    Premiere Elements 11 is definitely installed on your computer as evidenced by its presence in Control Panel/Installed Programs List
    Windows 7 32 bit computer
    You say that you cannot find a desktop icon for Premiere Elements 11 after installation.
    I will ask again just so that I do not take anything for granted...if you click on Start, All Programs, do you see "Adobe Premiere Elements 11" listed anywhere?
    You say that you cannot find the following two files on your computer. It appears that you are using the search function of the computer to look for
    Adobe Premiere Elements 11.exe
    and
    Adobe Premiere Elements.exe
    Instead of the Search for find those files, can you take the longer route and follow the path to them folder to folder. I have Premiere Elements 11 on Windows 7 64 bit, not 32 bit, but I believe this will be the path to follow folder by folder clicking
    Computer
    Local Disk (C:)
    Program Files Folder
    Adobe Folder
    Premiere Elements 11 Folder
    and, inside the Premiere Elements 11 Folder should be the two .exe files that you seek. Scroll down line list of folders and files there to find it.
    Do you find the two .exe files there?
    If not, then I would suggest that you go to the Control Panel and uninstall Premiere Elements 11.
    Then reinstall Premiere Elements 11, making sure that you let it install to the default location of the program.
    Then look for the desktop icon and those two .exe files again to confirm that the program has installed correctly.
    Please let us know the results.
    Thank you.
    ATR

  • Assembler Service API Quick Starts Web service API, Response is not well-formed XML

    Hi,
    I am trying to get the "Assembler Service API Quick Start" webservice api example to work in a asp.net application.
    The following line produces the exception below.
    // Send the request to the Assembler Service
    AssemblerResult result = asOb.invoke( ddxDoc, inputMap, assemblerSpec );
    "Response is not well-formed XML. at System.Web.Services.Protocols.SoapHttpClientProtocol.Invoke(String methodName, Object[] parameters) at AssemblerServiceService.AssemblerServiceService.invoke(BLOB inDDXDoc, mapItem[] inputs, AssemblerOptionSpec environment)"
    Any help would be greatly appreciated.
    Thanks
    cheeves
    (the code is exactly as it is in the example, except for adding "?blob=base64" to the url of the AssemblerServiceService obeject, and I have the 3 files in the root of my c drive)

    after looking at the example more closely I discovered that there is a key name called "optionsLink.pdf" that doesn't match the source in the DDX file.

Maybe you are looking for