Error while moving to another tab

Hi,
i am facing the below error when creating new record.
pressed create insert and entered some fields in pb3 and navigating to pb1 which is in tab showDetailItem 2. then i am getting the below error.
Messages for this page are listed below.
Attribute Descr in AppModule.GrpEmpView1 is required.  -- is in panel box pb3 -- mandatory field - value not given --
Attribute Descr1 in AppModule.GrpEmpView1 is required -- it is in panel box pb1-- mandatory field -- value provided -- but still error is giving Question - 1 : why the attributes are firing mandatory fileds validation as i dont have any autosubmit property to true for both items.?
Question - 2 : why the attribute Descr1 fired even the value is given?
Problem - 3 : i have MasterVor1 which is my main master & i want hint user to commit the chnages while navigating to another record. how can i achieve this?
please see the code below which i used for my page
<?xml version='1.0' encoding='UTF-8'?>
<jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
          xmlns:f="http://java.sun.com/jsf/core"
          xmlns:h="http://java.sun.com/jsf/html"
          xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
  <jsp:directive.page contentType="text/html;charset=UTF-8"/>
  <f:view>
    <af:document id="d1" binding="#{backingBeanScope.backing_empPage.d1}">
      <af:messages binding="#{backingBeanScope.backing_empPage.m1}" id="m1"/>
      <af:form id="f1" binding="#{backingBeanScope.backing_empPage.f1}">
        <af:panelSplitter binding="#{backingBeanScope.backing_empPage.ps1}"
                          id="ps1" orientation="vertical"
                          splitterPosition="100">
          <f:facet name="first">
            <af:panelCollection binding="#{backingBeanScope.backing_empPage.pc1}"
                                id="pc1">
              <f:facet name="menus"/>
              <f:facet name="toolbar"/>
              <f:facet name="statusbar"/>
              <af:table value="#{bindings.MasterVor1.collectionModel}" var="row"
                        rows="#{bindings.MasterVor1.rangeSize}"
                        emptyText="#{bindings.MasterVor1.viewable ? 'No data to display.' : 'Access Denied.'}"
                        fetchSize="#{bindings.MasterVor1.rangeSize}"
                        rowBandingInterval="0"
                        filterModel="#{bindings.MasterVor1Query.queryDescriptor}"
                        queryListener="#{bindings.MasterVor1Query.processQuery}"
                        filterVisible="true" varStatus="vs"
                        selectedRowKeys="#{bindings.MasterVor1.collectionModel.selectedRow}"
                        selectionListener="#{bindings.MasterVor1.collectionModel.makeCurrent}"
                        rowSelection="single"
                        binding="#{backingBeanScope.backing_empPage.t1}" id="t1"
                        width="288" inlineStyle="height:150px;">
                <af:column sortProperty="EmpCode" filterable="true"
                           sortable="true"
                           headerText="#{bindings.MasterVor1.hints.EmpCode.label}"
                           id="c2">
                  <af:inputText value="#{row.bindings.EmpCode.inputValue}"
                                label="#{bindings.MasterVor1.hints.EmpCode.label}"
                                required="#{bindings.MasterVor1.hints.EmpCode.mandatory}"
                                columns="#{bindings.MasterVor1.hints.EmpCode.displayWidth}"
                                maximumLength="#{bindings.MasterVor1.hints.EmpCode.precision}"
                                shortDesc="#{bindings.MasterVor1.hints.EmpCode.tooltip}"
                                id="it1">
                    <f:validator binding="#{row.bindings.EmpCode.validator}"/>
                    <af:convertNumber groupingUsed="false"
                                      pattern="#{bindings.MasterVor1.hints.EmpCode.format}"/>
                  </af:inputText>
                </af:column>
                <af:column sortProperty="EmpName" filterable="true"
                           sortable="true"
                           headerText="#{bindings.MasterVor1.hints.EmpName.label}"
                           id="c1">
                  <af:inputText value="#{row.bindings.EmpName.inputValue}"
                                label="#{bindings.MasterVor1.hints.EmpName.label}"
                                required="#{bindings.MasterVor1.hints.EmpName.mandatory}"
                                columns="#{bindings.MasterVor1.hints.EmpName.displayWidth}"
                                maximumLength="#{bindings.MasterVor1.hints.EmpName.precision}"
                                shortDesc="#{bindings.MasterVor1.hints.EmpName.tooltip}"
                                id="it2">
                    <f:validator binding="#{row.bindings.EmpName.validator}"/>
                  </af:inputText>
                </af:column>
              </af:table>
            </af:panelCollection>
          </f:facet>
          <f:facet name="second">
            <af:panelSplitter binding="#{backingBeanScope.backing_empPage.ps2}"
                              id="ps2" orientation="vertical"
                              splitterPosition="96">
              <f:facet name="first">
                <af:panelBox text="PanelBox1"
                             binding="#{backingBeanScope.backing_empPage.pb1}"
                             id="pb1" partialTriggers="pc1:t1">
                  <f:facet name="toolbar">
                    <af:group binding="#{backingBeanScope.backing_empPage.g1}"
                              id="g1">
                      <af:commandButton actionListener="#{bindings.CreateInsert.execute}"
                                        text="CreateInsert"
                                        disabled="#{!bindings.CreateInsert.enabled}"
                                        binding="#{backingBeanScope.backing_empPage.cb3}"
                                        id="cb3"/>
                      <af:commandButton actionListener="#{bindings.Rollback.execute}"
                                        text="Rollback" disabled="false"
                                        immediate="true"
                                        binding="#{backingBeanScope.backing_empPage.cb2}"
                                        id="cb2">
                        <af:resetActionListener/>
                      </af:commandButton>
                      <af:commandButton actionListener="#{bindings.Commit.execute}"
                                        text="Commit" disabled="false"
                                        binding="#{backingBeanScope.backing_empPage.cb1}"
                                        id="cb1" partialSubmit="false"/>
                    </af:group>
                  </f:facet>
                  <af:panelFormLayout binding="#{backingBeanScope.backing_empPage.pfl1}"
                                      id="pfl1" inlineStyle="width:377px;">
                    <af:inputText value="#{bindings.EmpCode.inputValue}"
                                  label="#{bindings.EmpCode.hints.label}"
                                  required="#{bindings.EmpCode.hints.mandatory}"
                                  columns="#{bindings.EmpCode.hints.displayWidth}"
                                  maximumLength="#{bindings.EmpCode.hints.precision}"
                                  shortDesc="#{bindings.EmpCode.hints.tooltip}"
                                  binding="#{backingBeanScope.backing_empPage.it3}"
                                  id="it3">
                      <f:validator binding="#{bindings.EmpCode.validator}"/>
                      <af:convertNumber groupingUsed="false"
                                        pattern="#{bindings.EmpCode.format}"/>
                    </af:inputText>
                    <af:inputText value="#{bindings.EmpName.inputValue}"
                                  label="#{bindings.EmpName.hints.label}"
                                  required="#{bindings.EmpName.hints.mandatory}"
                                  columns="#{bindings.EmpName.hints.displayWidth}"
                                  maximumLength="#{bindings.EmpName.hints.precision}"
                                  shortDesc="#{bindings.EmpName.hints.tooltip}"
                                  binding="#{backingBeanScope.backing_empPage.it4}"
                                  id="it4" autoSubmit="true">
                      <f:validator binding="#{bindings.EmpName.validator}"/>
                    </af:inputText>
                    <af:inputDate value="#{bindings.DateVar.inputValue}"
                                  label="#{bindings.DateVar.hints.label}"
                                  required="#{bindings.DateVar.hints.mandatory}"
                                  shortDesc="#{bindings.DateVar.hints.tooltip}"
                                  binding="#{backingBeanScope.backing_empPage.id1}"
                                  id="id1">
                      <f:validator binding="#{bindings.DateVar.validator}"/>
                      <af:convertDateTime pattern="#{bindings.DateVar.format}"/>
                    </af:inputDate>
                    <af:inputText value="#{bindings.Descr1.inputValue}"
                                  label="#{bindings.Descr1.hints.label}"
                                  required="#{bindings.Descr1.hints.mandatory}"
                                  columns="#{bindings.Descr1.hints.displayWidth}"
                                  maximumLength="#{bindings.Descr1.hints.precision}"
                                  shortDesc="#{bindings.Descr1.hints.tooltip}"
                                  binding="#{backingBeanScope.backing_empPage.it12}"
                                  id="it12">
                      <f:validator binding="#{bindings.Descr1.validator}"/>
                    </af:inputText>
                  </af:panelFormLayout>
                </af:panelBox>
              </f:facet>
              <f:facet name="second">
                <af:panelGroupLayout layout="scroll"
                                     xmlns:af="http://xmlns.oracle.com/adf/faces/rich"
                                     binding="#{backingBeanScope.backing_empPage.pgl1}"
                                     id="pgl1">
                  <af:panelTabbed binding="#{backingBeanScope.backing_empPage.pt1}"
                                  id="pt1">
                    <af:showDetailItem text="showDetailItem 1"
                                       binding="#{backingBeanScope.backing_empPage.sdi1}"
                                       id="sdi1" inlineStyle="width:1000.0px;">
                      <af:panelBox text="PanelBox2"
                                   binding="#{backingBeanScope.backing_empPage.pb2}"
                                   id="pb2" partialTriggers="pb1">
                        <f:facet name="toolbar">
                          <af:group binding="#{backingBeanScope.backing_empPage.g3}"
                                    id="g3">
                            <af:commandButton actionListener="#{bindings.Delete.execute}"
                                              text="Delete"
                                              disabled="#{!bindings.Delete.enabled}"
                                              binding="#{backingBeanScope.backing_empPage.cb6}"
                                              id="cb6"/>
                            <af:commandButton actionListener="#{bindings.CreateInsert1.execute}"
                                              text="CreateInsert1"
                                              disabled="#{!bindings.CreateInsert1.enabled}"
                                              binding="#{backingBeanScope.backing_empPage.cb7}"
                                              id="cb7"/>
                          </af:group>
                        </f:facet>
                        <af:table value="#{bindings.ReportingEmpView1.collectionModel}"
                                  var="row"
                                  rows="#{bindings.ReportingEmpView1.rangeSize}"
                                  emptyText="#{bindings.ReportingEmpView1.viewable ? 'No data to display.' : 'Access Denied.'}"
                                  fetchSize="#{bindings.ReportingEmpView1.rangeSize}"
                                  rowBandingInterval="0"
                                  filterModel="#{bindings.ReportingEmpView1Query.queryDescriptor}"
                                  queryListener="#{bindings.ReportingEmpView1Query.processQuery}"
                                  filterVisible="true" varStatus="vs"
                                  selectedRowKeys="#{bindings.ReportingEmpView1.collectionModel.selectedRow}"
                                  selectionListener="#{bindings.ReportingEmpView1.collectionModel.makeCurrent}"
                                  rowSelection="single"
                                  binding="#{backingBeanScope.backing_empPage.t3}"
                                  id="t3"
                                  partialTriggers="::cb6 ::cb7 ::cb4 ::cb5 ::cb8 ::cb9"
                                  editingMode="clickToEdit">
                          <af:column sortProperty="EmpCode" filterable="true"
                                     sortable="true"
                                     headerText="#{bindings.ReportingEmpView1.hints.EmpCode.label}"
                                     id="c4">
                            <af:inputText value="#{row.bindings.EmpCode.inputValue}"
                                          label="#{bindings.ReportingEmpView1.hints.EmpCode.label}"
                                          required="#{bindings.ReportingEmpView1.hints.EmpCode.mandatory}"
                                          columns="#{bindings.ReportingEmpView1.hints.EmpCode.displayWidth}"
                                          maximumLength="#{bindings.ReportingEmpView1.hints.EmpCode.precision}"
                                          shortDesc="#{bindings.ReportingEmpView1.hints.EmpCode.tooltip}"
                                          id="it7">
                              <f:validator binding="#{row.bindings.EmpCode.validator}"/>
                              <af:convertNumber groupingUsed="false"
                                                pattern="#{bindings.ReportingEmpView1.hints.EmpCode.format}"/>
                            </af:inputText>
                          </af:column>
                          <af:column sortProperty="EmpName" filterable="true"
                                     sortable="true"
                                     headerText="#{bindings.ReportingEmpView1.hints.EmpName.label}"
                                     id="c3">
                            <af:inputText value="#{row.bindings.EmpName.inputValue}"
                                          label="#{bindings.ReportingEmpView1.hints.EmpName.label}"
                                          required="#{bindings.ReportingEmpView1.hints.EmpName.mandatory}"
                                          columns="#{bindings.ReportingEmpView1.hints.EmpName.displayWidth}"
                                          maximumLength="#{bindings.ReportingEmpView1.hints.EmpName.precision}"
                                          shortDesc="#{bindings.ReportingEmpView1.hints.EmpName.tooltip}"
                                          id="it6">
                              <f:validator binding="#{row.bindings.EmpName.validator}"/>
                            </af:inputText>
                          </af:column>
                          <af:column sortProperty="MgrCode" filterable="true"
                                     sortable="true"
                                     headerText="#{bindings.ReportingEmpView1.hints.MgrCode.label}"
                                     id="c5">
                            <af:inputText value="#{row.bindings.MgrCode.inputValue}"
                                          label="#{bindings.ReportingEmpView1.hints.MgrCode.label}"
                                          required="#{bindings.ReportingEmpView1.hints.MgrCode.mandatory}"
                                          columns="#{bindings.ReportingEmpView1.hints.MgrCode.displayWidth}"
                                          maximumLength="#{bindings.ReportingEmpView1.hints.MgrCode.precision}"
                                          shortDesc="#{bindings.ReportingEmpView1.hints.MgrCode.tooltip}"
                                          id="it5">
                              <f:validator binding="#{row.bindings.MgrCode.validator}"/>
                              <af:convertNumber groupingUsed="false"
                                                pattern="#{bindings.ReportingEmpView1.hints.MgrCode.format}"/>
                            </af:inputText>
                          </af:column>
                        </af:table>
                      </af:panelBox>
                    </af:showDetailItem>
                    <af:showDetailItem text="showDetailItem 2"
                                       binding="#{backingBeanScope.backing_empPage.sdi2}"
                                       id="sdi2" partialTriggers="pb1">
                      <af:panelFormLayout binding="#{backingBeanScope.backing_empPage.pfl2}"
                                          id="pfl2">
                        <af:inputText value="#{bindings.EmpCode1.inputValue}"
                                      label="#{bindings.EmpCode1.hints.label}"
                                      required="#{bindings.EmpCode1.hints.mandatory}"
                                      columns="#{bindings.EmpCode1.hints.displayWidth}"
                                      maximumLength="#{bindings.EmpCode1.hints.precision}"
                                      shortDesc="#{bindings.EmpCode1.hints.tooltip}"
                                      binding="#{backingBeanScope.backing_empPage.it8}"
                                      id="it8">
                          <f:validator binding="#{bindings.EmpCode1.validator}"/>
                          <af:convertNumber groupingUsed="false"
                                            pattern="#{bindings.EmpCode1.format}"/>
                        </af:inputText>
                        <af:inputText value="#{bindings.EmpName1.inputValue}"
                                      label="#{bindings.EmpName1.hints.label}"
                                      required="#{bindings.EmpName1.hints.mandatory}"
                                      columns="#{bindings.EmpName1.hints.displayWidth}"
                                      maximumLength="#{bindings.EmpName1.hints.precision}"
                                      shortDesc="#{bindings.EmpName1.hints.tooltip}"
                                      binding="#{backingBeanScope.backing_empPage.it9}"
                                      id="it9">
                          <f:validator binding="#{bindings.EmpName1.validator}"/>
                        </af:inputText>
                        <af:inputText value="#{bindings.MgrCode.inputValue}"
                                      label="#{bindings.MgrCode.hints.label}"
                                      required="#{bindings.MgrCode.hints.mandatory}"
                                      columns="#{bindings.MgrCode.hints.displayWidth}"
                                      maximumLength="#{bindings.MgrCode.hints.precision}"
                                      shortDesc="#{bindings.MgrCode.hints.tooltip}"
                                      binding="#{backingBeanScope.backing_empPage.it10}"
                                      id="it10">
                          <f:validator binding="#{bindings.MgrCode.validator}"/>
                          <af:convertNumber groupingUsed="false"
                                            pattern="#{bindings.MgrCode.format}"/>
                        </af:inputText>
                        <f:facet name="footer">
                          <af:panelGroupLayout layout="vertical"
                                               binding="#{backingBeanScope.backing_empPage.pgl2}"
                                               id="pgl2">
                            <af:panelGroupLayout layout="horizontal"
                                                 binding="#{backingBeanScope.backing_empPage.pgl3}"
                                                 id="pgl3">
                              <af:commandButton actionListener="#{bindings.First.execute}"
                                                text="First"
                                                disabled="#{!bindings.First.enabled}"
                                                partialSubmit="true"
                                                binding="#{backingBeanScope.backing_empPage.cb4}"
                                                id="cb4"/>
                              <af:commandButton actionListener="#{bindings.Previous.execute}"
                                                text="Previous"
                                                disabled="#{!bindings.Previous.enabled}"
                                                partialSubmit="true"
                                                binding="#{backingBeanScope.backing_empPage.cb5}"
                                                id="cb5"/>
                              <af:commandButton actionListener="#{bindings.Next.execute}"
                                                text="Next"
                                                disabled="#{!bindings.Next.enabled}"
                                                partialSubmit="true"
                                                binding="#{backingBeanScope.backing_empPage.cb8}"
                                                id="cb8"/>
                              <af:commandButton actionListener="#{bindings.Last.execute}"
                                                text="Last"
                                                disabled="#{!bindings.Last.enabled}"
                                                partialSubmit="true"
                                                binding="#{backingBeanScope.backing_empPage.cb9}"
                                                id="cb9"/>
                            </af:panelGroupLayout>
                            <af:commandButton text="Submit"
                                              binding="#{backingBeanScope.backing_empPage.cb10}"
                                              id="cb10"/>
                          </af:panelGroupLayout>
                        </f:facet>
                      </af:panelFormLayout>
                      <af:panelBox text="PanelBox3"
                                   binding="#{backingBeanScope.backing_empPage.pb3}"
                                   id="pb3">
                        <f:facet name="toolbar"/>
                        <af:inputText value="#{bindings.Descr.inputValue}"
                                      label="#{bindings.Descr.hints.label}"
                                      required="#{bindings.Descr.hints.mandatory}"
                                      columns="#{bindings.Descr.hints.displayWidth}"
                                      maximumLength="#{bindings.Descr.hints.precision}"
                                      shortDesc="#{bindings.Descr.hints.tooltip}"
                                      binding="#{backingBeanScope.backing_empPage.it11}"
                                      id="it11">
                          <f:validator binding="#{bindings.Descr.validator}"/>
                        </af:inputText>
                      </af:panelBox>
                    </af:showDetailItem>
                  </af:panelTabbed>
                </af:panelGroupLayout>
              </f:facet>
            </af:panelSplitter>
          </f:facet>
        </af:panelSplitter>
      </af:form>
    </af:document>
  </f:view>
  <!--oracle-jdev-comment:auto-binding-backing-bean-name:backing_empPage-->
