Is it possible to reuse 1 taskflow over 3 different models?

Hello

using JDEV 11.1.2.3. and implement the 1 taskflow will be used in 3 different applications using 3 different models.

Is this possible?

What the same question you asked in this thread https://forums.oracle.com/thread/2613427 ?

Your question to not clear to me. A workflow encapsulates a unit of work. If you use for example a table in the workflow task, there must be a model to provide data for this table. This model is encapsulated in the workflow too.

By this definition, you can reuse the workflow.

If you mean to use different models (each application uses different models to provide data in the table from different sources) is not impossible but difficult to do. Duncan Mills blog on a solution here https://blogs.oracle.com/groundside/entry/adaptive_connections

Timo

Tags: Java

Similar Questions

  • Is it possible to reuse a disc of windows 7 and buy a new product key?

    Hi all

    I want to use wi made 10 pro 64 bit on my new PC, which will build the next week if the parties appear, and I don't know if I can wait the 29.

    I have a full version of w7 (two disks for 32 and 64-bit) ultimate glc-00182 sku, but used on my old machine and I plan to give this machine for my master's degree for offline games.

    Is it possible to reuse it until I can get w10, like I've just stuck on hold or is there another solution?

    Thank you

    Dave

    Hello

    To add to the advice of Shawn, Amazon.com are about the only place to buy Windows 7 online with a sort of reliability. But beware the buyer is the rule.

    http://www.Amazon.com/Microsoft-Windows-7-8-software/b?ie=UTF8&node=1286119011

    There are sites online that sell only product keys.

    Do not touch the as they are for most pirated product keys or MSDN subscription product keys sold several times.

    Even if you don't need it, always buy the packaged product, DVD, product key, etc. in a sealed package.

    See you soon.

  • Is it possible to reuse a region in several pages?

    Is it possible to reuse a region in several pages?

    For future maintenance, it would be easier to make changes in the region alone. Keep several copies of a region is more work and eventually someone will not forget to modify one of the regions.

    Thank you.

    Hi wolfv
    Create your area on page 0 and then conditionally set the display of the region for specific pages in your application only.
    In 'condition type' attribute region Select "current page is contained within the Expression 1 (delimited list of pages)" and in Expression 1 set 1,2,4,6,99 etc or pages what ever you want it to appear on.
    This works especially well for parts of the tree.

    concerning
    Paul P

  • Is engineer to the relational model - possible to force a crash of the relational model

    Hello

    Is it possible to force a crash of a relational model existing at execution of the engineer to the relational model? Example: If I change the order of an attribute (in an entity) and do an engineer to the relational model, the order of the columns (in the table) remains the same. Although as said, I changed it in the logic model. It is with my current settings. I have not found a property to the order 'RM keep' or 'forcing the crash of the RM.

    How can I make such a change to the relational model?

    Best regards

    Robert

    Hi Robert,.

    support - Yes it is in the direction opposite - order of the attributes of logic model is applied to the columns of the tables.

    On the search feature:

    http://www.thatjeffsmith.com/archive/2012/11/SQL-Developer-Data-Modeler-v3-3-early-adopter-search/

    http://www.thatjeffsmith.com/archive/2015/07/search-and-replace-in-Oracle-SQL-Developer-Data-Modeler/

    https://apexapps.Oracle.com/pls/Apex/f?p=44785:24:no:P24_CONTENT_ID, P24_PREV_PAGE:6623, 2

    and here Oracle Sql Developer Data Modeling 3 3 new features

    shortly:

    (1) do simple search - put asterisk and press enter

    2) filter on the tables

    (3) properties of the Commons game - there is a bug on this feature in 4.1.888 but it will do the job

    BTW - DM is distributed with the transformation (named "Columns order") script that reorders columns in a specific way - PK columns, the columns FK, the required and optional columns.

    At the end of the treatment for each table, it sets this property to false - table.setAllowColumnReorder (false);

    So, you can do the same thing with the scripts - there are examples that you can use as a starting point.

    Philippe

  • I have 3 devices I want to use Photoshop on.  Is this possible without having to pay for 3 different accounts?

    I have 3 devices I want to use Photoshop on.  Is this possible without having to pay for 3 different accounts?

    Hi career,.

    You can stay connected to creative cloud to two devices at the same time.

    If you want to use on the third device, you must disconnect from one of the other two devices so that you can connect to the third.

    Kind regards

    Claes

  • is it possible to reuse variables between sem_match queries?

    Hello

    I saw examples of the list of the variables in sparql queries link. I'm curious to know if it is possible to bind variables between sem_match queries. Please advice. Thank you very much in advance.

    Hong

    Hong,

    For the scenario you describe, you need to add code to the loop on the first request and then link and run the second query for each result. Similar Java code would be necessary for adapter Jena variables lie as well.

    SQL> set serverout on;
    declare
      type ctype is ref cursor;
      c       ctype;
      emp_uri varchar2(4000);
      email   varchar2(4000);
    begin
    
      dbms_output.put_line(chr(10));
    
      open c for
        'select x
         from table(sem_match(
         ''SELECT *
           WHERE
           { ?x rdf:type  }''
         ,sem_models(''m1'')
         ,null,null,null,null
         ,'' ''))';
      loop
        fetch c into emp_uri;
        exit when c%notfound;
    
        MY_CTXT_PKG.set_attribute('name','<' || emp_uri || '>');
    
        execute immediate
         'select e
          from table(sem_match(
          ''SELECT *
            WHERE
            { ?x   ?e
              FILTER (sameTerm(?x,oraextf:myCtxFunc("name")))}''
          ,sem_models(''m1'')
          ,null,null,null,null
          ,'' ''))'
        into email;
    
        dbms_output.put_line('email=['||email||']');
    
      end loop;
      close c;
    
    end;
    /
    SQL>   2    3    4    5    6    7    8    9   10   11   12   13   14   15   16   17   18   19   20   21   22   23   24   25   26   27   28   29   30   31   32   33   34   35   36   37   38   39   40   41   42   43 
    
    email=[[email protected]]
    email=[[email protected]]
    email=[[email protected]]
    email=[[email protected]]
    
    PL/SQL procedure successfully completed.
    
    Elapsed: 00:00:00.07
    SQL>
    

    In order to reproduce the example of adapter Jena in the docs, you can use three values different session (name1, name2, Name3) to bind in three values at once.

    SQL> exec MY_CTXT_PKG.set_attribute('name1','');
    
    PL/SQL procedure successfully completed.
    
    Elapsed: 00:00:00.00
    SQL> exec MY_CTXT_PKG.set_attribute('name2','');
    
    PL/SQL procedure successfully completed.
    
    Elapsed: 00:00:00.01
    SQL> exec MY_CTXT_PKG.set_attribute('name3','');
    
    PL/SQL procedure successfully completed.
    
    Elapsed: 00:00:00.00
    SQL>
    SQL> select e, t
      2  from table(sem_match(
      3  'SELECT *
      4   WHERE
      5    { ?x     ?e .
      6       ?x rdf:type ?t
      7       FILTER (sameTerm(?x,oraextf:myCtxFunc("name1")) ||
      8           sameTerm(?x,oraextf:myCtxFunc("name2")) ||
      9           sameTerm(?x,oraextf:myCtxFunc("name3")) )
    10    }'
    11  ,sem_models('m1')
    12  ,null,null,null,null
    13  ,' '));
    
    E                   T
    ------------------------------ ------------------------------
    [email protected]               OracleHQEmployee
    [email protected]            OracleHQEmployee
    [email protected]            OracleHQEmployee
    
    Elapsed: 00:00:00.14
    

    Hope this helps,

    Matt

  • Is it possible to reuse email eprint on a replacement printer

    Exchanged defective printer

    Unfortunately not,.

    No matter what address existing ePrint cannot be reassigned for 6 months for security reasons.

  • is it possible to add a voice over on the fly?

    After Assembly, I would like to add a comment to my own voice recording using the microphone on the smartphone in Clip

    Hi Michiel,

    First Clip currently does not support votes above. This is a feature we'd like to still get in the app.

    Sorry, we could not be the tool you used for this project. Looks like a good!

    Good luck and keep checking back in the updates.

    Best,

    Peter Garaway

  • Is it possible to reuse the mapping file which was produced to match the FrameMaker styles to RoboHelp when you create a PDF file in RoboHelp?

    I use RoboHelp 11 to produce WebHelp. The documentation has been previously written in FrameMaker and published in PDF format, but he suffered many outings since then. I am now prompted to create the help PDF and WebHelp. Not really a problem except that the help format doesn't look particularly good in PDF format (not designed for two).

    Ideally, I would just use the mapping file to the original frame to the RoboHelp conversion in sense (with some editing) reverse - to convert RoboHelp styles in original FrameMaker formats when I create the PDF, however, A) there doesn't seem to be an option for that and B) originally FrameMaker in RoboHelp map file does not seem have been kept after this conversion.  He's here and I'm just not see it?

    If necessary I can just create a different CSS to redefine the styles, but if I don't, I rather not.

    I think that even if you can't find mapping information (pass to know where) it would just tell you A Style on the Fm band has been mapped to the B Style in HR but gives you no information on how Style has been set on the Fm band.

    I think your only options are to create a CSS that suggest you or, as I would create, redefine the model of mapping of the Word Style on. By going to the first word, you can change the output for page breaks better and other tweaking you may want.

    See www.grainge.org for creating tips and RoboHelp

    @petergrainge

  • When I google search and click on one of the list of possible sites, I get redirected to another different website

    For two days, every time I was doing a search on google, I get a list of appropriate Web site options or possible but when I select one of them, it takes me to a website totally irrelevant. When I can use the button/arrow to the left and select the same Web site from the list, need me to correct Web site. This will not occur in Internet Explorer. for example today I searched powertools, selected www.dm- tools,co.uk and had Nettravel. I came to this site a few times too although I didn't choose it. When I googled sought "potatoes" and selected the "Council of the potato" he directed me to the Web of Lakeland site on their page of bag of potatoes.

    Probably caused by redirect looking for Malware.

    Install, update and run these programs in this order. They are listed in order of efficiency.
    (Not all programs to detect malware, you may need to run them all to solve your problem.)
    These programs are provided free for personal use, but some have limited functionality in "free" mode - but these are the features that you really need not to find and eliminate the problem you have.

    Note: If your malware infection is bad enough and you're poorly led to URLS other than what is displayed, you may need to use another PC to download these programs and use a USB stick for transfer to the afflicted PC.

    Malwarebytes' Anti-Malware - http://www.malwarebytes.org/mbam.php

    SuperAntispyware - http://www.superantispyware.com/

    AdAware - http://www.lavasoftusa.com/software/adaware/

    Spybot Search & Destroy - http://www.safer-networking.org/en/index.html

    Windows Defender: Home Page - http://www.microsoft.com/windows/prod.../default.mspx

    In addition, if you have a re-direct search engine problem, see this:

    http://deletemalware.blogspot.com/2010/02/remove-Google-redirect-virus.html

    If they can't find it or cannot delete it, post in one of these forums using specialized malware removal:

    http://www.spywarewarrior.com/index.php

    http://Forum.aumha.org/

    http://www.spywareinfoforum.com/

    http://bleepingcomputer.com

  • Is it possible to have the audio from two different sources and routed to separate outputs at the same time?

    I currently have a string of the guitar signal electric-Rocksmith Real Tone cable - ASIO 4 all help IK Multimedia Amplitube 3.   I would like to know if I could also watch DVD with her while the implementation of the programme of Amplitube with sound.  It would be great that I use the DVD for guitar and play at the same time.   I don't have the signal of two merged as one.  In my mind, I should be able to disable the ASIO devices and use them with DirectX as usual.  I could send the ampitube signal to the headphones and use external speakers for the guitar signal, and use the lessons of speakers for the DVD (or maybe YouTube) laptop on board.

    Is this possible?

    How can I do?

    Toshiba Satellite X 205-S7483

    Jeff

    Yes.  For example, I have my Skype phone calls go to my helmet (normal just plugged in the headset) while my media player plays my speakers.  You can choose your default communication or multimedia devices with a right click on the volume control icon and choosing "playback devices".

    Other programs can also be built to be "to the output current" and allow you to choose the output too.

  • How to print a list of the names of the pictures in a file (I have over 700 different names and separate .jpg files)

    I scanned and stored genealogical photos and documents in my laptop.  I have over 700 documents in format .jpg.  All are in a single file.  I would like to print a list of the names of the document and photograph, but not to print documents and images in their entirety.  How can I do this?

    Meg Staton,

    The leak-you don't need to use. However, I see that you have typed the "BOLD" section but you haven't typed the entire order? dir/a/b (space) c:\users\meg\pictures\ancestrydocs\ (space) > c:\users\meg\pictures\ancestrydocs\list.txt (space)

    I used (space) instead of a real space for clarification.

    The part of the order before > basically Gets the list of the names of files that are included in the ancestrydocs folder and the part of the order after the > creates a text file list.txt names in this directory with the names of the files.

    Awaiting your response

    Chris.H
    Microsoft Answers Support Engineer
    Visit our Microsoft answers feedback Forum and let us know what you think.

  • Is it Possible to have 2 methods to load different run a lot in a typical Application of FDM?

    We run FDM Classic 11.1.2.3.00 with an ES11XG4-K adapter.  We have a request from FDM with 2 locations using the load method to replace. Is it possible have 2 slots have loads different methods; This is a have to use the Replace method and the other a fusion method run on a lot? If Yes, can someone guide me how to do it?

    Thank you

    See the classical FDM Administrator's Guide.  Batch loader files have a name format for specific file with the segment identifiers - starts ~ rental ~ Category ~ Period ~ LoadMethod.txt

    The tag of the Load method is a two-character segment.  The second character identifies the method load application target, for example "A" to append and 'R' to replace.  I think that's what you're looking for.

    See the Guide to the classical FDM administrator for more details.

  • Is it possible to work with Muse on two different PCs and to work on the same files at the same time?

    Is it possible that two people work the same files with different PC edition?

    No, this is not possible.

  • Is it possible to move the library to a different HARD disk yet?

    I noticed that my library takes almost 4 GB of space on my SSD and want to move it to another disk HARD - is this possible (my SSD is short on space and I want only Windows out there)

    Thank you all!

    AZA

    Yes. Copy it. Then point to it.

Maybe you are looking for