Linking different processes under same workspace

Hi..
I have few processes under my workspace which i need to link. Like calling a process from another process ?
Is there any way to link these process so that the flow can be continuous ???

I am not really sure of what you are trying to do, but 1 of the options can be to send a Notification from 1 process to the other process, and have a Notification Wait activity in the called process receive it.
HTH
Rajat

Similar Messages

  • Is it possible to differentiate one payroll area with different currency under same company code

    Hi experts ,
    MY client wants to pay in yemen currency for the employees who working in yemen, but it was comes under same company code created for india.we have differentiated yemen under different payroll area wise . so is it possible to  differentiate one payroll area with different currency under same company code.
    thnx,
    vamshi keshavapatnam

    Hi Vamshi,
    I don't think so what you have done is correct. It seems like Global Employment functionality. As I understood you have some EEs which are Indian but working in company branch of Yeman.
    If this is the case you should define a new company code for Yeman branch and use Global Employment functionality. By this you can make decision to pay in home currency or traget country currency.
    Regards,
    Omid

  • Opening different cursor under same name?

    I have a problem that depending on a if statement I want to open two different cursors. The cursors have the same format for their ROWTYPE. Like:
    CURSOR a_cur IS SELECT a,b FROM c WHERE d=e;
    CURSOR b_cur IS SELECT a,b, FROM c WHERE d<>e;
    Then I want to run the same logic in the fetch loop no mater if I opened a_cur or b_cur. At the moment the logic is replicated in the code, but I would like to avoid this. Is it possible to open either one of them as a alias and then run the fetch loop on the alias. Some thing like this:
    DECLARE
    g_val a_cur%ROWTYPE;
    BEGIN
    IF f=1 THEN
    OPEN a_cur as opened_cursor;
    ELSE
    OPEN b_cur as opened_cursor;
    FOR g_val IN opened_cursor LOOP
    <lots of logic>
    END LOOP;

    Here is an example of using a REF CURSOR:
    create table t
    (x int)
    insert into t
    select rownum
      from all_objects
    where rownum <=10
    declare
       rc sys_refcursor;
       rec t%rowtype;
       condition varchar2(1) := 'E';
    begin
       if condition = 'E' -- Even Numbers only
       then
          open rc for select *
                        from t
                       where Mod (x, 2) = 0
       elsif condition = 'O' -- Odd Numbers
       then
          open rc for select *
                        from t
                       where Mod (x, 2) = 1
       end if;
       loop
          fetch rc into rec;
          exit when rc%notfound;
          Dbms_Output.Put_Line (rec.x);
       end loop;
    end;

  • Trying to sync different 700p under same user

    Hello.  Hope someone can help.  My 700p died.  Like the calendar/planner so I bought a used one.  Trying to sync my calendar to the different 700p.  my computer and hot sync are not recongnizing the different phone.  Any hints?
    Post relates to: Treo 700p (Verizon)

    Did you Hard Reset the "new" used phone before trying to sync it?  This should be done, then when you try to sync it after erasing it, choose your original HotSync name and all the data should migrate to the phone from your computer.
    To perform a Hard Reset: (Palm Knowledgebase article #887)
    http://kb.palm.com/wps/portal/kb/common/article/887_en.html
    WyreNut
    I am a Volunteer here, not employed by HP.
    You too can become an HP Expert! Details HERE!
    If my post has helped you, click the Kudos Thumbs up!
    If it solved your issue, Click the "Accept as Solution" button so others can benefit from the question you asked!

  • Migrate & coexist Exchange 2010 to 2010 in two different site under same domain

    Hi all,
    The initial plan was planning to coexist Exchange 2010 (old data center) & 2013 (new data center) .
    Unfortunately there was a problem of upgrading the existing exchange 2010 sp2 to 2010 sp3 and Microsoft said they don't support this anymore.
    So the only plan I can think of is build another exchange 2010 with SP3 (new data center)  to coexist with existing exchange 2010 SP2 first then followed by exchange 2013.
    I don't see any relevant info on the Internet for the coexistence of exchange 2010 SP2 and SP3. can you please share some detailed steps or info?
    Thank you very much in advanced.

    Hi all,
    The initial plan was planning to coexist Exchange 2010 (old data center) & 2013 (new data center) .
    Unfortunately there was a problem of upgrading the existing exchange 2010 sp2 to 2010 sp3 and Microsoft said they don't support this anymore.
    So the only plan I can think of is build another exchange 2010 with SP3 (new data center)  to coexist with existing exchange 2010 SP2 first then followed by exchange 2013.
    I don't see any relevant info on the Internet for the coexistence of exchange 2010 SP2 and SP3. can you please share some detailed steps or info?
    The last database upgrade exchange 2010 SP3 is unable to mount server with Exchange 2010 SP2 i.e., there is no database schema upgrade from SP1 or SP2 to SP3. Please check this link :
    https://www.youtube.com/watch?v=M4hJfdqTe5s
    You may download exchange Server 2010 Service Pack 3 from here :http://www.microsoft.com/en-us/download/details.aspx?id=36768
    This Exchange Server 2010 SP3 software may be used to perform a new installation or to update an existing Exchange Server 2010 installation to Service Pack 2 (SP2) level.
    Moreover, to migrate the mailbox database from exchange 2010 to 2013, you may consider on this exchange migration tool (http://www.exchangemigrationtool.com/) that can be a good approach for you.

  • PO for Plants belonging to different Country under same Company Code

    Hi,
    We have created a Company      1000 (Country u2013 India)
    We have created two Plants 1001 (Location - Delhi, India), 1002 (Location - United Kingdom).
    We have created a pricing Procedure      ZDOMES & ZIMPOR for Domestic & Imports Procurement.
    We have created a Tax Code V0, Country IN.
    We have tested the Procurement Cycle for Plant 1001 (Location - Delhi, India) and it is working fine.
    For Plant 1002 (Location - United Kingdom) what extra configuration do I need to do? Can we use the same pricing Procedure, Tax Code?
    Please advice.
    Regards,

    Thanks for the reply.
    Here in our scenario, we have created only one Company Code and one of our Branch is in UK.
    we need to create only One Company Code & Branches (Plants) in Delhi & UK
    Please suggest .
    Regards,

  • Websheets: create link to APEX application in same workspace

    Hi all,
    I'm trying some things with websheets in APEX 4.0.2 and I'm getting quite satisfied about it.
    Let's assume I have this situation:
    app_id 110 : database application with alias MAIN
    app_id 120 : database application with alias SEC
    app_id 130 : websheet application
    They all use the same authentication function, which works fine.
    App 110 and 120 use the same authentication cookie and there are links between these two applications. No problem at all.
    Now, I want to include links to and from the websheet application.
    The link to the websheet is easy: ws?p=130:HOME:&SESSION. So far so good and no log-in required.
    A link from inside the websheet application to a database application is something else.
    I've already found how to use markup syntax to link to another page in the same websheet
    [[HOME | Home link]]and to an external website
    [[http://www.oracle.com | Oracle]]But I can't find the syntax to link to a database application in the same workspace as the websheet.
    I could use
    [[http://<myserver>.<mydomain>/apex/f?p=MAIN:HOME | Home application]]But this is not working flexible. I want to leave out everything before f?p
    If I would install these three applications on antother server, my link won't work anymore.
    Also, I can't find a way to include the session id. &SESSION. isn't working. So with the above syntax, I would have to re-login in my database application.
    Then I tried this
    [[f?p=MAIN:HOME | Home application]]But this isn't working at all. The websheet shows me the create page wizard and fills in the name of the page: f?p=MAIN.
    Can anyone help me out on this?
    Am I expecting to much from websheets at the moment, is this a missing feature or am I doing something wrong?
    Thanks in advance!
    Regards,
    Bart

    Hi,
    Sorry originally I thought you were linking to websheets not from, I don't think websheets have the same capability as a database application, so i don't think apex picks up on substitution strings. Im not sure how processing with websheets work, but I think its very minimal.
    Ive tried it myself, is there a reason you need the session? If I leave the session blank I can get back to the database application, I cant vouch if you're starting from your websheet but I imagine that apex will fill it in for you as its an apex url.
    Cheers
    Huia
    Edited by: Hoppy on 05-Jan-2012 14:48

  • Linking different devices with the same Apple ID

    I was wondering if there is a way to link different device to connect and push to each other within the same Apple ID. For example I have and iPad 2, iPhone 4 and MacBook Air. While my mom has an iPad, iPhone and uses our Mac desktop. My sister has her own iPod and so does my brother. We all use the same Apple ID to save money and make things easier. Is there any way to connect our own devices. It become inconvenient when games start downloading on my device or inappropriate songs I download go onto my sisters as she is 9. If there is no way to do this, would it be hard to ask for the ability for me (under the same Apple ID as my mom, brother and sister) to set it up so my devices push to each other. Meanwhile my mom could connect her device together? Thank you to anyone who helps in advance.

    Up to 5 devices can share the same Apple-ID for iCloud and share / sync happily. You can selectively disable or enable components to sync or not, using the icloud controlpanel on Windows, the system preference pane in Lion or the settings->icloud in iOS5.
    You just must ensure that all devices and machines run the compatible versions of OS and apps.
    Macs : Lion 10.7.2 + iphoto latest
    PCs : Vista / Win7 with Outlook, itunes 10.5 and icloud controlpanel
    iDevices: iOS5

  • Pass Username & Password to a Different Application in the Same Workspace

    Can I pass the username and password from a main menu to open a different application in the same workspace. I'm trying to prevent the user from having to logon again. My main menu has links to different applications within the same work space.
    Thank you

    Anonymous - One way to do it (if you are using HTML DB's built-in session management) is to edit each application's authentication scheme and type in the same cookie name in the cookie name field (use any name you like). Another way is to use Single Sign-On.
    Scott

  • We have 3 devices used by 3 different people under the same Apple ID, how do I stop getting my daughters texts, both sent and received?

    We have 3 devices used by 3 different people under the same Apple ID, how do I stop receiving my daughters texts? Both sent and received.

    When you use the same Apple ID on 3 devices it means you are all using the same (email, imessaging, calendar etc).  Since iCloud (MobileMe) is designed to be shared across all devices included Macs, it means all devices setup with the same ID will have access to the information.
    Text messaging is relevant only to the number you are texting.  This is done through your telecom companys lines and not on Apples.
    If you do not want to have others be able to read any of your information then it is best you each have your own account.

  • Receiving messages on 2 iPhones with different numbers but same Apple ID.  Went under Settings Messages and unchecked second phone

    Receiving duplicate messages on iPhones and an iPad, all with different tele#'s but under same Apple ID# ever since upgrade to 7.0.4.  Went under SETTINGS>MESSAGES>SEND & RECEIVE and unchecked all but that particular iPhone tele# and Email address.  Still reverts back to same problem,  Any further suggestions to resolve?

    Visual voicemail is a carrier feature, contact your cell phone provider and see if it is set up for you to use.

  • HT204150 I have 2 iphones registered under same account, but both phones had different contacts in them, somehow icloud duplicated, exchanged them. and deleted could not restore the contacts, how do I restore it? plz help

    I have 2 iphones registered under same account, but both phones had different contacts in them, somehow icloud duplicated, exchanged them, and I turned off the icloud on one of them, while doing that it asked me if I want to keep them on my phone or not. I pressed the one saying not to keep them. I deleted all of them and could not restore the contacts, how do I restore it? when I sign in to my icloud account online it only shows the contacts that were on the other phone. plz help

    I access a personal iPhone and iPad, and a business iPhone with the same Apple ID.
    The iPhone's passcode lock feature is completely separate from another iPhone or iOS device.
    All apps, all paid and free apps include DRM protection which is tied to the Apple ID that was used to download the apps. If some apps were downloaded with one Apple ID and then a new Apple ID is created, in order to download an app update that was installed with the original Apple ID requires using that Apple ID and password.

  • How can I share user in the same workspace but different applications

    I recently created a new application (new) in the same workspace as my old application (old).
    I have about 35 application express users. They are stored in uppercase.
    The new appl (old) , login page will only accept the DB user login and Not the application users. When I type it in uppercase, it revert it to lower case.
    I have no authentication schemes, uses all defaults. I created a DB user and 35 application users.
    It give me " Invalid Login Credentials'.
    I am due to upgrade tomorrow, but now have run into this problem!!
    Desperate

    Angela,
    That is not clear.
    I recently created a new application (new) in the same workspace as my old application (old).Now you have exactly two applications in that workspace.
    I have about 35 application express users. They are stored in uppercase.Okay.
    The new appl (old) , ...What?
    ...login page will only accept the DB user login and Not the application users.What DB user did you create and why did you create it? Your application must be using a different authentication scheme that the one you intended. Check the current authentication scheme and set it to the Application Express scheme (make it current) or whichever scheme matches that used by the working application.
    When I type it in uppercase, it revert it to lower case.I can't explain that unless you created a database user account using double quotes around the lower-case name.
    I have no authentication schemes, uses all defaults. I created a DB user and 35 application users.Again, why did you create a DB user?
    I am due to upgrade tomorrow, ...What is an upgrade?
    What is your current database version and Application Express version?
    Scott

  • External processing in the plant as vendor under same company code

    Hi friends,
    In our project under implementation we have following scenario.
    we have 4 plants under one company code. one of the plant does powder coating as manufacturing activity. Other 3 plants sends components to the powder coating plant for coating purpose.
    In IDES Standard scenario of external processing, a purchase requisition is raised thro info record maintained for the external operation. This scenarion works if the vendor is external.
    In our case, the vendor is one of the other plant under same company code/client. Also the powder coating needs to be done without any profit margin for internal customers.
    Our FICO guys have the opinion that, intra plant can't be a vendor; because raising invoices among plants under the same company codes is against accounting standars.
    If anybody has faced this type of scenario nd found the solution, Please share it here.
    Thanx in advance

    Hi Shiva
    STO scenario
    You can not create only STO as you need to send the unpainted components to another plant through SAP & have them painted back with only payment of paining charges without margin.
    Subcontracting scenario
    You can not create the Subcontracting PO as this is not your external vendor.
    Does this involves excise?
    Then the PR/PO ctreated should be of combination of STO and subcontracting. If so this is not possible, as item category is the only field in PR/PO that identifies it as STO and subcontracting. obiviously it cann't have 2 values.
    My suggesion on this as...
    Create a BOM for painted component with sp procurement key as produced in another plant(paining plant). this will have STO cretaed for paining plant. This will inturn cretae a production order in painitng plant.
    The BOM in painting plant will have the unpainted component with sp procurement key as produced in another plant ( fabricated plant) this will have STO created for unpainted components.
    I hope I am clear & not confused you much.
    Regards
    Mahesh
    Regards
    Mahesh

  • I had to reset my Apple password and now my iTunes and iCloud passwords no longer work. How do I get them linked again and under the same password. I've tried my new password on each login screen and it isn't accepted.

    I had to reset my Apple password and now my iTunes and iCloud passwords no longer work. How do I get them linked again and under the same password. I've tried my new password on each login screen and it isn't accepted.

    Hi skippy2012trev,
    Welcome to the Apple Support Communities!
    I understand that you updated your Apple Id and password but now you are being prompted for the old information in iCloud. You are on the right track by changing the Apple ID back to the previous email address temporarily so that you can sign out. You should not need to verify the email address. After you edit the Apple ID back to the old email address and then sign out of iCloud on your iPhone, edit the Apple ID back to the address you would currently like to use. There is no need to change the password again, only the email address, unless you prefer to update the password again.
    If you're asked for the password to your previous Apple ID when signing out of iCloud - Apple Support
    Change your Apple ID temporarily
    If signing out and back in to iMessage or FaceTime didn't help, try these steps:
    Change your Apple ID to the Apple ID you used previously. You shouldn't need to verify the email address.
    Tap Settings > iCloud. Complete these steps only if the Find My [Device] setting is turned on:
    Scroll down and tap Sign Out, then tap Sign Out to confirm. If you're using iOS 7 or earlier, tap Delete Account, then tap Delete to confirm.
    Tap Keep on My [Device] or Delete from My [Device]. In either case, your data remains in iCloud and will be updated on your device when you sign in to iCloud again.
    Enter the password for your previous Apple ID.
    Change your Apple ID to the new email address that you want to use. You'll need to verify the email address.
    Return to Settings > iCloud and sign in with your new Apple ID.
    Cheers,
    Joe

Maybe you are looking for