Existing session is becoming null when returning from jsp

Hi Guys !
I have an urgent requirement to meet in few days from now and got stuck with session problem in servlet.
Scenario :-
For the first time when i call a servlet a new sessoin is created and after some validations i forward to a jsp which has some links.
I have printed sessoin ids from both the servlet and jsp and they are same.
Now when i clicked on the link in jsp , the servlet is called but session is lost its becoming null.
Servlet Code :
HttpSession session = request.getSession(false);
if(session ==null){
// create session code ....using getSession(true)
RequestDispatcher r = servletcontext.getRequestDispatcher(resp.encodeURL("/user.jsp"));
jsp code:-
<a href="<%=response.encodeURL(/application/servlet/ViewUser") %">" > View User </a>
GUYS GIVE ME A SUGGESTION IN THIS REGARD AS SOON AS POSSIBLE .....
Thanks in advance !
Aparna</a>

Hi,
Session Create Code in Login file
HttpSession hs = req.getSession( true );
hs.setAttribute( "user", lb.getUsername() ); // username() is ur unique id
Session Tracking code in all file
               HttpSession hs=request.getSession();
               if ( hs == null || hs.getAttribute( "user" ) == null )
                    response.sendRedirect ( "./index.jsp" );
Logout code
HttpSession hs=req.getSession(false);
               hs.setAttribute( "user", null );
               hs.invalidate();
               res.sendRedirect ( "./index.jsp" );
// I hope this snippet will help u..

