Opening a page from email through link.

Hi ,
In our application we are using spaces with custom task flow .We having some notification to send every time for some action..from the email , we will have a link.by clicking the link a page should open for unsubscribe functionality.I have to create a new page , on which user can enter email id and click unsubscribe .
This page should open from the link in the email.
Should i create bounded task flow or unbounded task flow.I just need to open a page with no parameter?
how do i knw the url to hit that page? how to design this.what would be the right use case for this?

Hi Vinay,
This may be useful:
https://blogs.oracle.com/jdevotnharvest/entry/remote_task_flow_vs_wsrp

Similar Messages

  • TS3276 i am unable to open web pages from email links on my ipad

    I am unable to open web pages from email links on my ipad

    A few more details might help, if nobody else recognizes this.   
    What happens when you try to open the links?
    Can you post an example of a link that doesn't work?
    Is there any particular source for the mail with the (bad) links, or is mail from all sources failing?
    If you happen to know it, what's the format of the mail message?  (Maybe the message is an image?)
    Do the embedded links work as expected from an OS X system running Mail.app, or some system and some other other mail client?
    To view the link in iOS: if you press on and hold your finger on an embedded link in most contexts, iOS will show a pop-up with the link contents, and will offer to copy it.  You can use that to acquire and post the link.  If pressing and holding on the link doesn't offer the pop-up, the format of the link itself may not be valid, or it might not really be a link.

  • How to open an Applet from a text link in a HTML Page

    Hi There
    How to open an Applet from a text link
    in a HTML page
    For example I have a HyperLink "Open Applet"
    When a user clicks that link i want to open a
    Applet in a AWT Window.
    How can i do this
    Will any one help me?
    -Ramya

    u can use javascript for that
    <SCRIPT language="javascript">
    function loadAppNow() {
    document.write("<APPLET ......></APPLET>")
    </SCRIPT>
    LoadApplet
    this will overwrite the applet on current window
    There are many good ways other than document.write to open in same window. I don't remember the syntax right now.
    Plz. refer to javascript tutorial for that.
    even you can insert the applet while retaining previous contents. its quite easy actually.
    regards....bhart

  • Opening web pages in email has stopped working after upgrade of ios

    I cannot open web pages in email, or indeed even scroll them. only change recently as upgrade to ios 7. I can come out of mail and open in safari, but very annoying!!

    replicate the error and paste the error from defaultrace from server0\log.
    regards,
    snehal

  • Pages downloaded, but I still can't open iCloud pages from iPad. Says that I need a new version of Pages on my Mac

    For my Mac Pro, after I downloaded the new Mavericks OS, I downloaded the new pages. However, I still can't open iCloud pages from iPad. Says that I need a new version of Pages on my Mac.
    Please help.

    It appears that you are launching the old version, probably using an icon in your Dock. That icon is an alias & is not updated. You will need to go to your Applications folder & find the new Pages 5 icon & double-click it. Once it is launched, you can right-click on the icon & choose Options > keep in Dock from the contextual menu.

  • Open all pages from last session

    Occasionally, safari will die. When I restart safari:
    is there a function to open all pages from last session?
    does firefox have this function? I thought I saw it within firefox, but I can't find it now. If this function is in firefox, where is it?

    In Safari... History > Open all pages from last session
    Firefox should do it automatically.
    Dave

  • How to open web pages from japplet??

    Hi
    Does anybody know how to open web pages from java japplet??
    Any help is apreciated!
    zick

    the getAppletContext() method of the Applet class will get you an AppletContext, with which you can call the ShowDocument(URL url) or ShowDocument(URL url, String target) method...
    check it out at http://java.sun.com/j2se/1.4/docs/api/java/applet/AppletContext.html
    have a good one :)
    Jay

  • Opening excel docs from email quickly

    Can Numbers automatically open excel docs from email? I always have to save the file and then open the Numbers program, then open file.

    If Numbers is defined as the app opening XL files, a double click in the xls file in Mail opens it in Numbers.
    You may also try to drag the attachment on the Numbers's icon.
    Yvan KOENIG (VALLAURIS, France)  mercredi 9 janvier 2011 15:29:39
    iMac 21”5, i7, 2.8 GHz, 4 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.2
    My iDisk is : <http://public.me.com/koenigyvan>
    Please : Search for questions similar to your own before submitting them to the community

  • Opening a HTML page from a Navigation link

    Hi All,
           I have a requirement of adding a new link at the navigation bar of WebClient. This link will open a static html page with some contents. I have created the page required for it. But I don't know how the link will be created at Navigation bar and how to open the html page from it. I am using the SAP CRM 5.0 and I want to add the link at Default profile.
      Please help.
    Thanks
    Indranil Datta

    Hi Sujit,
        Thanks for your help. I have created a new navigation bar entity and added that in a customized profile. I have also mentioned the page name and path for that link from tran SPRO. I found that link after logging into IC WebClient. But that link is not connected with the required page. If I click on the link page, it get refreshed but without any change.
    Thanks,
    Indranil Datta.

  • How to open a page from a Form and pass parameters to the form on that page

    I found a similar example on this forum, but it did not work for me:
    declare
    l_names owa.vc_arr;
    l_values owa.vc_arr;
    i number;
    begin
    PORTAL.wwpro_api_parameters.retrieve(l_names, l_values);
    FOR i in 1..l_names.count
    LOOP
    htp.p(l_names(i) || ' ' || l_values(i));
    END LOOP;
    end;
    By using this method i get the parameters for the Form, like the session ID, but not the parameters for the Page that the form is displayed in.
    Another method I tried:
    To open a Form from a Form and pass parameters works fine like this:
    --In the After processing page PL/SQL event.
    declare
    v_id number;
    blk varchar2(10):='DEFAULT';
    Begin
    v_id:=p_session.get_value_as_number (p_block_name=&gt;blk,p_attribute_name=&gt;'A_ID');
    if v_id &gt; 0 then
    htp.formOpen('PORTAL.wwa_app_module.link?p_arg_names=_moduleid&p_arg_values=2649500412&p_arg_names=_show_header&p_arg_values=YES&p_arg_names=ID&p_arg_values='||to_char(v_id),'post');
    htp.formSubmit(NULL,'Upload Files');
    htp.formClose;
    end if;
    End;
    But I want to open a Page containing the Form instead of just opening the Form. Is this possible to open a Page and pass paramters to the page, and then let the form inside the Page access the passed paramters. The reason for this is that a Form cannot be based on a page template, or can it? When opening the form i want to keep the left menu, which I can if it is a page based on my template with the left menu.
    Best regards
    Halvor

    Hi,
    You can do this by calling the url of the page with the form. You can then use p_arg_names and p_arg_values to pass parameters. In the called form you can get the value from p_arg_names and p_arg_values and assign it to the form field.
    You can call this code in the success procedure of the calling form.
    declare
    v_id number;
    blk varchar2(10):='DEFAULT';
    v_url varchar2(2000);
    Begin
    v_id:=p_session.get_value_as_number (p_block_name=>blk,p_attribute_name=>'A_ID');
    v_url := <page_url>;
    if v_id > 0 then
    call(v_url||'&p_arg_names=id&p_arg_values='||v_id);
    end if;
    End;
    In the called form in "Before displaying form" plsql section write this code.
    for i in 1..p_arg_names.count loop
    if p_arg_names(i) = 'id' then
    p_session.set_value(
    p_block_name => blk,
    p_attribute_name => 'A_ID',
    p_value => p_arg_values(i)
    end if;
    end loop;
    This code picks up the value from p_arg_values and assigns it to the form field.
    Hope that helps.
    Thanks,
    Sharmila

  • TS3276 why can't i open SOME attachments from email and most of the time i can open them?

    why can't i open some attachments from some emails and not on others?

    Read this link from Apple for more info:
    http://support.apple.com/kb/PH11778?viewlocale=en_US&locale=en_US
    The Apple Communities is a free information resource, but posting the eventual answer helps future users to learn solutions.

  • Cannot open survey files from email after upgrading SAP gui to 720

    Cannot open survey files attachments from email after upgrading SAP gui from 640  to 720.
    Tried uninstalling & reinstalling but still error persists,
    Error is : cannot split connection string: /h/server name/s/sapdp00 ( from SAP GUI security )
    Please advise.

    Can't say I have seen this error before but if it is pertaining to the new security module within 7.20, which are much more strict then 6.40, I would look under the SAP GUI configuration options.  Focus on Security > Security settings.
    There are pages and pages of rules which can be defined.
    A test could be to disable all of them on an isolated machine and set them to allow and see if your problem persists.  If the error is resolved, it is something in there you need to address.
    Regards,
    Zecher

  • Open Apex page from a non-apex application

    Hello,
    I'm calling an Apex page from another (non Apex) application. The way it works is that you click on a map and a browser window is opened with a Apex data entry form. This way you can edit information about the object you clicked on in the map.
    I got this working but what I'm trying to avoid is that you have to enter your logon credentials every time. I can't provide a session ID in the URL from the other application.
    Is this possible at all?
    Rene

    Hi Scott,
    I tried following your example here:
    http://apex.oracle.com/pls/otn/f?p=9947:1
    Page 1 and 2 are normal, but rather empty, pages. Page 3 is the public page with the redirect proces.
    First login (demo/demo_12) and notice the session ID.
    Then try to redirect to page 2 through page 3
    http://apex.oracle.com/pls/otn/f?p=9947:3::2
    You get the login page again with a new Session ID.
    Once you logon you get redirected to page 2 and have joined the previous session.
    Is this the expected behaviour of your example? I was trying to get rid of the login screen the second time. Maybe I'm doing something wrong?
    thanks Rene

  • Urgent ***Open OAF page from Pl/SQL***

    Hello All,
    we are sending an HTML email from Pl/sql,
    now the requirement is..In email body user will get request Id. This request Id will be Hyperlinked (Using HTML Tag). Once User click on Request id.. One OAF Page should Open.
    Our Problem is: when user click on request Id , OAF Page opens with below error:
    You have insufficient privileges for the current operation. Please contact your System Administrator
    When user click on Home Its redirecting to Username/Password page. After entering the Username/Password it doesn't go to desired page.
    We know the problem is with session maintenance.
    Any Idea How to achieve this functionality.
    Thanks,
    Ab

    Hello Sun,
    I have added function to Menu and Responsibility.
    In Function WEB HTML Tab I added HTML Call = OA.jsp?OAFunc=FWK_TOOLBOX_HELLO&OAHP=FWK_TOOLBOX_TUTORIAL_APP&OASF=FWK_TOOLBOX_HELLO
    My function Name is : XXGENZ_R2R_COA_DASHBOARD
    Now if I am trying to open below URL from browser..
    http://apps.oracle.com:12715/OA_HTML/OA.jsp?OAFunc=XXGENZ_R2R_COA_DASHBOARD&RequestId=3&RecordType=End-Date&StatusCode=Inprocess&DispositionCode=H1&ReadMode=Y
    But It dint work.. URL is directing to User name and password page..and If u enter the User name and password its redirect to Oracle Apps Home page...
    Thanks,
    AB

  • Setting of "opening web pages from last session"not works when open next time

    In Options, setting to "open windows & tab pages from last time" does not work. I have tries several time but nothing happens. have written to you earlier also , please help

    ''setting to "open windows & tab pages from last time" does not work.''
    That would be very surprising but a change was made to Firefox 4 to always have the choice of going to History ("Alt+S") and choose "Restore previous session".
    With Firefox 5 coming out in a few days (June 21-22) you might try again then, if the solution the developers built in does not work for you. Do you know about pinning tabs ('''app-tabs''') they persist across sessions as a convenience -- if I really want to keep something permanently then I would bookmark such things as a group. Because they can be closed easily.

Maybe you are looking for