</jsp:root>Edited by: Mr. Murali on Oct 26, 2011 9:54 AM

Hi,
sorry for the delay...i have a few questions on ur responce.
q1. in a VO or ENT you can put autosubmit property (Edit attribute-->Control Hints-->autosubmit)
q2. you need a autosubmit=true
q3.the commit is a actionlistener.put your navigation in a action
q1) -- what is the use of keeping autosubmit to true at EO/VO level
q2) -- why auto submit to true? as i want these validations to be done when commit button pression
q3) -- i have a page with this structure-- master1(read only table - key attribute idcode)
                                                          --> master2(editable form - with key attribute idcode)
                                                                --> all details(editable table's - with key attribute idcode)
       Suppose Now if user clicked on one record in master1 and edited one record of master2 and one record of detail table and navigating to another record in master1 then i want to display a pop with ok/cancel to commit/rollback the transaction.how can i achieve this task?

Similar Messages

  • I am havig an error while shifting from one tab to the other mozilla firefox stops for some seconds.

    error while shifting from one tab to other''''''

    I've followed what I can of that error, and from what I'm reading, your hard disk is doomed. Some people report that they've been able to reinstall OSX on the same disk and use it for as long as a few months, but eventually the error returns.
    Here's what I suggest:
    Step 1: Backup everything you want to keep immediately!
    Step 2: Buy new disk.
    Step 3: Install new disk.
    Step 4: Reinstall everything & restore.
    I highly suggest backing up as soon as possible. -- On the first day of this error my MBP would no longer boot. Thankfully, I was able to save most of my stuff using the terminal window available in the installer.
    Searching for that error code here & on google returns a fair number of hits so you can read what others have done as well. Some seem to be able to get a new drive from apple if it's still under warranty.
    Good luck!

  • Prompting to SAVE while moving from one Tab to Another

    Hi !!
         We are having the User entry WEB layouts where in the data entry layouts for different applications are spread on multiple Tabs .
      However i want the user to be warned to Save the data on a particualr tab when he moves to the another tab for data entry .
    I have explored the options enhancing the class CL_UPWB_BSP_APPL however in there how can i check that user is moving to new Tab and how to send a prompt for saving from there to the user.
    Appreciate your interest and help in the matter .

    Hi,
    i think it is not necessary to warn the user during leaving each tab cause a warning is standard if the user try to leave the BSP-Application with the exit-Button.
    Please note that the planning-buffer is filled and not refreshed as long as they dont leave the actual planning session.
    So it is enough to put one SAVE-Button on the top of the page, this will save all entries were made on different tabs.
    Bye Gil

  • Transport Error while moving Transfer rules - RS_ISMP_AFTER_IMPORT for object type(s) ISMP ( )

    Hello Experts
    Strucked up with an issue while transporting the Transfer rules that are created for an UPFILE source system.
    Transport is included with  list of Data source Replica, Transfer rules, Transfer structure and Info Package.
    My data Source : ZVPRCRDT for an UPFILE
    Below is my error screen :
    Tried to resolve the error by moving the Data source Replica as an individual Transport.
    Still see the same error and my data source is active in the current system.
    Looking for a resolution to find out the root cause.
    Any help is appreciated...

    Thanks for your response Ram.
    My Source System UPFILE is in active mode.
    Unsure why system is throwing error as source system assignement was inconsistency.
    All fields are mapped perfect with one-one relation.
    Worked by reassigning the UPFILE - source system to the data source but still i m seeing the same error : Data Source doesnt exist in source system of version A.
    Transported the DS alone to Quality initially where i m unable to find the transported data source in my quality(target). DO i need to perform replicate meta data ...something like that in quality so that imported data sources will get refreshed?
    If so can you let me know the approach.
    Thanks

  • Dreamweaver CS5 errors while moving files

    Hi. I tried moving image files from one folder in my Dreamweaver CS5 site to another (from within Dreamweaver) and it threw the following errors about 3 or 4 times for each file. Any ideas what's going on?
    Dreamweaver
    While executing onLoad in tempURL_afterSave.htm, the following JavaScript error(s) occurred:
    At line 4309 of file "C:\Program Files (x86)\Adobe\Adobe Dreamweaver CS5\Configuration\Shared\Common\Scripts\dwscripts.js":
    out of memory
    At line 4309 of file "C:\Program Files (x86)\Adobe\Adobe Dreamweaver CS5\Configuration\Shared\Common\Scripts\dwscripts.js":
    out of memory
    OK  
    Dreamweaver
    While executing canInspectSelection in spry_widget.htm, a JavaScript error occurred.
    OK  

    Delete your cache file
    http://forums.adobe.com/message/2260933#2260933
    Brad Lawryk
    Adobe Community Professional: Dreamweaver
    Northern British Columbia Adobe Usergroup: Manager
    My Adobe Blog: http://blog.lawryk.com

  • Error while moving objects from BMM to Presentation layer: 46036

    Hi,
    I created some aggregate logical columns in a logical fact table in BMM .
    Next, I created a branch to already existing Dimensional hierarchy and used those aggregate columns in the branch hierarchy.
    The Original Hierarchy was using columns from 2 Physical Dimensional tables.
    While checked for global consistency , got the following error:
    46036] Internal Assertion: Condition i + 1 < numKeys, file .\Src\SQLogicalRqtGenerator.cpp, line 645.
    Where am I going wrong ?
    Regards

    Hi,
    check if you presentation folder refers to the correct Business Model in the General Tab of the properties.
    Regards,
    Gianluca

  • Moving public folders from exchange 2003 to exchange 2010 error while moving replicas

    Dear All,
    i am in the process of migrating from Microsoft Exchange 2003 to Exchange 2010,
    i am done with moving all the mailboxes 300 mailbox almost with a 1.5 TB DB with no issues 
    when i tried all the processes, procedures, instructions and forums to move the public folder or 
    to use move all replicas from Exchange 2003 to Exchange 2010 i always get errors , now when i try 
    to open PF Management console from the exchange 2010 server i get it but it is disconnected
    then i can choose to coneect to the new server name EXCHANGE2010 with no issues
    when i try to expand the default folder and system folder i get the following error.
    OAB is set on the new server as default.
    when i try to add replica using power shell i get this error:
    WARNING: An unexpected error has occurred and a Watson dump is being generated: Object reference not set to an inst
     of an object.
    Object reference not set to an instance of an object.
        + CategoryInfo          : NotSpecified: (:) [Get-PublicFolder], NullReferenceException
        + FullyQualifiedErrorId : System.NullReferenceException,Microsoft.Exchange.Management.MapiTasks.GetPublicFolder
    following error when trying to expand PF on EXCHANGE 2010
    Microsoft Corporation
    Microsoft® Windows® Operating System
    6.0.6000.16386
    Unexpected error [0x7653450B] while executing command 'get-publicfolder -getchildren -identity '\' -server 'Exchange2010.ptdubai.com''.
    Microsoft.Exchange.Configuration.MonadDataProvider.CommandExecutionException: Unexpected error [0x7653450B] while executing command 'get-publicfolder -getchildren -identity '\' -server 'Exchange2010.ptdubai.com''. ---> System.NullReferenceException: Object
    reference not set to an instance of an object.
       at Microsoft.Exchange.Configuration.Tasks.MapiTaskHelper.GetMapiPublicFolderDatabasesIdentities(ADSystemConfigurationSession configurationSession, ADObjectId serverId, TaskErrorLoggingDelegate errorHandler)
       at Microsoft.Exchange.Configuration.Tasks.MapiTaskHelper.ValidateServerContainsPFDatabase(Server server, ADSystemConfigurationSession scSession, TaskErrorLoggingDelegate errorHandler)
       at Microsoft.Exchange.Configuration.Tasks.MapiTaskHelper.ResolvePublicFolderServerAndUserLegacyDNs(ADSystemConfigurationSession scSession, ServerIdParameter serverIdParameter, String& serverLegacyDN, String& userLegacyDN, Fqdn& serverFQDN,
    TaskErrorLoggingDelegate errorHandler)
       at Microsoft.Exchange.Configuration.Tasks.GetMapiObjectTask`2.CreateSession()
       at Microsoft.Exchange.Configuration.Tasks.DataAccessTask`1.InternalStateReset()
       at Microsoft.Exchange.Configuration.Tasks.GetTaskBase`1.InternalStateReset()
       at Microsoft.Exchange.Management.MapiTasks.GetPublicFolder.InternalStateReset()
       at Microsoft.Exchange.Configuration.Tasks.Task.ProcessRecord()
       at System.Management.Automation.CommandProcessor.ProcessRecord()
       --- End of inner exception stack trace ---
       at Microsoft.Exchange.Configuration.MonadDataProvider.MonadPipelineProxy.ClosePipeline(MonadAsyncResult asyncResult)
       at Microsoft.Exchange.Configuration.MonadDataProvider.MonadPipelineProxy.InternalEndInvoke(IAsyncResult results)
       at Microsoft.PowerShell.HostingTools.PipelineProxyBase.EndInvoke(IAsyncResult results)
       at Microsoft.Exchange.Configuration.MonadDataProvider.MonadCommand.EndExecute(MonadAsyncResult asyncResult)
       at Microsoft.Exchange.Configuration.MonadDataProvider.MonadDataReader.Close()
       at Microsoft.Exchange.Configuration.MonadDataProvider.MonadDataReader.Dispose(Boolean disposing)
       at System.Data.Common.DbDataAdapter.FillInternal(DataSet dataset, DataTable[] datatables, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior)
       at System.Data.Common.DbDataAdapter.Fill(DataTable[] dataTables, Int32 startRecord, Int32 maxRecords, IDbCommand command, CommandBehavior behavior)
       at System.Data.Common.DbDataAdapter.Fill(DataTable dataTable)
       at Microsoft.Exchange.Management.SystemManager.DataTableLoader.Fill(RefreshRequestEventArgs e)
       at Microsoft.Exchange.Management.SystemManager.DataTableLoader.OnDoRefreshWork(RefreshRequestEventArgs e)
       at Microsoft.Exchange.Management.SystemManager.RefreshableComponent.worker_DoWork(Object sender, DoWorkEventArgs e)
       at System.ComponentModel.BackgroundWorker.WorkerThreadStart(Object argument)
    mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
    Microsoft.ManagementConsole, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
    System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
    MMCFxCommon, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
    System.Configuration, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
    System.Xml, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
    System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
    System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
    Microsoft.Exchange.Management.PublicFolders, Version=14.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
    Microsoft.Exchange.Management.SystemManager, Version=14.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
    System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
    Microsoft.ManagementGUI, Version=14.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
    Microsoft.Exchange.Data.Common, Version=14.0.631.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
    Microsoft.Exchange.ManagementGUI, Version=14.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
    Microsoft.Exchange.Configuration.ObjectModel, Version=14.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
    System.Data, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
    Microsoft.Exchange.Diagnostics, Version=14.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
    System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
    Microsoft.Exchange.Data.Directory, Version=14.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
    Microsoft.PowerShell.HostingTools, Version=14.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
    System.Drawing.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
    Microsoft.Exchange.ManagementGUI.resources, Version=14.0.0.0, Culture=en, PublicKeyToken=31bf3856ad364e35
    Microsoft.Exchange.Data, Version=14.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
    Microsoft.Exchange.Management, Version=14.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
    Microsoft.Exchange.Isam.Interop, Version=14.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
    Microsoft.Exchange.Data.Transport, Version=14.0.631.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
    Microsoft.PowerShell.HostingTools, Version=14.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
    BPA.Common, Version=14.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
    BPA.UserInterface, Version=14.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
    Interop.adsiis, Version=14.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
    Interop.Migbase, Version=14.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
    Microsoft.DKM.Proxy, Version=14.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
    Microsoft.Exchange.AirSync, Version=14.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
    Microsoft.Exchange.Approval.Applications, Version=14.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
    Microsoft.Exchange.CabUtility, Version=14.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
    Microsoft.Exchange.Cluster.Replay, Version=14.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
    Microsoft.Exchange.Common, Version=14.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
    Microsoft.Exchange.Configuration.RedirectionModule, Version=14.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
    Microsoft.Exchange.Data.ApplicationLogic, Version=14.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
    Microsoft.Exchange.Data.Mapi, Version=14.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
    Microsoft.Exchange.Data.Providers, Version=14.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
    Microsoft.Exchange.Data.Storage, Version=14.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
    Microsoft.Exchange.EdgeSync.Common, Version=14.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
    Microsoft.Exchange.EdgeSync.DatacenterProviders, Version=14.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
    Microsoft.Exchange.Extensibility.Internal, Version=14.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
    Microsoft.Exchange.InfoWorker.Common, Version=14.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
    Microsoft.Exchange.Live.DomainServices, Version=14.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
    Microsoft.Exchange.MailboxReplicationService.Common, Version=14.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
    Microsoft.Exchange.MessageSecurity, Version=14.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
    Microsoft.Exchange.MessagingPolicies.Rules, Version=14.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
    Microsoft.Exchange.Net, Version=14.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
    Microsoft.Exchange.Rpc, Version=14.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
    Microsoft.Exchange.Search.ExSearch, Version=14.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
    Microsoft.Exchange.Search.Native, Version=14.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
    Microsoft.Exchange.Security, Version=14.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
    Microsoft.Exchange.StoreProvider, Version=14.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
    Microsoft.Exchange.Transport.Agent.AntiSpam.Common, Version=14.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
    Microsoft.Exchange.Transport.Agent.SenderId.Core, Version=14.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
    Microsoft.Exchange.Transport, Version=14.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
    Microsoft.Exchange.Transport.Logging.Search, Version=14.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
    Microsoft.Exchange.Transport.Sync.Common, Version=14.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
    Microsoft.Exchange.Transport.Sync.Worker, Version=14.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
    Microsoft.Exchange.UM.UMCommon, Version=14.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
    Microsoft.Exchange.UM.UmDiagnostics.Common, Version=14.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
    Microsoft.Rtc.Collaboration, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
    Microsoft.Rtc.Media, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
    MSExchangeLESearchWorker, Version=14.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
    System.Management.Automation, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
    Microsoft.Exchange.Core.Strings, Version=14.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
    Microsoft.Exchange.Core.Strings.resources, Version=14.0.0.0, Culture=en, PublicKeyToken=31bf3856ad364e35
    Microsoft.Exchange.HelpProvider, Version=14.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
    pspluginwkr, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
    System.Management, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
    System.DirectoryServices, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
    System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
    Accessibility, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
    MMCEx, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
    Anonymously Hosted DynamicMethods Assembly, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null
    Microsoft.Exchange.Data.Directory.resources, Version=14.0.0.0, Culture=en, PublicKeyToken=31bf3856ad364e35
    Microsoft.Exchange.Data.resources, Version=14.0.0.0, Culture=en, PublicKeyToken=31bf3856ad364e35
    Microsoft.Exchange.Configuration.ObjectModel.resources, Version=14.0.0.0, Culture=en, PublicKeyToken=31bf3856ad364e35
    i will be thankful for any assistant.
    PF DB is arounf 90 GB with alot of public folders and sub-folders. around 60 mail PF and too many subfolders.

    First and the most important thing you need to do is, upgrade exchange 2010 to SP2 and RU5.
    Exchange 2010 RTM support is long gone.
    http://www.microsoft.com/en-us/download/details.aspx?id=36768
    http://www.microsoft.com/en-us/download/details.aspx?id=41480
    Your exchange 2010 is still in stogeage ;)
    Cheers,
    Gulab Prasad
    Technology Consultant
    Blog:
    http://www.exchangeranger.com    Twitter:
      LinkedIn:
       Check out CodeTwo’s tools for Exchange admins
    Note: Posts are provided “AS IS” without warranty of any kind, either expressed or implied, including but not limited to the implied warranties of merchantability and/or fitness for a particular purpose.

  • Error while moving transports

    Hi Friends,
    While transporting in CRM2007 system, weu2019re getting errors of type u201CThe installed version does not matchu201D and another for u201CCRMUIFu201D stating that u201CThe software component is not installedu201D.
    Could you please advise.
    Rgds,
    Sandeep

    HI,
    Check your transport settings.
    Check that the components in your source is equal to your target in status->system->components.
    Regards
    William Neira

  • Error while moving Data from fs to its corresponding Structure

    Hi Gurus,
    I am getting a run time error  (Operands are not Convertible) while executing the below statement:
    MOVE <fs> TO  ls_struc.
    [ Over here: ls_struc is TYPE XYZ (a custom structure containg 7 fields, out of which one field is type Packed decimal, which is why I get a run time error)  AND
                         <fs> is a field symbol which is containing the data for all fields in the structure XYZ ]
    If I change the data type of packed decimal field in the structure: 'LS_STRUC' to 'char ' type, then the above query works.
    Could anyone help in resolving this issue.
    Thanks
    Gaurav Verma

    Hi Gverma09,
    Good!
    you can do a bit simpler without structdescr and without handle:
    CREATE DATA e_dref TYPE (im_stru_name).
    or even
    CREATE DATA e_dref like <fs>.
    Access  as you do now, eventually need second field-symbol.
    ASSIGN lv_dataref->* TO <fs2>
    The ABAP RTTS Run Time Type Services CL_ABAB_xyzDESCR are especially useful if you need to know all field properties of a structure or if you want to create structures and tables dynamically. In this case, CREATE DATA has the required features.
    Regards,
    Clemens

  • Transport Error while moving BI objects to quality

    Hi All,
    I have the followinng landscape.
    Source system :- Dev ECC 100(config) and Dev ECC 200 (data is present here).
    Since for my BI implementation, I need data. I have created requests i.e for activating datasources in Dev ECC100 and then copied them into Dev ECC200.
    Dev BI is connected to Dev ECC200, replicate the datasources and do my development.
    Now I have created request in Dev BI for my BI objects.
    *The question is when I have to transport it to Quality. What source system assignment I maintain in Quality Box ? *
    So far, Quality ECC-100 and Quality BI-100 are connected.
    Also I am maintaining Dev ECC 100 -> Qua ECC 100
                                     Dev BI 100 -> Qua BI 100.
    I have alreday transported request from Dev ECC100 to Qua ECC100.
    While transporting BI requests for datasources, I get the error : source system unknown Dev ECC 200.
    Please respond.
    -Amit

    Hi,
    I have resolved ths issue.
    Actually in Quality BI, logical source system assignmement, I should have used
    Source                                                       -->               Target
    DEV ECC200 (instead of Dev ECC 100)     -- >                 QUA ECC 100.
    Thanks,
    -Amit
    Edited by: Amit Dhasmana on May 5, 2009 2:05 PM

  • ORA-01012: not logged on error while Moving data file with BrTools

    Hi,
        I'm trying to move a data file to another windows drive with BrTools.
    It fails before it actually starts to move the file. The error it shows is:
    ORA-01012: not logged on.
    Thanks,
    Anil.

    Hi,
    BRSPACE  has a command option -u to specify the Database user and password. How ever BRSPACE connects to the database as SYSDBA, you do not have to specify the user and password if the operating system user belongs to the dba group.SO check if the user is falling in DBA group with proper authorizations.
    PLease reward points for useful answers.
    Regards,
    Phani

  • Error in moving to another tablaspace

    Hi,
    I've got the following table
    SQL> desc PRODUCT
    Name Null? Type
    ID NUMBER
    FIELD1 LONG
    FIELD2 CLOB
    When I try to move the table to another tablaspace I get the following error
    ALTER TABLE PRODUCT
    MOVE TABLESPACE MEDIUM_TBL storage (initial 4M next 4M)
    LOB(FIELD2) STORE AS (
    TABLESPACE MEDIUM_LOB storage (initial 4M next 4M)
    ALTER TABLE product
    ERROR at line 1:
    ORA-00997: illegal use of LONG datatype
    Can you help me?
    Thanks!
    Edited by: user12180597 on 18-dic-2009 0.40
    Edited by: user12180597 on 18-dic-2009 0.40

    user12180597 wrote:
    Hi,
    I've got the following table
    SQL> desc PRODUCT
    Name Null? Type
    ID NUMBER
    FIELD1 LONG
    FIELD2 CLOB
    When I try to move the table to another tablaspace I get the following error
    ALTER TABLE PRODUCT
    MOVE TABLESPACE MEDIUM_TBL storage (initial 4M next 4M)
    LOB(FIELD2) STORE AS (
    TABLESPACE MEDIUM_LOB storage (initial 4M next 4M)
    ALTER TABLE product
    ERROR at line 1:
    ORA-00997: illegal use of LONG datatype
    Can you help me?
    Thanks!
    Edited by: user12180597 on 18-dic-2009 0.40
    Edited by: user12180597 on 18-dic-2009 0.40Does your table have LONG or LONG RAW columns? you cant Move table with those columns.
    In that case either change the datatype of those columns or try to export and then import into different tablespace.
    Below thread from OraFAQ can be helpful.
    http://www.orafaq.com/forum/t/21725/0/

  • Aspx page giving error while migrating to another site

    Hi there,
    I have an existing aspx page on one SharePoint site. I have created a new site, where I want to move this page.
    I have downloaded the aspx page to my local system and uploaded the same to the new site.
    But when I click on the page it is giving me the following error:
    Error
    This
    page is not using a valid page layout.  To correct the problem, edit page
    settings and select a valid page layout."
    Troubleshoot
    issues with Microsoft SharePoint Foundation.
    Correlation ID:
    However, on both sites, the page exists on Document library named Pages.
    Thanks for your concern.

    Hi aquariusabhi,
    According to your description, my understanding is that the Page Layouts was missing for a site in SharePoint Designer.
    For this issue, there is a common scenario:
    You have a subsite in a site collection
    The publishing feature is activated in the subsite, but not in the site collection
    You want to edit/add page layouts on the site collection level, to be used within your subsite
    When you open the site collection in SharePoint Designer, you can't see Page Layouts in the Site Objects panel
    You now have 2 options: you can either activate the publishing feature in the site collection (and the Page Layouts link comes back), or you can use the All Files link and browse to the master pages and page layouts library (_catalogs > masterpage.)
    Either option will do, unless you really don't want the publishing feature in the site collection.
    More information, please refer to the link:
    http://www.myspblog.com/2011/04/page-layouts-missing-sharepoint.html
    Best Regards,
    Wendy
    Wendy Li
    TechNet Community Support

  • Error While moving the Partition

    Hi
    I am trying to move a partition to a specific node(xxxxx2:30003) using below sql
    ALTER TABLE "schema_1"."table_1"
    MOVE
    PARTITION 1 TO 'xxxxx2:30003'
    It is throwing following error
    SAP DBTech JDBC: [2048]: column store error: fail to cleanup for move to location: [1953] invalid service location;location=xxxxx2:30003
    Host name and port number is correct,
    Any one faced this before?   Please advice .
    Regards,
    Suman

    HI Suman,
    I was only able to reproduce this error message, when the host:port actually was not correct.
    Please check if the SAP HANA nodes can properly resolve the names between each other.
    - Lars

  • Why is the mobile site for iPad requiring a login every time I go to gmail (even if I leave the tab open while I use another tab?

    For the last week or so every time I go to gmail (even when I've left the tab open) I am required to sign in. This is an unnecessary step that I really don't want to do. I don't like the gmail app. And I feel like this sign in issue is forcing me to use the app. Why is this happening? Is there a way around this?
    Thank you for any input.

    Can you post back here a screenshot from this issue?

Maybe you are looking for

  • Merging two company codes at sales organization levels

    Hello Guru's, I am working on a complex project,  the client wants to merge two company codes at sales organization level.  Will anyone guide me the procedure to do it. Regards, PV

  • Background Administration Setup - End Users

    Hello We want to put in some restrictions from Transaction SM37 to our end-users We only want end-users to have access to display , delete , release their OWN Jobs and not have access to the other users’ from SM37 From the Roles in PFCG that have acc

  • BSNL 3G not working in nokia 5800 US version

    hi, i bought a nokia 5800 US version unlocked mobile handset 10 months back. now i am using indian BSNL 3G SIM in india. my mobile handset is not detecting the bsnl 3G signal. from bsnl people i understood that their technology is 3.5G HSDPA 2100. ac

  • Using a sony hd with a mac

    i have a sony hdr xr100 cam corder, apple store told me to get final cut express to use it now the computer, macbook is telling me i dont have the NTSC 720x480 firewire what do i do?

  • DNS Nameserver records not taking

    I have multiple DNS zones hosted on my machine.  There is what I'll call serverdomain.tld, which is the domain the server itself identifies as.  I also have a small number of other domains, some on separate IPs some sharing the server IP. I'm trying