Urgent: Parameter problem for portlet displaying jsp running inside tomcat

Following jsp when run with portal 9.0.2 displays value of Name and Age but value of Telephone parameter is displayed as Null. Can anybody tell me the reason?
Running this jsp on IBM WebSphere.
<%@ page contentType="text/html;charset=UTF-8" %>
<%@page import="java.util.*, oracle.portal.provider.v2.*" %>
<%@page import="oracle.portal.provider.v2.http.HttpCommonConstants" %>
<%@page import="oracle.portal.provider.v2.render.PortletRendererUtil" %>
<%@page import="oracle.portal.provider.v2.render.PortletRenderRequest" %>
<%@page import="oracle.portal.provider.v2.render.http.HttpPortletRendererUtil" %>
<%@page import="oracle.portal.provider.v2.url.UrlUtils" %>
<%
// The form submit URL refers to the current Portal page. All portlets
// on this page share this URL. This means that the per portlet parameters
// are in the same request. Portlets must ensure that its paramerters don't
// collide either with other portlets or other instances of itself. This
// is generally accomplished by using "fully-qualified" parameter names. A
// fully-qualified parameter name prepends the (unique) portlet reference to
// the parameter. The JPDK provides a utility to accomplish this.
String portletParamName = "mName";
String portletParamAge = "mAge";
String portletParamSubmit = "mSubmit";
String fName = HttpPortletRendererUtil.portletParameter(request, portletParamName);
String fAge = HttpPortletRendererUtil.portletParameter(request, portletParamAge);
String fSubmit = HttpPortletRendererUtil.portletParameter(request, portletParamSubmit);
// These are the session attribute names used to store the current values.
// Because all instances of this portlet share the same user session we must
// also fully-qualify these names to avoid collisions.
String sName = HttpPortletRendererUtil.portletParameter(request, "sName");
String sAge = HttpPortletRendererUtil.portletParameter(request, "sAge");
String sTelephone = request.getParameter("TELEPHONE");
PortletRenderRequest pRequest = (PortletRenderRequest)
request.getAttribute(HttpCommonConstants.PORTLET_RENDER_REQUEST);
String formName = UrlUtils.htmlFormName(pRequest,null);
ProviderUser user = pRequest.getUser();
ProviderSession providerSession = user.getSession();
if (providerSession == null)
%>
Your provider session has been terminated or has timed out
and you need to logout and then login to re-establish the session.
<%
else
// Record, in session storage, the last values submitted.
if (pRequest.getQualifiedParameter(portletParamSubmit) != null)
providerSession.setAttribute(sName, pRequest.getQualifiedParameter(portletParamName));
providerSession.setAttribute(sAge, pRequest.getQualifiedParameter(portletParamAge));
%>
<!-- Output the HTML content -->
<center>
<table width="70%">
<tr>
<td>
<b>This portlet shows how to post and process information from HTML forms.</b>
</td>
</tr>
</table>
<form name="<%= formName %>" method="POST"
action="<%= UrlUtils.htmlFormActionLink(pRequest,UrlUtils.PAGE_LINK) %>">
<%= UrlUtils.htmlFormHiddenFields(pRequest,UrlUtils.PAGE_LINK, formName) %>
<table>
<tr>
<td>
<b>Name :</b>
</td>
<td>
<input type="text" size="20" name="<%= fName %>" value="">
</td>
</tr>
<tr>
<td>
<b>Age : </b>
</td>
<td>
<input type="text" size="3" name="<%= fAge %>" value="">
</td>
</tr>
<tr>
<td>
<b>Telephone : </b>
</td>
<td>
<input type="text" size="3" name="TELEPHONE" value="">
</td>
</tr>
</table>
<br>
<INPUT TYPE=submit name="<%= fSubmit %>" Value="Submit">
</form>
<%
if ((providerSession.getAttribute(sName) == null)&& (providerSession.getAttribute(sAge) == null)) {
%>
<b>No values have been submitted yet.</b>
<%
} else {
%>
<b> Last submitted values:</b><br>
<table>
<tr>
<td>
<b>Name: </b>
</td>
<td>
<b><%= providerSession.getAttribute(sName) %></b>
</td>
</tr>
<tr>
<td>
<b>Age: </b>
</td>
<td>
<b><%= providerSession.getAttribute(sAge) %></b>
</td>
</tr>
<tr>
<td>
<b>Telephone: </b>
</td>
<td>
<b><%= sTelephone %></b>
</td>
</tr>
</table>
<%
%>
</center>
<%
%>
<!-- End output the HTML content -->
Can somebody please help me on this?
Thanks

Hello,
Let me know if the answer that I made Help needed: JSP and portal parameter problem.
Regards
Tugdual Grall

Similar Messages

  • Urgent: Parameter problem for jsp

    Following jsp when run with portal 9.0.2 displays value of Name and Age but value of Telephone parameter is displayed as Null. Can anybody tell me the reason?
    Running this jsp on IBM WebSphere.
    <%@ page contentType="text/html;charset=UTF-8" %>
    <%@page import="java.util.*, oracle.portal.provider.v2.*" %>
    <%@page import="oracle.portal.provider.v2.http.HttpCommonConstants" %>
    <%@page import="oracle.portal.provider.v2.render.PortletRendererUtil" %>
    <%@page import="oracle.portal.provider.v2.render.PortletRenderRequest" %>
    <%@page import="oracle.portal.provider.v2.render.http.HttpPortletRendererUtil" %>
    <%@page import="oracle.portal.provider.v2.url.UrlUtils" %>
    <%
    // The form submit URL refers to the current Portal page. All portlets
    // on this page share this URL. This means that the per portlet parameters
    // are in the same request. Portlets must ensure that its paramerters don't
    // collide either with other portlets or other instances of itself. This
    // is generally accomplished by using "fully-qualified" parameter names. A
    // fully-qualified parameter name prepends the (unique) portlet reference to
    // the parameter. The JPDK provides a utility to accomplish this.
    String portletParamName = "mName";
    String portletParamAge = "mAge";
    String portletParamSubmit = "mSubmit";
    String fName = HttpPortletRendererUtil.portletParameter(request, portletParamName);
    String fAge = HttpPortletRendererUtil.portletParameter(request, portletParamAge);
    String fSubmit = HttpPortletRendererUtil.portletParameter(request, portletParamSubmit);
    // These are the session attribute names used to store the current values.
    // Because all instances of this portlet share the same user session we must
    // also fully-qualify these names to avoid collisions.
    String sName = HttpPortletRendererUtil.portletParameter(request, "sName");
    String sAge = HttpPortletRendererUtil.portletParameter(request, "sAge");
    String sTelephone = request.getParameter("TELEPHONE");
    PortletRenderRequest pRequest = (PortletRenderRequest)
    request.getAttribute(HttpCommonConstants.PORTLET_RENDER_REQUEST);
    String formName = UrlUtils.htmlFormName(pRequest,null);
    ProviderUser user = pRequest.getUser();
    ProviderSession providerSession = user.getSession();
    if (providerSession == null)
    %>
    Your provider session has been terminated or has timed out
    and you need to logout and then login to re-establish the session.
    <%
    else
    // Record, in session storage, the last values submitted.
    if (pRequest.getQualifiedParameter(portletParamSubmit) != null)
    providerSession.setAttribute(sName, pRequest.getQualifiedParameter(portletParamName));
    providerSession.setAttribute(sAge, pRequest.getQualifiedParameter(portletParamAge));
    %>
    <!-- Output the HTML content -->
    <center>
    <table width="70%">
    <tr>
    <td>
    <b>This portlet shows how to post and process information from HTML forms.</b>
    </td>
    </tr>
    </table>
    <form name="<%= formName %>" method="POST"
    action="<%= UrlUtils.htmlFormActionLink(pRequest,UrlUtils.PAGE_LINK) %>">
    <%= UrlUtils.htmlFormHiddenFields(pRequest,UrlUtils.PAGE_LINK, formName) %>
    <table>
    <tr>
    <td>
    <b>Name :</b>
    </td>
    <td>
    <input type="text" size="20" name="<%= fName %>" value="">
    </td>
    </tr>
    <tr>
    <td>
    <b>Age : </b>
    </td>
    <td>
    <input type="text" size="3" name="<%= fAge %>" value="">
    </td>
    </tr>
    <tr>
    <td>
    <b>Telephone : </b>
    </td>
    <td>
    <input type="text" size="3" name="TELEPHONE" value="">
    </td>
    </tr>
    </table>
    <br>
    <INPUT TYPE=submit name="<%= fSubmit %>" Value="Submit">
    </form>
    <%
    if ((providerSession.getAttribute(sName) == null)&& (providerSession.getAttribute(sAge) == null)) {
    %>
    <b>No values have been submitted yet.</b>
    <%
    } else {
    %>
    <b> Last submitted values:</b><br>
    <table>
    <tr>
    <td>
    <b>Name: </b>
    </td>
    <td>
    <b><%= providerSession.getAttribute(sName) %></b>
    </td>
    </tr>
    <tr>
    <td>
    <b>Age: </b>
    </td>
    <td>
    <b><%= providerSession.getAttribute(sAge) %></b>
    </td>
    </tr>
    <tr>
    <td>
    <b>Telephone: </b>
    </td>
    <td>
    <b><%= sTelephone %></b>
    </td>
    </tr>
    </table>
    <%
    %>
    </center>
    <%
    %>
    <!-- End output the HTML content -->

    Hello,
    Let me know if the answer that I made Help needed: JSP and portal parameter problem.
    Regards
    Tugdual Grall

  • A document page opens that is too big for the display and runs off the end of the monitor

    How do you fix a problem where document pages open that are too big for the display and runs off the end of the monitor? The borders are off the monitor so there is no window edge to grab and adjust.

    Please read this whole message before doing anything.
    This procedure is a diagnostic test. It’s unlikely to solve your problem. Don’t be disappointed when you find that nothing has changed after you complete it.
    The purpose of the test is to determine whether the problem is caused by third-party software that loads automatically at startup or login, or by a peripheral device. 
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards. Boot in safe mode and log in to the account with the problem. Note: If FileVault is enabled, or if a firmware password is set, or if the boot volume is a software RAID, you can’t do this. Ask for further instructions.
    Safe mode is much slower to boot and run than normal, and some things won’t work at all, including sound output and  Wi-Fi on certain iMacs. The next normal boot may also be somewhat slow.
    The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin. Test while in safe mode. Same problem? After testing, reboot as usual (i.e., not in safe mode) and verify that you still have the problem. Post the results of the test.

  • Is it bad for your display to run it on full brightness?

    I have a MacBook Pro 1,1. It is getting to be a little older, so just as a precaution, I am wondering if it is it bad to run the display on full brightness all the time? Also, being that I have been running my display on full brightness for a long period of time, I have forgotten how to make the display change brightness due to changes in ambient lighting. How do I make my display change with ambient lighting, like it did when it was fresh out of the box? Answers to both questions would be great!
    Thanks,
    Nate

    Let me correct myself the above instructions are for the keyboard (I thought it was for both). To do the same for the display:
    -go to System Preferences
    -select Displays
    -If not already in the "Display" tab, click it
    -check the box "Automatically adjust brightness as ambient light changes"
    As a personal note, I could not stand this option, as my hand would sometimes cast shadows on one of the sensors and (so it seemed) my display would randomly change brightness. This is not good if you use your laptop in an environment where light comes primarily from one direction...such as a lamp nearby w/no or little overhead lighting, in the corner of a room where light is at an angle, outdoors in the late afternoon/early morning, and many other occasions.
    Hope I helped!

  • Problem on reload a JSP file in Tomcat 3.3.1

    I have a problem about Tomcat 3.3.1
    I am developing a JSP application,
    but Tomcat not recompile the JSP file after i modify it.
    I need to "wait" the tomcat recompile it, so i can see the change.
    This make the development really difficult...
    Do I miss some important step on config Tomcat 3.3.1
    how to force it to detect a newer version JSP in every request ??
    Thanks

    I believe there is a way to configure Tomcat to do this, but I don't know what it is.
    Until someone can tell you the configuration steps, here is a workaround. Tomcat keeps the Java source and class files for your JSP code somewhere under its "work" directory. Find those files and delete them, which will force it to re-compile.

  • How to call EJB deployed on websphere from JSP running on Tomcat?

    I am trying to establish communication between two app servers. I have a sample EJB deployed on Websphere and wish to call its business methods from a JSP page which is running on Apache Tomcat server. (ie) Tomcat is client to websphere. Is it possible to do? If so, what are the client Jar files of websphere that I should make available to JSP page on Tomcat? Do I need to set any Jars in Tomcat environment variables? Lood forward for your immediate help. Thanks in advance

    Please see the thread
    http://forum.java.sun.com/thread.jspa?threadID=514536.
    Hope that helps..

  • Problem getting simple servlet to run in tomcat

    i am trying to get a servlet to run that is explained in wrox Professional JSP second edition. i am using tomcat as the book explains.
    1. i have created the ch03/WEB-INF/classes directory within the webapps folder in tomcat.
    2. in the classes folder i created the directory
    com/wrox/projsp/ch03/myfirstwebapp.
    3. in the folder myfirstwebapp i have the compiled file
    MyFirstServlet.class
    4. i made sure the code is exactly as in the book.
    5. it states that if i go to
    http://localhost:8080/ch03/servlet/com.wrox.projsp.ch03.myfirstwebapp.MyFirstServlet i should get the correct output.
    6. the only way i can get this to work is if i create a web.xml
    file and point it to
    com.wrox.projsp.ch03.myfirstwebapp.MyFirstServlet and then in the
    browser i type in
    http://localhost:8080/ch03/com.wrox.projsp.ch03.myfirstwebapp.MyFirstServlet thus leaving out /servlet in the URL
    7. this seems fine but i would like to get it to work how the book shows which is without having to use the web.xml. am i missing something? do i need to set up anything (eg. a context tag for this app)within the server.xml.
    any help would greatly be appreciated,
    gary bushek

    I don't know how the book you're using instructed you to setup the server but my web.xml simply has the following in it:
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN"
    "http://java.sun.com/j2ee/dtds/web-app_2_2.dtd">
    <web-app>
    </web-app>
    I'm using tomact 3.2 and am able to run my servlets using
    http://localhost/servlet/package_name.servletName
    you might want to checkout www.coreservlets.com for more help on setting up tomcat.

  • Display jsp page inside tabset

    Hi
    I want to display different jsp pages inside different tab control of a particular tabset.I got a tabset with five tab controls.Also i got five jsp pages which i want to display inside each tab in the tabset. I tried to connect each page with a particular tab in PAGE NAVIGATION WINDOW.but when i am running the page,the tabs are not displaying the corresponding jsp pages.Anyone plz help me
    Thanks
    Shameer A

    Duplicate of http://swforum.sun.com/jive/thread.jspa?threadID=63106&tstart=0

  • Can running Macbook Pro in Clamshell Mode cause problems for Macbook Display?

    Hi,
    I recently got a new monitor (Dell U2711) and it is stunning when running at full resolution through a mini displayport to displayport adapter. However, i ran my MBP in Clamshell Mode and after rebooting (without the display this time) i had horrible lines across my screen. It was like a grid, but they were tiny, it was like i could see the individual pixels or groups of about 4. I turned it off straight away and when i came back to it (about an hour or 2 later) it was as normal.
    I just want to know what is the regular behaviour of running in Clamshell? Is that to be expected? I know that Macbooks dissipate heat through the keyboard, so i wonder if it could be a heat related problem, and if that's something i should be worried about in relation to causing long term damage to my mac's display, or will it always sort itself out?
    Sadly, i can't recreate the problem as i have a faulty monitor and it needs to be sent back (i will be getting the same model as a replacement though).
    Does anyone have anything to say on this matter?
    Thanks in advance
    mrmeister

    Shootist007 wrote:
    Is this a brand new, less then a year old, MBP? If it is then take it to a Apple care center and have them look at it.
    It's a refurb late 2008 that i bought in late 2009, but i do have apple care until september 2012 i think, i guess if the problem happens again i can take it in and they can sort me out.
    eww wrote:
    MBPs don't dissipate any significant amount of heat through the keyboard. No matter how often that misconception is posted, it's still a misconception.
    Ok, so it shouldn't be anything to do with heat then, i know the top left corner (closest to the screen) gets pretty hot too, just above the speaker, but from Shootist007's post, it would appear that heat doesn't have anything to do with it. I mean, i wasn't running intensive tasks, i was only browsing the internet.

  • Lion has caused many problems for me. display , flashing blue.

    I have a mac pro early 2009. Lion will not support two displays. It was running extremely slow but now that I disconnected a display it seems to be working fine. Does anyone know how to fix this?

    I have done everything I can think of and all that you have suggested.
    Disk utility
    CCleaner
    SMC
    pram reset
    switch monitor plugs
    Cleaned out computer
    Made more then enough free space
    I have not tried new user or known good display I dont know what "know good display" is!
    I still can not get my second monitor to even be detected now let alone the random blur flashing episodes
    that keep happening. Almost feels like the more I try to fix this problem the worse it's becoming.
    I will say this , my computer is running very well after all this troubleshooting.
    FYI I do have two slightly different sized monitors, I've heard thats a problem.
    Also a new situation is spotifiy is now indexing I am assuming this is happening because of all the shut downs
    and reseting.
    Question : is all this linked to some bigger problem
    Question: How so I get both moniters to be detected and work with out Lion freaking out on my and flashing blue light back to desktop and then blue light again over and over in 20 second intervals. Its like its trying to find it the second monitor but can't.
    Wait a minute .... both displays are on now, however blue flashing still happening at random. Now they are both out, now just blue , now falshing again .
    Seems to be a pattern with whats happening.

  • Authorization-problem for standard users when running WDR_TEST_ZCI

    hi
    we've developed a WDA application incorporating several interactive forms. it all runs fine in QA--environment when a user with developer-role are running the application, but when standard users are running it, it fails.
    the same happens with the demo-app WDR_TEST_ZCI.
    i so belive this to be caused by missing authorizations for the users. can anyone shed any light on which these might be?
    the error as reported in the browser:
    The following error text was processed in the system Q97 : Access via 'NULL' object reference not possible.
    The error occurred on the application server xx-x168_Q97_05 and in the work process 0 .
    The termination type was: RABAX_STATE
    The ABAP call stack was:
    Method: PARSE_XML_SCHEMA of program CL_WD_ADOBE_SERVICES==========CP
    Method: GET_SCHEMA_VERSION of program CL_WD_ADOBE_SERVICES==========CP
    Method: CONSTRUCTOR of program CL_WD_ADOBE_SERVICES==========CP
    Method: IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT of program /1WDA/LADOBE==================CP
    Method: IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT of program /1WDA/LADOBE==================CP
    Method: IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT of program /1WDA/L8STANDARD==============CP
    Method: IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT of program /1WDA/L8STANDARD==============CP
    Method: IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT of program /1WDA/L8STANDARD==============CP
    Method: IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT of program /1WDA/L7STANDARD==============CP
    Method: IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT of program /1WDA/L8STANDARD==============CP
    any input appreciated.
    cheers
    tom

    Hi Tom,
    When you are familiar with authorizations in PFCG trabsaction you are finaliar with S_DEVELOP if not ask the authorization team on your project.
    Basically this authorization object handles the read/write etc authorization related to devlopment objects. If you implement Adobe forms you will probably develop your own forms or at least copy the SAP forms to customer namespace.
    For Adobe you will therefore have 2 custom development objects (1 for the form and 1 for the interface that is automatically generated). The end-user shoulf have at least READ access to these objects. If not the portal will trow an error on this.
    To determine the tech names of the objects find the form and related interface in transaction SFP. These should be inserted in the object S_DEVELOP in the role for the end users.
    You may want to consider to put the value Z* in the object which will give authorization for all the custom developed objects.
    If you can't find the object reply again and i will send a screenshot.
    Finally, make use of the splended transaction ST01!! It will make your life a lot more easy in portal! It traces all the authorizations needed and missing for any user you specify. After activating the trace and running a portal scenario the log will tell you want went OK and what not on an authorization object level.
    Good luck,
    Thomas
    ps. Thanks for the appreciation you gave in my other thread. Now we have the answers in both threads as well. Take Care.

  • I have problems for to use Start function inside a case structure.

    I am doing data acquisition using the Config, Start and Read functions, all them inside a while loop. I want to use Config function only when certain conditions occur, so I put the function inside a case and no problem. But when I put the start function inside the same case, the acquisition is not good. Please view my attachment. My application is client-server type.
    Attachments:
    scope_server(config_start).vi ‏160 KB

    Boxer,
    I checked your example and have several easy but important suggestions for you:
    1.- First, make sure that the first time you initialize the VI, the AI Config and AI Start are executed, because based on the debug I made, your program doesn't do it, and this is very important.
    2.- Add an AI Clear after the acquisition is done, so that you release the resources. This is a good programming technique, and may help you solve your issue.
    3.- Add an Error Cluster, so that you know if an error occurred at some point of the acquisition. This will help you track the issue.
    4.- What do you mean by "the acquisition is not good". What does it happen? What does it do? Do you get an error? <- This is the reason of step 3.
    5.- Finally, if you have doubts
    programming AI, check one of the shipping examples of LV. They can give you a much clearer idea.
    Hope this helps,
    L Aguila
    Applications Engineeer
    National Instruments

  • No records  when run inside tomcat. The report preview shows data in Eclipse

    <p>I&#39;ve designed a report using Crystal reports for Eclipse. The database server is Oracle. The preview window inside Eclipse shows correctly the report.</p><p>If I run the report using Tomcat . The body is empty and no records are found. The query has no filter. </p><p> This is the code I&#39;m using on Tomcat inside a servlet.</p><p>com.crystaldecisions.reports.sdk.ReportClientDocument reportClientDocument = new com.crystaldecisions.reports.sdk.ReportClientDocument();<br />               String reportName="CrystalReport1.rpt";        try {<br />            reportClientDocument.open(reportName, OpenReportOptions._openAsReadOnly);<br />            <br />            <br />            JRCHelperSample.changeDataSource(reportClientDocument, "COMM", "***", "jdbc:oracle:thin:@localhost:1521:db", "oracle.jdbc.OracleDriver",null );    </p><p>                    reportClientDocument.verifyDatabase();              </p><p>          ByteArrayInputStream byteArrayInputStream = (ByteArrayInputStream)reportClientDocument.getPrintOutputController().export(ReportExportFormat.PDF);                        //Release report.           </p><p> reportClientDocument.close();                    </p><p>                     writeToBrowser(byteArrayInputStream, response, "application/pdf", "A1.pdf"); </p>

    <p>In the log it&#39;s written</p><p> Failed to build database query: <strong>there is no required fields.</strong><br />04 ott 2006 12:16:57 [http-8080-Processor24] DEBUG com.crystaldecisions.reports.dataengine.datasource - Reading database record<br />04 ott 2006 12:16:57 [http-8080-Processor24] DEBUG com.crystaldecisions.reports.dataengine.datasource - Reading next recurring database record.<br />04 ott 2006 12:16:57 [http-8080-Processor24] DEBUG com.crystaldecisions.reports.dataengine.datasource - Finished reading database records, no more records <br /></p>

  • Problems for displaying values

    Hi,
    Iam using struts and hibernate, am inserting values into database successfully. But am facing some problem for displaying values in VIEW page.. Am maintainig Session in action servlet..In jsp page only first row displayed numbertimes(depends on number rows in DB) ex i have 4 rows different values. But in View page only first row displayed 4 times. How can i displyed properly .plz help me its urgent?
    in advance thanks?

    Hi Amol,
    in the iview property is the isolation method set to url or to embeded(it should be url)because this might cause the problems described here.
    hope it helps,
    Yoav

  • Problem for displaying values

    Hi,
    Iam using struts and hibernate, am inserting values into database successfully. But am facing some problem for displaying values in VIEW page.. Am maintainig Session in action servlet..In jsp page only first row displayed numbertimes(depends on number rows in DB) ex i have 4 rows different values. But in View page only first row displayed 4 times. How can i displyed properly .plz help me its urgent?
    in advance thanks?

    Babu,
    This has been discussed in many old threads, try to find them. Also u can refer to article "Dependent Dynamic message choicelists ", at my blog
    http://www.mukx.blogspot.com/
    --Mukul                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

Maybe you are looking for

  • Problems with shutdown, expose and window switching

    Hi there, Recently I've been having a few issues with OS X. First of all it wasn't shutting down properly -- the menu bar would disappear and it would look like it was going to shutdown, but it never did. I could move down to the dock (on auto-hide)

  • Problem while opening Bex query on the web

    Hello BW experts, I have a problem while opening Bex query from my SAP Favorites.See below. When i double click on the query, i get the following page, with the server name KBWS01QX. But, from RSRT Tcode, select the query > query display as HTML > Cl

  • Null pointer exception in jsp ,data missing in chat application

    Hi all.... I have a chat application in jsp using ajax.I have opened a d/b connection in a jsp which is called each time I sent a message.But sometimes I get null pointer exception in this page when msgs are sent so fast...also I miss some of the msg

  • My Safari 8.0.2 (10600.2.5) keeps crashing.

    Safari 8.0.2 (10600.2.5) keeps crashing. Firefox and Chrome are working fine. I am pasting the error message in the hopes that it helps: Process:          Safari [3664] Path:             /Applications/Safari.app/Contents/MacOS/Safari Identifier:     

  • Can i get recently added playlist on my iPhone 3GS?

    i know how to make a smart playlist on iTunes but the option turns shaded when i select my Iphone..