Calling oAf page from Other non OAf pages

Hi the requirement is to call a specific OAF page from email notification.But when the page is accessed from application few paramters are appended to the page url like &ti,&mi,&oas etc and the value of these parameters keep on changing as and when a new session is opened.
Thanks

Hi Sumit ,
I have requirement where i need to send a notifications to an user with link with parameter like task num and other params when user click on this link it need to open an Custom page based on this parameters. we are generating url link from one database function for the page function such that it generates url for that and user clicks on that it opens the corresponding page but this uis happening when we r not using parameters but we want with parameters.
Plz reply ASAP.
Thanks.

Similar Messages

  • 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

  • Apex 2.2 copying pages from other applications

    Is it possible to copy reports and pages from other applications with APEX 2.2 ?

    Ben,
    Pages, yes. On the Page Definition page, use the Copy button and follow the wizard.
    Scott

  • When I open Pages from the dock, the page comes up but immediately hangs up with the

    When I open Pages from the Dock,  the page comes up on the screen but immediately hangs up with the rainbow circle spinning.  I finally have to force quite to make it go away.  It does not ask me to choose a template.  This is sporadic, sometimes working, sometimes not.  What is going on?

    Helo,
    Did you try to delete Pages' preferences file(s) in the folder your-user-name/Library/Preferences ?
    There are one or more (depends on your OS X version) file like "com.apple.iWork.Pages.plist"
    You can also repair permissions with Disk Utility in the folder Applications/Utilities.
    Choose the hard drive were Pages is and click the button "Repair permissions".
    Or you can re-install Pages.
    Hope this will help.

  • My Epson photo 1280 will only print 1/2 of a page from a document in Pages program. First print was fine. Have printed out a Mac templet and printer does same thing. Cleaned heads, checked nozzels etc. Any ideas?

    My Epson photo 1280 will only print 1/2 of a page from a document in Pages program. First print was fine. Have printed out a Mac templet and printer does same thing. Cleaned heads, checked nozzels etc. Any ideas?

    Hello, I have exactly the same problem. I could have written the same text. And I have'nt found solutions. Except, perhaps, change this printer (and quit HP?).
    Any suggestions would be really much appreciated.
    Thank you for your possible responses.

  • 3 iphones in household.All use same apple ID.But all contacts get mixed between phones and facetime calls come in from other contacts.Ho can we change this so our phone information isn't visible to each other?

    3 iphones in household.All use same apple ID.But all contacts get mixed between phones and facetime calls come in from other contacts.How can we change this so our phone information isn't visible to each other?

    Use separate Apple IDs for each family member and use Family Sharing features of those things (if any) that you do want to share. https://www.apple.com/ios/whats-new/family-sharing/

  • Canu00B4t call an EJB from other EJB

    Hi developers,
    I need do the next task :
    I have a EJB in an EAR and i need call some functionality from other EJB in diferent EAR , when execute the code show the next message error:
    java.rmi.RemoteException: com.sap.engine.services.ejb.exceptions.BaseRemoteException: Exception in method generaMDMOutput.
         at com.sapconsulting.customer.inc.CustomerIncObjectImpl0.generaMDMOutput(CustomerIncObjectImpl0.java:135)
         at com.sapconsulting.customer.inc.CustomerIncObjectImpl0p4_Skel.dispatch(CustomerIncObjectImpl0p4_Skel.java:127)
         at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java(Compiled Code))
         at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java(Inlined Compiled Code))
         at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java(Compiled Code))
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java(Compiled Code))
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java(Compiled Code))
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java(Compiled Code))
         at java.security.AccessController.doPrivileged1(Native Method)
         at java.security.AccessController.doPrivileged(AccessController.java(Compiled Code))
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java(Compiled Code))
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java(Compiled Code))
    Caused by: java.lang.ClassCastException: com.sap.engine.interfaces.cross.ObjectReferenceImpl
         at com.sapconsulting.customer.inc.CustomerIncBean.generaMDMOutput(CustomerIncBean.java:141)
         at com.sapconsulting.customer.inc.CustomerIncObjectImpl0.generaMDMOutput(CustomerIncObjectImpl0.java:119)
         ... 11 more
    the code to invoke the EJB is the next:
    ctx = new InitialContext();
    TestEJBLocalHome home = (TestEJBLocalHome) ctx.lookup("sap.com/TestEJB_ear/TestEJBBean");
                   TestEJB servicio=(TestEJB)home.create();
    the EJB are in the same server , please help,
    regards

    Hi Siarhei,
    thank's for your answers , i'll explain the scenario , i think i copied wrong the code that i have ,
    i have two EAR's applications , i want to call one EJB from the other EJB in other EAR , the call have to be remote , my code is the next :
    ctx = new InitialContext();
    Object obj = ctx.lookup("sap.com/TestEJB_ear/TestEJBBean");  
    TestEJBHome home = (TestEJBHome) PortableRemoteObject.narrow(obj,TestEJBHome.class);
    TestEJB servicio= home.create();
    i've confugured the ejb-xml.jar adding
    <ejb-ref>
    <ejb-ref-name>ejb/TestEJBBean</ejb-ref-name>
    <ejb-ref-type>Session</ejb-ref-type>
    <home>com.innovativesystems.onl.TestEJBHome</home>
    <remote>com.innovativesystems.onl.TestEJB</remote>
    </ejb-ref>
    I've configured the  ejb-j2ee-jar.xml adding
    <ejb-ref>
    <ejb-ref-name>ejb/TestEJBBean</ejb-ref-name>
    <jndi-name>sap.com/TestEJB_ear/TestEJBBean</jndi-name>
    </ejb-ref>
    I've configured the application-j2ee-engine.xml adding a hard reference
    <reference
    reference-type="hard">
    <reference-target
    provider-name="sap.com"
    target-type="application">TestEJB_ear</reference-target>
    </reference>
    with all this configuration still send me the message java.lang.classcast ,
    something is missing????  ,
    regards

  • How can I display the last items of a region from other Oracle Portal page?

    I want to display de last five items (f.e.) included in a region (with attributes created) from other page. I've tried using custom search, but it also shows the attribute names, and I want show the attribute values (I don´t know how can I format these attributes).
    Thanks a lot.

    create a stored procedure (f.e. in schema myschema create a stored proc named renderAsHTML)
    code for the procedure :
    PROCEDURE renderAsHTML(p_itemId varchar2,p_pageId varchar2,p_siteId varchar2) IS
        l_displayName  portal.wwsbr_all_items.display_name%type;
        l_name         portal.wwsbr_all_items.name%type;
        l_publishDate  varchar2(10);
        l_url varchar2(250);
    BEGIN
         -- Looking for item datas
         select display_name, name,   to_char(publish_date,'dd/mm/yyyy')
         into l_displayName,l_name, l_publishDate
         from portal.wwsbr_all_items
         where id =p_itemId and language=portal.wwctx_api.get_nls_language;
         -- getting the URL og the item
         l_url := portal.wwpob_page_util.get_page_url(p_pageId, p_siteId);
         -- HTML rendering
    htp.p('<.a href="'||l_url ||'/'|| l_name ||'">' ||  l_displayName ||'</.a><.br/>');
    htp.p('Published on ' || l_publishDate ');
    EXCEPTION
        WHEN others THEN
               htp.p('<.div>Somme error occured , code is ' || SQLCODE || '.</.div>');
    END renderAsHTML;
    please notice that I've added a dot in HTML tags to avoid this forum to interpret them
    note : make sure that you granted "execute" for the public user on teh procedure you've just created.
    go to item properties (navigator>shared objects>item types>modify the one you want
    go to tab3 (procedures)
    set the following options :
    type : PL/SQL
    call proc : myschema.renderAsHTML
    link text : render as HTML
    icon : keep blank
    select the "display proc results with the item" option
    pass the following parameters :
    attribute1 : item ID as p_itemId
    attribute1 : page ID as p_pageId
    attribute1 : pagegroup as p_siteId
    Now, in your custom search portlet, go to results rendering, remove all attributes and add the "associated function" attribute.
    Now, all the HTML generated by the stored proc will be rendered instead of the item.

  • Use pages from other templates...not just the one you chose.

    Is there a way to choose a page from another template besides the one I started with. For example if I choose the "School Report" template, but want to also use a page from the "Lesson Plan" template, how can I do this. If you click add new page, it only gives you the initial template pages. I tried opening a new template and copying and pasting the page I wanted, but it does not work.

    My guess is that it's because the objects are floating ones.
    If you switch them as inline one, you will be able to copy the page, sometimes after inserting section breaks.
    Yvan KOENIG (from FRANCE mardi 10 février 2009 21:19:34)

  • Can't open one custom page from other custom page after import.

    Hi all!
    I've created 2 custom pages "EITPersonPG" and "EITPersonMainPG" and imported them to the mds repository using import.bat. I created a function for "EITPersonPG" and added it into menu. I can open my pages from menu directly but when I try open "EITPersonMainPG" from "EITPersonPG" I get this error:
    oracle.apps.fnd.framework.OAException: No data found for region (ibsborlas/oracle/apps/per/eit/webui/EITPersonMainPG).
    ## Detail 0 ##
    Exception:
    oracle.adf.mds.MetadataDefException: Unable to find component with absolute reference = ibsborlas/oracle/apps/per/eit/webui/EITPersonMainPG, XML Path = null. Please verify that the reference is valid and the definition of the component exists either on the File System or in the MDS Repository.
    I executed "exec jdr_utils.printDocument('/ibsborlas/oracle/apps/per/eit/webui/EITPersonMainPG');" in Sql and it's OK.
    I created a function for "EITPersonMainPG" and added it into menu. I can open it.
    I can open "OA.jsp?page=ibsborlas/oracle/apps/per/eit/webui/EITPersonMainPG" from menu, but can't open it from "OA.jsp?page=ibsborlas/oracle/apps/per/eit/webui/EITPersonPG".
    What must I do so as to open "EITPersonMainPG" from "EITPersonPG"?
    Thanks in advance.
    Pavel.

    I've solved question about bouncing the apache server according to Doc ID: 471763.1 "R12 How To Bounce Apache And Clear HTML Cache In Vision Instance And Have Updated Java Code Class Active"
    Note :At R12 level bouncing apache command is different of the one to bounce oacore oc4j engine andothers. An example of situation is : how to make a modification to a JSPand have > > that modification recognized by the OC4J - JSP engine.
    So to clarify :
    1. In 11i the apache start and stop command , also
    bounce the JVM running on JSERV and clear caches by doings as below :To clear the jsp & modplsql caches run this commandrm -Rf $OA_HTML/_pages/*rm -Rf $COMMON_TOP/_pages/*rm -> Rf $IAS_ORACLE_HOME/Apache/modplsql/cache/*
    2. In R12 the command to stop and start apache only takes action on
    Apache web server and not on the OC4J container that executes the JVM.
    To bounce the OC4J container there is an specific script:
    *$INST_TOP/admin/scripts/adoacorectl.sh*
    Therefore when making a modification to a JAVA class in R12 for the
    web application, in order to have that change recognized, it is needed to bounce
    OC4J using adoacorectl.sh script.
    Bouncing oacore OC4J engine may also be needed if you make
    modifications to system properties. Example for JTT based
    applications: jtt system properties.Thank you Anoop!

  • Add Pages from Other ID Doc

    How does one move pages from one ID doc to another? Both are the same size, but may or may not have differing masters.
    Thank you,
    Luca

    Laubender wrote:
    Applied master pages will not travel over. You have to care for them separately…
    Actually, master pages WILL travel withthe document pages, but only if the have a different name from any master page in the receiving document.
    This logic applies to swatches and styles, too. If both documents have elements with the same name, but differnt definitions, the definitions in the receiving document will be used. This can have some unexpected effects on text, especially if you use "based on" styles.

  • Cannot access APEX pages from other IP in the same network

    Hi,
    I installed APEX 3.0 on Oracle XE (Windows OS). The PC I installed has a static IP (no DHCP and DHCP servie is stopped).
    I started the HTTP server and I am able to access the XE database home page and the APEX developer page and admin page. This PC has a static IP too.
    When I tried to access the APEX page from another PC. It is not loading the page.
    When tried using Internet Explorer it says "Internet Explorer Cannot display the page"
    Please let me know whether I missed any configurations to the access the page from another IP.
    Thanks.
    Niko

    Hi,
    Most likly the cause is windows firewall. Try the following:
    1 - from Control panel select windows firewall
    2 - click on the exception tab
    3 - Click Add port
    4 - for name enter yhe name you want (APEX)
    5 - For port number enter APEX prot number
    Hope that will solve your problem
    Regards,
    Ribhi

  • Drag and Drop of Page from Content Finder into Page Component

    Hi,
    Does anybody has a sample code for Page component which accepts the page when dragging and dropping from the content finder? Basically I am trying to create a web page with page component on it and customized the content finder to display all the pages that I needed on a separate tab, I am trying to drag and drop the pages from the content finder to the page component of the web page that I created, but it is not working for me. If someone has any sample working code please share it.
    Thanks

    Hi,
    There's no direct support for this. But you could implement
    drag and drop the way you normally would in javascript. Except
    here, on mouseUp over a div encapsulating the object or embed tag
    (the flash object), you'll need to make a call into actionscript
    from javascript indicating that a drag and drop happened.
    For more info, see
    how
    to drag and drop using javascript and
    actionscript
    and javascript communication

  • How can I stop my home page from opening OVER a page from a link I just clicked on?

    If I click on a link from an email, Firefox always opens 2 pages with my home page (Google) covering up the page I clicked the link to go to. How can I stop it from doing that?
    == This happened ==
    Every time Firefox opened
    == I think since I got the most recent upgrade (3.6.7)

    There's a good chance this is related to a bug that kicks in when you do not have Flash running in any tab and you open a new window to a page that does use Flash: suddenly, the previous window (typically the one from which you launched the link or bookmark) comes back to the front.
    The details are in this recent thread: [https://support.mozilla.org/questions/955659 Opening New Windows and Shockwave Flash].

  • My macbook pro started acting strange after a safari reset. the mouse no longer: animates the dock, activates hot corners or selects pages from the 'top sites' page.

    my macbook pro started acting strange after a safari reset.
    the mouse no longer: animates the dock, activates hot corners or selects pages from safari 'top sites' (without a hassle). attempts to reset dock and hot corners from preferences has been fruitless
    the mouse also gets 'stuck' in logic precipitating force quits.
    i run osX 10.6.8 on a 2007 macbook pro that has had 2 motherboards replaced autumn 2010.
    my troubleshooting has been: restart, pRam and safe boot, also checking a 'test' account to find the same issues extant.
    pRam restart caused airport to quit and say there is no airport card, and wouldn't respond untill another reboot.
    macbook pro 15" 2.4 GHz intel core duo.2 GB 667 MHz DDR2 SDRAM.
    i have treated this book with care, yet run logic pro studio to the limit of this book's abilities.
    what shoud i do?

    You don't say which year you have, however...
    ...there are known problems with the mid-2010 models (see http://support.apple.com/kb/TS4088?viewlocale=en_US&locale=en_US) as well as early and late 15" 2011 models (see https://discussions.apple.com/thread/4766577?tstart=0).
    Apple has taken ownership of the problems with the 2010 model but, unfortunately, the free logic board replacement for that model has probably long expired for you - three years after date of purchase.
    One the 2011 models Apple has admitted no defect. You'll just have to skim the articles to get an overview of the problems that people are having (usually showing up as screen glitches at first and then going downhill from there).
    Good luck,
    Clinton

Maybe you are looking for