How to call one book page to other book page ?

I have a portal application having different books that contains different pages.
i want to call(URL Link) other book pages from my current book page. how to implement this concept ?
thanks
xmlkings

In the JSP of the calling page do the following:
Step 1.
In your Portal (yourPortal.portal) go to the page or the book which is your destination page. In the property editor enter a unique name for the Definition Label. For example pg_first. Note that in Step 2 pageLabel will equal to the Definition Label.
Step 2.
<render:pageUrl var="somePage" pageLabel="pg_first" />
<netui:anchor href='<%=somePage %>' >
Click to Some Page
</netui:anchor>
Hope this helps.
Mansoor

Similar Messages

  • How to call one .sql file from other .sql

    I am trying to call no of .sql files from one .sql file.
    But it gives me error in SQL*PLUS that unable to open file.
    Suggest me solution.
    Thanks
    Chanda

    Are the sql files in the current directories where sqlplus has been started ?
    If not, did you give the full path name for the called sql files when calling them from sqlplus ?
    Could you give us the complete sqlplus command that you use to call your files and the physical location of the called files with the exact error message ?

  • How to overlay one pdf page onto other page?

    Hi,
        I don't know how to overlay one pdf page onto other. Remember, i am not looking to merge them. Please let me know which software will help me in doing that.
    Thanks
    Sami

    Hi samik79976082,
    You can use the Background tool in Acrobat to overlay one PDF page over another. Please see this thread for details:
    Can you overlay two PDF documents, but use second PDF as watermark to first?
    If you don't have Acrobat, feel free to give it a try. You can download the 30-day trial from http://www.adobe.com/products/acrobat.html.
    Please let us know how it goes.
    Best,
    Sara
    [Discussion moved from Acrobat.com Online Services forum to Creating, Editing & Exporting PDFs forum]

  • How to call one  JSFF into another JSFF

    Hi,
    I am very new to ADf. Could you please tell me how to call one JSFF inside another JSFF. We have a common pop-up written in one JSFF. Is there any best approach to get this pop-up into other JSFF.
    Thanks in Advance.
    Regards
    Narasimha

    If you want to resue the jsff code, make use of bounded task flow with page fragment and then use it as a region.
    For more details you can refer: http://docs.oracle.com/cd/E21764_01/web.1111/b31974/taskflows_regions.htm
    One more:
    http://docs.oracle.com/cd/E18941_01/tutorials/jdtut_11r2_57/jdtut_11r2_57.html

  • How to call a jsp page from oaf and run in jDeveloper

    Hi all,
    I created sample jsp and then tried.
    String temp = "sample.jsp?";
    pageContext.setForwardURL(temp,
    null,
    OAWebBeanConstants.KEEP_MENU_CONTEXT,
    null,
    null,
    true,
    OAWebBeanConstants.ADD_BREAD_CRUMB_YES,
    OAWebBeanConstants.IGNORE_MESSAGES);
    It worked.
    But when i tried with one of the custom page that i downloaded from server it is giving error.
    But now i need to call that page.
    Its Code is given on below link:
    Re: how to call a jsp page from oaf
    Please help me to do this.
    Thanks in advance.
    Regards,
    Raj

    Raj,
    1. Hope you have placed the custom jsp page (which you have downloaded from server) under "jdevhome\jdev\myhtml\OA_HTML" directory ?
    2. Try to run the custom jsp page from Jdeveloper directly and check whether its working properly or not ?
    (i.e. add jsp page to any project in Jdeveloper then right click on jsp page and select Run xxx.jsp)
    3. If page errors out then custom jsp page seems require few parameters to run it successfully. Pass all requied parameters and test.
    4. There is no problem in the way you are calling jsp page from OAF page.
    regards,
    Anand

  • How to call one program from another program

    Hai,
      How to call one program through another program.
    Example.
       I have two programs 1.ZPROG1 2. ZPROG2.
    When i execute ZPROG1 at that time it should call ZPROG2.

    Hi ,
    u can use submit statement to call a program .
    DATA: text       TYPE c LENGTH 10,
          rspar_tab  TYPE TABLE OF rsparams,
          rspar_line LIKE LINE OF rspar_tab,
          range_tab  LIKE RANGE OF text,
          range_line LIKE LINE OF range_tab.
    rspar_line-selname = 'SELCRIT1'.
    rspar_line-kind    = 'S'.
    rspar_line-sign    = 'I'.
    rspar_line-option  = 'EQ'.
    rspar_line-low     = 'ABAP'.
    APPEND rspar_line TO rspar_tab.
    range_line-sign   = 'E'.
    range_line-option = 'EQ'.
    range_line-low    = 'H'.
    APPEND range_line TO range_tab.
    range_line-sign   = 'E'.
    range_line-option = 'EQ'.
    range_line-low    = 'K'.
    APPEND range_line TO range_tab.
    SUBMIT report1 USING SELECTION-SCREEN '1100'
                   WITH SELECTION-TABLE rspar_tab
                   WITH selcrit2 BETWEEN 'H' AND 'K'
                   WITH selcrit2 IN range_tab
                   AND RETURN.
    regards,
    Santosh thorat

  • How to call one EJB in another EJB?

    How to call one EJB in another EJB? Please explain with some example code.

    To refer a Ejb from another Ejb include <ejb-ref> element in ejb-jar.xml
    <session>
    <ejb-name>EjbA</ejb-name>
    <ejb-ref>
    <ejb-ref-name>EjbB</ejb-ref-name>
    <ejb-ref-type>Entity</ejb-ref-type>
    <home>com.ejb.EjbBHome</home>
    <remote>com.ejb.EjbB</remote>
    </ejb-ref>
    </session>
    Include a <reference-descriptor> in weblogic-ejb-jar.xml
    <weblogic-enterprise-bean>
    <ejb-name>EjbA</ejb-name>
    <reference-descriptor>
    <ejb-reference-description>
    <ejb-ref-name>EjbB</ejb-ref-name>
    <jndi-name>com.ejb.EjbBHome</jndi-name>
    </ejb-reference-description>
    </reference-descriptor>
    </weblogic-enterprise-bean>
    In EjbA Bean class refer to EjbB with
    a remote reference to EjbB.
    InitialContext initialContext=new InitialContext();
    EjbBHome EjbBHome=(EjbBHome)
    initialContext.lookup("com.ejb.EjbBHome");
    EjbB ejbB=EjbBHome.findByPrimaryKey(primarykey);

  • How to call a JSP page from Applications menu?

    Hi partners,
    I am still looking for "how to call a JSP page from Applications menu?", I mean instead of calling a form, I want to call a JSP page which is staying in a OC4J repository which is located in another server.
    Any idea will be really appreciated.
    Thanks in advance.
    Frank Mtz.

    Hi Frank,
    if u know the solution please share it with me. i'm looking for the same scenario.
    thanks in advance,
    anish

  • How to call the new page in smartforms

    Hi friends,
    How to call the new page in smartforms.
    Thanks,
    Ravi

    Hi,
    Create a command node and click the 'Go to new page' check box specifying the page u want to go.
    You can enter your condition for which it should branch to a new page in the 'conditions' tab.
    Regards
    Shiva

  • I want to know  how to call navigate to page in new window.

    Hi,
    I want to know  how to call navigate to page in new window.
    Following is the code which i am using on Event OnInputProcessing.
    navigation->goto_page( 'index.htm' ).
    From the above code i am able to open the index.htm in the same window.
    but I need the index.htm in the new window.
    Please suggest
    Thanks in advance,
    Nilesh Labde

    Thanks ,
    I was able to find the navigatiion tab, But after entering the The Form name in that TAB, Still the New Page opens in ths SAME window.
    Following is the Code written on the Eevent--> OnInputProcessing
    navigation->next_page( 'NEXT' ).
    In the Navigation TAB
    Start                             Navigation Request                Target
    Sales_Person.htm                   NEXT                            index.htm
    Please suggest.
    Thanks in advance,
    Nilesh Labde

  • How i call Process (in page process)

    How i call Processes (in page processes) from validation (in page processes).
    i have validation name is 'err' and processes name is 'insert'.
    i try user 'call insert' and 'return insert' but cann't work please help me.
    Thank you for advance.
    mr.tk.

    Hi,
    When you create page process , wizard first page have option "On Demand".
    Select that and just follow wizard
    Br,Jari

  • How to call one vc++ dll inLabview?

    I am a new user of Labview,but I don't know how to call one dll compiled by vc++ in Labview,please the experts tell me how to call it and use what function .
    thanks a lot !!

    Hi 214552213;
    There are several references at NI Developer Zone that explain how to access a dll from LabVIEW. You need to know the function prototype of the function you are calling in order to make the right call from LabVIEW. If you have LabVIEW 6, it allows you to see the different functions, but not the necessary arguments. If you have LabVIEW 5, you can use a vi available from NI<
    /a> to view all the functions exported in a dll. Follow nchernin instructions...
    Using External Code in LabVIEW, which you can access from LabVIEW's help or access through the link above.
    If you are writing the dll, check the several articles in NI website. There is a lot of documentation, but specially for doing it using Microsoft's VC++.
    Regards;
    Enrique
    www.vartortech.com

  • How can call/access ADF page in OAF rich container

    Hi,
    I want to access ADF page it's typicall have some graphs in OAF region
    for this i have create the one function in EBS and added that in respective responsibility.
    i have creted one region--->item in my page and for item i put itemStyle as richContainer and in Destination attribute i given the fucntion which i created in EBS.
    When i try to run the page i got the page not found message in region.
    is any thing i missed out.?
    Please let me know how can i acchive this.
    Please help me on this.
    Thanks,
    Madhava

    Hi Keerthi .
    Thanks for u'r reply.
    My ADF app deployed in Weblogic server it's different server.
    I am able to call the ADF page after clicking the Button.
    I am facing the issues the calling ADF page in richContainer.
    i got msg leike below.
    The webpage cannot be found
    HTTP 404
    Most likely causes:
    •There might be a typing error in the address.
    •If you clicked on a link, it may be out of date.
    What you can try:
    Retype the address.
    Go back to the previous page.
    Go to and look for the information you want.
    More information
    Please help me on this.
    thanks,
    Madhava

  • How to call one .SWF from another?

    How do I call one .SWF from another. I built a very beefy
    base .SWF, and want to add music overlay, and an intro slide show
    to the exsting Flash animation, but put it in a second .FLA/.SWF
    file. How do I call one from the other?
    This will be embedded in an HTML file but I assume this is
    superfluous to my question.
    F.Z.

    I think you should open that Another SWF (FLA),
    and add some actionscript..
    For example, you could create a movie clip, and write
    actionscript in the
    first keyframe:
    loadMovie("
    http://www.somewebpage.com/movie.swf",
    this);
    "FredZimmerman" <[email protected]> wrote in
    message
    news:ftnjas$mj5$[email protected]..
    > How do I call one .SWF from another. I built a very
    beefy base .SWF, and
    > want
    > to add music overlay, and an intro slide show to the
    exsting Flash
    > animation,
    > but put it in a second .FLA/.SWF file. How do I call one
    from the other?
    >
    > This will be embedded in an HTML file but I assume this
    is superfluous to
    > my
    > question.
    >
    > F.Z.
    >

  • How to upload one (1) page in iWeb

    If I have a Web site that has 1000 pages.. and I add 1 page or make 1 change to a page
    How do I make that change on my Website without uploading the whole 1000 pages again??
    I started to use iWeb publishing to FTP, but seems to only be able to upload the entire
    site to the server.. not just the changes to one (1) page or that one (1) extra page
    Does this mean I have to return to FileZilla and use that up loader to the server ??
    Or.. am I missing something ??
    Thanks

    If depends on what you're using to upload the files.  If you use iWeb to ftp the files it can determine what pages in the site are new or modified and upload only those files.  To assure iWeb does that I use the File ➙ Upload Site Changes option.
    If you use a 3rd party ftp client like the free  Cyberduck you can still upload only those new or modified files.  This tutorial describes how: #2 - Uploading only those published new or newly edited files when using a 3rd party FTP client.
    If you have that many pages, or a lot, it would be more efficient to have multiple sites in multiple domain files.  You can link to another site in the navbar by having a totally, blank page titled so as to match a similar page in the other site with the following code in an HTML snippet on the page:
    <script type="text/javascript">
    parent.window.location = "URL TO SITE YOU WANT TO REDIRECT TO"; </script>
    Thanks to Cyclosaurus for this code
    If your site has sections of similar topics they could be in one site in their own domain file. Web Site Maestro can be used to create new domain files to house the various sites and switch between them.
    Click to view full size
    OT

