Question on how to getParameter when using VewLink

Hi,
How do I use a getParameter on when using viewlink in a PPR action
Currently I am getting a null value for the pagecontext.getParameter("LineItem");
thanks

Welcome to the Apple Community.
That's not currently possible, sorry.

Similar Messages

  • Question about the CSS behavior when using layer 3 sticky and sticky table

    Hi everyone,
    I have a question about the CSS behavior when using layer 3 sticky and sticky table is full.
    If I configure layer 3 sticky and specify the inactivity timeout as below, how does the CSS
    handle subsequent needed sticky requests ?
    advanced-balance sticky-srcip
    sticky-inact-timeout 30
    CSS document says that
    Note:
    If you use the sticky-inact-timeout command to specify the inactivity timeout
    period on a sticky connection, when the sticky table becomes full and none of
    the entries have expired from the sticky table, the CSS rejects subsequent
    needed sticky requests.
    My question is what is the next reaction by doing the CSS if the CSS is in the
    following condition:
    when the sticky table becomes full and none of the entries have expired from
    the sticky table, the CSS rejects subsequent needed sticky requests
    Does CSS just rejects/drops subsequent needed sticky requests ?
    or
    Does CSS does not stick subsequence requests to particular service but CSS forward
    subsequence requests with round-robin basis ? which means if the sticky table is full,
    the CSS just works round-robin load balancing fashion for subsequence requests ?
    Your information would be appreciated.
    Best regards,

    Hello,
    There is a good document explaining this on Cisco web site
    http://www.cisco.com/en/US/products/hw/contnetw/ps789/products_tech_note09186a0080094b4b.shtml
    It depends if the sticky-inact-timeout is used or not. If not, it's FIFO (the oldest entry in the sticky table is removed). If yes, the CSS will reject the next sticky request.
    Rgds,
    Gaetan
    Rgds
    Gaetan

  • How to numberformat when using sql:query alogn with c:forEach JSTL tags

    Is there anyway to format the numeric values returned from the database when using <sql:query> alogn with <c:forEach> tags
    Here is my jsp code
    <sql:query..../>
    <c:forEach var="row" items="${queryResults.rows}">
    <tr>
    <td><c:out value="${row.COL1}" /></td>
    <td><c:out value="${row.COL2}" /></td>
    </tr>
    </c:forEach>
    Col1 values are numeric without any formats Eg: 1000, 10000, 1000000 etc.
    how can i format them to 1,000 , 10,1000 , 100,000 etc

    It is polite to mention what your answer was. These posts are not just here for you to ask questions, but to be used as a resource for other people to find answers. Saying "I solved it" with no details helps noone.
    I presume you discovered the JSTL <fmt:formatNumber> tag?

  • Bug in HttpServletRequest.getParameter when using anchors (#)?

    When using
    response.sendRedirect("getParameterError_display.jsp?parm1=blurb&parm2=moreblurb#myanchor");
    to redirect to a jsp, a call to getParameter in that JSP for parm2 returns "moreblurb#myanchor" rather than "moreblurb".
    I thought originally that I was building the URL incorrectly but IE5 navigates correctly to the anchor point in my HTML.
    Is this a bug in getParameter or am I doing something wrong?
    Many Thanks, full code below.
    getParameterError.jsp
    <%@ page session="true"
    import="javax.servlet.*,
            java.util.*
    "%>
    <html>
    <head>
    <title>Illustrates problem with request.getParameter and anchors</title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    </head>
    <body bgcolor="#FFFFFF" text="#000000">
    <%
        String newURL = "getParameterError_display.jsp?parm1=blurb&parm2=moreblurb#myanchor";
        response.sendRedirect( response.encodeRedirectURL( newURL ) ) ;
    %>
    </body>
    </html>
    getParameterError_display.jsp
    <%@ page session="true"
    import="javax.servlet.*,
            java.util.*
    "%>
    <html>
    <head>
    <title>Illustrates problem with request.getParameter and anchors</title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    </head>
    <body bgcolor="#FFFFFF" text="#000000">
    <a href="getParameterError.jsp">try again</a>
    <br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
    <br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
    <a name="myanchor">here is myanchor</a>
    <a href="getParameterError.jsp">try again</a>
    <p>The paramaters are:</p>
    <%
            Enumeration e = request.getParameterNames();
            String name;
            String [] values;
            while( e.hasMoreElements() ) {
                name = (String)e.nextElement();
                values = request.getParameterValues(name);
                for(int i=0; i< values.length; i++) {
    %>
                    <%= name + " = " + values%><br>
    <%
    %>
    </body>
    </html>
    Output
    The paramaters are:
    parm2 = moreblurb#myanchor
    parm1 = blurb

    I get the same problem in Tomcat 4.0.1. Fixed it by terminating the param string with "&".
    e.g. instead of
    String newURL = "getParameterError_display.jsp?parm1=blurb&parm2=moreblurb#myanchor"; try
    String newURL = "getParameterError_display.jsp?parm1=blurb&parm2=moreblurb&#myanchor";This worked in IE6 and Netscape 6.2. Hope it works for you.

  • Peformance question TKPROF/Autotrace Cost High when using index why?

    I'm going through a legacy database application to do some application code performance tuning of the PL/SQL.
    I am constrained from changing the code logic so I can only add indexes and hints. As I identify full-table-scans I'm using hints to force the code to use the index and now the Cost is Higher than with full table scans. Though the application code runs in batch mode and processes a lot of records.
    Can anyone provide any insight into why the cost goes up when using Hints in the SQL?
    I have additional testing to do though I just wanted to pose the question.

    Firstly, the cost can be less for a full table scan because with a full table scan Oracle can do multi block IO with a full scan. So reading a large amount of data from a table will go much faster if the table is full scanned as opposed to accessed by an index (your forcing the query with a hint can actually be extremely detrimental to the query).
    Secondly, if you are not allowed to make any code changes, i'd recommend not taking the path you are currently on (adding hints). That may be warranted in a few situations, but likely not many assuming you have accurate statistics set up on your database.
    Here's an article that deals with full table scans ....
    http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:9422487749968
    Hope that Helps.

  • K8N Neo2: How much overclocking when using Sata-Drives ?

    I understand that IDE-Drives have an advantage in achieving high FSB. Ist this in genral the case or is SATA as stabile when using them plain without RAID ?

    I have a set of RAID0 SATA's.
    On SATA1 & SATA2 I can run at a max of 201FSB
    On SATA3 & SATA4 I can run at a max of 212FSB

  • How display Document when using file_store

    I create a FIle_Datastore called COMMON_DIR (as The Sample). My question is When in Form I query to bring the ID_Number and the Document name (This I believe is the Path where the document is located in the file system)and No problem with this, but how i display the document? I have to use the File_datastore I created?

    Hi,
    Check this;
    How to get 'Print', 'Download' and 'Return' link when navigate using Go URL
    "&done="
    Good Luck,
    Daan Bakboord
    http://obibb.wordpress.com

  • "What Size" results question. How can I locate used GB not appearing on HD?

    My Version Tracker "What Size" results are as follows:
    / - on disk 91.4 GB
    Capacity 465 GB
    Used 145 GB
    Available 320 GB
    71.1 GB Users
    8.61 GB Applications
    6.34 GB Library
    2.67 GB username
    1.43 GB System
    I have about 30 GB of songs, 5 GB of Pictures, and 30 GB of movies. So I am confident that the "Users" total (71.1 GB) is in keeping with what I have used. (And Users, Applications, Library, username, and System all equal what is "on disk, 91.4 GB.")
    What I am wondering is, how can I locate the unaccounted for 53.6 GB? (Which is 91.4 subtracted from the "Used 145 GB.")
    I have been unsuccessful in finding any searches related to this subject that I can use. I found a couple about using Terminal, however, I would need step by step procedures for that.
    Any ideas, articles, or threads anyone can point me to?

    368/2814
    Hi jpwill,
    First of all, always keep in mind the double standard problem that prevents from being able to make straight, simple, easy counts. See:
    - (KB article # 30065) Macintosh Hard Disk: Is It Missing Space?
    Then, WhatSize should be run separately from each user account, as you cannot use it to spy on the others, it doesn't take into account the others' files.
    Also: some system files like VM have a fluctuating size. Quit as many apps as you can and test if several measurements give different results.
    WhatSize is able to show (one user's) every folder and every file. Use its different ways to show results, and detect the "strange" sizes firstly from what should be expected.
    It is very possible that a file has grown huge for some reason.
    Let us know if you have a question about some particular files!
    Axl

  • Has anyone figured out how to indent when using the iPad keyboard?

    I am using iPad for meeting notes, but can't seem to figure out how to tab or indent when typing.

    In notes all I can figure out is to put a space or two at the beginning of each line but in pages if you touch the paintbrush at the top right corner and then list, there's an indent button. In notes sometimes I'll use a – to help delineate the indent.

  • How to print when using Windows 8 Adobe Reader

    How does one print a simple .pdf document using Adobe Reader in Windows 8.  With the document open, the print button is visible on the tool bar but clinking on that only brings up the screen asking where do I want to save the document.  It is already saved...I just want to print it!  Clicking on file and then selecting print results in the same.  I've never had this problem before.  I have been a long time Adobe user but always WIndows 7 or Windows XP.  This Windows 8 is killing me.
    Thanks for any help you can offer!

    This sounds like you have 'Print to File' set; uncheck it (Advanced button on the Print panel).

  • How to map when using mail adapter

    Hi:
    I'm doing a test with mail adapter in XI. The scenario is I put an XML representation content based on the outbound interface used by sender mail adapter directly in inbox mail content and send it. At the other side, I want to using receiver file adapter sotre the content as a file in file system. But some mapping is needed.
    What I have already done is to define one outbound interface(<b>IF_Mail</b>) which is used by sender mail adapter.IF_Mail using the structure like
    <MT_Mail>
    <mail> 
    </mail>
    </MT_Mail>
    I also defined an inbound interface(<b>IF_File</b>). IF_File is using the structure like
    <MT_File>
    <file> 
    </file>
    </MT_File>
    I want to map the value of <mail> in mail to <file> in file. I did structure mapping between two message types in IR and all of the configuration in XI.
    I put the below content
    <MT_Mail>
    <a> test
    </a>
    </MT_Mail>
    as inbox mail content and send it. But when I monitor the XI message. It always says something is wrong with mapping.
    what am I doing wrong?  Thanks.

    Hi Oscar,
    copy the payload of incoming message (SXMB_MONI) to your desctop and test the mapping inside the IB Repository (Test Modus of IF-Mapping or Message Mapping), switch the trace to "all".
    Regards,
    Udo

  • Ask your question.Why are images blurry when using io7

    Using new operating system images on web sites and Instagram are blurred. Almost like the colors of a 3 D picture.

    It sound like there is some data corruption somewhere.
    Have you tried disconnecting from iCloud and then seeing how it behaves on your iPad. If it is okay, then there is a problem with your iCloud calender - do you perhaps incorporate other calendars into iCloud and one them is causing the problem?
    If disconnecting from iCloud does not sort the problem, then you might want to try deleting everything in your March diary (of course using Day or Week view). Once everything is deleted is it okay? If it is okay then re-enter your stuff for March.
    I know that this might be quite labourious but this might just sort it.

  • Question on how to download apps using Apple tv

    Are you able to download apps using the Apple TV?

    Welcome to the Apple Community.
    That's not currently possible, sorry.

  • How Can I make Use of XI

    Hi Friends,
    I am a kind of newbie in to this world of XI,
    I have a  quick question,Before stepping into the question please look in to my Existing process.
    I have a J2EE product,
    which needs the business data from differant versions of R/3 systems (for example 3.1,4.3,4.6c)
    and some other systems as well(say people soft and few other legacy systems),
    If I am asked to deploy my J2EE product at a ABC client site who has already the above environment(SAP and other systems),
    The scenario would be :
    1.Extracting the needed data from all the business environments of the client ABC(SAP 3.1,4.3,4.6c, People soft, Legacy)
    2.Converting them in to the flat files and placing in FTP
    3.Communicating thru my product to the FTP
    4 Loading in to the database which is compatible with my product(say Oracle,SQL Server,DB2...etc)
    Currently for Extracting the data from SAP Systems,
    I am writing the ABAP programs to extract the data from the client systems,
    which will create the needed flat files in FTP,
    But In case of the extraction other than SAP systems,
    Client ABC will be giving me the needed data from the other business systems in the required flat file format,
    Step 4 will be handled by my J2EE product when all the needed filed are ready in the specified FTP location.
    Now my question is,
    How can I make use of Exchange Infrastructure process integration methodology in my current business process,
    It would be great if some one can propose in enhancing the process by making use of XI,
    Thanks in Advance,I look forward for a quick response.
    Regards,
    Sanjeev.

    Hi,
    <i>I am looking for a way where I can directly write the logic with in XI for extracting the data from SAP and other systems and moving in to my oracle database,</i>
    >>>Think XI is an EAI tool. So you need to write a logic in the SAP systems to push the data into XI. Or even you can make XI to poll the data from SAP.
    <i>Here the senders should be as
    Sender 1:SAP3.1
    Sender 2:SAP4.3
    sender 3:SAP4.6
    Sender 4:People soft
    sender 5:Legacy1
    sender 6:legacy2
    Reciever should be a single Oracle Database on which my j2ee product will be sitting.</i>
    Ideally you can have 3 entries for all 3 SAP systems in SLD.
    For PeopleSoft system,Legacy1,Legacy2 different SLD entries.. SO it is something like you need to have Business system for each Systems.
    Then I suggest, you have already ABAP programs in place, you can use this and you can call proxy from these programs. So that you can avoid doing some of the developments. But inorder to process on Proxy you need to have SAP WAS6.40 and above or SAP WAS 6.20 with add-ins.
    If this is not feasible then you need to eithe go with Idoc/RFC sturctures from the R/3 sides.
    http://help.sap.com/saphelp_nw2004s/helpdata/en/02/265c3cf311070ae10000000a114084/frameset.htm
    First try to lay out the system landscape design with message exchange format etc.
    Then it is possible to do the design easily.
    For e.g from Peoplesoft you will get the data in file format. That time you can go with File->XI->Data Base scenario.
    Hope this helps,
    Regards,
    Moorthy

  • How to know when a function is running in TRFC mode

    Hi,
    I have an RFC function and i would like the program to behave differently when called as a TRFC.
    The question is how to identify when it is being executed asynchronously rather than synchronously.
    Did I miss something obvious?
    Any suggestions?

    Actually I think this is probably solved by calling FM TRFC_RECEIVER_INFO.

Maybe you are looking for