Migration Error - JTEAM please respond!

Im trying to migrate rc1 to rc production.....
Some of my pages work but am getting an application error on this page
It is an Application error - no further information. When I remove the sWhereClause and the assignment of this
sWhereClause, my page works so this is obviously the problem, this works in RC1 but why not in rc2????
Please HELP!!!!
<%@ page errorPage="errorpage.jsp" contentType="text/html;charset=WINDOWS-1252"%>
<%@ taglib uri="/webapp/DataTags.tld" prefix="jbo" %>
<%@ taglib uri="http://xmlns.oracle.com/uix/ui/bc4j" prefix="bc4juix" %>
<%@ taglib uri="http://xmlns.oracle.com/uix/ui" prefix="uix" %>
<jbo:ApplicationModule configname="anteDatePackage.AnteDatePackageModule.AnteDatePackageModuleLocal" id="app1" />
<%-- Define Application Module and DataSource--%>
<%
session.setAttribute("currentPage", "InqProfileDetail.jsp");
String sSin = (String)session.getAttribute("sessSin") ;
String sWhereClause = "sin='";
if ( (sSin == null) || (sSin == "") )
sWhereClause += "999'";
else
sWhereClause =sWhereClause+ sSin + "'";
%>
<jbo:DataSource id="ds1" appid="app1" whereclause="<%=sWhereClause%>" viewobject="AdclientView" rangesize="4" />
<jbo:Row id="CurrentRow" datasource="ds1" action="Current">
<%
String sRowKey = request.getParameter("RowKey");
oracle.jbo.Row row = ds1.getRowSet().getCurrentRow();
String sRevReq1997 = "0";
String sRevReq1998 = "0";
String sRevReq1999 = "0";
String sRevReq2000 = "0";
String sRevReq2001 = "0";
String sPosAnte1997 = "0";
String sPosAnte1998 = "0";
String sPosAnte1999 = "0";
String sPosAnte2000 = "0";
String sPosAnte2001 = "0";
String sFormalAnte1997 = "0";
String sFormalAnte1998 = "0";
String sFormalAnte1999 = "0";
String sFormalAnte2000 = "0";
String sFormalAnte2001 = "0";
String sTags = "0";
// if our current row is null, goto the first row
if(row != null)
sRowKey = row.getKey().toStringFormat(true);
sRevReq1997 = row.getAttribute("ReviewRequested1997").toString();
sRevReq1998 = row.getAttribute("ReviewRequested1998").toString();
sRevReq1999 = row.getAttribute("ReviewRequested1999").toString();
sRevReq2000 = row.getAttribute("ReviewRequested2000").toString();
sRevReq2001 = row.getAttribute("ReviewRequested2001").toString();
sPosAnte1997 = row.getAttribute("PossibleAntedate1997").toString();
sPosAnte1998 = row.getAttribute("PossibleAntedate1998").toString();
sPosAnte1999 = row.getAttribute("PossibleAntedate1999").toString();
sPosAnte2000 = row.getAttribute("PossibleAntedate2000").toString();
sPosAnte2001 = row.getAttribute("PossibleAntedate2001").toString();
sFormalAnte1997 = row.getAttribute("FormalAntedate1997").toString();
sFormalAnte1998 = row.getAttribute("FormalAntedate1998").toString();
sFormalAnte1999 = row.getAttribute("FormalAntedate1999").toString();
sFormalAnte2000 = row.getAttribute("FormalAntedate2000").toString();
sFormalAnte2001 = row.getAttribute("FormalAntedate2001").toString();
sTags = row.getAttribute("Tags").toString();
%>
<jbo:OnEvent name="Update" >
<jbo:Row id="EditRow" datasource="ds1" rowkey="<%= sRowKey %>" action="Update">
<jbo:SetAttribute datasource="ds1" dataitem="*" />
<jbo:PostChanges appid="app1"/>
<jbo:Commit appid="app1"/>
<%
sRevReq1997 = row.getAttribute("ReviewRequested1997").toString();
sRevReq1998 = row.getAttribute("ReviewRequested1998").toString();
sRevReq1999 = row.getAttribute("ReviewRequested1999").toString();
sRevReq2000 = row.getAttribute("ReviewRequested2000").toString();
sRevReq2001 = row.getAttribute("ReviewRequested2001").toString();
sPosAnte1997 = row.getAttribute("PossibleAntedate1997").toString();
sPosAnte1998 = row.getAttribute("PossibleAntedate1998").toString();
sPosAnte1999 = row.getAttribute("PossibleAntedate1999").toString();
sPosAnte2000 = row.getAttribute("PossibleAntedate2000").toString();
sPosAnte2001 = row.getAttribute("PossibleAntedate2001").toString();
sFormalAnte1997 = row.getAttribute("FormalAntedate1997").toString();
sFormalAnte1998 = row.getAttribute("FormalAntedate1998").toString();
sFormalAnte1999 = row.getAttribute("FormalAntedate1999").toString();
sFormalAnte2000 = row.getAttribute("FormalAntedate2000").toString();
sFormalAnte2001 = row.getAttribute("FormalAntedate2001").toString();
sTags = row.getAttribute("Tags").toString();
%>
</jbo:Row>
</jbo:OnEvent>
<jsp:include flush="true" page="GlobalDefs.jsp">
<jsp:param name="myTabIndex" value="0"/>
<jsp:param name="myHeaderIndex" value="0"/>
</jsp:include>
<%-- user interface begins here --%>
<HTML>
<HEAD>
<TITLE>Client Profile Edit</TITLE>
<uix:styleSheet/>
</HEAD>
<BODY>
<uix:pageLayout>
<uix:globalButtons>
<uix:ref refID="AnteDateButtonBar" ></uix:ref>
</uix:globalButtons>
<uix:tabs>
<uix:ref refID="AnteDateTabBar" ></uix:ref>
</uix:tabs>
<uix:pageHeader>
<uix:ref refID="AnteDateGlobalHeader" ></uix:ref>
</uix:pageHeader>
<uix:copyright>
<uix:styledText text="Copyright Human Resources Development Canada" />"
</uix:copyright>
<%-- Main page contents go here --%>
<uix:contents>
<uix:form name="clientForm" method="POST">
<uix:submitButton name="jboEvent" text="Update" formName="clientForm" value="Update" />
<uix:spacer width="10"></uix:spacer>
<uix:contentContainer text="Mailing Address" width="100%" background="light">
<uix:labeledFieldLayout columns="2" width="100%">
<bc4juix:LabelStyledText datasource="ds1" dataitem="Firstname"/>
<bc4juix:RenderValue datasource="ds1" dataitem="Firstname"/>
<bc4juix:LabelStyledText datasource="ds1" dataitem="Newfirstname"/>
<bc4juix:InputRender datasource="ds1" dataitem="Newfirstname"/>
<bc4juix:LabelStyledText datasource="ds1" dataitem="Surname"/>
<bc4juix:RenderValue datasource="ds1" dataitem="Surname"/>
<bc4juix:LabelStyledText datasource="ds1" dataitem="Newsurname"/>
<bc4juix:InputRender datasource="ds1" dataitem="Newsurname"/>
<bc4juix:LabelStyledText datasource="ds1" dataitem="Deceased"/>
<bc4juix:RenderValue datasource="ds1" dataitem="Deceased"/>
<bc4juix:LabelStyledText datasource="ds1" dataitem="Newdeceased"/>
<bc4juix:InputRender datasource="ds1" dataitem="Newdeceased"/>
<bc4juix:LabelStyledText datasource="ds1" dataitem="Address11"/>
<bc4juix:RenderValue datasource="ds1" dataitem="Address11"/>
<bc4juix:LabelStyledText datasource="ds1" dataitem="Newaddress1"/>
<bc4juix:InputRender datasource="ds1" dataitem="Newaddress1"/>
<bc4juix:LabelStyledText datasource="ds1" dataitem="Address12"/>
<bc4juix:RenderValue datasource="ds1" dataitem="Address12"/>
<bc4juix:LabelStyledText datasource="ds1" dataitem="Newaddress2"/>
<bc4juix:InputRender datasource="ds1" dataitem="Newaddress2"/>
<bc4juix:LabelStyledText datasource="ds1" dataitem="Address13"/>
<bc4juix:RenderValue datasource="ds1" dataitem="Address13"/>
<bc4juix:LabelStyledText datasource="ds1" dataitem="Newaddress3"/>
<bc4juix:InputRender datasource="ds1" dataitem="Newaddress3"/>
<bc4juix:LabelStyledText datasource="ds1" dataitem="Postalcd1"/>
<bc4juix:RenderValue datasource="ds1" dataitem="Postalcd1"/>
<bc4juix:LabelStyledText datasource="ds1" dataitem="Newpostalcd1"/>
<bc4juix:InputRender datasource="ds1" dataitem="Newpostalcd1"/>
<bc4juix:LabelStyledText datasource="ds1" dataitem="Phone1"/>
<bc4juix:RenderValue datasource="ds1" dataitem="Phone1"/>
<bc4juix:LabelStyledText datasource="ds1" dataitem="Newphone1"/>
<bc4juix:InputRender datasource="ds1" dataitem="Newphone1"/>
</uix:labeledFieldLayout>
</uix:contentContainer>
<uix:spacer width="10"></uix:spacer>
<uix:contentContainer text="Office Information" width="100%" background="light">
<uix:labeledFieldLayout columns="2" width="95%">
<bc4juix:LabelStyledText datasource="ds1" dataitem="Localoffice"/>
<bc4juix:RenderValue datasource="ds1" dataitem="Localoffice"/>
<bc4juix:LabelStyledText datasource="ds1" dataitem="Newlocaloffice"/>
<bc4juix:InputRender datasource="ds1" dataitem="Newlocaloffice"/>
<bc4juix:LabelStyledText datasource="ds1" dataitem="Hrcc"/>
<bc4juix:RenderValue datasource="ds1" dataitem="Hrcc"/>
<bc4juix:LabelStyledText datasource="ds1" dataitem="Newhrcc"/>
<bc4juix:InputRender datasource="ds1" dataitem="Newhrcc"/>
</uix:labeledFieldLayout>
</uix:contentContainer>
<%-- Mail In Date section --%>
<uix:spacer width="10"></uix:spacer>
<uix:contentContainer text="Mail-in Dates" width="100%" background="light">
<uix:labeledFieldLayout columns="2" width="95%">
<bc4juix:LabelStyledText datasource="ds1" dataitem="NotificationSent"/>
<bc4juix:RenderValue datasource="ds1" dataitem="NotificationSent"/>
<bc4juix:LabelStyledText datasource="ds1" dataitem="SubNotificationSent"/>
<bc4juix:InputRender datasource="ds1" dataitem="SubNotificationSent"/>
</uix:labeledFieldLayout>
</uix:contentContainer>
<%-- tags Section --%>
<uix:spacer width="10"></uix:spacer>
<uix:contentContainer text="TAGS" width="100%" background="light">
<uix:labeledFieldLayout columns="1" width="40%">
<bc4juix:LabelStyledText datasource="ds1" dataitem="Tags"/>
<uix:choice name="Tags" selectedValue ="<%= sTags %>" >
<uix:contents>
<uix:ref refID="OptionTag" />
</uix:contents>
</uix:choice>
</uix:labeledFieldLayout>
</uix:contentContainer>
<%-- Returned Claimant Section --%>
<uix:spacer width="10"></uix:spacer>
<uix:contentContainer text="Returned Claimant Information" width="100%" background="light">
<uix:labeledFieldLayout columns="1" width="40%">
<bc4juix:LabelStyledText datasource="ds1" dataitem="ReturnedByClaimant"/>
<bc4juix:InputRender datasource="ds1" dataitem="ReturnedByClaimant"/>
</uix:labeledFieldLayout>
<uix:labeledFieldLayout columns="5" width="50%">
<bc4juix:LabelStyledText datasource="ds1" dataitem="ReviewRequested1997"/>
<uix:choice name="ReviewRequested1997" selectedValue ="<%= sRevReq1997 %>" >
<uix:ref refID="OptionsYesNo" ></uix:ref>
</uix:choice>
<bc4juix:LabelStyledText datasource="ds1" dataitem="ReviewRequested1998"/>
<uix:choice name="ReviewRequested1998" selectedValue ="<%= sRevReq1998 %>">
<uix:ref refID="OptionsYesNo" ></uix:ref>
</uix:choice>
<bc4juix:LabelStyledText datasource="ds1" dataitem="ReviewRequested1999"/>
<uix:choice name="ReviewRequested1999" selectedValue ="<%= sRevReq1999 %>">
<uix:ref refID="OptionsYesNo" ></uix:ref>
</uix:choice>
<bc4juix:LabelStyledText datasource="ds1" dataitem="ReviewRequested2000"/>
<uix:choice name="ReviewRequested2000" selectedValue ="<%= sRevReq2000 %>">
<uix:ref refID="OptionsYesNo" ></uix:ref>
</uix:choice>
<bc4juix:LabelStyledText datasource="ds1" dataitem="ReviewRequested2001"/>
<uix:choice name="ReviewRequested2001" selectedValue ="<%= sRevReq2001 %>">
<uix:ref refID="OptionsYesNo" ></uix:ref>
</uix:choice>
</uix:labeledFieldLayout>
</uix:contentContainer>
<%-- Assessment Letter Sent --%>
<uix:spacer width="10"></uix:spacer>
<uix:contentContainer text="Assessment Letter Informtion" width="100%" background="light">
<uix:labeledFieldLayout columns="1" width="50%">
<bc4juix:LabelStyledText datasource="ds1" dataitem="AssessmentLetterSent"/>
<bc4juix:InputRender datasource="ds1" dataitem="AssessmentLetterSent"/>
</uix:labeledFieldLayout>
<uix:labeledFieldLayout columns="5" width="50%">
<bc4juix:LabelStyledText datasource="ds1" dataitem="PossibleAntedate1997"/>
<uix:choice name="PossibleAntedate1997" selectedValue ="<%= sPosAnte1997 %>">
<uix:ref refID="OptionsYesNo" ></uix:ref>
</uix:choice>
<bc4juix:LabelStyledText datasource="ds1" dataitem="PossibleAntedate1998"/>
<uix:choice name="PossibleAntedate1998" selectedValue ="<%= sPosAnte1998 %>">
<uix:ref refID="OptionsYesNo" ></uix:ref>
</uix:choice>
<bc4juix:LabelStyledText datasource="ds1" dataitem="PossibleAntedate1999"/>
<uix:choice name="PossibleAntedate1999" selectedValue ="<%= sPosAnte1999 %>">
<uix:ref refID="OptionsYesNo" ></uix:ref>
</uix:choice>
<bc4juix:LabelStyledText datasource="ds1" dataitem="PossibleAntedate2000"/>
<uix:choice name="PossibleAntedate2000" selectedValue ="<%= sPosAnte2000 %>">
<uix:ref refID="OptionsYesNo" ></uix:ref>
</uix:choice>
<bc4juix:LabelStyledText datasource="ds1" dataitem="PossibleAntedate2001"/>
<uix:choice name="PossibleAntedate2001" selectedValue ="<%= sPosAnte2001 %>">
<uix:ref refID="OptionsYesNo" ></uix:ref>
</uix:choice>
</uix:labeledFieldLayout>
</uix:contentContainer>
<%-- Formal Request Informtion --%>
<uix:spacer width="10"></uix:spacer>
<uix:contentContainer text="Formal Request Informtion" width="100%" background="light">
<uix:labeledFieldLayout columns="1" width="50%">
<bc4juix:LabelStyledText datasource="ds1" dataitem="FormalAntedateRequested"/>
<bc4juix:InputRender datasource="ds1" dataitem="FormalAntedateRequested"/>
</uix:labeledFieldLayout>
<uix:labeledFieldLayout columns="5" width="50%">
<bc4juix:LabelStyledText datasource="ds1" dataitem="FormalAntedate1997"/>
<uix:choice name="FormalAntedate1997" selectedValue ="<%= sFormalAnte1997 %>">
<uix:ref refID="OptionsYesNo" ></uix:ref>
</uix:choice>
<bc4juix:LabelStyledText datasource="ds1" dataitem="FormalAntedate1998"/>
<uix:choice name="FormalAntedate1998" selectedValue ="<%= sFormalAnte1998 %>">
<uix:ref refID="OptionsYesNo" ></uix:ref>
</uix:choice>
<bc4juix:LabelStyledText datasource="ds1" dataitem="FormalAntedate1999"/>
<uix:choice name="FormalAntedate1999" selectedValue ="<%= sFormalAnte1999 %>">
<uix:ref refID="OptionsYesNo" ></uix:ref>
</uix:choice>
<bc4juix:LabelStyledText datasource="ds1" dataitem="FormalAntedate2000"/>
<uix:choice name="FormalAntedate2000" selectedValue ="<%= sFormalAnte2000 %>">
<uix:ref refID="OptionsYesNo" ></uix:ref>
</uix:choice>
<bc4juix:LabelStyledText datasource="ds1" dataitem="FormalAntedate2001"/>
<uix:choice name="FormalAntedate2001" selectedValue ="<%= sFormalAnte2001 %>">
<uix:ref refID="OptionsYesNo" ></uix:ref>
</uix:choice>
</uix:labeledFieldLayout>
</uix:contentContainer>
<uix:spacer width="10"></uix:spacer>
<uix:contentContainer text="IPOC" width="100%" background="light">
<uix:labeledFieldLayout columns="1" width="30%">
<bc4juix:LabelStyledText datasource="ds1" dataitem="ForwaredIpoc"/>
<bc4juix:InputRender datasource="ds1" dataitem="ForwaredIpoc"/>
</uix:labeledFieldLayout>
</uix:contentContainer>
<uix:spacer width="10"></uix:spacer>
<uix:contentContainer text="Comments" width="100%" background="light">
<uix:labeledFieldLayout columns="1" width="50%">
<bc4juix:InputRender datasource="ds1" dataitem="Comments"/>
</uix:labeledFieldLayout>
</uix:contentContainer>
<uix:spacer width="10"></uix:spacer>
<uix:contentContainer text="IPOC" width="100%" background="light">
<uix:labeledFieldLayout columns="1" width="30%">
<bc4juix:LabelStyledText datasource="ds1" dataitem="ReceivedIpoc"/>
<bc4juix:InputRender datasource="ds1" dataitem="ReceivedIpoc"/>
</uix:labeledFieldLayout>
</uix:contentContainer>
<uix:spacer width="10"></uix:spacer>
<uix:formValue name="RowKey" value='<%=request.getParameter("RowKey")%>' />
<uix:submitButton name="jboEvent" text="Update" formName="clientForm" value="Update" />
</uix:form>
</uix:contents>
</uix:pageLayout>
</BODY>
</HTML>
</jbo:Row>
<jbo:ReleasePageResources releasemode="Stateful" />