Maybe you are looking for

  • I've been having a problem forwarding ports in my router...

    I've been having a problem forwarding ports in my router WRT160N I enable the ports I want to use for my applications, just after clicking save settings I go back to my port's forwarding section and I don't see any application I add being saved. Plea

  • Triggering END_OF_PAGE IN CLASSIC REPORT

    Hi Experts,                       I have one classical reporting in that END_OF_PAGE is not Triggered At last Page due to Less No of Records in last Page,can anyone tell me how to trigger END_OF_PAGE  . i want to display the page total for every page

  • Error message "Error while calling up RFC"

    I got this error message with a testuser in our quality system when I want to call up a web interface to enter some plandata. I think it's a problem with authorization; the authorization object 'S_RFC' is set in the role. Is there another authorizati

  • NLS_LENGTH_SEMANTICS=CHAR not effective?

    Hi, I have two Oracle 10.2.0.3 databases - DB1 & DB2. In both, following init.ora parameter is set :- NLS_LENGTH_SEMANTICS=CHAR In DB1, for one query i received ORA-12899: value too large for column <tbsp1>.<tb1>.<col1> (actual: 17, maximum: 16) In D

  • Reoccurring kernel panic - installing Mountain Lion, iMac

    1) Just installed lion and it restarted and got the black screen that says  "You need to restart your computer". Kernel panic reoccures every time I restart. 1a) zapped PRAM 2) Still occures when booting in safe mode. 3) Unplugged all devices from ba