Update JSP option to equal string

Please bear with me on this I am fairly new at this.
I have a jsp that is update from a servlet. Everything is update with the customers information except one. I have States which is an option selected. My question is how do I get my option to equal the string? Here is some of my code. Please help to clear this up. Like I said this is just some of my code.
Thanks in advance
String s1 = rs.getString(7);
<%if(rs.next( ) ){               
%>
<center><H1>Please review/update your information</H1></center>
<table border=0 align=center>
<tr> <td> First Name: </td><td><INPUT TYPE="TEXT" NAME="fname" value="<%=rs.getString(2)%>"> </td>
</tr>
<tr> <td> Last Name:</td><td> <INPUT TYPE="TEXT" NAME="lname" value="<%=rs.getString(3)%>"> </td>
</tr>
<tr> <td> Address:</td><td> <INPUT TYPE="TEXT" NAME="address" value="<%=rs.getString(4)%>"> </td>
</tr>
<tr> <td> Address2:</td><td> <INPUT TYPE="TEXT" NAME="address2" value="<%=rs.getString(5)%>"> </td>
</tr>
<tr> <td> City:</td><td> <INPUT TYPE="TEXT" NAME="city" value="<%=rs.getString(6)%>"> </td>
</tr>
<tr> <td> State:                </td><td><SELECT NAME="state"> <option value="0">--</option>
     <script language="JavaScript">
          var sStates = 'AK,AL,AR,AZ,CA,CO,CT,DC,DE,FL,GA,HI,IA,ID,IL,IN,KS,KY,LA,MA,MD,ME,MI,MN,MO,MS,MT,NC,ND,NE,NH,NJ,NM,NV,NY,OH,OK,OR,PA,RI,SC,SD,TN,TX,UT,VA,VT,WA,WI,WV,WY';
          var     rgStates = sStates.split(',');
          var len = rgStates.length;
          var i = 0;
          while (i != len)
          if (rgStates== "s1"){
               document.write('<option value="' + rgStates[i] + '"' + ('' == rgStates[i] ? ' selected' : '') + '>' + rgStates[i]);
               i++;
          }else{     
          document.write('<option value="' + rgStates[i] + '"' + ('' == rgStates[i] ? ' selected' : '') + '>' + rgStates[i]);
          i++;
     </script>
</select>          </td>
</tr>
<tr> <td> Zipcode:</td><td> <INPUT TYPE="TEXT" NAME="zipcode" value="<%=rs.getString(8)%>"> </td>
</tr>
<tr> <td> Phone:</td><td> <INPUT TYPE="TEXT" NAME="phone" value="<%=rs.getString(10)%>"> </td>
</tr>
<tr> <td> Alt Phone:</td><td> <INPUT TYPE="TEXT" NAME="altphone" value="<%=rs.getString(11)%>"> </td>
</tr>
<tr> <td> Email:</td><td> <INPUT TYPE="TEXT" NAME="email" value="<%=rs.getString(9)%>"> </td>
</tr>
<%} %>
</table>
</body>
</html>

Thanks for taking the time to look at my problem. I took what you suggested and edited the JSP. However, when I use rgStates in your example it gives me an error when I use sStates it gives me a weird output in the webpage such as option value="[Ljava.lang.String;@d200d8".   Any ideas of what I am doing wrong?  Thanks again for your help.  Here is an update of some of my language.
<%@ page language="java"%>
<%@ page import = "java.sql.*" %>
<%!        Connection conn;
          Statement stmt;
          ResultSet rs;         
%>
<%
          //Get the category and information entered from head_bar
          String user = (String)session.getAttribute("user");
          String user2 = request.getParameter("CID");
          //this code loads the driver, connects to the database,
         //creates a statement, executes it and obtains a result set
          Class.forName("oracle.jdbc.driver.OracleDriver");
          conn = DriverManager.getConnection("jdbc:oracle:thin:@127.0.0.1:1521:oracle9i",
          "proj","proj");
          stmt=conn.createStatement();
               String myquery = "Select cid, state, fname, lname, address, NVL(ADDRESS2,' '), city, zipcode, email, NVL(PHONE,' '), NVL(ALTPHONE,' ') from customer where CID ="+ user2;
               PreparedStatement pstmt = conn.prepareStatement(myquery);
//               System.out.println("select CID is: " + user);
                rs= pstmt.executeQuery( );
%>
<html>
<body bgcolor="#FDF5E6" text=black>
<%if(rs.next( ) ){               
      String s1 = (rs.getString(2));
//          String s1 = "VA";
        System.out.println(s1);
%>
<center><H1>Please review/update your information</H1></center>
<table border=0 align=center>
<tr>   <td> First Name: </td><td><INPUT TYPE="TEXT" NAME="fname" value="<%=rs.getString(3)%>"> </td>
</tr>
<tr>   <td> Last Name:</td><td> <INPUT TYPE="TEXT" NAME="lname" value="<%=rs.getString(4)%>"> </td>     
</tr> 
<tr>   <td> Address:</td><td> <INPUT TYPE="TEXT" NAME="address" value="<%=rs.getString(5)%>"> </td>
</tr>         
<tr>   <td> Address2:</td><td> <INPUT TYPE="TEXT" NAME="address2" value="<%=rs.getString(6)%>"> </td>
</tr> 
<tr>   <td> City:</td><td> <INPUT TYPE="TEXT" NAME="city" value="<%=rs.getString(7)%>"> </td>
</tr> 
<tr>   <td> State:                </td><td><SELECT NAME="state"
<% String[] sStates = {"AK","AL","AR","AZ","CA","CO","CT","DC","FL","GA","HI","IA","ID","IL","IN","KS","KY","LA","MA","MD","ME","MI","MN","MO","MS","MT","NC","ND","NE","NH","NJ","NM","NV","NY","OH","OK","OR","PA","RI","SC","SD","TN","TX","UT","VA","VT","WA","WI","WV","WY"};
for (int i = 0; i< sStates.length; i++) {
%>
<option value="<%=sStates%>"
<%
if (sStates.equals(s1)){%>SELECTED<%}%>
<%=sStates%></option><%}%>
     </td>
</tr>
<tr> <td> Zipcode:</td><td> <INPUT TYPE="TEXT" NAME="zipcode" value="<%=rs.getString(8)%>"> </td>
</tr>
<tr> <td> Phone:</td><td> <INPUT TYPE="TEXT" NAME="phone" value="<%=rs.getString(10)%>"> </td>
</tr>
<tr> <td> Alt Phone:</td><td> <INPUT TYPE="TEXT" NAME="altphone" value="<%=rs.getString(11)%>"> </td>
</tr>
<tr> <td> Email:</td><td> <INPUT TYPE="TEXT" NAME="email" value="<%=rs.getString(9)%>"> </td>
</tr>
<%} %>
</table>
</body>
</html>

Similar Messages

  • Java was blocked due to the threat I have followed the update & other options to reenable it ie.manual updates reinstalls yet websites like YouTube still wont load up.Works fine in Chrome & IE!

    Java was blocked due to the threat I have followed the update & other options to reenable it ie.manual updates reinstalls yet websites like YouTube still wont load up.Works fine in Chrome & IE!

    Your plugins list in "more system details" shows Next Generation Java Plug-in 1.6.0_31 for Mozilla browsers so Java should not be blocked.
    Could you post a link to a webpage where Java isn't working for you? YouTube uses Flash, not Java. Here is a list of Java test pages you can try, to confirm that Java is working, from http://kb.mozillazine.org/Java#Testing_Java
    * [http://www.java.com/en/download/help/testvm.jsp Test your Java Virtual Machine (JVM)] at java.com.
    * [http://browserspy.dk/java.php Java Information - BrowserSpy.dk]
    * [http://javatester.org/ Java Tester] - The test pages at javatester.org will tell you if your web browser is enabled for Java and, if so, the Java version.
    * [http://www.pinlady.net/PluginDetect/Java/ Java Plugin Detector]
    By the way, I see in your plugins list that you also have the VLC media player Web Plugin 2.0.0 so, it's possible that the VLC plugin is causing a conflict if YouTube or other videos don't work. See [[Video or audio does not play]] (you may need to disable the VLC Media Player plugin in the Add-ons -> Plugins list for some media to play).

  • How do I update JSPs without having to restart WebLogic?

    How do I update JSPs without having to restart WebLogic? I have tried setting pageCheckSeconds to 0 in my weblogic.xml file. I have also tried setting Reload Period to 0 in the console. Please advise.
              

              Just bring up the Weblogic Console. Drill down to your webapp. De-select the Deploy
              option. Click on apply. Select the Deploy option and Click apply. Basically, Un-deploy
              and re-deploy your webapp.
              Later...
              - Wayne
              "cleve" <[email protected]> wrote:
              >which is here:
              >
              >http://e-docs.bea.com/wls/docs61////javadocs/weblogic/management/tools/WebAp
              >pComponentRefreshTool.html
              >
              >"Michael Young" <[email protected]> wrote in message
              >news:[email protected]..
              >> Try using the weblogic.refresh tool.
              >>
              >> regards,
              >> Michael
              >>
              >> Tony Nguyen wrote:
              >>
              >> > How do I update JSPs without having to restart WebLogic? I have tried
              >setting pageCheckSeconds to 0 in my weblogic.xml file. I have also tried
              >setting Reload Period to 0 in the console. Please advise.
              >>
              >> --
              >> Michael Young
              >> Developer Relations Engineer
              >> BEA Support
              >>
              >>
              >
              >
              

  • Help with StuckThread in java.lang.String.equals(String.java:619)

    I periodically get a stuck Execute thread on my Weblogic 8.15 server
    during a call to a Stateless Session Bean. When I do thread dumps, the
    thread is always stuck in the same place (in
    java.lang.String.equals(String.java:619) or in the call immediately above it
    java.util.LinkedList.indexOf(LinkedList.java:397)). Even though the thread
    dump indicates that the thread is in a runnable state, if I do multiple
    thread dumps over a period of time, the stack trace always indicates that
    the thread is in the same place. The thread remains stuck until Weblogic is
    restarted. Other client applictions can make session bean calls, but each
    stuck thread seems to still take up lots of CPU time. I have let the stuck
    threads run overnight, and the stack trace from the thread dump always shows
    them executing the same String/LinkedList code. In each case, our code is
    trying to iterate over a collection
    Does anybody know what could cause this problem, and how to fix it? I get
    StuckThreadMaxTime errors in the log:
    ####<Dec 4, 2005 10:47:25 AM EST> <Error> <WebLogicServer> <nybill>
    <myserver> <weblogic.health.CoreHealthMonitor> <<WLS Kernel>> <>
    <BEA-000337> <ExecuteThread: '4' for queue: 'weblogic.kernel.Default' has
    been busy for "1,263" seconds working on the request
    "ncss.billing.ejb.billAdmin.session.BillAdminSession_uli3xb_EOImpl", which
    is more than the configured time (StuckThreadMaxTime) of "1,200" seconds.>
    Here are some stack traces from different thread dumps (I have the full
    thread dumps if necessary):
    "ExecuteThread: '10' for queue: 'weblogic.kernel.Default'" daemon prio=5
    tid=0x7720eb98 nid=0xd68 runnable [571f000..571fdb0]
    at java.lang.String.equals(String.java:619)
    at java.util.LinkedList.indexOf(LinkedList.java:398)
    at java.util.LinkedList.contains(LinkedList.java:176)
    at
    ncss.billing.broadviewBill.xml.XMLBillCreation.getDailyCallSummary(XMLBillCr
    eation.java:1992)
    at
    ncss.billing.broadviewBill.xml.XMLBillCreation.getGraphs(XMLBillCreation.jav
    a:1931)
    at
    ncss.billing.broadviewBill.xml.XMLBillCreation.getLocations(XMLBillCreation.
    java:2618)
    at
    ncss.billing.broadviewBill.xml.XMLBillCreation.createXMLBill(XMLBillCreation
    .java:236)
    at
    ncss.billing.ejb.billAdmin.session.BillAdminSessionEJB.getBillAsXml(BillAdmi
    nSessionEJB.java:341)
    at
    ncss.billing.ejb.billAdmin.session.BillAdminSession_uli3xb_EOImpl.getBillAsX
    ml(BillAdminSession_uli3xb_EOImpl.java:100)
    at
    ncss.billing.ejb.billAdmin.session.BillAdminSession_uli3xb_EOImpl_WLSkel.inv
    oke(Unknown Source)
    at
    weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:477)
    at
    weblogic.rmi.cluster.ReplicaAwareServerRef.invoke(ReplicaAwareServerRef.java
    :108)
    at
    weblogic.rmi.internal.BasicServerRef$1.run(BasicServerRef.java:420)
    at
    weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubjec
    t.java:363)
    at
    weblogic.security.service.SecurityManager.runAs(SecurityManager.java:147)
    at
    weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:415)
    at
    weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:3
    0)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:219)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:178)
    "ExecuteThread: '22' for queue: 'weblogic.kernel.Default'" daemon prio=5
    tid=0x772538d0 nid=0xe24 runnable [497f000..4fdb0]
    at java.lang.String.equals(String.java:619)
    at java.util.LinkedList.indexOf(LinkedList.java:398)
    at java.util.LinkedList.contains(LinkedList.java:176)
    at
    ncss.billing.broadviewBill.xml.XMLBillCreation.getMostExpensiveOrLongestCall
    s(XMLBillCreation.java:1892)
    at
    ncss.billing.broadviewBill.xml.XMLBillCreation.getTopTenReport(XMLBillCreati
    on.java:1798)
    at
    ncss.billing.broadviewBill.xml.XMLBillCreation.getTopTenReports(XMLBillCreat
    ion.java:1751)
    at
    ncss.billing.broadviewBill.xml.XMLBillCreation.getLocations(XMLBillCreation.
    java:2612)
    at
    ncss.billing.broadviewBill.xml.XMLBillCreation.createXMLBill(XMLBillCreation
    .java:236)
    at
    ncss.billing.ejb.billAdmin.session.BillAdminSessionEJB.getBillAsXml(BillAdmi
    nSessionEJB.java:341)
    at
    ncss.billing.ejb.billAdmin.session.BillAdminSession_uli3xb_EOImpl.getBillAsX
    ml(BillAdminSession_uli3xb_EOIm.java:100)
    at
    ncss.billing.ejb.billAdmin.session.BillAdminSession_uli3xb_EOImpl_WLSkel.inv
    oke(Unknown Source)
    at
    weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:477)
    at
    weblogic.rmi.cluster.ReplicaAwareServerRef.invoke(ReplicaAwareServerRef.java
    :108)
    at
    weblogic.rmi.internal.BasicServerRef$1.run(BasicServerRef.java:420)
    at
    weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubjec
    t.java:363)
    at
    weblogic.security.service.SecurityManager.runAs(SecurityManager.java:147)
    at
    weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:415)
    at
    weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:3
    0)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:219)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:178)
    "ExecuteThread: '21' for queue: 'weblogic.kernel.Default'" daemon prio=5
    tid=0x76afb060 nid=0x498 runnable [48af000..48fdb0]
    at java.lang.String.equals(String.java:619)
    at java.util.LinkedList.indexOf(LinkedList.java:398)
    at java.util.LinkedList.contains(LinkedList.java:176)
    at
    ncss.billing.broadviewBill.xml.XMLBillCreation.getMostFrequentlyCalledNumber
    sOrCitiesReport(XMLBillCreation.java:1839)
    at
    ncss.billing.broadviewBill.xml.XMLBillCreation.getTopTenReport(XMLBillCreati
    on.java:1772)
    at
    ncss.billing.broadviewBill.xml.XMLBillCreation.getTopTenReports(XMLBillCreat
    ion.java:1743)
    at
    ncss.billing.broadviewBill.xml.XMLBillCreation.getLocations(XMLBillCreation.
    java:2612)
    at
    ncss.billing.broadviewBill.xml.XMLBillCreation.createXMLBill(XMLBillCreation
    .java:236)
    at
    ncss.billing.ejb.billAdmin.session.BillAdminSessionEJB.getBillAsXml(BillAdmi
    nSessionEJB.java:341)
    at
    ncss.billing.ejb.billAdmin.session.BillAdminSession_uli3xb_EOImpl.getBillAsX
    ml(BillAdminSession_uli3xb_EOImp.java:100)
    at
    ncss.billing.ejb.billAdmin.session.BillAdminSession_uli3xb_EOImpl_WLSkel.inv
    oke(Unknown Source)
    at
    weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:477)
    at
    weblogic.rmi.cluster.ReplicaAwareServerRef.invoke(ReplicaAwareServerRef.java
    :108)
    at
    weblogic.rmi.internal.BasicServerRef$1.run(BasicServerRef.java:420)
    at
    weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubjec
    t.java:363)
    at
    weblogic.security.service.SecurityManager.runAs(SecurityManager.java:147)
    at
    weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:415)
    at
    weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:3
    0)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:219)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:178)
    The code in LinkedList that it seems to be executing is the following:
    Line#
    397 for (Entry e = header.next; e != header; e = e.next) {
    398 if (o.equals(e.element))
    399 return index;
    400 index++;
    401 }
    I am running Weblogic 8.15 on Windows 2000.
    Thanks for any help,
    - Don

    njb7ty wrote:
    I suggest dropping that example program and concentrating on reading a book on Java such as 'Head First in Java'. Otherwise, you will spend a lot of time trying to get something to work and gain little value from it.Likewise... Jumping into reflections before you can [read a stack-trace|http://www.0xcafefeed.com/2004/06/of-thread-dumps-and-stack-traces/] is like signing up a toddler for the New York Marathon... it's probably simply beyond your skill level... so step back... go read a book, do some tutorials, get your head around just the process of the designing, writing, compiling, running, and debugging java programs... and what the different diagnostics mean... Then, equipped with your nose-clip and your trusty stone ;-) you contemplate leaping into the deep end ;-)
    Cheers. Keith.

  • JSF problem -  An internal error occurred during: "Updating JSP Index".

    Hello Friends,
    I am facing following problem in ecplise. Whenever I open JSP page or whenever I save my jsp page.
    !ENTRY org.eclipse.core.jobs 4 2 2008-06-14 13:54:24.151
    !MESSAGE An internal error occurred during: "Updating JSP Index".
    !STACK 0
    java.lang.NoClassDefFoundError: javax/servlet/jsp/tagext/TagLibraryInfo
         at org.eclipse.jst.jsp.core.internal.taglib.TaglibHelperCache.createNewHelper(TaglibHelperCache.java:112)
         at org.eclipse.jst.jsp.core.internal.taglib.TaglibHelperCache.getHelper(TaglibHelperCache.java:97)
         at org.eclipse.jst.jsp.core.internal.taglib.TaglibHelperManager.getHelperFromCache(TaglibHelperManager.java:43)
         at org.eclipse.jst.jsp.core.internal.taglib.TaglibHelperManager.getTaglibHelper(TaglibHelperManager.java:36)
         at org.eclipse.jst.jsp.core.internal.java.JSPTranslator.addTaglibVariables(JSPTranslator.java:684)
         at org.eclipse.jst.jsp.core.internal.java.JSPTranslator.translateXMLNode(JSPTranslator.java:997)
         at org.eclipse.jst.jsp.core.internal.java.JSPTranslator.translateRegionContainer(JSPTranslator.java:843)
         at org.eclipse.jst.jsp.core.internal.java.JSPTranslator.translate(JSPTranslator.java:734)
         at org.eclipse.jst.jsp.core.internal.java.JSPTranslationAdapter.getJSPTranslation(JSPTranslationAdapter.java:131)
         at org.eclipse.jst.jsp.core.internal.java.search.JSPSearchDocument.getJSPTranslation(JSPSearchDocument.java:112)
         at org.eclipse.jst.jsp.core.internal.java.search.JSPSearchDocument.getPath(JSPSearchDocument.java:149)
         at org.eclipse.jst.jsp.core.internal.java.search.JavaSearchDocumentDelegate.<init>(JavaSearchDocumentDelegate.java:30)
         at org.eclipse.jst.jsp.core.internal.java.search.JSPSearchSupport.createSearchDocument(JSPSearchSupport.java:401)
         at org.eclipse.jst.jsp.core.internal.java.search.JSPSearchSupport.addJspFile(JSPSearchSupport.java:295)
         at org.eclipse.jst.jsp.core.internal.java.search.JSPIndexManager$ProcessFilesJob.run(JSPIndexManager.java:262)
         at org.eclipse.core.internal.jobs.Worker.run(Worker.java:58)
    I am using Ecplise 3.2.0
    JSF 1.1
    Tomcat 5.5
    JSP2.0
    Any solution for this?
    Thanks & regards
    Abhijai

    Abhijai wrote:
    java.lang.NoClassDefFoundError: javax/servlet/jsp/tagext/TagLibraryInfoThis exception is been thrown if the given class was available in classpath during compile time, but not during run time. The solution is obvious: make sure that the given class (or at least the JAR file with the given class) is available in the classpath during run time.
    By the way, why did you think that this problem is related to JSF?

  • Update one character in a string

    Hello Experts,
    I would like to update a character in a string in a column using update statment.
    For eg in table a1 column has "ABCDEF", I would like change "C" with "c" . After change the a1 value should be "ABcDEF".
    Any help will be highly appreciated.
    Regards,
    Rashida

    Use Translate Function
    Example
    SQL> select translate('ABCDEF','C','c') from dual ;
    TRANSL
    ABcDEF
    Or Replace Function
    Exmaple
    SQL> select replace('ABCDEF','C','c') from dual ;
    REPLAC
    ABcDEF
    for table with column a1
    update a1 set col1 =  replace(col1,'C','c') ;
    OR
    update a1 set col1 =  translate(col1,'C','c') ;

  • Update profile options at user level?

    Hi All,
    Need a script for,
    update profile options at user level, for example we should be able to update a profile xyz for a user abc using that script?
    or please provide the document related to that..

    Hi All,
    Thanks for all sugessions,
    i have written an script for updating profile option value from backend.
    SELECT d.level_id,c.user_name, b.profile_option_name, a.user_profile_option_name,d.profile_option_value
    FROM fnd_profile_options_tl a,
    fnd_profile_options b,
    fnd_user c,
    fnd_profile_option_values d
    WHERE d.profile_option_id = b.profile_option_id
    AND d.level_id = 10004
    AND a.profile_option_name = b.profile_option_name
    AND d.level_value = c.user_id
    AND c.user_name = '&USER_NAME'
    update query
    update fnd_profile_option_values
    set profile_option_value = '&Profile_Option_Value'
    where profile_option_id in
    (select profile_option_id from fnd_profile_options where profile_option_name
    =(select profile_option_name from fnd_profile_options_tl
    where user_profile_option_name = ('&User_Profile_Option_Name')))
    and level_id = 10004
    and level_value in (select user_id from fnd_user
    where user_name in ('&User_Name'))
    Thanks
    One

  • Update Baseline option in P6 Web Access ver 8.0

    Hi there,
    I can't find the "Update Baseline" option in P6 Web Access ver 8.0, although, it is still available in the client-server version.
    Any thoughts?

    It is not available in the Web version, you can contact Oracle to put in an enhancement request.

  • HT4623 I am trying to update my iPad to iOS6 but there is no update software option on the general screen

    I am trying to update my iPad to iOS 6 but there is no update software option under general settings..please help me. Also I can not get it to connect to wireless service at home but it will other places.

    Connect your iPad to iTune (computer) and Check for Updates. Backup before you proceed with update.
    http://i1224.photobucket.com/albums/ee374/Diavonex/Album%201/e0f22e92de98ebae10e 3fd537c16619e.jpg

  • Update Progress option

    I used the Update Progress option and my highlighted activities did not get actualized automatically as it happens when you use the same option in P3. Can anyone tell me if this option in P6 requires any other step or if something else needs to be configured? Thank you in advance.

    Thanks for the reply. My data date was January 15, then I dragged it to January 31, so all the activities that fall within that range are highlighted, then I applied "Update Progress" (same procedure as in P3). However, the activities did not get actualizaed automatically as it happens in P3 when you do the same thing. Am I missing any other step?

  • Remove Mass Update Progress option

    Hi All,
    How can we disable/remove the "Mass Update Progress" option under the Actions in the workplan tab.
    Can someone assist on the issue.
    Regards,
    Rakesh Menon
    Edited by: Rakesh Menon on Jun 22, 2011 12:44 AM

    Hello,
    I am using responsibility based security. There is no function called "Mass Update".
    The Mass Update Program is added from Lookup sets which is a system lookup set, we cannot edit a system lookup set.
    I tried creating a user lookup with the same values and disabled the "Mass update Progress" option, but i'm not sure how to link the new user lookup to the workplan actions so that this new lookup overwrites the existing system lookup.
    Thanks & Regards,
    Rakesh Menon

  • Hello Sir i'm from Pakistan my iphone have not show update ios7 option how can i do?

    hello Sir i'm from Pakistan my iphone have not show update ios7 option how can i do?

    You've been answered multiple times now. Please look at your other posts with this question.
    https://discussions.apple.com/people/millerlog4684
    Regards.

  • Update all option is disable in iphone 4s

    I just bought new iphone 4s there is lot of apps who need update but when I click on Update it open the App & Update All option is disable also.
    Anklur Jain

    Check in restrictions to see if App downloading is restricted

  • HT4623 Hi. I'm trying to update my iPod but the update software  option is not available. What should I do?

    Hi. I'm trying to update my iPod but the update software option is not available.
    Does anyone know what I should do?

    Liamatron wrote:
    Hi. I'm trying to update my iPod but the update software option is not available.
    That is only a feature of iOS 5 or later...
    If you have iOS 4... See Here...
    http://support.apple.com/kb/HT4972
    OR...
    Connect to iTunes on the computer you usually Sync with and “ Check for Updates “...
    If an Update Appears Install it...
    if not... you are up to date for your particular Device...
    See the Using iTunes Section Here...
    How to update your iPhone, iPad, or iPod touch

  • HT4623 3GS doesnt have the update software options so what do I do?

    3GS doesnt have the update software option under general settings..I want to update my version of itunes to be able to download the Times Mobile App..cant seem to do it..

    The feature you are looking for is available with iOS 5 or later. You will need to update your iPhone with iTunes on a Mac or PC.
    Hope that helps

Maybe you are looking for

  • How to replicate a complaint from ECC IS-M 6.0 to SAP CRM 7.0

    Hi Media Experts, I have a request from my client in whom I have to create a Complaint based on a R3 Media Object (Subscription Order), and then allow editing this complaint in SAP CRM. I have already reached the first part. Over and done with a tran

  • HPE-390t RAID 1 HDD - SSD ??

    My HPE-390t machine currently has 2 x 1 TB regular HDD's in them in a RAID 1 configuration (so I get total space of around 1 TB only).  I'd like to move to SSD's since it will give me a big performance boost on this 4-5 year old machine, but am not s

  • IPhoto 2.0.1 Crashes When Burning a CD

    iPhoto is crashing just after the disk image is created and mounted and before the burn actually begins. I tried restarting my Mac; same result. I rescued the disk image file from the Trash and used Toast to burn it (although I guess I could have use

  • Itunes stopped when loading.

    I start Itunes and it would display a message "Itunes has stopped working.  Windows is checking for a solution to the problem"  and then you would have to click close.  I started I tunes in safe mode and it works.  I followed the instructions and rei

  • Automatic slideshow in GoLive

    I would llike to add as slideshow that opens up automatically when the user gets to the page and also,that loops indefinately.  I tried making a SWF file from Image Ready, but it ended up being Soooooo heavy!!...22 mo for only 6 photos!?? I looked up