To use one Global Interactive in two processes

Hi
Currently, I have a function say "Display time" defined in a global interactive activity and I have two processes in my project.I have placed one each in every process.However in the application panel , there comes two applications with the same name i.e both global interactives.Is there a way to define only one global interactive for both the processes so that i have only one application in the application panel.
Thanx in advance
Ritu

Hi,
I tried invoking the same global interactive activity but no success.Actually I am calling a PAPI method 'ClientBusinessProcess.connectTo(processId)' and I guess because of this, my functionality is not excuted since it is not able to connect to the other process where the global inetractive is not placed.
Can anybody suggest any solution for the scenario explained below?
Say there are two processes ,Process 1 and Process 2 and I have a global interactive activty placed in process 1 with the method 'ClientBusinessProcess.connectTo(processId)' .Now I want to execute the same global interactive with same method from Process 2 .
Regards,
Ritu

Similar Messages

  • TS4268 i use my apple id that i create it for my iphone 4 on my new iphone 5,then i want to activate the imessage but i can't.what should i do?i want to know i can't use one apple id for two iphone 4 & 5?

    i use my apple id that i create it for my iphone 4 on my new iphone 5,then i want to activate the imessage but i can't.what should i do?i want to know i can't use one apple id for two iphone 4 & 5?

    HI
    I was trying to take my Mac air to factory default settings.
    I've done all that it says in the documment i was following, and them during the process it asked me the APPLE ID.
    I put the apple id i have in my iphone. But it's not the one... it's said that i don't have any OSX associated with it... so it can not install the OSX.
    So what can i do?

  • HT204053 Can I use one Apple ID for two Apple IPhones?

    Can I use one Apple ID for two Apple IPhones? I received an answer of yes.
    Now another question.  I have one ICloud Account, Two IPhones.  Can I use Find my IPhone via the one ICloud Account?  Can I see two IPhones on the map at the same time?  or do I need to view the second phone via some other method.
    Message was edited by: Hunter3D

    Yes.
    Cheers,
    GB

  • Using one Itunes database across two macs

    Using one itunes database across two macs
    I currently run a 2010 MBP (500gb hd) at home and on the road and a 2013 Imac (1Tb hd) at work. I have a large lossless itunes library of about 300gb and would like to increase the library further.
    My MBP started running slowly and I realised that my iTunes library was choking the whole computer. I started to explore ways to store my library on a remote disk and bought a G drive 1Tb portable drive.
    My efforts to carry out the transfer were only partially successful with most of my library transferring but a significant number of tracks displaying the ! sign which means they couldn't be located.
    I have also got an Imac at work and what I had hoped to achieve was to have my iTunes database on the 1tb portable drive and use the portable disk on both my MBP and iMac.
    Our technical support company are dubious about whether this will work because the local specific itunes library data on each machine will differ and each machine will not operate correctly with the underlying data on the portable drive.
    I am not very technical and I am finding it difficult to follow the various posts on this board and elsewhere. Many seem to comment on splitting their library across multiple disks but I cant really seem to get to the bottom of storing my library on one disk and using it across multiple computers.
    Is what I am trying to achieve practical?
    If it is, can someone point me to an article/post please? Or alternatively could someone explain how I might achieve my goal.
    Thanks in a advance for your help.

    Here you go.
    http://lifehacker.com/software/itunes/ultranewb--how-to-move-your-itunes-library -to-an-external-drive-238296.php

  • Can I use one phone number on two iphones with two apple ids?

    My carrier allows multiple sim cards with the same phone number for usage on different devices. I would like to use a second sim card for my phone number on a second iphone, but with a different apple id.
    Is it possible to use one phone number on two iphones with separate apple ids? How does this affect facetime/imessage?
    I can only find answers to using the same apple id on multiple devices. This works fine, but is not what I want to do here.

    You may be able to change the suspicious account activity message alerts
    in your Gmail settings, and check that side of it, since I can use several
    means of accessing my Gmail and Google Accounts; and in the past had
    shared an account (not google) with another party half a world away when
    her email server went down for a month.
    The Mail software should not know the difference, unless the setup in there
    is not correct; if this is so, then more than what she says would be wrong.
    The Google mail Support help site pages should cover this adequately.
    Gmail Help - Google Help
    https://support.google.com/mail/?hl=en

  • Can I use one iCloud account for two phones without sharing contacts

    Can I use one iCloud account for two phones without sharing contacts

    If so how do I unmerge the two phones?

  • How to use one commandButton to execute two tasks in JSF

    I have a form in JSF page which contains different faces components. These faces bind to ADF BC to insert one row in the database when the user press commandButton. Also I need to bind the value of one inputText in that form to managed bean to execute another task in the application when the user press the same commandButton.
    The code of the inputText:
    <h:inputText value="#{bindings.ProjectNumber.inputValue}"
    id="pn"
    size="10"
    required="#{bindings.ProjectNumber.mandatory}">
    The code of commandButton:
    <h:commandButton actionListener="#{bindings.Commit.execute}"
    value="Save"
    disabled="#{bindings.Commit.actionEnabled}"/>
    The managed bean is �findInspector�. I tried to insert inputHidden inside commandButton tag and assign the value of the inputText to the inputHidden as follows:
    <h:commandButton actionListener="#{bindings.Commit.execute}"
    value="Save"
    disabled="#{bindings.Commit.actionEnabled}">
    <h:inputHidden value="#{bindings.ProjectNumber.inputValue}" binding="#{findInspector.project}"/>
    </h:commandButton>
    But it was not work
    Please how can I write the code to use the value of the inputText more than one time in the JSF(one to insert one row by using ADF BC and another to use the same value to bind to a managed bean) and how to use one commandButton to execute two tasks in JSF.
    Thank you
    Waheed

    Just dopublic void execute() {
        anotherAction(inputValue);
    I guess those articles might be interesting about passing params and the usage of inputHidden and also about using datatables:
    http://balusc.xs4all.nl/srv/dev-jep-com.html
    http://balusc.xs4all.nl/srv/dev-jep-dat.html

  • How to use one commandButton  to execute two task in JSF

    I have a form in JSF page which contains different faces components. These faces bind to ADF BC to insert one row in the database when the user press commandButton. Also I need to bind the value of one inputText in that form to managed bean to execute another task in the application when the user press the same commandButton.
    The code of the inputText:
    <h:inputText value="#{bindings.ProjectNumber.inputValue}"
    id="pn"
    size="10"
    required="#{bindings.ProjectNumber.mandatory}">
    The code of commandButton:
    <h:commandButton actionListener="#{bindings.Commit.execute}"
    value="Save"
    disabled="#{bindings.Commit.actionEnabled}"/>
    The managed bean is “findInspector”. I tried to insert inputHidden inside commandButton tag and assign the value of the inputText to the inputHidden as follows:
    <h:commandButton actionListener="#{bindings.Commit.execute}"
    value="Save"
    disabled="#{bindings.Commit.actionEnabled}">
    <h:inputHidden value="#{bindings.ProjectNumber.inputValue}" binding="#{findInspector.project}"/>
    </h:commandButton>
    But it was not work
    Please how can I write the code to use the value of the inputText more than one time in the JSF(one to insert one row by using ADF BC and another to use the same value to bind to a managed bean) and how to use one commandButton to execute two task in JSF.
    Thank you
    Waheed

    Yes I did
    <managed-bean>
    <description>The bean for get project No</description>
    <managed-bean-name>projectBean</managed-bean-name>
    <managed-bean-class>
    mcscm.model.ProjectBean
    </managed-bean-class>
    <managed-bean-scope>request</managed-bean-scope>
    <managed-property>
    <property-name>bindings</property-name>
    <value>#{bindings}</value>
    </managed-property>
    </managed-bean>
    Also I changed the method in the managed bean as follows:
    public String commandButton_action() {
    FacesContext fctx = FacesContext.getCurrentInstance();
    ValueBinding vb = fctx.getApplication().createValueBinding("#{bindings}");
    DCBindingContainer dcb = (DCBindingContainer) vb.getValue(fctx);
    OperationBinding operation = (OperationBinding) dcb.get("projectNumber");
    operation.execute();
    return null;
    where projectNumber is my method in the java class of the application module "TaskInformationImpl". I made this method to be accessed from outside of ADF BC.
    I just create a sample code for projectNumber method for testing only as:
    public void projectNumber (String data){
    System.out.print(data);
    In the page Pagedef file I added this :
    <methodAction id="projectNumber"
    InstanceName="TaskInformationDataControl.dataProvider"
    DataControl="TaskInformationDataControl"
    MethodName="projectNumber" RequiresUpdateModel="true"
    Action="999" IsViewObjectMethod="false">
    <NamedData NDName="data" NDValue = "#{bindings.ProjectNumber.inputValue}" NDType="java.lang.String"/>
    After I did all of this I get a new error like:
    javax.faces.FacesException: #{projectBean.commandButton_action}: javax.faces.el.EvaluationException: java.lang.ClassCastException: oracle.adfinternal.view.faces.model.binding.FacesCtrlAttrsBinding cannot be cast to oracle.adf.model.OperationBinding
    Is it very difficult to do this in JDeveloper?. yes ADF BC provide me a lot of facilities, but when I want to do a specific task I face a lot of troubles

  • Use one store account for two I pads. Get request for security code

    Trying to use one store account for two I pads. One works fine, the other is unable to download a free app, window asks for security code.?.......
    What security code?

    Probably the security code on your credit card

  • How can I set up a wi-fi network, using one time capsule and two airport express

    how can I set up a wi-fi network, using one time capsule and two airport express ?
    The time capsule is near the Mac. ok
    The first Airport is on the corridor, ok, works well and the App on the iPad signals so, ok
    But when I plug the next Airport on another room nearby nothing happens, and signals disconected ....
    is the signal so weak that is not able to go to ono room to the other ?

    Well, even if you have the first express set up to extend the network, the second express can only extend from the TimeCapsule.
    Maybe you got walls of sheetrook in the way, or kitchen/bathroom tiles, etc, dampening the signal rapidly.

  • Is it ok to use one apple id for two devices ?

    is it ok to use one apple id for two devices ?

    Here's the deal: The SLA permits the "sharing" of content with up to 5 family members in the same household. Any other distribution of content is considered stealing...the SLA does not give you the right to distribute content in any way, shape or form. Its really that simple, and "friend" is NOT a family member living in the same household.

  • We use one windows machine and two mbp's (post 2012) at home. We have a modem *** router from a  non apple vendor that airport utility finds and connects with absolute ease. But doesn't stay connected. The signal drops often, what can I do?

    We use one windows machine and two mbp's (post 2012) at home. We have a modem *** router from a  non apple vendor that airport utility finds and connects with absolute ease. But doesn't stay connected. The signal drops often, what can I do?

    No, not all network clients -- only the two mac portables and they run together very rarely. The windows machine is hardwired to the modem router combo, and that's always sailing smooth. The mbp that is most used is perhaps 20 feet max from the router - and in another room. But it also happens when I take in into the same room as the router. On occassion, I have noticed while using network diagnostics, that one digit in the IP number sometimes appears to go awry. I then try to set up manually - and it works for a bit but is hugely erratic.
    I rigged a hand me down airport express and set up a separate network for the two macs and it ran beautifully for some weeks, but that little piece is now dead and none of the retailers in my suburb seem to have one in stock. I don't want to be forced to buy an airport extreme and here in India, there's no trustworthy online ordering option.
    The man from the ISP's been here several times and I don;t think it is a modem/dsl issue because the smartphone connects and the macbook drops when both are the same distance from the router? I am truly foxed and intensely irritated! :-(

  • How can I use one gmail address on two different macbooks in 'mail'?

    I'm using one business gmail address. Me and my girlfriend both have a macbook. Now the gmail address is linked to my macbook. But she wants to use it as well. Unfortunately the 'mail' system won't allow her to sync with the gmail address. And I get messages from gmail saying that someone tried to log in to my account. Which is something I certainly want, but can't change. Does anyone now how I can use 1 gmail address on two different mac's? Thanks

    You may be able to change the suspicious account activity message alerts
    in your Gmail settings, and check that side of it, since I can use several
    means of accessing my Gmail and Google Accounts; and in the past had
    shared an account (not google) with another party half a world away when
    her email server went down for a month.
    The Mail software should not know the difference, unless the setup in there
    is not correct; if this is so, then more than what she says would be wrong.
    The Google mail Support help site pages should cover this adequately.
    Gmail Help - Google Help
    https://support.google.com/mail/?hl=en

  • Using one Apple ID with two iPhones

    A couple has his and her phones but only one Apple ID.  They want to keep his and her music separate.  They have checked the appropriate playlists for each phone, but the entire music library is on both phones.  Can the music be separated in this situation?

    Really appreciate this quick response.  So I guess there won't be an issue to use the same id on two iPhones at the same time.
    Thanks again!

  • Using one external drive with two computers

    I have been trying to figure this one out but I seem to be stuck. I have a desktop PC running XP and a notebook running Vista.
    I am using Lightroom 2 on both machines. I would like to move the external USB harddrive from machine to machine and use the same catalog stored on the external drive. I am having a little problem with this because the two machine assign a different drive letter to the USB drive when I attach it. Has anybody tried doing this?
    Regards
    Mike

    With the drive hooked up, in Windows Control Panel go to Computer management. There you can assign a drive letter to the external drive. Use one at the other end of the alphabet (PQRST etc) so you don't clash with inbuilt drives etc.
    I do exactly this and have no problems. I also have left my backups going to my C drive so the backup is on a different drive to the working drive.
    You can also just hold down the shift key on booting LR and manually select the correct catalogue or you can double click on the catalogue and LR will open it.
    Gordon

Maybe you are looking for

  • Color Picker Doesn't Work

    I'm using PSE8 on a PC with Windows7 and something seems to be wrong with my color picker in the Editor.  I click on the Foreground icon (lower left of the screen), choose a color, click OK, and it doesn't change the color on the icon.  The default c

  • Whatsapp on iPad mini with "Cellular"

    I have recently purchased an iPad mini wi-fi   Cellular. I want to use Whatsapp on the iPad. It is not installing. Why should this be so especially since apple has provided facility of "Cellular" and i have a cellular connection with a number? Can so

  • Animation effects charts

    I want to create animation effects in charts when some data changes.For eg: in a Pie Chart I want the slices to rotate based upon the new data values.And also highlight the slice whose data value got changed by setting its color to some other tempora

  • Exceptions in mapping

    Hi! I have one question... How & where can I INSERT (for log) rows which are EXCEPTIONS in "INSERT MAPPING"? Thanks

  • PRodn qty to be 2% of sale order

    hi, my requirement is that when a sale order for a matrl is created for 100nos,the prodn plan has to be always 2% of the sale order, ie the pld order or a prod order should be 102 nos. is this possible in std SAP. If so how? regards