Since you dont provide any information regarding the error. I recommend that you debug the page and setup a breakpoint the the exception that is generated. This will give you enough contextual information to provide to us so we can help.

Similar Messages

  • Migration Error from Access to Oracle through SQL Developer.

    Hi,
    Actually I am trying to migrate data from MS Access 2002 to Oracle 9i database through the SQL Developer. But Whenever I go to Capture Database from Access it will show me an error.... Invalid procedure Call and then it shows an error message... >>>>>>
    ShowSplashScreen("_OracleSplashScreen",3)
    after that i wont be able to do this task anymore..... So please help me get out of it... How Cam I Maigrate data from Access to Oracle 9i...
    Is any other tool i use or you can help me for this tool to migrate date...
    Please tell me..
    If yu can send me a mail then mail me on [email protected]
    regards,
    Vishal

    Hi Vishal,
    I have responded to your related thread on the Migration Workbench forum - Migration Error from Access to Oracle through SQL Developer.
    Regards,
    Hilary

  • Exchange Receive Connector Temporary Server Error. Please Try again later. PRX4

    Hi , 
    I installated Exchange server 2013 on Windows 2012 R2 Servers.. 
    Topology ; 
    1 Active Directory Server : Windows 2012 r2 all updates installed. 
    1 Exchange 2013 Server : Windows 2012 r2 all updates installed.
    I configured send Connector settings and I checked Receive connectors Default Frontend Exchange settings. Anonymous users is ok and don't have any problem.
    When I send mail Exchange -> Internet  mail goes. this is ok. 
    But when I send mail Internet -> Exchange I am getting this error ; 
    Message or connection acked with status Retry and response 451 4.4.0 Primary target IP address responded with: ""501 5.5.4 Required arguments not present."" Attempted failover to alternate host, but that did not succeed. Either there
    are no alternate hosts, or delivery failed to all alternate hosts. The last endpoint attempted was xxx.xxx.xxx.xxx:2525
    telnet results are below ; 
    220 exchange.bulut.email Microsoft ESMTP MAIL Service ready at Tue, 30 Dec 2014
    14:12:19 +0200
    EHLO bulut.email                      250-exchange.bulut.email Hello [xxxxxxxxxxxxxxxxx]
    250-SIZE 37748736
    250-PIPELINING
    250-DSN
    250-ENHANCEDSTATUSCODES
    250-STARTTLS
    250-X-ANONYMOUSTLS
    250-AUTH NTLM
    250-X-EXPS GSSAPI NTLM
    250-8BITMIME
    250-BINARYMIME
    250-CHUNKING
    250 XRDST
    MAIL FROM:[email protected]                     250 2.1.0 Sender OK
    RCPT TO:[email protected] NOTIFY=success,failure                 250 2.1.5 Recipient OK
    DATA354 Start mail input; end with <CRLF>.<CRLF>
    Subject: Test from Contosoa
    This is a test message
    451 4.7.0 Temporary server error. Please try again later. PRX4
    QUIT                                221 2.0.0 Service closing transmission channel
    Thanks. Regards.

    Hi,
    If the CAS and MBX servers are collocated on the same server the SMTP Receive connection for the Transport service will listen on 2525 instead of 25. This is because two services (FET and Transport Service) can’t listen on the same port.
    Refer from this article:
    http://blogs.technet.com/b/rischwen/archive/2013/03/13/exchange-2013-mail-flow-demystified-hopefully.aspx
    Please try to create an endpoint for 2525 on default receive connector to test mail flow by the following steps:
    EAC -> mail flow -> receive connectors -> Default EXCHANGE
    Click Edit then click scoping tab.
    Under Network adapter bindings, click
    add button to create port 2525 for all available Ipv4/Ipv6 addresses.
    Best Regards.

  • Download error server not responding

    I keep getting a download error "server not responding correctly" when I try to download creative cloud.  I had it on my old system, buy now I've installed a new hard drive and can't get creative cloud downloaded.

    Please read, and reply back here with information https://forums.adobe.com/thread/1499014
    -try some steps such as changing browsers and turning off your firewall
    -also flush your browser cache so you are starting with a fresh browser
    http://myleniumerrors.com/installation-and-licensing-problems/creative-cloud-error-codes-w ip/
    http://helpx.adobe.com/creative-cloud/kb/failed-install-creative-cloud-desktop.html
    or
    A chat session where an agent may remotely look inside your computer may help
    Creative Cloud chat support (all Creative Cloud customer service issues)
    http://helpx.adobe.com/x-productkb/global/service-ccm.html

  • OATM Migration Error Report

    Hi,
    I am trying to migrate to OATM on my 11.5.9.2 apps before upgrading to R12.
    OATM migration progress report is showing
    Total No. Commands Commands % completion
    of commands in error in success of migration
    80,180 5 80,037 99.82%
    When i checked for the errors, it is showing below error report.
    Migration Error
    AMR AMR_GMD_SAMPLES_N2 INDEX X
    ORA-01950: no privileges on tablespace 'APPS_TS_TX_IDX'
    AMR AMR_GMF_LOT_COST_DETAILS_N1 INDEX X
    ORA-01950: no privileges on tablespace 'APPS_TS_TX_IDX'
    APPLSYS WF_LOCAL_USER_ROLES TABLE HZ_PARTY
    ORA-12801: error signaled in parallel query server P001
    ORA-01578: ORACLE data block corrupted (file # 445, block # 195035)
    ORA-01110: data file 445: '/u01/orauat/uatdata/uat/applsysd14.dbf'
    ORA-26040: Data block was loaded using the NOLOGGING option
    Please help.
    Thanks,

    > Migration Error                                                               
    > ------------------------------------------------------------------------------------------------------------------------------------
    > AMR     AMR_GMD_SAMPLES_N2             INDEX      X                           
    > ORA-01950: no privileges on tablespace 'APPS_TS_TX_IDX'                       
    Please run this command and see if it helps.
    SQL> alter user AMR quota unlimited on APPS_TS_TX_IDX;
    ORA-01950 Error While Executing Initial Build of Opportunities and Leads Bins [ID 309664.1]
    ORA-01950 AND ORA-06512 TRYING TO OPEN PERIOD [ID 1058205.6
    > APPLSYS WF_LOCAL_USER_ROLES            TABLE      HZ_PARTY                    
    > ORA-12801: error signaled in parallel query server P001                       
    > ORA-01578: ORACLE data block corrupted (file # 445, block # 195035)           
    > ORA-01110: data file 445: '/u01/orauat/uatdata/uat/applsysd14.dbf'            
    > ORA-26040: Data block was loaded using the NOLOGGING option
    Workflow Tables: ORA-01578: ORACLE data block corrupted ORA-26040: Data block was loaded using the NOLOGGING option [ID 416476.1]
    How Block Corruption of Workflow Tables Can Cause Self Service Login Not to Work [ID 435523.1]
    During a Backup, WF_LOCAL_ROLES Is Showing Corrupt Block [ID 369535.1]
    Partitions in Workflow Local Tables are Automatically Switched to NOLOGGING [ID 433280.1]
    Thanks,
    Hussein                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • 451 4.7.0 Temporary server error. Please try again later. PRX5

    I've noticed that on occassion when I connect to my Exchange 2013 CU 1 server, the server will respond with "451 4.7.0 Temporary server error. Please try again later. PRX5" after I submit an e-mail for delivery.  It accepts the sender, verifies
    the recipient, asks for data and fails only upon submission.  Trying again right after the failure usually takes care of the problem what that's not a fix.  What's causing the problem? Anyone else seen this?

    whohoo, i FINALLY figured it out - and what can i say? the cause was another hickup of the ECP, i would call it a bug but what do i know? ;)
    turns out that ex2013 has huge problems when you leave the DNS lookups setting in the server properties to "All network adapters", instead you should select a specific NIC or enter the IPs of your DNS servers manually. well, this is mentioned in numerous threads
    all over the forums and obviously for many people, that was the solution.
    BUT...i still had no mail flow after setting the DNS servers manually and my logs still filled up with DNS errors. in the end it turned out that the setting in the ECP only configures the transport service, but NOT the the frontend transport service. you can
    easily check this with get-transportservice and get-frontendtransportservice and looking at the ExternalDNS and InternalDNS settings...sure enough, for me only the Transport Service had the configuration applied that i set in the ECP.
    so, i configured set-frontendtransportservice with the same DNS settings as the transport service, and finally my mailflow is working...i can hardly believe it, and i can't believe that i found literally nothing about this behavior/bug of the ECP on the net.
    so, this is my solution - maybe it helps someone else :)

  • Help! "4.7.0 Temporary server error. Please try again later. PRX4"

    I am in the process of migrating a single Exchange 2013 install (CAS+MBX co-located) to two separate installs, a CAS and MBX server. Mail has been flowing in via my new CAS for around a week now, I had altered DNS and IPs for this. Yesterday I migrated
    the last mailboxes off the old server and then un-installed Exchange, which appeared to happen cleanly and without issue. I am now facing an issue where my CAS server will not receive emails, reporting "4.7.0
    Temporary server error. Please try again later. PRX4" when I try to send an email. If I send emails directly to the MBX server, they arrive without issue.
    This was working before I removed the old Exchange server. Any ideas? I'm really stuck here.

    Hello,
    Please use the following test tool to check the root cause:
    https://testconnectivity.microsoft.com/
    Thanks,
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Simon Wu
    TechNet Community Support

  • TS1717 i can't open iTunes. error 1712. please help

    i can't open iTunes. error 1712. please help

    http://www.ehmac.ca/all-ios-iphone-ipad-ipod-touch-apple-tv-itunes/98949-itunes- will-not-open-1712-a.html
    This happened to me too. The secret was: it's already opened. But the application is not responding. I right-mouse clicked the icon on my dock and Force Quit it. Reopened it and done.

  • I did not purchase this,I only ordered a song,this was done in error. Please remove charge. I was trying to get to my account on iTunes on my cell phone. I did not see charge on my bank account and was not at home to look it up on my PC

    I did not purchase this,I only ordered a song,this was done in error. Please remove charge. I was trying to get to my account on iTunes on my cell phone. I did not see charge on my bank account and was not at home to look it up on my PC. I kept getting error message on my PC -error 303..Thanks 

    Contact iTunes. You are not talking to Apple here. We are just other users like yourself. We can't help you and Apple will not respond.
    http://www.apple.com/support/itunes/contact/

  • I have need help with something Please respond Quickly :)

    I have need help with something Please respond Quickly  ok so i have the linksys wrt54g Version 2.2 and i upgraded the firmware to V4.21.4 from this site http://homesupport.cisco.com/en-us/wireless/lbc/WRT54G and i clicked V2.2 for the router. So after i upgraded i lost internet ability i can't use the internet so i had to downgrade back to V4.21.1 but i want the things that newer update sloves. Please Help. Everything thing says DNS error? aka Modem.
    $$Cgibbons$$

    Ya i tried that i tried restoring and redoing everything when i downgrade back to .1 it works fine though?
    $$Cgibbons$$

  • My iPad is disabled, connect to iTune, but when i connect to iTune, iTune showing to allow access please respond on iPad

    My iPad is disabled, connect to iTune, but when i connect to iTune, iTune showing to allow access please respond on iPad. but in long time it is not showing on device list of iTunes.
    can any one help me.

    How can I unlock my iPad if I forgot the passcode?
    http://www.everymac.com/systems/apple/ipad/ipad-troubleshooting-repair-faq/ipad- how-to-unlock-open-forgot-code-passcode-password-login.html
    iOS: Device disabled after entering wrong passcode
    http://support.apple.com/kb/ht1212
    How can I unlock my iPad if I forgot the passcode?
    http://tinyurl.com/7ndy8tb
    How to Reset a Forgotten Password for an iOS Device
    http://www.wikihow.com/Reset-a-Forgotten-Password-for-an-iOS-Device
    Using iPhone/iPad Recovery Mode
    http://ipod.about.com/od/iphonetroubleshooting/a/Iphone-Recovery-Mode.htm
    You may have to do this several times.
    Saw this solution on another post about an iPad in a school environment. Might work on your iPad so you won't lose everything.
    ~~~~~~~~~~~~~
    ‘iPad is disabled’ fix without resetting using iTunes
    Today I met my match with an iPad that had a passcode entered too many times, resulting in it displaying the message ‘iPad is disabled – Connect to iTunes’. This was a student iPad and since they use Notability for most of their work there was a chance that her files were not all backed up to the cloud. I really wanted to just re-activate the iPad instead of totally resetting it back to our default image.
    I reached out to my PLN on Twitter and had some help from a few people through retweets and a couple of clarification tweets. I love that so many are willing to help out so quickly. Through this I also learned that I look like Lt. Riker from Star Trek (thanks @FillineMachine).
    Through some trial and error (and a little sheer luck), I was able to reactivate the iPad without loosing any data. Note, this will only work on the computer it last synced with. Here’s how:
    1. Configurator is useless in reactivating a locked iPad. You will only be able to completely reformat the iPad using Configurator. If that’s ok with you, go for it – otherwise don’t waste your time trying to figure it out.
    2. Open iTunes with the iPad disconnected.
    3. Connect the iPad to the computer and wait for it to show up in the devices section in iTunes.
    4. Click on the iPad name when it appears and you will be given the option to restore a backup or setup as a new iPad (since it is locked).
    5. Click ‘Setup as new iPad’ and then click restore.
    6. The iPad will start backing up before it does the full restore and sync. CANCEL THE BACKUP IMMEDIATELY. You do this by clicking the small x in the status window in iTunes.
    7. When the backup cancels, it immediately starts syncing – cancel this as well using the same small x in the iTunes status window.
    8. The first stage in the restore process unlocks the iPad, you are basically just canceling out the restore process as soon as it reactivates the iPad.
    If done correctly, you will experience no data loss and the result will be a reactivated iPad. I have now tried this with about 5 iPads that were locked identically by students and each time it worked like a charm.
    ~~~~~~~~~~~~~
    Try it and good luck. You have nothing more to lose if it doesn't work for you.
    ~~~~~~~~~~~~~
    iPad not appearing in iTunes
    http://www.apple.com/support/ipad/assistant/itunes/
    iOS: Device not recognized in iTunes for Mac OS X
    http://support.apple.com/kb/TS1591
    iOS: Device not recognized in iTunes for Windows
    http://support.apple.com/kb/TS1538
    iTunes for Windows: iTunes can’t contact the iPhone, iPad, or iPod software update server
    http://support.apple.com/kb/ts1814
    windows 8.1 itunes wont recognize ipad
    https://discussions.apple.com/thread/5697247?start=0&tstart=0
    Look at the solution in this link
    https://discussions.apple.com/thread/5697247?start=75&tstart=0
    iTunes for Windows: Device Sync Tests
    http://support.apple.com/kb/HT4235
    IOS: Syncing with iTunes
    http://support.apple.com/kb/HT1386
    Apple - Support - iPad - Syncing
    http://www.apple.com/support/ipad/syncing/
    iTunes 10.5 and later: Troubleshooting iTunes Wi-Fi Syncing
    http://support.apple.com/kb/ts4062
    iOS: “Not enough free space” alert when trying to sync
    http://support.apple.com/kb/ts1503
    You may need to delete iTunes on your computer and then reinstall.
    How To Completely Uninstall and Remove All Traces of iTunes
    http://zardozz.com/zz/2008/04/how-to-completely-uninstall-and-remove-all-traces- of-itunes.html/
    Wi-Fi Sync Not Working? Here’s How to Fix it for All iOS Devices
    http://osxdaily.com/2013/02/17/wi-fi-sync-not-working-fix-ios/
     Cheers, Tom

  • Photoshop Elements 8. "Could not use Clone Stamp Tool because of a program error."  Please help.

    Photoshop Elements 8.  "Could not use Clone Stamp Tool because of a program error."  Please help.

    Try this:
    Open your picture file
    Access the clone stamp tool
    Hold down the ALT key on the keyboard and left click on the area from which you wish to clone, then release the ALT key, and click to place the pixels at the destination
    TIPS:
    It is a good idea to open a blank layer at the top in the layers palette, and do the cloning on this layer. Be sure that "sample all layers" at the top is checked. You can change the layer opacity if necessary
    Use the bracket keys next to the letter p on the keyboard to increase & decrease the size of the cursor
    Let us know  how you make out with the error message now.

  • I am unable to dial India toll free numbers from my iphone, these numbers are like 1800-***-1515. There is nothing as dial assist in Ios7.1.1 which i can disable and dial in india toll free numbers.Please respond if anyone has any solution

    I am unable to dial India toll free numbers from my iphone, these numbers are like 1800-***-1515. There is nothing as dial assist in Ios7.1.1 which i can disable and dial in india toll free numbers.Please respond if anyone has any solution

    Check this post, the dial assist is part of the iOS 7.1, according to page 49 of the iphone_user_guide
    Make calls to your contacts and favorites while traveling abroad. (GSM) Go to Settings > Phone and turn on Dial Assist. Dial Assist automatically adds the prefix or country code for calls to the U.S.
    This user had a similar problem and solved it by switching off the dial assist feature in Settings/Phone/Dial Assist
    Re: How to save toll free no starts with 1800?

  • MII 14.0 SP4 :Migration error while importing SAP BM Templates

    Hi Experts,
    I am facing some migration errors while importing SAP Batch Manufacturing Templates into MII 14.0 SP4.
    There are almost 23 transactions which are not getting imported and the error message for all of them is-
    "Unable to migrate transaction Unable to import file
    <Name of the Transaction>"
    Any first hand experiences will be really helpful for me to proceed further.
    Regards,
    Muddassar Khan

    Hi All,
    Got the solution. The STARTUP.BAT file is been placed in the installation directory(usr/sap) and then it works fine. Also I have installed the patches and all working fine.
    Any way thanks for the answer christian libich.
    Regards
    G.Partheeban

  • My I-cloud says I have no devices set up even when i'm logged in to my apple , how do I fix this problem? Please respond quickly, I lost my ipod and even when I try to place it in lost mode it still won't recognize that I have a device. What do I do?

    My I-cloud says I have no devices set up even when i'm logged in to my apple ID account, how do I fix this problem? Please respond quickly, I lost my I-pod and even when I try to place it in lost mode it still won't recognize that I have a device. What do I do?

    If you did not set up find my iPhone on the iPod, you can't find it.

Maybe you are looking for

  • Import files as layers / Export video?

    Good day, Hope you guys can help me out: I'm racking my brain on another problem that should be easy, but I evidently lack the background knowledge to figure it out...I've been poring over menus and help files to no avail! Without taking a class on F

  • How do I add text to an image?

    I have purchased a template and imported it to Photoshop. I then sliced the template into sections, saved it for web and opened the index file in dreamweaver. My questions is, how do I add text to the images? I want to add the text content, within th

  • How to avoid wordbreak of japanese characters in adobe livecycle designer?

    I am using adobe livecycle designer to design the forms.while giving the japanese characters in the text field the word break occurs and goes to next line since it is multi byte character. I have to avoid it and display the whole word in the single l

  • HOW TO RESTRICT display COST CENTER LIST IN IT0001

    Hi All, I want to restrict view of cost centers in HR module (IT0001, IT0027, PP01). User shouldn't view other company code cost centers. Can anybody know Authorization Object OR any other solution ?. Thanks. KK.

  • Data Guard and FLASHBACK

    RDBMS Version : 11.2 Platform : Solaris 10 I've joined this new company. On Data guard related design documents I keep seeing FLASHBACK related stuff. Things like extra disk space requirements for setting up FLASHBACK DATABASE. What is this all about