Is There any WorkFlow tutorial?

Hi Everyone,
I'm really new to Oracle workflow and trying to learn/use Oracle workflow 2.6.2. Does anyone know any good 2.6.2 workflow tutorial? Any steps by steps for creating workflow. Any examples?
Thank you very much for all your help.

You could take a look at the white paper "Getting Started with Oracle Workflow 2.6.2".
http://otn.oracle.com/products/integration/workflow/workflow_wp_bes.pdf
or other WF white papers available here:
http://otn.oracle.com/products/integration/content.html
There is also a course for Oracle Workflow available through Oracle University which you may be interested in. It includes several hands-on practices for building workflows.
Hi Everyone,
I'm really new to Oracle workflow and trying to learn/use Oracle workflow 2.6.2. Does anyone know any good 2.6.2 workflow tutorial? Any steps by steps for creating workflow. Any examples?
Thank you very much for all your help.

Similar Messages

  • Is there any workflow for travel cancellation?

    Dear All,
    Is there any workflow for travel cancellation?
    Regards
    Somu

    Dear Shankar,
    BUSINESS PROCESS:
    Employee applied Travel Request -----Manager approved----Travel Admin booked Tickets --- Employee has taken travel advance also.
    Now due to employee personal problem he do not want to travel. Now He want to cancel.
    Can employee get cancel option in ESS portal?
    How FI will recover the amount?
    What is the process?
    Regards
    Somu

  • Is there any workflow certificatin in SAP TechEd 07

    Hi,
    Can u tell me,is there any workflow certificatin is available in SAP TechEd 07
    Regards,
    Vamsi.

    Hi Vamsi,
    Below please find the list of certifications that will be offered at TechEd '07. Information regarding dates/time and registration will be posted on the TechEd sites in the coming week.
    Thanks,
    Richard
    Exam Code     Certificate Title
    P_ABAP_GUI_70     Certified Professional Developer - SAP NetWeaver ABAP - Graphic User Interfaces
    P_ABAP_SI_70     Certified Professional Developer - SAP NetWeaver ABAP - System Integration
    C_TAW12_04     DEV.CONS. NW04- APPL. DEVEL. FOCUS ABAP
    P_ADM_SYS_70     Certified Technology Professional - SAP System Administration
    P_ADM_SEC_70     Certified Technology Professional - SAP NetWeaver Security
    C_ADM_ORA_70     Certified Technology Associate - SAP Web AS Platform with Oracle
    C_TADM51_04     TECH. CONS. SAP NW'04 - SAP WEBAS ORACLE
    C_TBW45_04S     Solution Consultant SAP NetWeaver '04s – SAP BI
    C_E2E100_07     E2E Root Cause Analysis
    C_E2E200_07     E2E Change Management
    C_JAVA_70     Certified Associate Developer - SAP NetWeaver Java
    P_JAVA_70     Certified Professional Developer - SAP NetWeaver 2007 Java
    C_MDMS_04     Certification Application Associate – Master Data Management 5.5 (SP04)
    C_SMI310_06     Solution Consultant SAP Solution Manager 4.0 - Implementation Tools
    C_SOA100_70     Enterprise Service Architect- L1
    C_TBIT44_06     Certification Development Consultant SAP NetWeaver 2004s

  • Is there any way to listen for OS-commands like LINUX/UNIX "kill myApp"?

    Hello, world! ;)
    I would like to get help on the following problem:
    Situation:*
    Implementing my first server-daemon I was wondering if there is any way to listen for OS commands/events affecting the application.
    One particular handling I intend to implement is after an OS termination command (like *"kill myDaemon.jar"* on LINUX/UNIX) to shut down the daemon.
    This would be really helpful, because in this way I would not just shut down the daemon brutally but being able to handle an event like this to shutdown the Thread pool, send all connected peers that the server/daemon will be down for a while, close all connections ...
    Need help:*
    Am I completely forgetting something which solves this problem really quick? :D
    Is there any Listener Interface which I can use to achieve this?
    Is maybe the JVM/JRE handling this and running garbage collectors?
    Is there any site/tutorial/... focusing on problems like this?
    Thanks in advance for any help on this subject!
    JAVAnetic

    Thanks, this was indeed very helpful.
    I implemented a shutdownHook and it works like I hoped it would:
        Runtime.getRuntime().addShutdownHook(new Thread(new Runnable() {
          @Override public void run() {
            // shut down commands
        }));After typing *"kill process_ID"* in a terminal the shutdownHook is invoked (like mentioned before) and the shut down commands are executed.
    Works fine.
    Am happy. :D

  • Is there any tutorial for jms development with jdeveloper out there ?

    Hi
    Thank you for reading my post
    is there any tutorial which show us how to use jdeveloper +oc4j for JMS stuff ?
    I mean an end 2 end tutorial to build mdb+jms resources in oc4j + client
    it will be far better if the tutorial shows how we can use jdeveloper features for this task (if it provide any wizard...)

    This is an example of a client:
    public String listeningJMS (Context context) throws Exception
    String topicName = "jms/demoTopic";
    String topicConnectionFactoryName = "jms/TopicConnectionFactory";
    TopicConnectionFactory topicConnectionFactory = null;
    TopicConnection topicConnection = null;
    TopicSession topicSession = null;
    Topic topic = null;
    TopicSubscriber topicSubscriber = null;
    TextMessage message = null;
    String fileName = null;
    * Look up connection factory and topic. If either does
    * not exist, exit.
    try
    topicConnectionFactory = (TopicConnectionFactory)
    context.lookup(topicConnectionFactoryName);
    topic = (Topic) context.lookup(topicName);
    * Create connection.
    * Create session from connection; false means session is
    * not transacted.
    * Create subscriber.
    * Register message listener (TextListener).
    * Receive text messages from topic.
    * When all messages have been received, enter Q to quit.
    * Close connection.
    topicConnection =
    topicConnectionFactory.createTopicConnection();
    topicSession =
    topicConnection.createTopicSession(false,
    Session.AUTO_ACKNOWLEDGE);
    topicSubscriber =
    topicSession.createSubscriber(topic);
    topicConnection.start();
    System.out.println("Receiving: ");
    TextMessage msg = (TextMessage) topicSubscriber.receive();
    String xmlString =msg.getText();
    topicConnection.close();
    System.err.println("Received: "+xmlString);
    fileName = this.getFileName(msg.getText());
    } catch (Exception e) {
    throw e;
    } finally {
    if (topicConnection != null) {
    try {
    topicConnection.close();
    } catch (JMSException e) {throw e;}
    return fileName;
    public static Context getInitialContext() throws NamingException {
    Hashtable env = new Hashtable();
    // Standalone OC4J connection details
    env.put( Context.INITIAL_CONTEXT_FACTORY, "oracle.j2ee.rmi.RMIInitialContextFactory" );
    env.put( Context.SECURITY_PRINCIPAL, "oc4jadmin" );
    env.put( Context.SECURITY_CREDENTIALS, "welcome1" );
    env.put(Context.PROVIDER_URL, "ormi://localhost:12401");
    //env.put(Context.PROVIDER_URL, "ormi://localhost:23791");
    return new InitialContext( env );
    }

  • Hi There, Any one Know How To Call Workflow Process From Special Menu.

    Hi There,
    Any one Know How To Call Oracle Workflow Process From Special Menu.
    I mean Tool -> Special Menu 1-45
    Or How to call Oracle Workflow Process From Command Button.
    Thanks
    Bachan.

    Can u give me some examples.
    Second thing we can add special action (special Menus) from Form Personaliztion.
    But how to add launch wft through Personalization
    Please Give me a breaf detail.
    Thanks
    Bachan

  • Is there any WebCenter sites Video tutorial is available?

    Is there any WebCenter sites Video is available?
    Please provide me link for this Oracle webCenter sites tutorial.

    Hello,
    You may find some useful videos on Oracle Learning Library by searching for "WebCenter Sites."

  • ADOBE DPS tutorial downloads - are there any for indesign CS6?

    ADOBE DPS tutorial downloads - are there any for indesign CS6?
    I am in need of tutorial downloads for indesign to learn more on Adobe DPS. I see the many videos online - but would love to download files and construct the files I see. Can anyone help and advise please.
    thanks: Daryl

    If you want good quality exercise files get a subscription to Lynda.com.
    This link will get you a one week trial to see if it's good for you. You'll
    have to pay for the subscription to get the files: http://bit.ly/RS0GXs

  • Is there any certification exam only related to workflow and workflow/cross

    Is there any certification exam only related to workflow and workflow/cross apps

    Hi KR,
    to my knowledge SAP has stopped certifications for WF.
    But Please check on sap.com
    Aditya

  • Is there any negative in this workflow?

    I am trying to keep my encoded files as small as possible for streaming so I have begun using this workflow, Any cons? I shoot in 720p 60 (59.94) then edit in ProRes, but I change my frame rate in the sequence to  29.97. It looks good, but are there any negatives in this? I then export to ProRes LT which makes the file even smaller. Any negatives here? Will this make my encode time longer since I am going to ProRes LT?
    Any input will be greatly appreciated as usual.
    Cheers.
    Tom

    I'm guessing that you don't have a 29.97fps option at the 720 size…otherwise, the main reasons to shoot 59.94 are either for slow motion or because you're shooting action scenes and you (and your viewers) think it looks better with that material.
    But to your questions, if the speed change looks good to your audience when streaming, then that's the only test that counts. And PR LT seems like a perfectly reasonable choice for a lot of things…but are you going to PR LT and then to H.264 for the Web? I guess that seems like an unecessary additional step to me with no great value except a slightly smaller master file – and yes, some extra encoding time.
    Good luck.
    Russ

  • Is there any script to restart the workflow services

    Hi
    Is there any script to restate the workflow services in 11i and R12
    Regards

    Hi,
    Please see (Note: 743264.1 - How to Stop/Start Workflow Service Containers From Command Line).
    Regards,
    Hussein

  • Is there any tutorial for integrating struts with hibernate using JDevelope

    Hi Everybody
    I am using Jdeveloper...and I want to know is there any tutorial available for usinfg struts and hibernate.
    If anybody knows abt them...plz tell me the links.
    Thanks and Regards
    K Sreenivas

    A tutorial about using hibernate in JDeveloper is here:
    http://www.oracle.com/technology/pub/articles/vohra_hibernate.html
    There are many papers and tutorials about Struts in JDeveloper - just go to the tutorials page and technical papers pages linked from the JDeveloper home-page.

  • Is there any function module to trigger workflow template

    Hi,
    I have created a workflow template in tcode PFTC, which i am using to send email, this workflow needs to be triggered once the document is posted, there are no events being triggered at that stage, My query is 'Is there any function module to trigger this workflow template from the user exit'?.
    Thanks in Advance
    Santosh

    Use FM
    SAP_WAPI_START_WORKFLOW.
    or if you have triggering event for the wflow use
    SWE_EVENT_CREATE
    SAP_WAPI_CREATE_EVENT
    Thanks
    Arghadip

  • Is there any program to re-start workflow?

    Yesterday our system was crashed, there are a lot to transaction no workflow, even no any work items. We can't use transaction SWPR and SWPC to re-start workflow.
    We only can use transaction SWUS to start workflow. But there are too many transactions, we can't start them one by one. Is there any program to start workflow ?
    Thanks,
    Shirley

    HI,
    Refer to the link.
    Function module to restart workflow?
    Regards
    Sumit Agarwal

  • Is there any tutorial for using ARM cortex-A processors of Zynq for digital signal processing ?

    Hello, everyone.
    Is there any tutorial for using ARM cortex-A processors(such as A9 and A53) of Zynq to deal with digital signal processing  problems?
    Please tell me , thanks.

    Hi
    Check below links
    http://www.xilinx.com/training/zynq/software-acceleration-for-dsp-functions-with-zynq.htm
    https://www.youtube.com/watch?v=ErEG7ZREcJQ
    http://www.xilinx.com/support/documentation/application_notes/xapp1170-zynq-hls.pdf
    http://www.xilinx.com/support/documentation/application_notes/xapp890-zynq-sobel-vivado-hls.pdf
    http://www.xilinx.com/support/documentation/application_notes/xapp1167.pdf

Maybe you are looking for