OSB - same branch for multiple operations

Hi,
I have a WSDL based proxy service with multiple operations. For 2 of the operations i want the same functionality and other operations have there own functionality.
So in Operational Branch, can we have the same branch for 2 operations? I can easily create another branch and copy the code, but trying for a better solution.
Thanks.......

Use and if condition
If branch == a | branch ==b
same solution

Similar Messages

  • Single concurrent program for multiple operating units

    HI
    I am working on XML/BI publisher to generate AR invoice reports.
    We have single rdf report using which rtf templates are generated.
    There are 10 operating units (10 ORG_ID's) and 10 rtf templates, one for each operating unit. There are 4 different responsibilities for each ORG_ID
    Eg: ORG_ID's = 11, 12, 13, 14..........etc
    Eg: Responsibility = xx, yy, zz...........etc
    I want to register a single concurrent program. When a user submits a request from "XX" responsibility, then the template associated with that org_id should be generated. Whichever responsibility the user is accessing from, that particular template must be shown as output.
    How can i register one concurrent program for multiple operating units.
    Thanks!
    Edited by: 994628 on Mar 18, 2013 4:39 PM
    Edited by: 994628 on Mar 18, 2013 4:42 PM

    >
    There are 10 operating units (10 ORG_ID's) and 10 rtf templates, one for each operating unit. There are 4 different responsibilities for each ORG_ID
    Eg: ORG_ID's = 11, 12, 13, 14..........etc
    Eg: Responsibility = xx, yy, zz...........etc
    I want to register a single concurrent program. When a user submits a request from "XX" responsibility, then the template associated with that org_id should be generated. Whichever responsibility the user is accessing from, that particular template must be shown as output.
    >
    interesting case for 10 OE set 10 template
    what is purpose? for each OE different requirements for layout?
    BTW
    if each Responsibility associated with one org_id then
    - you can get current org_id when you run concurrent program
    - create main template (will be #11) with condition like
    <?choose:?>
    <?when: ORG_ID=11?>
    <?import:xdo://FND.XX11_SUB.en.00/?>
    <?call:TEMPLATE11?>
    <?end when?>
    <?when: ORG_ID=12?>
    <?import:xdo://FND.XX12_SUB.en.00/?>
    <?call:TEMPLATE12?>
    <?end when?>
    <?otherwise:?>
    <?import:xdo://FND.XX21_SUB.en.00/?>
    <?call:TEMPLATE21?>
    <?end otherwise?>
    <?end choose?>so based on org_id will be import of needed subtemplate
    - re-register your "10 rtf templates" as subtemplates
    another way is substitution of template for concurrent then it running
    in before_report trigger set needed template
    l_conc_request_id := fnd_global.conc_request_id;
        if ORG_ID = 11 then
          UPDATE fnd_conc_pp_actions t
             SET t.argument2 = 'XX11'
           where t.concurrent_request_id = l_conc_request_id
             and t.action_type = 6;
      if ORG_ID = 21 then
          UPDATE fnd_conc_pp_actions t
             SET t.argument2 = 'XX21'
           where t.concurrent_request_id = l_conc_request_id
             and t.action_type = 6;

  • 1099 Reporting for Multiple Operating Units using same Tax Id Number

    Everyone!!!!
    We have multiple operating units using the same tax id number. We need to use the 1099 standard reports. I see that in the 1099 standard programs, one of the necessary parameters is Tax Entity Id which is again at operating unit level.
    As 1099 reports need to be sent at the Tax Id Number not at operating unit level, is there any way to use the starndard program and do this, or will we have to customize it?
    We are on 11.5.10.2 if it matters. Let me know if you need more information.

    Ok, I Found it. We have to customize it. Taxes are reported at Operating Unit level only.

  • How do use the same crop for multiple images.

    I have a number of images that I want to use the same crop on. Instead of go through the whole slow process for each image is there a way to use the same crop for all of the images?
    And in iPhoto there was a way to copy the adjustment settings to multiple images, I can't see how to do that in aperture.

    Use the "Lift&Stamp" tool:
    Crop one image.
    Lift the crop using the "Lift" tool.
    Select the other images.
    Stamp the crop adjustment to all of them.
    But caution: By default "Lift" will copy all Metadata tags and all adjustments, but the gps data. If you only want to transfer the cropping rectangle, deselect all lifted items but the crop adjustment before stamping.
    Regards
    Léonie

  • Same JVM for multiple Frames in a web application

    Hi guys,
    I have a web application that loads an applet during login. Once the login is completed, the web application will display the available functions accessible with a menu on the left frame and the main display page on the right frame. Whenever any form action is perfomed on the right frame, the jvm with the login session seems to exit (java console closes) and the applet will be loaded to prompt the user to login again. The JRE installed on the Windows client is 1.6.0_14 from SUN.
    I'm guessing that the different frames are using different JVMs?
    Is there a way to use the same jvm for a web application with multiple frames? I want to prevent the case where the user will have to login again.
    Thanks for any advice!
    - Zen -

    I have sort of the same problem
    [Identical applets in the same JVM, next generation plugin issue|http://forums.sun.com/thread.jspa?threadID=5396118]
    I have submitted a Request for enhancement to SUN to allow forced grouping of applets in the same JVM.
    Sort of the opposite of the "separate_jvm" Applet tag parameter.
    It seems there is currently no way to do this.
    [New Plugin command line args|https://jdk6.dev.java.net/plugin2/jnlp/#COMMAND_LINE_ARGS]
    When per-applet JVM command-line arguments are specified, it is likely that the new Java Plug-In will need to launch another JVM instance in order to satisfy them. In other words, it is unlikely that a preexisting JVM instance will have been started with the correct set of command-line arguments to satisfy the current applet's request. The rules for exactly when a new JVM instance is launched to start a given applet are deliberately left unspecified, as this functionality is brand new in the 6u10 release and may need to change in subsequent releases. Here is a rough set of guidelines for the sharing and creation of new JVM instances:
    * If the command-line arguments used to start a preexisting JVM instance are a superset of the requested arguments, the preexisting JVM instance will be used.
    * If a JVM instance is launched for the "default" set of command-line arguments (i.e., those specified in the Java Control Panel, with no per-applet arguments specified), then this JVM instance will never be used to launch any applet that has even one per-applet command-line argument.
    * -Xmx is handled specially: if a preexisting JVM instance was started with for example -Xmx256m, and a new applet requests -Xmx128m, then new applet will very likely be run in the preexisting JVM instance. In other words, -Xmx specifications are matched with a greater-than-or-equal test.
    There is no way to "name" a JVM instance used to launch a particular applet and "force" subsequent applets into that JVM instance.
    See the section on the separate_jvm parameter to isolate a particular applet in its own JVM instance, separate from all other applets.

  • How do I use same MDB for multiple Queues? Deployment ?

              Here is what I am trying to do
              I have written one MDB that I want to use for multiple queues. I have seen posting
              mentioning that code a new weblogic-ejb-jar.xml to define other queues as the
              solution.
              Is there any other work around?
              I want to add queues in future as and when needed. I don't want to modify the
              already deployed jar to replace it with new weblogic-ejb-jar.xml everytime I have
              to add another queue for the message-driven-bean. Is is possible to use some kind
              of reference tag and just put weblogic-ejb-jar.xml in a new jar file and deply
              that every time I have a new queue to use for this MDB ( I don't think so, but
              again ???).
              Any help would be greatly appreciated.
              Chris
              

    Sorry -- that's the only solution for now.
              greg
              "Chris" <[email protected]> wrote in message
              news:[email protected]..
              >
              > Here is what I am trying to do
              >
              > I have written one MDB that I want to use for multiple queues. I have seen
              posting
              > mentioning that code a new weblogic-ejb-jar.xml to define other queues as
              the
              > solution.
              >
              > Is there any other work around?
              >
              > I want to add queues in future as and when needed. I don't want to modify
              the
              > already deployed jar to replace it with new weblogic-ejb-jar.xml everytime
              I have
              > to add another queue for the message-driven-bean. Is is possible to use
              some kind
              > of reference tag and just put weblogic-ejb-jar.xml in a new jar file and
              deply
              > that every time I have a new queue to use for this MDB ( I don't think so,
              but
              > again ???).
              >
              > Any help would be greatly appreciated.
              >
              > Chris
              

  • Single inspection lot for multiple operation

    Hi
    I am creating a process order having 10 operation. the 3,5 and 8 are quality inspection (inprocess inspection) & last is PP operation that is for final confirmation.
    The control key in quality operations are pi02 and for production operation are pi03.
    i am using insp type 03 in material master
    Curently only one inspection lot is trigerring for all operations hence while RR, all operation are appearing (Quality & production).
    User needs diffirent inspection lots for different quality operation.
    How can i triggere lots per QC operation??
    I would be vary thankful if i get it.
    AYK

    Hi
    Std will create one inspection lot for 1 process order
    and RR will show all operations which is related to inspection
    ask PP guy that cotrol indicator Pi03 - insp. char to be uncheck
    then it will not show those operations not relevant for inspection
    is't fullfill your requirement
    why your business needs individual inspection lot for each operation?
    give info
    Thanks
    Sami

  • Creating default branches for multiple projects: A_MAIN, B_MAIN...

    I'm trying to figure out how to minimize my pain and get started
    using SCM under JDev for a multi-project development.
    Will it be advantagous to create a PROJ_MAIN branch for each
    project? COMMON_MAIN, AP_MAIN, GL_MAIN ...
    Then the src for each project is not co-mingled so to speak..
    Any thoughts?
    curt

    Curt,
    Certainly this is a good approach. You have probably found that the latest(main) rule provides too many files. By restricting code to, what we call, integration branches, the code is more clearly divided into product areas.
    The JDev WA wizard allows the creation of a workarea based on the latest on a branch, however, from memory this adds the latest(main) rule to the latest(new_branch) rule for the JDev private WA. This again could download more files than required. A better approach is to create a JDev workarea based on a shared workarea (the second choice when creating a JDev WA). This shared workarea is created in the RON or commandline tool. Just give access to one other user or PUBLIC and the workarea becomes shared and available in the JDev WA wizard.
    Taking this one step further, we usually create a configuration, base the WA on this and then share the WA. This provides a nice baseline for development.
    regards,
    David

  • For multiplicative operation

    Can the BigInteger type has multiplicative operation?
    I can't find such operation in the manual.
    Can you help me,
    Thanks alot!
    Ping

    The class java.math.BigInteger has a method multiply() .

  • How Do I put in the same image for multiple songs on iTunes

    Hi,
    I know if I click on the song on "info", I am able to change the album image. Is there a way for me to select multiple songs and do a bulk change with the same image?
    Thanks.

    Yes.
    Select multiple songs, get info and paste the artwork.
    Or select multiple songs and drag the artwork to the artwork window at the lower left of iTunes.

  • Use same URL for multiple SharePoint sites

    Hi there,
    Our requirement is to create multiple web applications in one Farm (which contains 1 Web Front End, 1 Application Server & 1 DB Server) using 80 port of Web Front End which is having single public IP.
    There are number of ways of doing this - One way is to create new domain name for each web application (like www.abc.com; www.xyz.com); another way is to create multiple sub domains in a single domain name like www.sub1.abc.com; www.sub2.abc.com, etc.
    However our requirement for URL naming convention for these web applications is "www.[Domain Name]/[Client Name]"  (like www.abc.com/client1, www.abc.com/client2, etc) 
    In SharePoint we can achieve this if we create one Parent site and others as Child site. However we don't want to us this. 
    So, is their any way where we can form URL of these web applications as "www.[Domain Name]/[Client Name]" 
    Regards,
    Adi

    Is there a reason for this?  I would think subdomains would be ideal, but just curious on the reasoning.  Also, do they need a full web application, or simply different site collections?  If you just need site collections, and assuming you
    don't have a massive number of them, you could use Managed Paths to explicitly allow a site collection immediately under the root url.  Be careful, though, Managed Paths can cause a lot of overhead after you go over 10-15 if you're hardware isn't up for
    it (I would assume you wouldn't put 10-15 web apps on the farm anyway, cause that's also not so great).
    There really isn't a way to do what you are asking for a full Web Application, only at the site collection level(which should be good from my limited understanding of your scenario)
    I am very curious why subdomains wouldn't work, though, as they can all point to the same IP and takes no additional purchasing of domains or anything.
    Christopher Webb MCM: SharePoint 2010 MCSM: SharePoint Charter MCT http://blog.christophermichaelwebb.com

  • Reentrancy for multiple operations

    Hey everybody,
      I understand that there is a subtle dislike for reentrancy, and I can see how it could be a problem if you weren't careful with it.  However, I have a set of code that I need to run on six concurrent rigs from the same PC.  There are parts of it that I know I'll have to duplicate and change, but I was wondering: If there are VIs that I want to run multiple times concurrently and that shouldn't share data, is there a reason not to make them reentrant?  Is the overhead not worth it?
    Message Edited by JeffOverton on 01-23-2008 10:15 AM
    =============
    XP SP2, LV 8.2
    CLAD

    I think part of the confusion with reentrancy has to do with its changes through the history of LabVIEW. Before LabVIEW 8.0, you couldn't debug reentrant VIs, which made them much more difficult to use. Also, before LabVIEW 8.0, you couldn't view a reentrant VIs front panel, which made it impossible to use for dynamically spawned dialogs. That also made it difficult to do pseudo-debugging by viewing front panel controls to track the progress of the VI. The workaround in case of dynamically spawned dialogs was to use template VIs.
    LabVIEW 8 helped make reentrancy more usable. You can now debug reentrant VIs (except when deployed to RT, I believe) and view their front panels. This makes them a more attractive option for dynamically spawned dialogs than template VIs. When opening a template VI, LabVIEW had to make a copy of the entire VI's data space, code, front panel, etc. With reentrant VIs in LabVIEW 8.x (to the best of my knowledge), LabVIEW only copies what's necessary. It doesn't need to duplicate the code itself, just the data space. And if the front panel isn't open, then LabVIEW doesn't need to copy that either for reentrant copies.
    LabVIEW 8.5 added yet another piece to the puzzle for reentrancy. That's the ability to share clones. This might be confusing to some, but very powerful to others. Reentrant VIs allow you to call the same subVI concurrently in multiple places, but the downside is that every instance on the block diagram creates a separate copy of the necessary resources. So if you call your subVI in 100 different places, you'll get 100 copies, even if you only expect a few of those copies to ever execute concurrently.
    The Share Clones option tells LabVIEW to only make copies when all the existing copies are in use and another call needs to be made. In other words, if I have 100 different calls to a Share Clones reentrant subVI, then LabVIEW will start off with only 1 copy of that subVI in memory. As soon as that copy is being called by A, and B wants to make a call to it, you'll get your second copy so B doesn't have to wait for A. If A finishes executing its copy, and C tries to call the subVI while B is still calling it, then C can call A's copy, since it's no longer in use. This allows a minimal amount of subVI resources to be loaded, while maintaining the ability to call a subVI concurrently.
    The downside here is that you really don't know which copy you'll end up getting. A might get copy 1 now, but copy 2 or 3 later. This means you can't rely on cached data in the subVI,  such as uninitialized shift registers that store data from a previous run. You can't be sure that previous run was your previous run, or if this copy has ever had a previous run.
    Sorry if this post is more confusing than helpful, but reentrancy is a powerful tool that should be explored.
    Jarrod S.
    National Instruments

  • How to use the same script for multiple buttons

    Hi,
    I've only just started using flash so any help would be great!
    I'm creating a blockbusters type game, I have a grid of 20 buttons and I need  them (individually) to turn blue on click and red on double click. I've managed to do it with the first one using this code;
    var clicked:Boolean = false;
    bn1.addEventListener(MouseEvent.CLICK, bn1click);
    function bn1click(event:MouseEvent):void {
        clicked = true;
        var newColorTransform:ColorTransform = bn1.transform.colorTransform;
        if(clicked){
        newColorTransform.color = 0x064258;
        bn1.transform.colorTransform = newColorTransform;
    bn1.doubleClickEnabled = true;
    var doubleclicked:Boolean = false;
    bn1.addEventListener(MouseEvent.DOUBLE_CLICK, bn1dclick);
    function bn1dclick(event:MouseEvent):void {
        doubleclicked = true;
        var newColorTransform:ColorTransform = bn1.transform.colorTransform;
        if(clicked){
        newColorTransform.color = 0xac1e23;
        bn1.transform.colorTransform = newColorTransform;
    Now I'm having trouble getting the same to work for the rest of the buttons, they are each named bn2, bn3 etc. They need to work individually and remain blue/red once clicked. I've tried listing them as addEventListener commands but not having a great deal of success!
    Any help would be greatly appreciated, thanks!
    Tomo

    One way to do this is to use arrays to keep track of the buttons and their properties.
    var buttonList:Array = new Array(bn1,bn2,bn3);
    var clickedList:Array = new Array();
    var doubleClickedList:Array = new Array();
    //then use a for loop to assign the functions and properties for each button:
    var thisMany:int = buttonList.length; // this will give you the number of items in the buttonList array
    for(var i:int = 0; i<thisMany; i++) {
         buttonList[i].addEventListener(MouseEvent.CLICK,btnClick); // assign the click function to each button
         buttonList[i].addEventListener(MouseEvent.DOUBLE_CLICK,btnDClick); // assign the double click function
         clickedList.push(false);  // add a false value for each button to this array
         doubleClickedList.push(false);
               buttonList[i].doubleClickEnabled = true; // set the double click property for each button
    function btnClick(event:MouseEvent):void {
              var thisButton:int = buttonList.indexOf(event.target);  // figure out which button was clicked as an item in the array
              clickedList[thisButton] = true;  // change the value in the array
               var newColorTransform:ColorTransform = buttonList[thisButton].transform.colorTransform;
        if(clickedList[thisButton]){
        newColorTransform.color = 0x064258;
        buttonList[thisButton].transform.colorTransform = newColorTransform;
    function btnDClick(event:MouseEvent):void {
              var thisButton:int = buttonList.indexOf(event.target);
              doubleClickedList[thisButton] = true;
        var newColorTransform:ColorTransform = buttonList[thisButton].transform.colorTransform;
        if(doubleClickedList[thisButton]){
        newColorTransform.color = 0xac1e23;
        buttonList[thisButton].transform.colorTransform = newColorTransform;
    Now you can have any number of buttons, just add their instance names to the array at the top.

  • Using the same library for multiple iTunes IDs

    My wife and I have the same exact library. When she buys something, my computer/ipod/devices are authorized to use it. We both got new laptops and we wanted to refrain from adding too much on them. I have an iMac with the music library on it. I signed up for iTunes match so that I could have my library on my devices and our Apple TV. So the question is, how can I get the same library on her devices, without uploading this library to her laptop?
    Can I simply log out of iTunes on the iMac and then log in as her and sign up for iTunes Match under her ID and go through the process again and all is done?
    We'd like to maintain the separate IDs as she purchases apps on her own and then has a lot of podcast subscriptions that I don't. But again, just trying to get the shared library to her device.
    Any help would be appreciated.
    Thanks.

    No, there is no way to do this at this time, and if you make a mistake trying, you can screw yourself up and end up locking yourself out of Match.
    Apple makes a subtle and extremely annoying distinction between "authorization" and "association".  You need "authorization" to play content on a particular computer, and several users with different Apple IDs can authorize their content on a single computer.
    However, to do any of the following:
    -auto-download content
    -download previously purchased content
    -use Match!
    you must "associate" the computer to an Apple ID in addition to "authorizing" it. Only *a single AppleID* may be associated with a computer (not account, computer!) at a time, and this can only be changed once every 90 days. In other words, in this context, it treats the computer just like a mobile device. You can't run Match with more than one user, and Match also precludes anyone else from downloading previously purchased content.
    I recently learned about this the hard way when my son came home from college and used his Apple account to re-download a single TV show on my computer.  When I logged in later to try to use Match, a splash informed me I would have to wait *90 days* to switch back to my AppleID!  Luckily, I emailed the iTunes store and they were able to reset it.  I'm not sure if they have single incident forgiveness policy, if they were able to see exactly how much money I've put in their pockets over the  last couple years, or if they were simply smart enough to realize that *not* doing so could only lose them money in the future.
    Add to this the fact that you now "associate" (with a different definition) your AppleID with your *user account* to use cloud services, and you have three different and inconsistent ways your AppleID is used on a computer.
    Hopefully, Apple will clean all of this up at some point.

  • Is it safe to use the same passphrase for multiple disks?

    I have a very elaborate passphrase using letters, digits and punctuation marks that I'm fairly confident nobody will ever be able to crack even if they have the seed and hash and a couple of million GPU's to throw at it.
    However, from a cryptography course I know that if two "messages" have been encrypted using the same "pad", you will be able to extract information by or-ing the messages, for example.
    Now I'm sure that the encryption scheme in OS X is much more sophisticated, but just to be sure:
    If I encrypt two disks using the same passphrase, and somebody steals both disks, would that make it easier for them to crack it? Is there some way they could exploit the fact that the passphrases are the same? Could they find data by combining the data on the two disks?
    I assume it's not possible, but just checking.

    Short answer: don't worry.  AES-256 is currently a secure scheme.
    Long answer: If your reference to a "pad" is to the reuse of a so-called one-time pad scheme, that's a very different cryptographic system than what's typically used now, and the attacks against a reused one-time pad are different sorts of cryptographic attacks.
    If you're using a one-time pad for a whole disk, you either need a ginormous one-time pad that's itself as big as the disk, or you'll get data that's repeated; a typical disk has great wads of zeros and ranges of blocks of zeros, after all.
    In modern systems, it's quite common for the same private key to be used for thousands and even millions of messages, when asymmetric encryption is used.
    Now I don't know which encryption algorithm is currently being used to encrypt DMGs, but I'd suspect it's still AES-grade encryption.
    AES works very hard at making the results of the encryption process as close to random as it can manage, which reduces the exposure to frequency-based attacks.  (This is also why effectively-encrypted data can't be compressed; there should be no repeats.)  This randomness is part of the basis for the attacks against the one-time pad; that the output of the pad - the encrypted data - if the one-time pad is re-used - isn't really random.  Particularly if you know (or can guess) some of the cleartext, too.  Or those big blocks of zeros.
    Now the other central discussion here is around how much somebody would pay to decrypt your data.  Because if your data is worth enough to the attacker, then there can potentially be other ways to attempt to gain access, even if AES itself isn't breached. 
    If you're storing some very valuable data (worthy of attacks), then receiving guidance from some yutz like me in an Apple forum probably isn't in your best interest.  But if you're not storing miltary-grade, or financial secrets, or identifying medical data, or credit card data, then AES-256 will do nicely.  And even if you are, AES-256 might be enough.  But check with the crypto and legal folks for details, or with your site security officer.
    And as was correctly noted in an earlier reply, if a password is used once, and once known, an attacker will try it against other systems and servers.  This being another common form of re-use.
    If you're interested here, then get one or two of Bruce Schneier's books on crypto.  If you don't already have them.

Maybe you are looking for

  • How to show an empty JLabel?

    Hi, I tried to create a JLabel containing nothing, gave it a size and a background color...but when i add it to a JFRame, it just won't show! I tried setVisible(true), and it's not either! Anyone knows what i should do?

  • OTL -Time Sheet Hour Type field detail required.

    Hi all, I'm working on a Report which gets time sheet data for an employee. My time sheet structure has project, Task,Type and Hour type. I have got all the column data as required for my report but i'm not able to find out where the hours type info

  • Role Base Data Access in Report

    Hi , I am looking to acress only that data in my report which is relevent to my role. i.e.  If I am looking for New Opportunity report I need that only those opportunities should referect which are relevent to me . Regards, Rohit

  • Windows 2003 server and a mac

    Hi We have a powerbook G4 running 10.4.6 And we want to use it on a windows 2003 server network. How is this done? i.e server end and mac end.   Mac OS X (10.4.6)   1 GB of ram

  • Cannot cannot to the network even though I am using the correct password

    I cannot connect to the network even thought  I am typing in the password on my belkin router