How to Open BPM worklist when a link is pressed in custom ADF application

Hi Guru's
I have a requirement where i have to open BPM worklist app when a user clicks on a custom ADF application link.
Scenario
1) In custom ADF application we have a link.
2) user selects the link and we have to open the users BPM worklistapp page.
Can you please let me know if this is possible or not? If so can you please help me out
Regards,
Ram

Bill,
Can you please let me know the steps or documentation that helps me out in achieving this?
Regards,
Raju
Edited by: user080811 on Apr 18, 2013 12:12 PM

Similar Messages

  • I accidentally quit my CC on my Macbook pro and now the cloud icon is grayed out and every time I hover over it with the mouse I get the spinning beach ball of death on the icon. I have no idea how to open it because when I use spotlight search to open it

    I accidentally quit my CC on my Macbook pro and now the cloud icon is grayed out and every time I hover over it with the mouse I get the spinning beach ball of death on the icon. I have no idea how to open it because when I use spotlight search to open it it gives me a message saying "Creative Cloud is not open anymore" help!

    Since you didn't include any pertinent info such as the Mac model and OS version you are running, here is some general information:
    Mac OS X: Gray screen appears during startup
    Depending on which OS yours came with originally - and which OS you are now running - you would either need your original install disks - you can call Apple for replacements by giving them your serial number. Or you may be able to reinstall the OS by using recovery (again, depends on which model/which OS).

  • I have installed Elements 13 on my Mac but can't see how to open it. When I click on the disk icon it takes me to an information page that gives no information about opening Elements 13.

    I have installed Elements 13 on my Mac but can't see how to open it. When I click on the disk icon on the desktop it takes me to an information page that gives no information about opening Elements 13. How do I open the software so that it can be used?

    Unfortunately, when I open applications, adobe photoshop elements 13 folder does not appear in the adobe folder. It appears as a disk on the desktop, only.

  • How to open a Template when Pages is already open

    I have just copied and pasted some text into a blank pages document.  I want to convert this doc. to a letter head that I made a template for.
    I would like to open the template, then copy/paste the first doc info into the template doc.
    I haven't been able to figure out how to open a template when a document is already open.

    Sorry,  P5.2, Mavericks.
    I did set the preferences to New Documents> Use Template: Blank, to stop endlessly having to choose a template when I don't need one.
    When I pull down File, there is no New from Template Chooser.  File>New just opens another blank file.
    To check, I went back and enabled "Show Template Chooser".  Now it demands I choose a template whether I want to or not.
    OK, it seems Apple is forcing you into either/or.  I want both/and.  I don't want to be forced to choose a template when 99% of the time I don't want anything but a blank file.  It is a nuisance.  But the occasional time I am composing something and decide it would be better off as a universal doc with letter head, I am stuck and cannot choose open a template so I can stick the material in it.
    The options are lousy.  Close/save the doc, reset the preferences to templates, shut down Pages, restart pages, select template, open old doc, copy/past old text into new template.  Or, while the original doc is open the first time, I could go find a stored doc with the right letter head template, open it, copy/paste the previous text into the letter head doc (and delete everything else).
    Neither of these options is worth a wooden nickel.  Apple needs to think this one through again.  Like have multiiple buttons with View on it, doing different things.  At least they got rid of using the paragraph symbol for two or three different functions.

  • How can I generate data when the link is click on?

    i have written a stackoverflow question ,
    would like some input if you have any , thanks, i would like to stay away from using jquery
    http://stackoverflow.com/questions/23143436/how-can-i-generate-data-when-the-link-is-click -on/23143813?noredirect=1#23143813

    I think you need to rephrase your question and be more specific. Also for me the images you are referring to do not exist. From your question I am interpreting it as "how do I program?"

  • How to Open GUI Transaction when clicking in Hyper Link

    Hello All,
    I want to open GUI Transaction  when user will click on Hyper Link created in a particular column in a table view. For that I have created  Transaction Launcher ID using Transaction Launcher  Wizard. Then what will be the next step, i'm not getting. Can anybody help me out on this?
    Thanks in advance,
    Madhusudan

    Hi,
    Here is the sample code:
    DATA: lr_navigation TYPE REF TO if_crm_ui_navigation_service.
    lr_navigation = cl_crm_ui_navigation_service=>get_instance( me ).
    CHECK lr_navigation IS BOUND.
    lr_navigation->navigate( iv_link_id = 'ZLINKID' ).
    -ASB

  • Firefox keeps opening multiple windows when web link to iTunes clicked.

    Running Windows 7, 64 bit. Clicked the "View in iTunes" button on this page, https://itunes.apple.com/gb/app/smartscan-express-fastest/id533516060?mt=8
    Link did not open and instead Firefox kept opening another window continuously until there were dozens of windows opening one on top of the other. The only way to stop this was to Shut Down the PC. This has happened on several occasions and it's always when a link to iTunes is concerned.

    Sorry, this can happen when Firefox asks how you want to open something that Firefox doesn't know how to open, but you tell Firefox to go ahead and open it. This article describes the various ways to resolve it: [[Firefox repeatedly opens empty tabs or windows after you click on a link]].

  • How to open a file with a link ?

    I am using servlets to design an application.
    The application supports uploading and downloading of .DOC and .RTF files.
    My problem is that I am opening an uploaded file via a link.
    OPen File
    The above is also working fine and opens the file in the IE browser.
    But my problem is that I want to open the file with MS-Word...as is done on many resume-building websites.
    1) How am I supposed to do that ?
    2) Can I specify ContentType="application/msword" in a link ?
    Please Help !!

    I did the foll. w.r.t a docbase.
    A docbase stores documents and assigns an unique id to each one. The foll. is a code snippet that opens a document's contents in a browser.
    public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException
    Connection conn = null;
    Statement stm;
    ServletOutputStream sos = null;
    ResultSet res;
    // .... get id of document u want to open
    query = "select id from .. where object_name = ' xx' .."
    res= stm.executeQuery(query);
    Blob blob = res.getBlob("_content"); // this will get content of document identified by id
    int blobLen = (int)blob.length();
    //the foll. is the part u need..
    if (blobLen > 0) {
    InputStream contents = blob.getBinaryStream();
    response.setContentType("application/msword"); // MS Word
    byte[] buf = new byte[blobLen];
    int length = -1;
           while ((length = contents.read(buf)) != -1){
              sos = response.getOutputStream();
              sos.write(buf,0,blobLen);
    sos.flush();
    System.out.println("Doc Received");
    contents.close();
      res.close();
      conn.close();
    }

  • How to "Open iTunes automatically when iPod is connected"....

    ...without having them sync automatically?  I'm able to do this on my MBP just fine.  The solution on my MBP is to uncheck "prevent ipods, ipads, iphones from syncing automatically" under Devices Preferences.  Then I'm able to check "Open iTunes when Ipod is connected" under my iPod's Summary Options.  After that i can then go back a uncheck "prevents Ip.... from syncing automatically". 
    Unfortunately, this option doesn't seem to be available to Windows users.  or is it?
    Thanks,
    Mike

    this will solve half of my issue while coincidentally causing the other half of it. 
    I want to be able to:
    Open iTunes automatically when iPod is connected
    AND
    Prevent my ipod from syncing automatically *(when this is enabled the prior feature becomes disabled)

  • How ADRNR will be generated when create masterdata(comp.code/vendor/custom)

    Dear All,
    I would like to know how t001-ADRNR will be generated when we create company code/vendor/customer.
    where we can assign the number range to ADRNR?
    thanks in advance...

    Hi,
    Can you check this:
    1.  Open T001 table in SE11.  Pick a company code you are facing a problem with.  In the table, check the ADRNR. 
    2. Go into table ADRC, enter this ADRNR and see the output. Does it show the address of the company code?
    If it does then your transport will not have a problem. But if it doesn't then, I assume then you would have a problem.  But even then , a tranport should change the earlier address in ADRC and bring it to the same for the company code.
    But the real problem will only arise, when the number range status (in SA01) is less that what is actually present in the ADRC table.  To set this right, here is what you should do:
    From table ADRC, check the highest number of the ADRNR table.  In SA01 look at the status of number range "01", if it is less than the highest number in ADRC, then, increase the number under the column current number to the one already present in table ADRC.
    This should solve your problem.
    Cheers.

  • How to display success message when data is changed in the custom tab in MM

    Hi,
    I have added a new custom data tab in the MM01/MM02/MM03 transactions. Whenever I do changes to fields in the custom tab in MM02 transaction, and no changes in the standard tabs, I will get a message stating "No Changes Made".
    But if I do changes in the standard tabs, it works as usual with display of message "Changes to particular material has been done.
    Please let me know, if anyone of you know, how to display the success message if the changes to the custom tab is done.
    Thanks in advance,
    sudhanva

    Hi Sudhanva,
    The exit EXIT_SAPLMGMU_0001 is a function exit that you can use for custom validation but not to add custom tab/screen.
    But the message issued by SAP is not related to this Function Exit.
    If you have used a Screen Exit, then there must be some Function Exits also in the same Enhancement using which you can assign the value of custom fields to/from the standard structure. Thus when the value of any custom field is changed the system can understand that the some changes have been changed and will  not issue the message.
    In case you have used a BADI, there can be other methods in the BADi using whcih you can assign the value of custom fields to/from the standard structure. This might also prevent the message from being displayed.
    I could try giving you further details if you can provide the name of the Enhancement/BADi that you used to add the additional tab.
    Hope this helps.
    Regards,
    Abhisek.

  • How can I get Premiere cs 5.5 to open AE 6 when dynamic linking instead of 5.5

    Just wondering, or do i have to buy Premiere 6 for it to open AE6?

    do i have to buy Premiere 6 for it to open AE6?
    Yes, you do, or more to the point yopu will need to buy a whole suite. DL only works within the same version and only inside Production Premium and Master Collection.
    Mylenium

  • Web search stays on single tab will not open new tab when new link is open

    Up until yesterday when I did a web base search and clicked on a new site there was a new tab open to show the site. Now all the sites open in the same tab. How do i correct this problem?

    Hi, I'm not sure about other search engines but if you're using Google: First do a search, then on the results page, top right-hand corner > Options (cog wheel) > Search settings > 'Where results open,' and tick/check 'Open each selected result in a new browser window.' That should now open results in a new tab.
    Other options: You can click the mouse wheel, or hold down Ctrl when you click, or right click > Open Link In New Tab.
    Hope that answers your question.

  • How to open an aplication when I'm using shockwave movies

    Is there an other way to launch an other application when I
    cannot use
    open command in shockwave movies.
    And if there is, how can to do it?
    Thanks
    Sam

    > Thanks for that. But is there any way around it? What I
    want to do is a
    button that calls an other application to do somehting for
    me!!!
    What application are you trying to run? If you just want a
    link that opens
    your e-mail program (for feedback, say), I think that's
    possible. But yeah,
    as others have said, allowing a Shockwave movie to open a 3rd
    party
    application would be a serious security risk, which is why
    it's specifically
    disabled.

  • How to open new window when i press submit button/submit button.

    Hi,
    When i press a button, I need to capture an item value in current from and I need to pass that value to another form. The child form should open in the new form.
    For that Iam using the java script, But when i use the java script my page is not able to re-size, scroll bars address bar and menu bars are missing. if any one did this kind of requirment please share with me how to solve this issue.
    Thanks

    Re: How to show Popup window in OAF on click of a button
    Thanks
    --Anil
    http://oracleanil.blogspot.com/

Maybe you are looking for

  • Unable to snyc calender and contacs from outlook 2011 for mac

    iTunes won't sync calenders and contacts from Outlook 2011 for Mac OS Mavericks 10.9.5 iTunes 12.0.1.26 Also tried on iTunes 11.4

  • How to know how many equipments can be produced?

    Hello friends, One equipment is having bill of material.  How to know how many equipments can be made with the stores stock? How to know for making min. no. of materials reqd for making optimum no. of equipments? bye, srinivas.

  • Batch not applying ACR image settings

    I am aware this has been posted, but all related posts are filled with too much ancient ambiguity so I was hoping to create a simple thread with a simple answer. Have 30 photos (JPG) Open them in camera raw from Bridge (CRTL-R), edit them accordingly

  • Transfer indicator in shipment cost document

    Hi Hi All, I am planning to run VI06 shipment cost document generation in background on daily basis. While running in background job, shipment cost document has been created but PO document not created due to transfer indicator not set. I want to set

  • Preview Application doesn't show corrected coordinates on Exif information

    I use iPhone and geotagged photos for Waymarking but since I've installed Lion OSX the preview aplications shows coordinates like this: N 39º00.000 W009.00.000 Can you help me? Thanks in advance.