Add new documents to the Workflow Runtime

Hello

We have a requirement to add more than a few documents to a workflow by the examiner running instance before approving it. The next workflow step would see the original document, but also new documents added in the previous step. is this doable OOTB Configuration?

Concerning

Srinivas

Yes. For more information, see https://blogs.oracle.com/fmwinaction/entry/oracle_bpm_adding_an_attachment

Tags: Fusion Middleware

Similar Questions

  • Right-click to add new folder on the desktop, is there

    I want to add new folders on the desktop
    (I use to be able to right-click and new folder was an option to add to the desktop)

    Hello sammyg11, you post to a support forum for the mozilla firefox browser. the question you asked is not really related to firefox but is a question about windows: in this case, please refer to the resources of foreign aid: www.sevenforums.com/tutorials/28677-new-context-menu-remove-restore-default-menu-items.html

  • Satellite L - can I add new accounts via the command prompt?

    Is it possible that I can add new accounts to the machine via the command prompt on the screen of "recovery"?

    (When you start in recovery mode and select command prompt)

    I tried the normal commands "net user username / add ', but the accounts are not added to the machine.

    Y at - it another command which can be used?
    Thank you.

    Hello

    I don't know if it will work using the in my opinion Mr. recovery console, it is not possible.
    As far as I know that you can add the user and the password using the CMD, but this might work only when the Windows operating system has been loaded.

    In this case, you can use this command to add the user account: + net user username / add +.
    If you want to add a password for the user account, then you must use this way: + net user username password / Add +.

  • I have to add new contacts in the database. Should what stage of treatment I add?

    I have to add new contacts to the database. Should what stage of treatment I add?

    Hello

    Please use "Save to the Contact Table" stage of treatment.

    Thank you

    edynamic Experts Eloqua

  • Add new data to the table in a log file

    Hi all. I am new to Oracle and I need to also write new data table in a logfile on Linux in order to live in the display screen. My first thought was to write a trigger, and after some research on googled around, I finally came to this:

    create or replace trigger foo_insert
    After Insert on foo
    for each line
    declare
    f utl_file.file_type;
    s VARCHAR2 (255);
    Start
    s: =: new.udate | '-' || : new.time | ' ' || : new.foo | ' ' || : new.bar | ' ' || : new.xyzzy | ' ' || : new.frobozz | ' ' || : new.quux | ' ' || : new.wombat;
    f: = utl_file.fopen ('BLAH_BLAH', 'current.log', ' a');
    UTL_FILE.put_line (f, s);
    UTL_FILE.fclose (f);
    end foo_insert;

    It seems properly to add new data in the log file as new inserts occur, but open and close the file each time are of course not optimal.
    In the app real new lines could have inserted every second or two. How can I optimize it? In addition, the log file will be archived and turned every day, so there must be a way to effectively report the relaxation of the oracle to reopen the case.


    Thank you!

    >
    I would like to pursue the optimization of the trigger
    >
    As Ed suggested you need to think this through a few others and refine the requirements.

    You said "I am new to Oracle. So you may not realize that anything a trigger didn't REALLY EVEN HAPPEN! The transaction can still be restored by Oracle or by the appellant. Want that all the 'hiccups' look too? If this isn't the case, then you can not use a trigger to do this. You need the process that translates the trigger being called to do logging after the data is stored.

    It should be noted that this requirement is before we can offer solutions to a problem.

    Assuming you want the trigger record all attempts change the data, then the best way I know to do that is to minimize the work does the trigger.
    Another fundamental principle is to follow the advice of the Ed and have a clear separation and distinction between "what" should be done and 'how' to do it.

    To minimize the trigger work change proposed Nicosa approach. Create an AUTONOMOUS_TRANSACTION stored procedure that handles the 'how' and just have the trigger to transfer data to the stored procedure values. The trigger provides data; He doesn't know, or care, what is done with the data.

    The stored procedure is then free to use the files, a table, write to a file or any other method is proving to be the best. You can change the methods without affecting the trigger.

    A queue or table may contain data, but again once you need to think about the obligation. Do you need fair access to data only once? Now, you want a "tail". But what happens if this requirement change tomorrow? You won't have to redesign the architecture.

    With a queue once you delete the queue data it won't here later if you want to get it again. With a table you can take as long as you want.

    I would like to start by using a table to store the data. If you use a sequence number or "insert_date" value, you can always query the data of interest. The table just collects data. He does not care how to use data.

    So, by using proven design principles and knowing that the requirements are for the most part unknown and may change unexpectedly, I would be:

    1. create an AUTONOMOUS_TRANSACTION stored procedure that accepts the parameter data and the thicket in a simple logging table.
    2. change your trigger to call the procedure to step #1
    3. create another procedure that performs a query of 'tail' for you will depend on 'insert_date' number or sequence. This query can write data to a file or return a cursor ref that your script can use to provide data for display.

    The approach described above takes each step in the process relatively independent of the other stages.

    Until put you the finishing touches to the requirements that you do not want to lock up your initial design.

  • Add new values for the axis desabscisses when adding a new series

    Hi all

    I work with and I found myself with a problem when I try to add new series.

    < mx:ColumnChart id = "cChart" height = "100%" width = "100%" dataProvider = "{dataChart}" showDataTips = "true".
    >
    < mx:horizontalAxis >
    < mx:CategoryAxis id = "cAxis" categoryField = "{name}" / >
    < / mx:horizontalAxis >
    < mx:series >
    < mx:ColumnSeries yField = xField "{field}" = "{name} field" displayName = "{displayName}" / >
    < / mx:series >
    < / mx:ColumnChart >

    DataProvider is a table something like this:

    -Datachart - > [nameField:A, area: 20;]

    nameField:B, field: 30;

    [nameField:C, field: 80]

    In my application, user boxes add new series after the graph is created. For example, imagine that he wants to put on the table of following values:

    -Datachart - > [nameField:A, area: 13;]

    nameField:B, field: 62;

    nameField:D, field: 30

    [nameField:E, field: 92]

    Now, start the problem:

    When the graph is (adding series with ACE) refresh the values on the axis desabscisses are the same 'old'. In these cases ('A', B', 'C'), but the new do not appear (',' E').

    Is there anyway to fix this?

    Replace this part:

    var currentChart:Array = cChart.series;
    currentChart.push (series1);
    cChart.series = currentChart;  This code do nothing!

    with

    var currentChart:Array = cChart.series.reverse () .reverse ();
    currentChart.push (series1);
    cChart.series = currentChart; But this one does!

    This is to ensure that you will create a NEW array instead of use the reference to the former.

  • Add new records to the table of the ADF

    Hello

    I use Jdev 11.1.1.3.0.
    I have a Page of the ADF with detail Table of form - master, I want to add new records to the table reflecting in DB. Is it possible to do? pointers or demo?


    Thank you
    MB

    What are the components are used in your table? When you created the table originally, you specified as a table read-only? If your table contains components of af: outputText, then you will need either manually change components entry way, or remove the table and re-drop-the-in the form of table (not read-only)

    John

  • Can I add new members of the sketch in a line of a form?

    Hello
    I thought I heard we can add new members of the sketch in a line of a form in V11?
    So if a I have an account called 'Expense of CapEx' computer in a row, I can add new members "Computer CapEx Depr 2 years", 'Computer CapEx Depr 4 years' etc.
    I am in Version 9.3.1 and need to migrate to v11 if this feature is available.

    You could also consider supporting detail as this type of data capture method. I've written a few applications where we have provided a "class" of assets in the accounts, but when people entered data in a specific asset class, they used retail support to specify exactly what they were buying. You can report on the support of detail, but it does not require a change for hierarchies.

    Hope this helps,
    -Jake

  • Cannot add new Documents folder only option is to zip file

    When I open the HTML documents and try to add a new folder from the options at the top of the page it does not add a folder if I right click on the page of documents that it will only offer to add a zipped folder

    How to remove and restore the default context Menu items 'New' in Windows 7 and Windows 8
    http://www.SevenForums.com/tutorials/28677-new-context-menu-remove-restore-default-menu-items.html
     
     
  • Automatically add word documents to the list of OPM of word documents

    Is it possible that you can paste a new word document in the rules folder in the project folder and OPA will automatically add it to the Project Explorer or do you add manually new files every time?

    I want to have a request to create a partially formatted word template to the OPM project and the project include construction and be available for editing without adding this document.

    For any help or suggestion would be appreciated.


    Thank you

    It of a hacky Darren solution... and would not be supported to a PoV of product but... If you want, you can write a script custom/some code that could directly edit the file .xproj and add new references to document in the file xml xproj

  • How can I add my Documents on the right side of the start menu?

    I had my old computer set up so that there is one, I suppose, a link to My Documents on the right side of the Start Menu.  If I clicked it it made a menu drop-down, and then resumed for a folder in there.  The hard drive on this computer is dead on my and I try to get this new back upward in the same way as the old.  Can someone tell me how to get that back?

    But you see the small triangles, not you?

    Depending on what you select here:

    gives you the following options:

    • Display as a link - button when the Start Menu is clicked, it opens a window for it.
    • Display as a menu - button when the Start Menu is clicked or hovered over, he developed a menu for him.

    Do this for all items (computer, Documents, etc.).

    And this isn't a right but normal (left-clicking) click...

    HTH

  • Cannot add new device using the USB port

    Cannot add new device through usb ports, the cable is peripheral poering, not listed is not in the menu

    Thread merged:

    try to use the scanner to photo but can not add new device via USB, cable powers the device, but the device not listed is not in the menu

    Hello

    1. do you get an error message when you add a new device?

    2. What do you mean by "the cable is peripheral poering"?

    3 are. what menu you referring?

    4. is it the problem persists with a particular device?

    5. were there any changes (hardware or software) to the computer before the show?

    Reply with answers to help you in a better way.

    Click on the below mentioned link to get an idea on how to ask for suggestions in this forum.

    Suggestions for a question on the help forums

  • Add new instances to the top of the bottom of the list (table or group) vs

    Is it possible to add new instances (i.e. of a table row, or a subgroup) to the "top" of the bottom vs list? New instances are usually added at the bottom of the group, but I have a case in which I am trying to insert new instances of more recent story of Job, so have the instances added at the top of the list is more advantageous.

    Please advise and thanks in advance!

    Hello

    to add an instance on the top use the menthod of insertInstance() instead of addInstance().

    Table1._Row.insertInstance(0, true);
    
  • Add new portgroup for the entire Cluster

    Hello

    Currently I have the powercli script to add a new portgroup to switch existing on the same host.  I'm looking to see how to do this on a whole cluster since the vSwitch I want to add that it is the same vSwitch on all hosts.

    Get-VMHost-name ESXI01 | Get-VirtualSwitch-name vSwitch1 | New-VirtualPortGroup-name cpg400 - VLanId 697

    This command works, but rather to a host at the same time, what is the proper syntax to apply to the entire cluster?

    Have you ever tried something like this?

    Get-Cluster-name mycluster. Get-VMHost | Get-VirtualSwitch-name vSwitch1 | New-VirtualPortGroup-name cpg400 - VLanId 697

  • How to add new features to the line in the nested table advace?

    Hello

    I want to create a new line in the nested table advance.

    Help, please.

    Thank you

    Hello

    Use the code below to add a line in the nested Table.

    If (PageContext.GetParameter ("addRows")! = null) {}

    OAAdvancedTableBean sectionsTable = (OAAdvancedTableBean) webBean.findChildRecursive ("AdvTblRN");

    OAInnerDataObjectEnumerator sectionsEnum = new OAInnerDataObjectEnumerator (pageContext, sectionsTable);

    {while (sectionsEnum.hasMoreElements ())}

    Set of rows sectionsRowSet = sectionsEnum.nextElement () (set of lines);

    for (int i = 0; i)< 1;="">

    NewRow = sectionsRowSet.createRow ((OARow)) OARow;

    sectionsRowSet.insertRowAtRangeIndex (sectionsRowSet.getRowCount (), newRow);

    }

    }

    Thank you

    Dilip

Maybe you are looking for

  • An error occurred during the update the firmware.

    Hello, I have an orange light flashes on my Airport Extreme device indicating that a firmware update is available. However when I tried to update I had the following error every time: "year error occurred while updated the firmware-6, 721. What shoul

  • Help! Error HWSetup

    I can't launch 'Toshiba hardware settings' and I really need now! I get the error «Common module» finished Reinstall the utilities won't solve the problem. Laptop: Toshiba A60 (PSA65E)OS: Windows XP SP2

  • HELP "ARD" (Apple Remote Desktop)

    If you use apple remote desktop, you will have to enter the username and password for the computer you are trying to connect to? And can connect to windows computers? I'm getting a mac soon and I wanted to know this answer.

  • my new lptop does not illuminate

    Hi my new hp i5dool will not turn... I checked the charger is perfectly supported WiFi light thinking... but the pointer is not on... including a new...

  • How to use a vi within another vi

    Hi friends, I use a vi that uses vi another in it. I've made a few changes inside the second vi which is inside the main vi. My problem is that the changes I made in the second vi does not appear in the main vi. I have attached the two vi below. Main