Similar Messages

  • My daughter's older Ipod Touch is having a problem with images becoming pixilated when taken from an e-mail and placed into her camera roll. ( She wants to put on Instagram ) Any help?

    My daughter's older Ipod Touch is having a problem with images becoming pixilated when taken from an e-mail and placed into her camera roll. ( She wants to put on Instagram ) Any help?

    I think that may be a consequence of the email provider she is using. Some services (AOL is one example) inspect and modify email attachments, particularly photos, resulting in reduced resolution compared to the email that was sent.
    The iPod does not do this. The resolution of the picture in the email she receives will be identical to what is imported.

  • Trigger fire when return from called form

    Witch triggers fire when returning from a called form in my master form?

    There is no trigger that fires in such events for calling form.
    It depends on your requirement.You can use WHEN-BUTTON-PRESSED trigger.
    DECLARE
    search_list paramlist;
    where_string varchar2(100);
    BEGIN
         search_list:=get_parameter_list('search_paramlist');
         IF NOT id_null(search_list) then
                   destroy_parameter_list(search_list);
         END IF;
         search_list:=create_parameter_list('search_paramlist');
         add_parameter(search_list,'P_SEARCH_SQL',text_parameter,'');
         call_form('E:\subhas\Oracle Tools\Oracle Form\Subhas_form\SEARCH.fmx',no_hide,no_replace,query_only,search_list);
    END;
    Subhas

  • Moving Scriptlet Code to backing bean when converting from JSP - Facelets

    Hello!
    We are converting our application from jsf1.2 to 2.0 and all jsps are being converted to XHTML. Some are trivial while others had very complex scriptlets.
    I would like to know what are some of the recommended ways of moving Scriptlet Code to backing bean when converting from JSP -> Facelets.
    I have thought about listeners, actionListeners, putting code getXXXX() of the backing bean and then calling #{bean.XXXX} but not sure whats the best way.
    I do appreciate the response!
    Eg of a jsp page:
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
    <%@ taglib uri="/WEB-INF/xxx-jsf.tld" prefix="l" %>
    <%@ taglib uri="/WEB-INF/yyy-pp.tld" prefix="p" %>
    <%@ page import="com.ttyy.search.beans.jsf.AdvancedSearchFormManagedBean" %>
    <%@ page import="com.kkee.util.*"%>
    <%
        AdvancedSearchFormManagedBean advancedSearchFormManagedBean = (AdvancedSearchFormManagedBean) request.getSession().getAttribute("AdvancedSearchFormManagedBean");
        if (advancedSearchFormManagedBean == null) {
           advancedSearchFormManagedBean = new AdvancedSearchFormManagedBean();
           request.getSession().setAttribute("AdvancedSearchFormManagedBean", advancedSearchFormManagedBean);
        advancedSearchFormManagedBean.initializeForAdvancedSearchOptions();
        advancedSearchFormManagedBean.setQuickSearch();
         request.setAttribute("portletHeader", "Hello " + advancedSearchFormManagedBean.getPerson().getFirstname() + ", check out the latest programs in your practice areas and jurisdictions");
    %>
    <h:form id="MYCenterForm">
         <p:portletRenderer portletSetName="test of portlet"
              portletContainer="#{PortletContainerManagedBean}"
              id="MYCenter"
              portletScope = "TEST_SCOPE"
              suppressIfNoData="true"
              portletSkinName="SOME_SKIN">
              <f:facet name="persistenceToolkit">
                   <h:commandLink id="persistenceToolkitLink"
                        actionListener="#{PortletContainerManagedBean.persistPortletSetStateListener}">
                        <h:outputText value="Save State Of Portlet Set" id="persistenceToolkitLinkText"/>
                   </h:commandLink>
              </f:facet>
         </p:pagePortletSetRenderer>
    </h:form>
    <%
         String flag = PropertyItems.getInstance().getPropertyItem("response.time.flag");
         if("1".equals(flag)){
              ResponseTime rt = (ResponseTime) session.getAttribute("responseTime");
            if(rt!=null){
                rt.setDesc("my cle loaded");
                long now = System.currentTimeMillis();
                long start = rt.getStart() + rt.getTotal();
                rt.setInterval(now-start);
                rt.setTotal(rt.getTotal()+rt.getInterval());
                LogUtil.log(rt.toString(), LogUtil.DEBUG_LEVEL);
                session.setAttribute("responseTime", rt);
    %>

    That helps.
    This could be another topic question but itst kind of related to what i am doing right now. while converting JSP to facelet (in jsf2) I came across another issue.
    <h:commandLink id="Save" rendered="#{RegistrationBean.isNOTInOrigionalRegistrationMode}" action="#{RegistrationBean.updateProfile2Submit}" styleClass="#{portalSkinManagedBean.contentPortletSkin.strongTextStyle}">
              <l:htmlSkinnedImage id="SaveImage" style="border:0;" url="save.gif" alt="Save Information"/>
    </h:commandLink>When I click on the generated link, I get this. And this is happening for all the h:commandLink in the application.
    http://localhost:9080/registration/updateProfile2.jsf[request.getQueryString()=null][request.getRequestedSessionId()=F1CCE237DD81D301F1C4DBA6910FFD8A][request.isRequestedSessionIdFromCookie()=true][request.isRequestedSessionIdFromURL()=false][request.isRequestedSessionIdValid()=true]Parameters:[rolePracticeAreasForm:title=rolePracticeAreasForm:primaryPracticeArea=10002javax.faces.ViewState=-2943345291093118815:-4400303399130292206rolePracticeAreasForm:practiceAreasMod2=10148.1rolePracticeAreasForm:practiceAreasMod1=10002.1rolePracticeAreasForm:Save=rolePracticeAreasForm:SaverolePracticeAreasForm=rolePracticeAreasFormrolePracticeAreasForm:otherField=rolePracticeAreasForm:fromMyAccount=1]||
    javax.servlet.ServletException: Index: 0, Size: 0
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:325)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
         at com.legaledcenter.util.urlrewrite.UrlRewriteFilter.doFilter(UrlRewriteFilter.java:250)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
         at org.springframework.orm.hibernate3.support.OpenSessionInViewFilter.doFilterInternal(OpenSessionInViewFilter.java:198)
         at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:75)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
         at com.jscape.framework.galileo.support.upload.UploadFilter.doFilter(UploadFilter.java:71)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
         at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:849)
         at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:583)
         at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:454)
         at java.lang.Thread.run(Thread.java:619)
    Caused by: java.lang.IndexOutOfBoundsException: Index: 0, Size: 0
         at java.util.ArrayList.RangeCheck(ArrayList.java:547)
         at java.util.ArrayList.get(ArrayList.java:322)
         at javax.faces.component.AttachedObjectListHolder.restoreState(AttachedObjectListHolder.java:161)
         at javax.faces.component.UIComponentBase.restoreState(UIComponentBase.java:1427)
         at com.sun.faces.application.view.StateHolderSaver.restore(StateHolderSaver.java:121)
         at com.sun.faces.application.view.StateManagementStrategyImpl$4.invokeContextCallback(StateManagementStrategyImpl.java:289)
         at javax.faces.component.UIComponent.invokeOnComponent(UIComponent.java:1253)
         at javax.faces.component.UIComponentBase.invokeOnComponent(UIComponentBase.java:672)
         at javax.faces.component.UIComponent.invokeOnComponent(UIComponent.java:1262)
         at javax.faces.component.UIComponentBase.invokeOnComponent(UIComponentBase.java:672)
         at javax.faces.component.UIComponent.invokeOnComponent(UIComponent.java:1262)
         at javax.faces.component.UIComponentBase.invokeOnComponent(UIComponentBase.java:672)
         at javax.faces.component.UIComponent.invokeOnComponent(UIComponent.java:1262)
         at javax.faces.component.UIComponentBase.invokeOnComponent(UIComponentBase.java:672)
         at javax.faces.component.UIComponent.invokeOnComponent(UIComponent.java:1262)
         at javax.faces.component.UIComponentBase.invokeOnComponent(UIComponentBase.java:672)
         at com.sun.faces.application.view.StateManagementStrategyImpl.restoreView(StateManagementStrategyImpl.java:284)
         at com.sun.faces.application.StateManagerImpl.restoreView(StateManagerImpl.java:177)
         at com.sun.faces.application.view.ViewHandlingStrategy.restoreView(ViewHandlingStrategy.java:119)
         at com.sun.faces.application.view.FaceletViewHandlingStrategy.restoreView(FaceletViewHandlingStrategy.java:434)
         at com.sun.faces.application.view.MultiViewHandler.restoreView(MultiViewHandler.java:143)
         at com.sun.faces.lifecycle.RestoreViewPhase.execute(RestoreViewPhase.java:199)
         at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101)
         at com.sun.faces.lifecycle.RestoreViewPhase.doPhase(RestoreViewPhase.java:110)
         at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:118)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:312)
         ... 22 more
    ********** Message End *************Thanks

  • Crash when returning from terminal services

    I have an applet running on my XP system under 1.5.0_08. I remotely terminal service into the machine and things work fine with interacting with the applet. When I return to the local machine and login to display my existing session and start to interact with the applet window, the JVM crashes. I'm not sure if I have enough information to submit it yet. See log below:
    # An unexpected error has been detected by HotSpot Virtual Machine:
    # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x6d0afc8d, pid=2264, tid=1052
    # Java VM: Java HotSpot(TM) Client VM (1.5.0_08-b03 mixed mode, sharing)
    # Problematic frame:
    # C [awt.dll+0xafc8d]
    --------------- T H R E A D ---------------
    Current thread (0x03d7bb00): JavaThread "Java2D Disposer" daemon [_thread_in_native, id=1052]
    siginfo: ExceptionCode=0xc0000005, reading address 0x00000005
    Registers:
    EAX=0x00000005, EBX=0x2b3f4e48, ECX=0x03c81434, EDX=0x0533e668
    ESP=0x0ffdf894, EBP=0x0ffdf8c8, ESI=0x03c81430, EDI=0x03c81434
    EIP=0x6d0afc8d, EFLAGS=0x00010216
    Top of Stack: (sp=0x0ffdf894)
    0x0ffdf894: 03d7bbc0 05a3b710 6d0b3d55 05a3b710
    0x0ffdf8a4: 6d03499c 03d7bbc0 05a3b710 03d7bb00
    0x0ffdf8b4: 2ab5f1d0 6d035437 03d7bbc0 05a3b710
    0x0ffdf8c4: 00000000 0ffdf904 063e832f 03d7bbc0
    0x0ffdf8d4: 0ffdf90c 6d03497f 00000000 05a3b710
    0x0ffdf8e4: 00000000 0ffdf8e8 00000000 0ffdf920
    0x0ffdf8f4: 2b3f5020 00000000 2b3f4e48 0ffdf914
    0x0ffdf904: 0ffdf940 063e29e3 2b3f4fc0 063e6509
    Instructions: (pc=0x6d0afc8d)
    0x6d0afc7d: 5e c2 04 00 56 8b f1 57 8b 46 04 8d 7e 04 8b cf
    0x6d0afc8d: ff 10 ff 4e 20 8b 46 20 85 c0 7f 42 53 33 db 39
    Stack: [0x0fee0000,0x0ffe0000), sp=0x0ffdf894, free space=1022k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    C [awt.dll+0xafc8d]
    j sun.java2d.DefaultDisposerRecord.invokeNativeDispose(JJ)V+0
    j sun.java2d.DefaultDisposerRecord.dispose()V+8
    j sun.java2d.Disposer.run()V+19
    j java.lang.Thread.run()V+11
    v ~StubRoutines::call_stub
    V [jvm.dll+0x86e84]
    V [jvm.dll+0xddead]
    V [jvm.dll+0x86d55]
    V [jvm.dll+0x86ab2]
    V [jvm.dll+0xa16b2]
    V [jvm.dll+0x10f4ac]
    V [jvm.dll+0x10f47a]
    C [msvcrt.dll+0x2a3b0]
    C [kernel32.dll+0xb683]
    Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
    j sun.java2d.DefaultDisposerRecord.invokeNativeDispose(JJ)V+0
    j sun.java2d.DefaultDisposerRecord.dispose()V+8
    j sun.java2d.Disposer.run()V+19
    j java.lang.Thread.run()V+11
    v ~StubRoutines::call_stub
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    0x05b082b8 JavaThread "MessageAlerter-14" [_thread_blocked, id=2948]
    0x03014488 JavaThread "Thread-40" [_thread_blocked, id=5976]
    0x03c95618 JavaThread "Thread-29" [_thread_blocked, id=7628]
    0x04d6e8f8 JavaThread "Thread-28" [_thread_blocked, id=6888]
    0x188dfc18 JavaThread "Thread-27" [_thread_blocked, id=3204]
    0x028b2f70 JavaThread "Thread-26" [_thread_blocked, id=6088]
    0x0474b748 JavaThread "Thread-25" [_thread_blocked, id=6084]
    0x05c6be30 JavaThread "Thread-24" [_thread_blocked, id=1468]
    0x047354c0 JavaThread "VoiceController.QueueServiceRunnable" [_thread_blocked, id=2688]
    0x039e4468 JavaThread "Thread-23" [_thread_blocked, id=1976]
    0x04977e78 JavaThread "Messenger" [_thread_blocked, id=3868]
    0x021c6bb8 JavaThread "Preferences" [_thread_blocked, id=272]
    0x0282db58 JavaThread "StatusChangeIndicatorThread" [_thread_blocked, id=528]
    0x02f2e220 JavaThread "CommManager" [_thread_blocked, id=2364]
    0x044019d0 JavaThread "SocketReader" [_thread_in_native, id=2164]
    0x04d72858 JavaThread "SocketWriter" [_thread_blocked, id=756]
    0x047568e8 JavaThread "AWT-EventQueue-4" [_thread_blocked, id=3668]
    0x024feb08 JavaThread "IdleThread" [_thread_blocked, id=548]
    0x030f0e10 JavaThread "thread applet-com.bantu.banter.client.ChatApplet" [_thread_blocked, id=1588]
    0x0338e4d8 JavaThread "Java Sound Event Dispatcher" daemon [_thread_blocked, id=3400]
    0x03a66e10 JavaThread "TimerQueue" daemon [_thread_blocked, id=2796]
    0x04623978 JavaThread "AWT-EventQueue-1" [_thread_blocked, id=2464]
    0x03c85e68 JavaThread "AWT-EventQueue-0" [_thread_blocked, id=3196]
    0x03972a50 JavaThread "traceMsgQueueThread" daemon [_thread_blocked, id=3172]
    0x03018528 JavaThread "AWT-Windows" daemon [_thread_in_native, id=2712]
    0x03d38be0 JavaThread "AWT-Shutdown" [_thread_blocked, id=3592]
    =>0x03d7bb00 JavaThread "Java2D Disposer" daemon [_thread_in_native, id=1052]
    0x03b2a240 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=2800]
    0x03ca41e0 JavaThread "CompilerThread0" daemon [_thread_blocked, id=3568]
    0x03bc36e8 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=320]
    0x03ae4e58 JavaThread "Finalizer" daemon [_thread_blocked, id=3596]
    0x03cad150 JavaThread "Reference Handler" daemon [_thread_blocked, id=3276]
    0x03a684a0 JavaThread "main" [_thread_in_native, id=3776]
    Other Threads:
    0x03c8c330 VMThread [id=3708]
    0x03c95d00 WatcherThread [id=1000]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    def new generation total 2304K, used 874K [0x20a70000, 0x20ce0000, 0x211d0000)
    eden space 2112K, 41% used [0x20a70000, 0x20b4aa40, 0x20c80000)
    from space 192K, 0% used [0x20c80000, 0x20c80000, 0x20cb0000)
    to space 192K, 0% used [0x20cb0000, 0x20cb0000, 0x20ce0000)
    tenured generation total 28728K, used 16209K [0x211d0000, 0x22dde000, 0x26a70000)
    the space 28728K, 56% used [0x211d0000, 0x221a45a0, 0x221a4600, 0x22dde000)
    compacting perm gen total 8192K, used 3805K [0x26a70000, 0x27270000, 0x2aa70000)
    the space 8192K, 46% used [0x26a70000, 0x26e27408, 0x26e27600, 0x27270000)
    ro space 8192K, 63% used [0x2aa70000, 0x2af7d608, 0x2af7d800, 0x2b270000)
    rw space 12288K, 46% used [0x2b270000, 0x2b810608, 0x2b810800, 0x2be70000)
    Dynamic libraries:
    0x00400000 - 0x00b53000      C:\Program Files\Bon Echo\firefox.exe
    0x7c900000 - 0x7c9b0000      C:\WINDOWS\system32\ntdll.dll
    0x7c800000 - 0x7c8f4000      C:\WINDOWS\system32\kernel32.dll
    0x60110000 - 0x6017d000      C:\Program Files\Bon Echo\js3250.dll
    0x601d0000 - 0x601f7000      C:\Program Files\Bon Echo\nspr4.dll
    0x77dd0000 - 0x77e6b000      C:\WINDOWS\system32\ADVAPI32.dll
    0x77e70000 - 0x77f01000      C:\WINDOWS\system32\RPCRT4.dll
    0x71ad0000 - 0x71ad9000      C:\WINDOWS\system32\WSOCK32.dll
    0x71ab0000 - 0x71ac7000      C:\WINDOWS\system32\WS2_32.dll
    0x77c10000 - 0x77c68000      C:\WINDOWS\system32\msvcrt.dll
    0x71aa0000 - 0x71aa8000      C:\WINDOWS\system32\WS2HELP.dll
    0x76b40000 - 0x76b6d000      C:\WINDOWS\system32\WINMM.dll
    0x77d40000 - 0x77dd0000      C:\WINDOWS\system32\USER32.dll
    0x77f10000 - 0x77f57000      C:\WINDOWS\system32\GDI32.dll
    0x60380000 - 0x603e9000      C:\Program Files\Bon Echo\xpcom_core.dll
    0x602a0000 - 0x602a7000      C:\Program Files\Bon Echo\plc4.dll
    0x602b0000 - 0x602b6000      C:\Program Files\Bon Echo\plds4.dll
    0x7c9c0000 - 0x7d1d5000      C:\WINDOWS\system32\SHELL32.dll
    0x77f60000 - 0x77fd6000      C:\WINDOWS\system32\SHLWAPI.dll
    0x774e0000 - 0x7761d000      C:\WINDOWS\system32\ole32.dll
    0x77c00000 - 0x77c08000      C:\WINDOWS\system32\VERSION.dll
    0x602d0000 - 0x602ea000      C:\Program Files\Bon Echo\smime3.dll
    0x60200000 - 0x6025a000      C:\Program Files\Bon Echo\nss3.dll
    0x602f0000 - 0x6032e000      C:\Program Files\Bon Echo\softokn3.dll
    0x60330000 - 0x6034f000      C:\Program Files\Bon Echo\ssl3.dll
    0x60360000 - 0x60374000      C:\Program Files\Bon Echo\xpcom_compat.dll
    0x763b0000 - 0x763f9000      C:\WINDOWS\system32\comdlg32.dll
    0x773d0000 - 0x774d2000      C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.2180_x-ww_a84f1ff9\COMCTL32.dll
    0x77120000 - 0x771ac000      C:\WINDOWS\system32\OLEAUT32.dll
    0x73000000 - 0x73026000      C:\WINDOWS\system32\WINSPOOL.DRV
    0x10000000 - 0x10044000      C:\Program Files\Matrox Graphics Inc\PowerDesk HF\Matrox.PowerDesk.Hooks.dll
    0x76bf0000 - 0x76bfb000      C:\WINDOWS\system32\PSAPI.DLL
    0x76fd0000 - 0x7704f000      C:\WINDOWS\system32\CLBCATQ.DLL
    0x77050000 - 0x77115000      C:\WINDOWS\system32\COMRes.dll
    0x60010000 - 0x60022000      C:\Program Files\Bon Echo\components\jar50.dll
    0x60030000 - 0x6003f000      C:\Program Files\Bon Echo\components\jsd3250.dll
    0x60040000 - 0x6004a000      C:\Program Files\Bon Echo\components\myspell.dll
    0x60050000 - 0x6005e000      C:\Program Files\Bon Echo\components\spellchk.dll
    0x60060000 - 0x6008c000      C:\Program Files\Bon Echo\components\xpinstal.dll
    0x71a50000 - 0x71a8f000      C:\WINDOWS\system32\mswsock.dll
    0x662b0000 - 0x66308000      C:\WINDOWS\system32\hnetcfg.dll
    0x71a90000 - 0x71a98000      C:\WINDOWS\System32\wshtcpip.dll
    0x76d60000 - 0x76d79000      C:\WINDOWS\system32\iphlpapi.dll
    0x01700000 - 0x01717000      C:\Program Files\Bon Echo\extensions\[email protected]\components\BrandRes.dll
    0x01720000 - 0x01745000      C:\Program Files\Bon Echo\extensions\[email protected]\components\fullsoft.dll
    0x01770000 - 0x01776000      C:\Program Files\Bon Echo\extensions\[email protected]\components\qfaservices.dll
    0x76f20000 - 0x76f47000      C:\WINDOWS\system32\DNSAPI.dll
    0x76fb0000 - 0x76fb8000      C:\WINDOWS\System32\winrnr.dll
    0x76f60000 - 0x76f8c000      C:\WINDOWS\system32\WLDAP32.dll
    0x746f0000 - 0x7471a000      C:\WINDOWS\system32\msimtf.dll
    0x74720000 - 0x7476b000      C:\WINDOWS\system32\MSCTF.dll
    0x20000000 - 0x202c5000      C:\WINDOWS\system32\xpsp2res.dll
    0x5ad70000 - 0x5ada8000      C:\WINDOWS\system32\uxtheme.dll
    0x76fc0000 - 0x76fc6000      C:\WINDOWS\system32\rasadhlp.dll
    0x600d0000 - 0x60101000      C:\Program Files\Bon Echo\freebl3.dll
    0x60260000 - 0x6029a000      C:\Program Files\Bon Echo\nssckbi.dll
    0x76380000 - 0x76385000      C:\WINDOWS\system32\msimg32.dll
    0x77920000 - 0x77a13000      C:\WINDOWS\system32\SETUPAPI.dll
    0x602c0000 - 0x602c8000      C:\Program Files\Bon Echo\plugins\npnul32.dll
    0x76390000 - 0x763ad000      C:\WINDOWS\system32\IMM32.DLL
    0x6d4f0000 - 0x6d502000      C:\Program Files\Java\jre1.5.0_08\bin\NPJava11.dll
    0x5edd0000 - 0x5ede7000      C:\WINDOWS\system32\OLEPRO32.DLL
    0x6d440000 - 0x6d44c000      C:\Program Files\Java\jre1.5.0_08\bin\jpioji.dll
    0x6d420000 - 0x6d435000      C:\Program Files\Java\jre1.5.0_08\bin\jpinscp.dll
    0x6d450000 - 0x6d468000      C:\Program Files\Java\jre1.5.0_08\bin\jpishare.dll
    0x6d6c0000 - 0x6d85b000      C:\PROGRA~1\Java\JRE15~1.0_0\bin\client\jvm.dll
    0x6d280000 - 0x6d288000      C:\PROGRA~1\Java\JRE15~1.0_0\bin\hpi.dll
    0x6d690000 - 0x6d69c000      C:\PROGRA~1\Java\JRE15~1.0_0\bin\verify.dll
    0x6d300000 - 0x6d31d000      C:\PROGRA~1\Java\JRE15~1.0_0\bin\java.dll
    0x6d6b0000 - 0x6d6bf000      C:\PROGRA~1\Java\JRE15~1.0_0\bin\zip.dll
    0x6d000000 - 0x6d169000      C:\Program Files\Java\jre1.5.0_08\bin\awt.dll
    0x73760000 - 0x737a9000      C:\WINDOWS\system32\ddraw.dll
    0x73bc0000 - 0x73bc6000      C:\WINDOWS\system32\DCIMAN32.dll
    0x6d240000 - 0x6d27f000      C:\Program Files\Java\jre1.5.0_08\bin\fontmanager.dll
    0x6d1f0000 - 0x6d203000      C:\Program Files\Java\jre1.5.0_08\bin\deploy.dll
    0x771b0000 - 0x77256000      C:\WINDOWS\system32\WININET.dll
    0x77a80000 - 0x77b14000      C:\WINDOWS\system32\CRYPT32.dll
    0x77b20000 - 0x77b32000      C:\WINDOWS\system32\MSASN1.dll
    0x77260000 - 0x77300000      C:\WINDOWS\system32\urlmon.dll
    0x6d5d0000 - 0x6d5f3000      C:\Program Files\Java\jre1.5.0_08\bin\RegUtils.dll
    0x10450000 - 0x10716000      C:\WINDOWS\system32\msi.dll
    0x6d4c0000 - 0x6d4d3000      C:\Program Files\Java\jre1.5.0_08\bin\net.dll
    0x6d4e0000 - 0x6d4e9000      C:\Program Files\Java\jre1.5.0_08\bin\nio.dll
    0x6d1c0000 - 0x6d1e3000      C:\Program Files\Java\jre1.5.0_08\bin\dcpr.dll
    0x74e30000 - 0x74e9c000      C:\WINDOWS\system32\RICHED20.DLL
    0x77b40000 - 0x77b62000      C:\WINDOWS\system32\appHelp.dll
    0x15920000 - 0x1598d000      C:\Program Files\TortoiseSVN\bin\tortoisesvn.dll
    0x6eec0000 - 0x6eee2000      C:\Program Files\TortoiseSVN\bin\libapr.dll
    0x78130000 - 0x781cb000      C:\WINDOWS\WinSxS\x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_8.0.50727.42_x-ww_0de06acd\MSVCR80.dll
    0x6ee60000 - 0x6ee88000      C:\Program Files\TortoiseSVN\bin\libaprutil.dll
    0x6ee50000 - 0x6ee5d000      C:\Program Files\TortoiseSVN\bin\libapriconv.dll
    0x15990000 - 0x1599c000      C:\Program Files\TortoiseSVN\bin\intl3_svn.dll
    0x7c420000 - 0x7c4a7000      C:\WINDOWS\WinSxS\x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_8.0.50727.42_x-ww_0de06acd\MSVCP80.dll
    0x77a20000 - 0x77a74000      C:\WINDOWS\System32\cscui.dll
    0x76600000 - 0x7661d000      C:\WINDOWS\System32\CSCDLL.dll
    0x75cf0000 - 0x75d81000      C:\WINDOWS\system32\mlang.dll
    0x76c30000 - 0x76c5e000      C:\WINDOWS\system32\WINTRUST.dll
    0x76c90000 - 0x76cb8000      C:\WINDOWS\system32\IMAGEHLP.dll
    0x72d20000 - 0x72d29000      C:\WINDOWS\system32\wdmaud.drv
    0x72d10000 - 0x72d18000      C:\WINDOWS\system32\msacm32.drv
    0x77be0000 - 0x77bf5000      C:\WINDOWS\system32\MSACM32.dll
    0x77bd0000 - 0x77bd7000      C:\WINDOWS\system32\midimap.dll
    0x77fe0000 - 0x77ff1000      C:\WINDOWS\system32\Secur32.dll
    0x767f0000 - 0x76817000      C:\WINDOWS\system32\schannel.dll
    0x5b860000 - 0x5b8b4000      C:\WINDOWS\system32\NETAPI32.dll
    0x769c0000 - 0x76a73000      C:\WINDOWS\system32\USERENV.dll
    0x75f80000 - 0x7607d000      C:\WINDOWS\system32\browseui.dll
    0x76990000 - 0x769b5000      C:\WINDOWS\system32\ntshrui.dll
    0x76b20000 - 0x76b31000      C:\WINDOWS\system32\ATL.DLL
    0x76980000 - 0x76988000      C:\WINDOWS\system32\LINKINFO.dll
    0x77760000 - 0x778cf000      C:\WINDOWS\system32\SHDOCVW.dll
    0x754d0000 - 0x75550000      C:\WINDOWS\system32\CRYPTUI.dll
    0x6d470000 - 0x6d495000      C:\Program Files\Java\jre1.5.0_08\bin\jsound.dll
    0x6d4a0000 - 0x6d4a8000      C:\Program Files\Java\jre1.5.0_08\bin\jsoundds.dll
    0x73f10000 - 0x73f6c000      C:\WINDOWS\system32\DSOUND.dll
    0x028f0000 - 0x02918000      C:\WINDOWS\system32\rsaenh.dll
    0x74b30000 - 0x74b76000      C:\WINDOWS\system32\webcheck.dll
    0x7dc30000 - 0x7df20000      C:\WINDOWS\system32\mshtml.dll
    0x746c0000 - 0x746e7000      C:\WINDOWS\system32\msls31.dll
    0x6d5b0000 - 0x6d5c2000      C:\Program Files\Java\jre1.5.0_08\bin\NPOJI610.dll
    0x6d3c0000 - 0x6d3df000      C:\Program Files\Java\jre1.5.0_08\bin\jpeg.dll
    VM Arguments:
    jvm_args: -Xbootclasspath/a:C:\PROGRA~1\Java\JRE15~1.0_0\lib\deploy.jar;C:\PROGRA~1\Java\JRE15~1.0_0\lib\plugin.jar -Xmx96m -Djavaplugin.maxHeapSize=96m -Xverify:remote -Djavaplugin.version=1.5.0_08 -Djavaplugin.nodotversion=150_08 -Dbrowser=sun.plugin -DtrustProxy=true -Dapplication.home=C:\PROGRA~1\Java\JRE15~1.0_0 -Djava.protocol.handler.pkgs=sun.plugin.net.protocol -Djavaplugin.vm.options=-Djava.class.path=C:\PROGRA~1\Java\JRE15~1.0_0\classes -Xbootclasspath/a:C:\PROGRA~1\Java\JRE15~1.0_0\lib\deploy.jar;C:\PROGRA~1\Java\JRE15~1.0_0\lib\plugin.jar -Xmx96m -Djavaplugin.maxHeapSize=96m -Xverify:remote -Djavaplugin.version=1.5.0_08 -Djavaplugin.nodotversion=150_08 -Dbrowser=sun.plugin -DtrustProxy=true -Dapplication.home=C:\PROGRA~1\Java\JRE15~1.0_0 -Djava.protocol.handler.pkgs=sun.plugin.net.protocol vfprintf
    java_command: <unknown>
    Launcher Type: generic
    Environment Variables:
    PATH=C:\PROGRA~1\Java\JRE15~1.0_0\bin;C:\Program Files\Bon Echo;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\svn\BantuTrunk\lib;.
    USERNAME=steve
    OS=Windows_NT
    PROCESSOR_IDENTIFIER=x86 Family 15 Model 2 Stepping 7, GenuineIntel
    --------------- S Y S T E M ---------------
    OS: Windows XP Build 2600 Service Pack 2
    CPU:total 1 (cores per cpu 1, threads per core 1) family 15 model 2 stepping 7, cmov, cx8, fxsr, mmx, sse, sse2
    Memory: 4k page, physical 1047556k(370276k free), swap 2520776k(1835956k free)
    vm_info: Java HotSpot(TM) Client VM (1.5.0_08-b03) for windows-x86, built on Jul 26 2006 01:10:50 by "java_re" with MS VC++ 6.0

    Ah.. I hate when they do that, if you are going to write an application then support it.... At least help figure out why it's failing other than just saying it should work....
    I would get on a call with them and get a Manager involved, someone there should be able to help you...
    In the mean time:
    First easiest way is search for crpe32.dll, there should only be one version and it should match the est of the file versions. Next step will tell you the versions being used.
    OK, download [Modules|https://smpdl.sap-ag.de/~sapidp/012002523100006252802008E/modules.zip]. what this app will do is list all of the runtime files each user has access to. You can save and then compare the list files between the  one working PC and any other user. Should help determine what is missing or the users profile doesn't have access to or not installed.
    Another option is to use ProfileMonitor from Microsoft, it will list all access issues including the registry keys that all users need to run CR.
    Can you tell me what version you are using?
    Also need to know what version of TS?
    OS it's running on?
    And work station OS?
    One more option, go to this link http://www.sdn.sap.com/irj/scn/advancedsearch?query=boj and search on "invalid tlv" and it will return a bunch of know reasons why you can get that error.
    Thanks
    Don
    Edited by: Don Williams on May 31, 2011 12:52 PM

  • LCD flash when return from sleep

    Hi,
    I start to notice that my display sometimes "flashs" when I "ask" to the computer return from a Sleep.
    It's happens sometimes, not all time. I will start to see exact when it's happen, like If just before it's sleep, or when sleep for more time.
    But anyone has notice the same thing happens??
    It's a little bit annoying because I use my Mac in a "dark" room, with dimmed light, and when return this flash blind me for a few seconds.
    It's really like the flash from de the photo booth, but less strong.

    I had the same problem:
    http://discussions.apple.com/thread.jspa?threadID=555485&tstart=0
    SOLUTION: Disable the screen saver (ie - set it to "never") and it won't do it. You've probably got the screen shutting down prior to the screen saver kicking in anyhow.
    Hope this works - it did on mine.

  • MacBook Pro freezes when returning from sleep

    I recently started using a Kensington Bluetooth mouse with my MacBook Pro and the computer freezes whenever I return the computer from sleep. Nothing happens when I press Command-Option-Esc. The mouse pointer moves on the screen and the dock magnification works, but I'm not able to open any programs.
    I've confirmed that it has something to do with Bluetooth because I now turn off Bluetooth before returning it to sleep and it works fine. I just have to turn on Bluetooth using the trackpad and then I can use the mouse again. I'm thinking that this shouldn't be a requirement though.
    Has anyone else had this problem? Is there anything I can do to resolve?
    I appreciate any assistance!
    Thank you,
    Chris
    Mouse: Kensington PilotMouse Mini Bluetooth
    Bluetooth Version: 3.1965 (3.1965)

    For those of you who are interested, I think I've isolated the issue. If I turn off the option to allow Bluetooth devices to wake the computer from sleep, my computer doesn't freeze when I return from sleep. This is a better option for me than turning off Bluetooth before I put the computer to sleep.
    Let me know if you have any questions.

  • Wifi notification keeps popping up when returning from sleep

       Whenever my mac mini (2012) or MBP (2007) returns from sleep I get popups of restoring wfif access. Sometimes these keep returning every minute or so, with 5 notifcations at the same time.
    Does someone else experience this as well? And what is the remedy.
    I do not want to restart every time I wake m macs from sleep. BTW, this was never an issue before an update on 10.7 (previous instance of 10.7) was fine. Also, do not want to migrate to 10.8 yet. as my MBP cannot.
    Current OS X: 10.7.5
    Cheers!

    Ok, I just tried that. I deleted com.apple.KeyboardViewerServer.plist. I then started my screensaver. When I came back in...the Keyboard Viewer was back and there was a new plist file that was created...so, something else must be controlling it.

  • Firefox fails downloads when returning from private browsing

    Hi,
    If I start to download a file when I'm in normal browsing mode, then for some reason switch to Private Browsing whilst the download is still in progress, the download does not show up in Private Browsing mode. I don't have any problem with that.
    However, if I then return from Private Browsing mode, the download will fail. Are there any add-ons, work arounds or works in progress that will either:
    a) Pause and stabilise the download upon switching to Private Browsing, and then resume the download when switching back to normal browsing mode?
    or
    b) Allow the download to continue whilst in Private Browsing mode and then allow you to switch back to normal browsing without the download failing?
    Thanks in advance.
    Matt

    That should work: https://wiki.mozilla.org/Firefox3.1/PrivateBrowsing/FunctionalSpec
    Maybe a problem with an extension (FlashGot) that doesn't support Private Browsing.
    Start Firefox in [[Safe Mode]] to check if one of your add-ons is causing your problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    See [[Troubleshooting extensions and themes]] and [[Troubleshooting plugins]]

  • My HP dv6 1030us laptop becomes slow when removed from AC power

    Hi,
    My HP DV6 laptop has windows 7 operating system and it behaves pretty weirdly .
    It becomes really slow when removed from AC Power and have to restart my system to bring it to normal speed don't know why its behaving like that and help to resolve the problem would be greatly appreciated and also my system gets overheated a lot and I have to use a cooling pad always to keep it cool and running properly along with AC power
    I would greatly appreciate any advice in resolving these issues.
    Thanks in advance.

    for how long have you had this laptop... If you had it for longer than a year you may be dealing with a dust bunny (acumulation of dust in the vent that's right beside the fan). Normally when that vent is clogged you get the type of overhetaing you may be experiencing, so i recomend you to open it up and give it a nice clean as soon as you can. As for your computer slowing down without the ac adapter.
    Do you know under what power option are you running ur computer?

  • When returning from sleep my preferred network doesn't connect

    After returning from sleep mode my prefered network won't automatically connect. I checked the settings and its set to automatically connect to my network. I have to turn of the wireless and then turn it back on or select my network before it will connect.

    In Networking,  make sure that Wireless is at the top of the list,  if it is not then move it there above Ethernet.  I also uncheck "Ask to join new Networks"
    In Preferred Networks make the one you want the only one,  if more than one set the priority of which one first. Check "Remember Networks this computer has joined"  Most of this is in Advanced.

  • Loud crack-like sound when returning from s3 stand-by m

    Every time i return from S3 mode i hear loud crack-like sound from my speakers. I have SB li've! audio card and windowsXP. Is there any fix for this? It is very anoying : i get scared every time it "cracks" :-) Tnx

    Every time i return from S3 mode i hear loud crack-like sound from my speakers. I have SB li've! audio card and windowsXP. Is there any fix for this? It is very anoying : i get scared every time it "cracks" :-) Tnx

  • File permission issue when indexing from JSP

    HI
    I have a class that I intend to use both in batch file and in JSP that will build a search index (Lucene) somwhere in the file system outside the web root. The class works great when called from the batch script but when I try to use it in the JSP page i get this error:
    [#|2004-04-23T09:56:41.155-0400|INFO|sun-appserver-pe8.0|javax.enterprise.system.stream.out|_ThreadID=13;|
    caught a class java.security.AccessControlException
    with message: access denied (java.io.FilePermission C:\AMIR\nemours_internet\common\search_index\html\segments delete)|#]
    Can someone tell me if this is a setting in PE8 server or do I have to do something within my class code?
    Thanks
    Following is my class (BuildPageIndex.java) and the snippet of the JSP file where I call it...
    <<<< package and imports ommited >>>>
    public class BuildPageIndex {
         private StringBuffer sbOut;
         public BuildPageIndex(){
         public BuildPageIndex(String pathToCMTXML){
         CMTController.loadCMTXML(pathToCMTXML);     
         public void buildIndex(){
              try {
              sbOut = new StringBuffer();
         // get all the page objects from the database
         ArrayList pageList = CMTPersister.getInstance().getAllPages();
         if (pageList.size() == 0)
              sbOut.append("<Lucene> No HTML pages in the database...Exiting...\n");
              return;     
         // obtain index location from XML config file
         HashMap searchMap = CMTController.getInstance().getSearchConfig();
         String strIndexLoc = (String)searchMap.get("LOCATION");
         sbOut.append("\n\n\n");
         // if backup management fails abort index creation
         if (!(manageBackup(strIndexLoc)))
                        return;
         // create index and start timing
         sbOut.append("<Lucene> Creating index for HTML pages in: "+ strIndexLoc + "\n");
         Date start = new Date();
         IndexWriter ixdBuilder = new IndexWriter(strIndexLoc, new StandardAnalyzer(), true);
         //for all pages ...
         for (int i=0;i<pageList.size();i++)
                        //get a page
                        Page thisPage = (Page)pageList.get(i);
                        // create lucene document from a page
                        sbOut.append("<Lucene> Page [" + thisPage.getURL().trim() +"] added \n");
                        Document pg_doc = PageDocument.Document(thisPage);
                        // add page document to the index...
                        ixdBuilder.addDocument(pg_doc);     
         // optimize and close index
                   ixdBuilder.optimize();
                   ixdBuilder.close();
         // calculate the time it took to build index
         Date end = new Date();
         long msecs = end.getTime() - start.getTime();
         sbOut.append("<Lucene> HTML Index created in: " + msecs + " milliseconds ("+ (float)msecs/1000.00 + " seconds) on "+pageList.size()+" pages\n\n");
         } catch (Exception e) {
                   System.out.println(" caught a " + e.getClass() + "\n with message: " + e.getMessage());
         public String getOutput(){
              return this.sbOut.toString();
         private boolean manageBackup(String loc){
    boolean retVal = true;
              //rename the location to _BACKUP so we have it
    File currIdx = new File(loc);
    File backIdx = new File(loc+"_BACKUP");
    if (currIdx.exists()){
         sbOut.append("<Lucene> Index directory allready exists!\n<Lucene> Backing it up to ["+backIdx.getPath()+"]...\n");
         if (backIdx.exists()){
              sbOut.append("<Lucene> Backup directory also exists! Will delete it first...\n");
              if (!(Utils.deleteDirRecursive(backIdx))){
                   sbOut.append("<Lucene> Failed deleting backup directory! Aborting...\n");
                   retVal = false;
         if (!(currIdx.renameTo(backIdx)))
              sbOut.append("<Lucene> Problem backing up existing index! Aborting...\n");
              retVal = false;
    return retVal;
         * Class has a main so it can be run from the batch file
         * or a command line
         * @param args
         public static void main(String[] args) {
              if (args.length == 0) {
                   System.err.println("Usage: BuildPageIndex <path_to_cmt.xml_file>");
                   System.exit(0);
              BuildPageIndex bpi = new BuildPageIndex(args[0]);
              bpi.buildIndex();
              System.out.println(bpi.getOutput());
    +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    JSP snippet
    +++++++++++++++++++++++++++++++++++++++++++++
    <%
         BuildPageIndex bpi = new BuildPageIndex();
         bpi.buildIndex();
         String results = bpi.getOutput();
    %>
         <%=results%>

    Hi Zambak,
    It looks like you might need to give your JSP permission to delete the file that it is complaining about. One way to do this would be to add a FilePermission to the server's security policy file (located at <PE install dir>/domains/domain1/config/server.policy. Adding the following would grant file delete permissions to all files for all codebases...
    grant{
    permission java.io.FilePermission "<<ALL FILES>>", "delete";
    After modifying the policy file, you will need to restart the domain by executing the following...
    <PE install dir>/bin/asadmin stop-domain
    <PE install dir>/bin/asadmin start-domain
    It is also possible to further restrict permissions to certain codebases or further open the set of file permissions (adding write, read, delete for example). For more information on how to do this, please refer to the J2SE security documentation loacted at http://java.sun.com/j2se/1.4.2/docs/guide/security/permissions.html .

  • How to get the URL parameter value when navigating from JSP Page to portal

    Hi All,
    I have web Dynpro application with one button, while clicking that button It will navigate to JSP page as external window. In the JSP page I have a input field and Button.
    In the JSP page input field I will enter some values and press submit button, it will navigate to Portal page by passing some URL parameter with values.
    Once user entering to portal by default WD page displayed, the same WD page I try to get the URL Parameter which I have passed from JSP page, but I am not able to get the URL parameter value.
    If same application running in without portal, I can able to get the URL parameter values. I am getting the URL parameter by interface view default inbound plug parameter.
    How do we resolve this problem?
    Regards,
    Boopathi M

    Hi
    Please try  these link might helpful for you
    1.[How to call WebDynPro application from JSP |/thread/452762 [original link is broken];
    2.[How to get the previous page url from abstract portal component? |/thread/1289256 [original link is broken];
    3.[how to launch and pass a parameter |/thread/5537 [original link is broken];
    Best Regards
    Satish Kumar

  • Session State is set to null when tab (from List) is clicked

    Hi Gurus, et al,
    Database: 10g Rel 2
    APEX: 4.1.2
    My application uses a tabbed navigation list to tab through different sections of the form. Each tab issues a doSubmit('tabname');. My application also uses Page 0 for regions that are common to several forms. When I tab through the form (called requisition), the session state for the page items is set to null while the page 0 remains intact. It seems like the doSubmit sets the page items to null. How can I prevent this from happening?
    Also, it still happens on APEX 4.2.1 because I put the application on APEX.ORACLE.COM:
    Workspace: RGWORK
    Application: CSRSR (Application 60220)
    Page: 8
    Username: tester
    Password: test123
    Please follow these steps for this issue to occur
    1. Run application 60220
    2. Select the only choice on the menu (Creative Services Design Requisition (PA 0879))
    3. List of Outstanding Requisitions is displayed
    4. Click the edit icon next to the requisition Project Description is 'zazaza'
    5. Change Date Needed to 3/31/2013
    6. Click on the Project Type tab
    7. All items are null for that tab (project type in the database = 'frame:dec')
    Robert
    http://apexjscss.blogspot.com

    Denes,
    While I appreciate your professional opinion, the issue still remains. I may not have the described the issue clearly. It seems that while the row is initially fetched (source type is only when null), project type and purpose items are not displayed initially with the infomation from the table when the appropriate tab is clicked. For example, while the row contains 'frame:dec' for project type, those checkboxes are checked on on the screen.
    The form is "complex" for the following reasons:
    1. Uses a wizard for new requisitions
    2. Uses tabs for updates
    3. Uses a Modal page to display outstanding requisitions for the user before the form is displayed
    4. Uses common regions (on page 0) with other pages (3 pages uses project information, delivery, requesting department, and chargecode regions.
    5. Authorized approvers popup list are populated
    6. Manual tabular form is used for framing information including collections
    I tried to uses application processes, application computations, package procedures and functions whenever possible.
    SOMEONE, PLEASE HELP!
    Robert
    http://apexjscss.blogspot.com

Maybe you are looking for

  • Can anyone recommend a second hard drive for my PowerPC G5

    Hi, Sorry if this question has been asked before but I need the answer in a hurry. I need to fit a second hard drive into my PowerPC G5 - and I have never done this before. I phoned a company to buy a drive and they said that there can be compatibili

  • IBook hard drive errors

    My brother's iBook G4 12" started freezing randomly, and when I tried to run disk utility it would give me lots and lots of errors. Apple Hardware Test spit some errors which I don't remember (unfortunately), and then the hard drive stopped showing u

  • Re: Re Support request to KCCC

    In 2010 KCCC my employer, procured licensed Windows  Server 2008 OS from a vendor who has now closed the company, now coming to 3 years since date of closing. Mid this year our Windows Server System untimely closed down! In the process of recovering

  • EXCEL Run Time Engine ?

    I'm using one of the vi that ships w LV7.1.  It basically reads in an EXCEL file.  I'm also using the Report Generation ToolKit to write the final report data of the UUT.  Do I need MS Excel installed on my target machine ??  Is there such a thing as

  • Can anybody please help me with an Elements 10 problem?

    I have been using Elements for several years now. Progressing from 5 to 7 then onto 10 without any problems of this type. The original start up screen showed the first few thumbnails of all the photo's in the catalogue from where I could scroll down