Pb with multipage (urgent)

this is my code :
<%@page import="oracle.portal.provider.v1.*, oracle.portal.provider.v1.http.*" %>
hi
<a href="<%=HttpPortletRendererUtil.parameterizeLink(request, PortletRendererUtil.PAGE_LINK, HttpPortletRendererUtil.portletParameter(request, "next_page") + "=myadvancedfind.jsp") %">>advanced</a>
and when i click on the link, the new JSP is not loaded, and the old one stay....i don't understand why...
someone can help me ?
thanks

Did you register "next_page" as the next-page parameter in your provider.xml? (see the multipage portlet example in the PDK)
if you did register the parameter, I would need to see the fragment of the provider.xml where you define your portlet (not the whole file)
if you did not register the parameter, the URL you are building is simply a URL to the current page, with an additional parameter. Your JSP doesn't do anything with that parameter - it just re-displays it's self.
An alternative to using the "next_page" parameter is to include code in your JSP that uses a parameter value (or multiple parameter values) to display another JSP - eg by conditionally including the page you want to see.

Similar Messages

  • Each time I start Firefox it says: "URGENT! Your version of Firefox is no longer protected against online attacks. Get the upgrade - it's fast and free!" I am using ver. 3.6.13 and upgrading "successfully" only stays on 3.6.13 with same URGENT message.

    Each time I start Firefox it says:
    "URGENT! Your version of Firefox is no longer protected against online attacks. Get the upgrade - it’s fast and free!"
    I am using ver. 3.6.13 and upgrading "successfully" only stays on 3.6.13 with same URGENT message.

    Your UserAgent string in Firefox is messed up and needs to be reset. <br />
    [http://en.wikipedia.org/wiki/User_Agent]
    type '''about:config''' in the URL bar and hit Enter <br />
    ''If you see the warning, you can confirm that you want to access that page.'' <br />
    Filter ='''general.useragent.''' <br />
    Right-click the preferences that are '''bold''', one line at a time, and select ''' ''Reset'' ''', <br />
    Then restart Firefox

  • Problem with spreads - urgent!

    My problem here is that when I want to print my 18-page document, InDesign have decided to make these 18 pages in to 10 spreads.
    The result of that is the printer printing 2 pages in one page, in stead of what I want; 1 page on 1 page, thank you!
    I have tried to make a new document with the same amount of pages and so on, but it still won't work.
    How do I turn it off? Please help me, it's for school and kind of urgent...

    I am having a similar problem.  I am using CS5 and am making a portfolio, for online submission.  I want the portfolio to be viewed online as spreads, but be printed out as 8.5 x 11's.  This is because I am not in charge of printing out the document, I have to give it over to someone else as a part of an application.  I have tried all the ways suggested in this thread, but have not been able to achieve my goals.  I feel like perhaps this is something that needs to happen at the level of the PDF in a program like Acrobat if it is possible?

  • Looking for APEX tutoring in NJ (with pay) - urgent -

    Hi,
    I'm a newbie to APEX. I can get a simple form up and running fine. But the project is more than a simple form. I have not got a chance to get training yet. I'm looking for an experienced APEX developer in NJ to tutor me with pay. I'm using APEX 3.2 with Oracle 11g database via Embedded PL/SQL Gateway (which probably is not so relevant). A brief description of the project is as follows:
    Login -> Home
    |
    V
    Form 1 -> Search, then display the items that were entered (maybe a dynamic display) based on the search criteria. Click on the item to faciliate "Update" or "Deactivate" (similar to "delete"). On the top of the page, there's a "Add" tab to facilitate insert.
    Form 2 -> ......
    Form 3 -> ......
    The same or similar logic for the other Forms (total about 10 Forms, with Reports added later). This is some of my rough concept, the overall application flow/wrapper can be discussed, if there's other alternative or I'm not on the right track.
    Please let me know PROMPTLY.
    Thanks much,
    Helen

    Why are you repeating a prior posting you made today (Looking for APEX tutoring (with pay) in NJ - urgent - Posting the same item more than once will cause headache and issues with the folks that frequent here..
    If you have a need for tutoring, as you have asked, you have been sent three viable solutions to follow (two different responders in the area willing to help for $$ and one response involving working through the tutorials on Oracles APEX page and buying one of the better APEX books.. I Would HIGHLY Recommend John E Scott's book, http://www.amazon.com/Oracle-Application-Express-Experts-Voice/dp/159059827X ..
    Keep the questions coming, folks here will help when they can..
    Thank you,
    Tony Miller
    Webster, TX

  • Congiguring jsps with oracle8i,urgent reply needed

    Beginner for oracle8i ---need ur help
    I have installed oracle8i database server8.1.5 on winNT workstation which has Jserver to run java components.
    Please tell me how to run jsps with oracle8i.
    Ihave written certain jsp files but don't know where to put them and how to start the server to test them.This is an urgent requirement for my client,if anybody can help.
    A great thanks in advance.
    null

    Do you refer to the 9i AS Metadata Repository / iasdb?
    then,
    1) yes, if mid-tier components (like Reports) metadata is stored there
    2) do you consider your apps important?
    Also note that Infra. and Mid-tier installs should be backed up sync'd (both at same time). There is a paper on OTN about this.

  • Need help with VBScript Urgent

    Hi, I am working on a specific project which requires a file to be updated on all users machine before deployment. I have tried a script which is not working and does not give any error either. Please check this for me urgently as I am running short of time. 
    Requirement: Script should force copy a file located on a common file share to a folder in users machine. I am not deploying this script via any GP or SCCM due to certain reason. I will be sending mail to users with a hyperlink which should trigger the script
    and perform the action. I would be delighted if there is a way if users can get a pop up window stating "Successfully Copied" or some sort. 
    Here is my incomplete script.
    Set objFso=createObject("scripting.fileSystemObject")
    set objWShell=wScript.createObject("WScript.Shell")
    usrName=objWShell.expandEnvironmentStrings("%USERNAME%")
    strFileToCopy="\\ja-rfzitd\INSTDIR\000 Sephora - UAT\Foundation\test.fcf"
    strFolder="C:\Users\%USERNAME%\AppData\Roaming\Test\"
    if objFso.folderExists(strFolder) then
    objFso.copyFile strFileToCopy,strFolder&"\",true
    end if

    Try changing this line:
    strFolder="C:\Users\%USERNAME%\AppData\Roaming\Test\"
    to this:
    strFolder="C:\Users\" & usrName & "\AppData\Roaming\Test"
    Environment variable expansion is not automatic in VBScript strings (evidenced by the fact that you had to call the ExpandEnvironmentStrings method of the WshShell object on the previous line). I also removed the trailing "\" from the string because
    you're already adding it when you call the CopyFile method.
    -- Bill Stewart [Bill_Stewart]

  • SEO with a one-page Flash Desktop site combined with multipage Table & Phone sites

    I have an old but very nice Flash site that, like all Flash sites, is only one page of html and therefore not very search engine- friendly (nor, tablet or phone- friendly). I would like to retain this site, but also create, new, multipage, html-optimized, non-Flash Tablet and Phone versions of this site by means of Muse. My question concerns SEO under this circumstance.
    (1) Which of the sites will Google crawl to get title tags and content? The one-page Desktop version? The multipage Tablet version? The multipage Phone version? All three? If the latter, all three equally, or does it favor, say the destop version over the phone version?
    (2) What about potential Google penalties for duplicate content shared between the three versions of the site?
    Thanks for any knowledgeable advice you might be able to share with me.

    Hi Justin,
    Thanks for your prompt response, it was very informative. I read through the documents you referenced. I have a couple followup questions, but I suspect they may be a bit more specialized than you may be able to answer (although I think you'll admit they are very worthwhile questions).
    (1) In the scenario I outlined above in my first post, the desktop version has next to no html content, while the tablet and phone version have lots of html content. Does the ranking of the desktop version rise or fall on its own merits in the Google rankings (in which case it will fall), or does it rise and fall based on the merits of the total html content in all three versions of the site, including the three sets of title tags?
    (2) Should the title tags in all three versions of the website be identical to avoid Google's potential wrath, or will the site rank higher if they are all different from each other?
    (What I am secretly wishing for, in case you read between the lines, is to have the ability to boost the Flash desktop version of the site that is only one page with one title tag and viritually no html by means of html rich, multipage Table and Phone versions of the site. Could it be this wish will be fulfilled?)
    Thanks again for any insite you or others in the community can provide.
    Chuck

  • Problem with nextLine() (urgent!)

    well, i'm really confused with this nextLine..
    import java.util.Scanner;
    public class Main
         public static void main(String[] args)
              Karyawan[] nama = new Karyawan[20];
              nama[0] = new Director("Adri","Anto",50,10000000.0);
              nama[1] = new Director("Andreas","Supriyanto",45,12000000.0);
              nama[2] = new Director("Zulfikar","Rizki",49,12000000.0);
              nama[3] = new Director("Ferry","Rippun",29,25000000.0);
              nama[4] = new Director("Ferry","Salim",35,15000000.0);
              nama[5] = new Manager("Marisa","Rosari",45,6900000);
              nama[6] = new Manager("Eric","Setiawan",39,5000000);
              nama[7] = new Manager("Valen","Tina",35,4000000);
              nama[8] = new Mandor("Eric","Samuel",38,3500000);
              nama[9] = new Mandor("Well","Lina",32,2500000);
              nama[10] = new Mandor("Felix","Febrian",31,2200000);
              nama[11] = new Mandor("Ferry","Good",40,3000000);
              nama[12] = new Buruh("Edwin","Edwin",25,1100000);
              nama[13] = new Buruh("Johannes","Mario",26,1200000);
              nama[14] = new Buruh("Ferry","Yoes",25,1200000);
              nama[15] = new Buruh("Irwin","Lawrencius",24,1100000);
              nama[16] = new Buruh("Bagus","Putera",25,1100000);
              nama[17] = new Buruh("Ferdinando","Satria",25,1300000);
              Scanner input = new Scanner(System.in);
              System.out.println("Insert your name : ");
              String carinama = input.nextLine();
              System.out.println("Status 0:Director, 1:Manager, 2:Mandor, 3:Buruh");
              System.out.println("Insert your status (0,1,2,3) : ");
              int status = Integer.parseInt(input.nextLine());
              for(int i=0;i<20;i++)
                   if(carinama == nama.namaDepan)
                        switch(status)
                             case 0:
                             if(i<5)
                                  System.out.println("Status = Director");
                                  nama[i].cetakData();
                             else {}
                             break;
                             case 1:
                             if(i>4 && i<8)
                                  System.out.println("Status = Manager");
                                  nama[i].cetakData();
                             else {}
                             break;
                             case 2:
                             if(i>7 && i <12)
                                  System.out.println("Status = Mandor");
                                  nama[i].cetakData();
                             else {}
                             break;
                             case 3:
                             if(i>11)
                                  System.out.println("Status = Buruh");
                                  nama[i].cetakData();
                             else {}
                             break;
                             default: System.out.println("Please insert between 0-3");
                   else
    }String carinama = input.nextLine(); <--- this one works, if i print the carinama, it'll print the name i had inputted...
    but the problem is.. let's just say i insert "Adri" for the name
    if i insert theif(carinama == "Adri")
    System.out.println("Right");
    else
    System.out.println("Wrong");
    that's just an example, the result will be "Wrong"... my question is why is the answer "Wrong" ?
    as far as i know, the String carinama should contains "Adri" right? so why is my if always skipped..?
    i've tried next() but to no avail..
    any help appreciated, and i really need this today >.<  (sorry for my bad english)                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    no, you're not late... please help me if you know where's the problem. thx
    ah well, why can't i edit my first post.. anyway i've refined my problem to this
    but it still not working.. the error is on line 36
    if(carinama.equals(nama.namaDepan))NullPointerException <--- i really have no idea what this means...
    Edited by: Lucille on May 12, 2008 12:23 AM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Problem in stock maintenance--% wise ---with variants-----urgent

    hi gurus,
    I have created material using t.code [MM01]
    Industry sector: steels and mining
    Material type: configurable material steels and mines
    Basic data 1:
    Item category group:  0002-configuration
    Classification:
    Class: IRON_GRADES
    Characteristics: IRON ORE GRADES BASD ON %
                                                                      GRADE A = ABOVE 65%
                                                                      GRADE B = 62% TO LES THAN 65%
                                                                      GRADE C = 40% TO LES THAN 62%
    PROBLEM:
    Based on the grades or percentage of the iron ore the lease (customer) is going charged royalty
    And System is picking the royalty according to the % of iron ore at the time of sales order using the t.code [VA01].
    While I am delivering and issuing the goods using the same sales order using the t.code [VL01N]
    System giving the following error message 
    If we analyze the error,
    0 materials is available
    There is no stock available for this material and according to % wise
    So what is the procedure used to maintain the stock of configurable material in respective plant and storage location using the t.code [MB1C]
    here i should not maintain the stock based on the sales order
    from over all stock with % system has to pick the ordering quantity
    how can i maintain the stock using the variants
    How can I solve this problem?
    Kindly help me
    with regards
    munichandrababu

    Dear Guys,
                    Regards.Even we are stuck up with the same above issue for quite sometime..Would be great if someone could throw light on this...........if possible...
    Manythanks
    arun

  • MRP with Subcontracting (Urgent)

    Hi,
    I have a scenario of Subcontracting in an Automobile Industry. The planning plant is I005 and the BOm is as follows -
    Final Assy 'FA' (FERT) {Assembly done on subcontract basis by subcontract Vendor A005)
    -- Sub Assy 01 'SA1' (HALB) - {Assembly done by Subcontract Vendor D025}
    -- Sub Assy 02 'SA2' (HALB) - {Assembly done by Subcontract Vendor A005}
    --- Component 01 'C1' (HALB) - {Component required in both SA1 and SA2 and procured by plng plant I005}
    --- Componenet 02 'C2' (HALB) - {Component required in SA2 only and procured by plng plant I005}
    --- Component 03 'C3' (HALB) - {Component required in SA1 only and procured by plng plant I005}
    The clients requirements are as follows -
    1. Want to put plan for FA as PIR in MD61 for 3 months as monthly plan.
    2. Take Run on monthly basis in plant I005
    3. After MRP run the system should do the following things -
       -- In net requirement calculation the system should take material provided stock and I005's unrestricted stock.
       -- System will create subcontract PO for SA1 to vendor D025 and FA to A005
       -- system will not create subcontract PO/PR or Sch Line for SA2 but it should plan for C2 for subcontract vendor A005.
      -- System should take care of Material Provided stock for D025, A005 and un restricted stock of I005 for Component C1 and club the total required quantity and make monthly schedule line in SA as per Source List maintained.
      -- the system should create Sch Line for C3 as monthly schedule line for SA per maintained in Source list
    I made few settings as follows but the results are not as per my expectations.
    1. For FA - Procurement type - F and Spl Proc Key - 30 and planning strategy 10 and MRP type - PD
    2. For SA1 - Procurement type - F and Spl Proc Key - 30 (Subcontracting) and MRP type - PD
    3. For SA2 - Procurement type - F and Spl Proc Key - 60 (Phantam in planning) and MRP type - PD
    4. For C1 - Procurement type - F MRP type - PD
    5. For C2 - Procurement type - F MRP type - PD
    6. For C3 - Procurement type - F MRP type - PD
    7. Maintained Source list for C1, C2 and C3 with valid sch agreements and MRP relevency indicator "2"
    8. Running MRP monthly for plant I005 and with NETCH, Sch Line - 3
    Can anyone please guide me with the correct settings I need to make to map the requirements.
    Thanks and Regards,
    Amol Rathore

    What I have under stood from your BOM is -
    Level    Item       ProcType   SpKey          Vendor                
    1          FA         F               30                A005
    1.1       SA1       F               30                D025
    1.2       SA2       F               30                A005
    1.1.1    C1          F                                  Some Vendor
    1.1.2    C3          F                                  Some Vendor
    1.2.1    C1          F                                  Some Vendor
    1.2.2    C2          F                                  Some Vendor
    Please clear whether this BOM is correct or not?
    cheers
    kapil

  • Please help with an urgent purchase issue

    Hello all
    I have finally decided that since I am planning a trip to US it would be a wonderful opportunity to purchase a Mac and fulfill my dream!
    Despite the fact that I was thinking of purchasing an iMac for a desktop computer (my office laptop is a windows 8) I ended up in selecting a MacBook Pro 15 retina as a desktop replacement combining increased portability and enhanced specifications. The use is strictly personal meaning transferring and listening to music, home movies editing, watching movies, Internet and generally transferring all my home staff to apple ecosystem using also external drives.
    Now the serious staff: since  I have a one time opportunity ( the trip is not repetitive) I would extremely appreciate your help in the following:
    - my current selection is with 2,7 ghz quad core i7 with 8  gb ram and 512 flash. How is this configuration compared to the basic one? Basically I chose the 2.7 because of the relatively small price difference and the increased hard drives because of future programs installations (all storage will be done in time capsule and external drives)
    - since I have to purchase it now when Mavericks are released will the update require payment (based on your experience from the past)
    - how do the above compare to the new MacBook Air (if it is worthwhile I would go to an enhanced version of the 13")
    My true apologies for the length of my message but any help is invaluable to solve my confusion
    Many thanks in advance. 

    - my current selection is with 2,7 ghz quad core i7 with 8  gb ram and 512 flash. How is this configuration compared to the basic one? Basically I chose the 2.7 because of the relatively small price difference and the increased hard drives because of future programs installations (all storage will be done in time capsule and external drives)
    - since I have to purchase it now when Mavericks are released will the update require payment (based on your experience from the past)
    - how do the above compare to the new MacBook Air (if it is worthwhile I would go to an enhanced version of the 13")
    My true apologies for the length of my message but any help is invaluable to solve my confusion
    Many thanks in advance. 
    We do not know yet what Mavericks will cost or what machines Apple will update for free but based on past experience it will probably not be a free update unless you purchase the computer after Mavericks has been released to the public. As recent operating system upgrades have been relatively inexpensive - Mountain Lion was $20 - I wouldn't worry a lot about this.
    I agree with your choice of the 512GB SSD. The bigger the better as application files and data are only going to get larger. The faster processor may not make enough difference for your intended uses to make it worth the extra money however.
    The retina display on the MacBook Pro is quite a bit better than the MacBook Air.
    Best of luck.

  • Undesired multiple pdf files created with multipage print.  Acrobat 9.5

    Hello,
    I have a 20 tab spreadsheet in Excel 2010, 18 tabs of which are presentation pages.
    Most are landscape letter, 3 or 6 are landscape legal
    The first time around, I selected the 18 tabs, file/printed to pdf, and I ended up with a perfect pdf, All 18 pages, 3 of which were legal size.
    I change department names, change a bunch of data, added a few more tabs.
    When I commence the same print routine, selecting all tabs to be included, I now get one 16 page pdf, a number of 1 page pdf's, and one three-page pdf.  Each time the print routine asks for the file name.  8 times in total, instead of just once.  What triggers this unwanted multi file split, and how can I prevent it?
    Thank you for any and all suggestions,

    Hello,
    I have a 20 tab spreadsheet in Excel 2010, 18 tabs of which are presentation pages.
    Most are landscape letter, 3 or 6 are landscape legal
    The first time around, I selected the 18 tabs, file/printed to pdf, and I ended up with a perfect pdf, All 18 pages, 3 of which were legal size.
    I change department names, change a bunch of data, added a few more tabs.
    When I commence the same print routine, selecting all tabs to be included, I now get one 16 page pdf, a number of 1 page pdf's, and one three-page pdf.  Each time the print routine asks for the file name.  8 times in total, instead of just once.  What triggers this unwanted multi file split, and how can I prevent it?
    Thank you for any and all suggestions,

  • Datareader is not able to connect with database-Urgent

    Hi All,
    All of a sudden the Datareader component in my ML experiment is not able to connect with database with the following error:
    [ModuleOutput] DllModuleHost Error: 1 : Program::Main encountered fatal exception: Microsoft.Analytics.Exceptions.ErrorMapping+ModuleException: Error 0000: Internal error ---> System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.ArgumentException: The value's length for key 'password' exceeds it's limit of '128'.
    Module finished after a runtime of 00:00:00.2031339 with exit code -2
    Module failed due to negative exit code of -2
    It complains about the password being long-but the same credentials I have been using for the last 2 months and still able to use it to run sql queries on that same database using the management portal.
    It appears that Azure encrypts the password and that encrypted password is too long...just my guess after looking that the output.Inside Ml it just says as internal error
    Would appreciate if someone can point to the issue at the earliest...(There is a demo early next week)
    Subscription:Enterprise,
    LOCATION: East Asia
    Regards,
    Biswajit

    Hi,
    Please check this url:
    https://studio.azureml.net/Home/ViewWorkspace/bc85d4f81d2246c4b1430eb395229a3a?&hashSeg=#Workspaces/Experiments/Experiment/bc85d4f81d2246c4b1430eb395229a3a.f-id.11776ae4400f4c1aa9f58308c30810fa/ViewExperiment
    which is an experiment which I created doing save as of the experiment in which the data reader works.
    I stripped everything except the data reader and setup the rest of the components...I finally have to write the results back ,so also pulled a Writer component.
    Now,the data reader works fine..but the Writer fails:
    Error 0071: Incorrect username "acnadmin" or password is passed
    Strangely,its the same credentials set in the DataReader.
    Looks like all the DataInput/Output components created recently only have the problem.
    Once again,while the datareader in this case passes the password in plain text,the writer encrypts,hence fails.

  • Displaying an Image in an Excel Spreadsheet with JSP - URGENT

    Hi Peoples
    I can transfer the table I am using in to excel with JSP by doing:
    <%@ page contentType ="application/vnd.ms-excel" %>
    this works fine, though I have an image that sits within the table that I want to be displayed as well.
    Can this be done?? If so how???
    Thanks

    Try to insert the image into sheet from it's URL not from it's local file path
    Best regards

  • Integration of Oracle 9iAS Email with Portal-URGENT!!!!

    Hi all,
    Is it possible to integrate Oracle 9iAS Email component with Oracle Portal so that we can do away with the need for installing Exchange Portlets?Can neone throw more light in this regard.
    Regds.
    Kiran.

    9iAS comes with an Email Server, if that is what you are asking.
    You could always write an IMAP portlet, which allows you to read/send mail.
    Hi all,
    Is it possible to integrate Oracle 9iAS Email component with Oracle Portal so that we can do away with the need for installing Exchange Portlets?Can neone throw more light in this regard.
    Regds.
    Kiran.

Maybe you are looking for

  • HT3702 I am not able to complete a transaction on my account from castleville legends

    I am trying to buy a in app upgrade and is not going through

  • Adding prefix to Missed calls

    Hi Please Help me out here . My client wants to redial numbers coming in missed calls and received calls but calls are drooping when redialed.This is because number which shows on cisco phones is either  9XXXXXXXXX(LOCAL CELL PHONES) or 22XXXXXXXX bu

  • Crash after 10.8.5 update

    After doing the most recent update for iMac 27", 10.8.5, Mountain lion, my SafAri is malfunctioning.  Safari opens but the screen is blank. If I try to open prior windows it goes no where, and none of the commands in the menu bar work. Internet conne

  • ER Time Dimension

    HI i have a problem of creating a ER diagram for Time Dimension which consist of tables are DAY , WEEK , MONTH , QUARTER , YEAR and the relationship between those tables can someone help i need a full solution with attributes for each table

  • Creating Vendor Hierarchy?

    Dear BWers, I need to create a Hierarchy in BW for Vendor that is based on table LFMH. Can anybody please guide me through the steps of creating the datasource in R/3 for a hierarchy. Also is 0VENDOR_LKLS_HIER based on LFMH? How do i find that? Thank