Page erring if FND Diagnostics profile is not set

Hi,
I did see the old thread, but I do not have the same code issue.  Here is the part of my CO code that seems to be erring.  This is a dialog page with Yes/No button and error occurs when the Yes button is clicked.  If is set the FND Diagnostics profile, the error goes away.  Any help is greatly appreciated.
TIA,
Alka
if (pageContext.getParameter("YesButton")!=null)
      //am.invokeMethod("applyBatch");
      HashMap cpParameters = new HashMap();
      String requestId = "";
      requestId = am.invokeMethod("newBatch").toString();
      String id = ""+ requestId + "";
      cpParameters.put(requestId, id); 
      //Test modifying the followint to call DCRD_OKS_MASS_UPD_VIEW_REQ
      String url="OA.jsp?akRegionCode=FNDCPREQUESTVIEWPAGE&akRegionApplicationId=0&REQUESTID=requestId";
      pageContext.setForwardURL(url
                               ,null //not needed as we are retaining menu context
                               ,OAWebBeanConstants.KEEP_MENU_CONTEXT
                               ,null //not needed as we are retaining menu context
                               ,cpParameters //pass the hashMap that contains values for all of the parameters
                               ,true //retain AM
                               ,OAWebBeanConstants.ADD_BREAD_CRUMB_YES
                               ,OAWebBeanConstants.IGNORE_MESSAGES);

public class OksBatchCO extends OAControllerImpl
  public static final String RCS_ID="$Header: https://svn.datacard.com/svn/oracle_erp/dev/trunk/dcrd/java/src/com/datacard/oracle/apps/dcrd/oksupdate/webui/OksBatchCO.java 71353 2013-10-22 14:58:23Z haycrae $";
  public static final boolean RCS_ID_RECORDED =
        VersionInfo.recordClassVersion(RCS_ID, "%packagename%");
   * Layout and page setup logic for a region.
   * @param pageContext the current OA page context
   * @param webBean the web bean corresponding to the region
  public void processRequest(OAPageContext pageContext, OAWebBean webBean)
    super.processRequest(pageContext, webBean);
    //Check for back navigation
    if (!pageContext.isBackNavigationFired(false))
      TransactionUnitHelper.startTransactionUnit(pageContext, "OksBatchesTxn");
      if ((pageContext.getParameter("Ok") == null)  && pageContext.getParameter("Cancel") == null)
          super.processRequest(pageContext, webBean);
      OAApplicationModule am = pageContext.getApplicationModule(webBean);
      OksBatchesVOImpl batchvo = (OksBatchesVOImpl)am.findViewObject("OksBatchesVO1");
      OAHideShowHeaderBean lineHS = (OAHideShowHeaderBean) webBean.findChildRecursive("BatchLinesHSRN");
      OAHideShowHeaderBean contractHS = (OAHideShowHeaderBean) webBean.findChildRecursive("ContractDtlsHSRN");
      OAHideShowHeaderBean billHS = (OAHideShowHeaderBean) webBean.findChildRecursive("BillingPeriodsHSRN");
      OAMessageComponentLayoutBean batchDetailView = (OAMessageComponentLayoutBean) webBean.findChildRecursive("BatchDetailsViewRN");
      OAMessageComponentLayoutBean batchDetail = (OAMessageComponentLayoutBean) webBean.findChildRecursive("BatchDetailsRN");
      OAButtonBean applyButton = (OAButtonBean) webBean.findChildRecursive("ApplyBatchBtn");
      OAMessageComponentLayoutBean itemDflt = (OAMessageComponentLayoutBean) webBean.findChildRecursive("ItemDfltsRN");
      OAMessageComponentLayoutBean acctSiteDflt = (OAMessageComponentLayoutBean) webBean.findChildRecursive("AcctSiteDfltRN");
      OAMessageComponentLayoutBean acctSiteFFDflt = (OAMessageComponentLayoutBean) webBean.findChildRecursive("AcctSiteFFDfltsRN");
      OAMessageComponentLayoutBean BusPurDflt = (OAMessageComponentLayoutBean) webBean.findChildRecursive("BusPurDfltsRN");
      OASubTabLayoutBean s = (OASubTabLayoutBean)webBean.findChildRecursive("BatchLinesSTRN");
      OAMessageComponentLayoutBean contractDflt = (OAMessageComponentLayoutBean) webBean.findChildRecursive("ContractDtlsRN");
      OAAdvancedTableBean billPeriods = (OAAdvancedTableBean) webBean.findChildRecursive("BillingPeriodsRN");
      String batchId = pageContext.getParameter("batchId");
      String viewOnly = pageContext.getParameter("viewOnly");
      System.out.println("batchId is "+batchId);
      System.out.println("viewOnly is "+viewOnly);
      if(!pageContext.isFormSubmission())
        if(batchId == null || batchId.equals(""))
          Serializable[] parameters = {null};
          am.invokeMethod("createBatch", parameters);
          lineHS.setRendered(Boolean.FALSE);
          batchDetailView.setRendered(Boolean.FALSE);
          batchDetail.setRendered(Boolean.TRUE);
          contractHS.setRendered(Boolean.FALSE);
          billHS.setRendered(Boolean.FALSE);
          applyButton.setText("Next");
        else
          Serializable[] params = {batchId};
          am.invokeMethod("createBatch", params);
          lineHS.setRendered(Boolean.TRUE);
          batchDetailView.setRendered(Boolean.TRUE);
          batchDetail.setRendered(Boolean.FALSE);
          contractHS.setRendered(Boolean.TRUE);
          billHS.setRendered(Boolean.TRUE);
          Serializable[] parameters = {batchId};
          am.invokeMethod("initDetails", parameters);
          applyButton.setText("Apply");
      OksBatchesVORowImpl row = (OksBatchesVORowImpl)batchvo.first();
      if ("Y".equals(viewOnly) && batchId != null && !batchId.equals(""))
         ClientUtil.setViewOnlyRecursive(pageContext, webBean);
         row.setAttribute("NotUpdate", Boolean.FALSE);
         //Do not show update button if the batch is not updatable
         if((row.getAttribute("BatchStatus")!=null&&!row.getAttribute("BatchStatus").equals("")&&row.getAttribute("BatchStatus").equals("CANCELLED")||row.getAttribute("BatchStatus").equals("COMPLETE")))
           row.setAttribute("Update", Boolean.FALSE);
         else
         row.setAttribute("Update", Boolean.TRUE);
      else if ("N".equals(viewOnly) && batchId != null && !batchId.equals(""))
        if(row.getAttribute("BatchStatus")!=null&&!row.getAttribute("BatchStatus").equals("")&&!row.getAttribute("BatchStatus").equals("CANCELLED") && !row.getAttribute("BatchStatus").equals("COMPLETE"))
          row.setAttribute("NotUpdate", Boolean.TRUE);
          row.setAttribute("Update", Boolean.FALSE);
          if(row.getAttribute("BatchStatus")!=null&&!row.getAttribute("BatchStatus").equals("")&&!row.getAttribute("BatchStatus").equals("NEW"))
            if(row.getIbProcCount()!=null && !row.getIbProcCount().equals(new Number(0)))
              ClientUtil.setViewOnlyRecursive(pageContext, itemDflt);
            if(row.getWrtyProcCount()!=null && !row.getWrtyProcCount().equals(new Number(0)))
              OAMessageLovInputBean contractNumber = (OAMessageLovInputBean)webBean.findChildRecursive("ContractNumber");
              contractNumber.setReadOnly(Boolean.TRUE);
            if((row.getOksProcCount()!=null && !row.getOksProcCount().equals(new Number(0))) || (row.getCompleteCount()!=null && !row.getCompleteCount().equals(new Number(0))))
              ClientUtil.setViewOnlyRecursive(pageContext, contractDflt);
              ClientUtil.setViewOnlyRecursive(pageContext, billPeriods);
              row.setAttribute("NotUpdate", Boolean.FALSE);
              row.setAttribute("Update", Boolean.FALSE);
            ClientUtil.setViewOnlyRecursive(pageContext, acctSiteDflt);
            ClientUtil.setViewOnlyRecursive(pageContext, acctSiteFFDflt);
            ClientUtil.setViewOnlyRecursive(pageContext, BusPurDflt);
        else
          row.setAttribute("NotUpdate", Boolean.TRUE);
          row.setAttribute("Update", Boolean.FALSE);
      else
        row.setAttribute("NotUpdate", Boolean.TRUE);
        row.setAttribute("Update", Boolean.FALSE);
      //Set Approved as default open tab
      if( !s.isSubTabClicked(pageContext))
        s.setSelectedIndex( pageContext, 0);
        Serializable[] parameters1 = {"SITES"};
        am.invokeMethod("tabDefault",parameters1);
      System.out.println("viewOnly="+viewOnly);
      OAMessageFileUploadBean uploadBean = (OAMessageFileUploadBean)webBean.findChildRecursive("SourceFileName");
      // set file name display
      OADataBoundValueViewObject displayNameBoundValue = new OADataBoundValueViewObject(uploadBean, "SourceFileName");
      uploadBean.setAttributeValue(DOWNLOAD_FILE_NAME,displayNameBoundValue);
      if (batchId != null)
        String countS = "";
        String countI = "";
        String countW = "";
        String countO = "";
        String countC = "";
        String countCc = "";
        OAViewObject linevo = (OAViewObject)am.findViewObject("OksBatchesVO1");
        if(!linevo.isExecuted())
          linevo.executeQuery();
        countS = linevo.first().getAttribute("SiteCount").toString();
        countI = linevo.first().getAttribute("IbCount").toString();
        countW = linevo.first().getAttribute("WrtyCount").toString();
        countO = linevo.first().getAttribute("OksCount").toString();
        countCc = linevo.first().getAttribute("CancelCount").toString();
        countC = linevo.first().getAttribute("CompleteCount").toString();
        OALinkBean siteLink = (OALinkBean)webBean.findChildRecursive("Sites");
        siteLink.setText("Sites ("+countS+")");
        OALinkBean ibLink = (OALinkBean)webBean.findChildRecursive("Instances");
        ibLink.setText("Instances ("+countI+")");
        OALinkBean wrtyLink = (OALinkBean)webBean.findChildRecursive("Warranties");
        wrtyLink.setText("Warranties ("+countW+")");
        OALinkBean oksLink = (OALinkBean)webBean.findChildRecursive("Contracts");
        oksLink.setText("Contracts ("+countO+")");
        OALinkBean ccLink = (OALinkBean)webBean.findChildRecursive("Cancelled");
        ccLink.setText("Cancelled ("+countCc+")");
        OALinkBean cLink = (OALinkBean)webBean.findChildRecursive("Complete");
        cLink.setText("Complete ("+countC+")");
        //Message after Apply button is clicked
        if(pageContext.getParameter("apply")!=null && pageContext.getParameter("apply").equals("Y"))
          OksBillingPeriodsVOImpl billvo = (OksBillingPeriodsVOImpl)am.findViewObject("OksBillingPeriodsVO2");
          OksBillingPeriodsVORowImpl billrow = (OksBillingPeriodsVORowImpl)billvo.last();
          if(billrow!=null)
            if(billrow.getEndDate()!=null && row.getEndDate()!=null && billrow.getEndDate().dateValue().getTime()!=row.getEndDate().dateValue().getTime())
              OAException confirmMessage = new OAException("Billing Schedule end date does not match Contract end date.  Please make sure to fix the Billing Schedule.",OAException.WARNING);
              pageContext.putDialogMessage(confirmMessage);
        OAAdvancedTableBean oatb = (OAAdvancedTableBean)webBean.findChildRecursive("BatchLinesRN");
        UINode uinode = oatb.getTableActions();
        ((OAWebBean)uinode).setRendered(true);
        OAAdvancedTableBean oatb1 = (OAAdvancedTableBean)webBean.findChildRecursive("BatchLinesRN1");
        UINode uinode1 = oatb1.getTableActions();
        ((OAWebBean)uinode1).setRendered(true);
        OAAdvancedTableBean oatb2 = (OAAdvancedTableBean)webBean.findChildRecursive("BatchLinesRN2");
        UINode uinode2 = oatb2.getTableActions();
        ((OAWebBean)uinode2).setRendered(true);
        OAAdvancedTableBean oatb3 = (OAAdvancedTableBean)webBean.findChildRecursive("BatchLinesRN3");
        UINode uinode3 = oatb3.getTableActions();
        ((OAWebBean)uinode3).setRendered(true);
        OAAdvancedTableBean oatb4 = (OAAdvancedTableBean)webBean.findChildRecursive("BatchLinesRN4");
        UINode uinode4 = oatb4.getTableActions();
        ((OAWebBean)uinode4).setRendered(true);
        OAAdvancedTableBean oatb5 = (OAAdvancedTableBean)webBean.findChildRecursive("BatchLinesRN5");
        UINode uinode5 = oatb5.getTableActions();
        ((OAWebBean)uinode5).setRendered(true);
    else
      if (!TransactionUnitHelper.isTransactionUnitInProgress(pageContext, "OksBatchesTxn",    true))
        OADialogPage dialogPage = new OADialogPage(NAVIGATION_ERROR);
        pageContext.redirectToDialogPage(dialogPage);
   * Procedure to handle form submissions for form elements in
   * a region.
   * @param pageContext the current OA page context
   * @param webBean the web bean corresponding to the region
  public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)
    super.processFormRequest(pageContext, webBean);
    OAApplicationModule am = pageContext.getApplicationModule(webBean);
    OksBatchesVOImpl batchvo = (OksBatchesVOImpl)am.findViewObject("OksBatchesVO1");
    Row batchrow = batchvo.getCurrentRow();
    String batchId = pageContext.getParameter("batchId");
    System.out.println();
    if (pageContext.getParameter(EVENT_PARAM).equals("applyBatch"))
      if(batchId==null||batchId.equals(""))
        //Check if file is a .csv
        String fileName = batchrow.getAttribute("SourceFileName").toString();
        System.out.println("Source File Name is "+fileName);
        if(!fileName.endsWith(".csv"))
          throw new OAException("File is not of type .csv.  Please upload the correct file.", OAException.ERROR);
        String batchNumber = batchrow.getAttribute("BatchNumber").toString();
        OAException confirmMessage = new OAException("The program Datacard Load Source File will be submitted for Batch Number "+batchNumber);
        OADialogPage dialogPage = new OADialogPage(OAException.CONFIRMATION,
                                                   confirmMessage,
                                                   null,
        String yes = "Ok";//pageContext.getMessage("AK", "FWK_TBX_T_YES", null);
        String no = "Cancel";//pageContext.getMessage("AK", "FWK_TBX_T_NO", null);
        dialogPage.setOkButtonItemName("YesButton");
        dialogPage.setNoButtonItemName("NoButton");
        dialogPage.setOkButtonToPost(true);
        dialogPage.setNoButtonToPost(true);
        dialogPage.setPostToCallingPage(true);
        dialogPage.setOkButtonLabel(yes);
        dialogPage.setNoButtonLabel(no);
        pageContext.redirectToDialogPage(dialogPage);
      else
        am.invokeMethod("applyBatch");
        pageContext.setForwardURL("OA.jsp?page=/com/datacard/oracle/apps/dcrd/oksupdate/webui/OksBatchPG&batchId="+batchId+"&viewOnly=Y&apply=Y"+"&"+OASubTabLayoutBean.OA_SELECTED_SUBTAB_IDX + "=" + 0
                                        ,null //not needed as we are retaining menu context
                                        ,OAWebBeanConstants.KEEP_MENU_CONTEXT
                                        ,null //not needed as we are retaining menu context
                                        ,null //pass the hashMap that contains values for all of the parameters
                                        ,true //retain AM
                                        ,OAWebBeanConstants.ADD_BREAD_CRUMB_YES
                                        ,OAWebBeanConstants.IGNORE_MESSAGES);
    else if (pageContext.getParameter(EVENT_PARAM).equals("cancelBatch"))
      //String debugMode="Y";
      am.invokeMethod("cancel");
      if(batchId!=null && !batchId.equals(""))
        pageContext.setForwardURL("OA.jsp?page=/com/datacard/oracle/apps/dcrd/oksupdate/webui/OksBatchPG&batchId="+batchId+"&viewOnly=Y"+"&"+OASubTabLayoutBean.OA_SELECTED_SUBTAB_IDX + "=" + 0
                                  ,null //not needed as we are retaining menu context
                                  ,OAWebBeanConstants.KEEP_MENU_CONTEXT
                                  ,null //not needed as we are retaining menu context
                                  ,null //pass the hashMap that contains values for all of the parameters
                                  ,true //retain AM
                                  ,OAWebBeanConstants.ADD_BREAD_CRUMB_YES
                                  ,OAWebBeanConstants.IGNORE_MESSAGES);
      else
        pageContext.setForwardURL("OA.jsp?page=/com/datacard/oracle/apps/dcrd/oksupdate/webui/OksBatchesSrchPG"
                                  ,null //not needed as we are retaining menu context
                                  ,OAWebBeanConstants.KEEP_MENU_CONTEXT
                                  ,null //not needed as we are retaining menu context
                                  ,null //pass the hashMap that contains values for all of the parameters
                                  ,true //retain AM
                                  ,OAWebBeanConstants.ADD_BREAD_CRUMB_YES
                                  ,OAWebBeanConstants.IGNORE_MESSAGES);
    else if (pageContext.getParameter("YesButton")!=null)
      //am.invokeMethod("applyBatch");
      HashMap cpParameters = new HashMap();
      String requestId = "";
      requestId = am.invokeMethod("newBatch").toString();
      String id = ""+ requestId + "";
      cpParameters.put(requestId, id); 
      //Test modifying the followint to call DCRD_OKS_MASS_UPD_VIEW_REQ
      String url="OA.jsp?akRegionCode=FNDCPREQUESTVIEWPAGE&akRegionApplicationId=0&REQUESTID=requestId";
      pageContext.setForwardURL(url
                               ,null //not needed as we are retaining menu context
                               ,OAWebBeanConstants.KEEP_MENU_CONTEXT
                               ,null //not needed as we are retaining menu context
                               ,cpParameters //pass the hashMap that contains values for all of the parameters
                               ,true //retain AM
                               ,OAWebBeanConstants.ADD_BREAD_CRUMB_YES
                               ,OAWebBeanConstants.IGNORE_MESSAGES);
    else if (pageContext.getParameter("NoButton")!=null)
      am.invokeMethod("cancelBatch");
      pageContext.setForwardURL("OA.jsp?page=/com/datacard/oracle/apps/dcrd/oksupdate/webui/OksBatchesSrchPG"
                                      ,null //not needed as we are retaining menu context
                                      ,OAWebBeanConstants.KEEP_MENU_CONTEXT
                                      ,null //not needed as we are retaining menu context
                                      ,null //pass the hashMap that contains values for all of the parameters
                                      ,true //retain AM
                                      ,OAWebBeanConstants.ADD_BREAD_CRUMB_YES
                                      ,OAWebBeanConstants.IGNORE_MESSAGES);
    else if (pageContext.isLovEvent())
      String lovInputSourceId = pageContext.getLovInputSourceId();
      if ("AccountNumber".equals(lovInputSourceId))
        Serializable[] params = {"Account"};
        am.invokeMethod("defaultValuesFromTemplate", params);
      else if ("Period".equals(lovInputSourceId))
        String rowReference = pageContext.getParameter(OAWebBeanConstants.EVENT_SOURCE_ROW_REFERENCE);
        Row currentRow = am.findRowByRef(rowReference);
        if(currentRow!=null)
          String seq = currentRow.getAttribute("SeqNum").toString();
          System.out.println("Period seq is "+seq);
          String item = "UOM";
          Serializable[] parameters = {item, seq};
          am.invokeMethod("validateUOM", parameters);
      else if("TemplateName".equals(lovInputSourceId))
        Serializable[] params = {"Template"};
        am.invokeMethod("defaultValuesFromTemplate", params);
    else if ("updateBatch".equals(pageContext.getParameter(EVENT_PARAM)))
      am.invokeMethod("cancel");
      pageContext.setForwardURL(
                            "OA.jsp?page=/com/datacard/oracle/apps/dcrd/oksupdate/webui/OksBatchPG&batchId="+batchId+"&viewOnly=N"+"&"+OASubTabLayoutBean.OA_SELECTED_SUBTAB_IDX + "=" + 0
                            , null //not needed as we are retaining menu context
                            ,OAWebBeanConstants.KEEP_MENU_CONTEXT
                            ,null //not needed as we are retaining menu context
                            ,null //pass the hashMap that contains values for all of the parameters
                            ,true //retain AM
                            ,OAWebBeanConstants.ADD_BREAD_CRUMB_NO
                            ,OAWebBeanConstants.IGNORE_MESSAGES);       
    else if ("tabSites".equals(pageContext.getParameter(OAWebBeanConstants.EVENT_PARAM)))
      am.invokeMethod("post");
      Serializable[] parameters = {"SITES"};
      am.invokeMethod("tabDefault",parameters);
    else if ("tabInstances".equals(pageContext.getParameter(OAWebBeanConstants.EVENT_PARAM)))
      am.invokeMethod("post");
      Serializable[] parameters = {"INSTANCES"};
      am.invokeMethod("tabDefault",parameters);
    else if ("tabWarranties".equals(pageContext.getParameter(OAWebBeanConstants.EVENT_PARAM)))
      am.invokeMethod("post");
      Serializable[] parameters = {"WRTYS"};
      am.invokeMethod("tabDefault",parameters);
    else if ("tabContracts".equals(pageContext.getParameter(OAWebBeanConstants.EVENT_PARAM)))
      am.invokeMethod("post");
      Serializable[] parameters = {"CONTRACTS"};
      am.invokeMethod("tabDefault",parameters);
    else if ("tabCancelled".equals(pageContext.getParameter(OAWebBeanConstants.EVENT_PARAM)))
      am.invokeMethod("post");
      Serializable[] parameters = {"CANCELLED"};
      am.invokeMethod("tabDefault",parameters);
    else if ("tabComplete".equals(pageContext.getParameter(OAWebBeanConstants.EVENT_PARAM)))
      am.invokeMethod("post");
      Serializable[] parameters = {"COMPLETE"};
      am.invokeMethod("tabDefault",parameters);
    else if ("cancelNewLine".equals(pageContext.getParameter(EVENT_PARAM)))
      am.invokeMethod("cancelLine");
      am.invokeMethod("post");
      Serializable[] parameters = {"NEW"};
      am.invokeMethod("tabDefault",parameters);
    else if ("cancelErrorLine".equals(pageContext.getParameter(EVENT_PARAM)))
      am.invokeMethod("cancelLine");
      am.invokeMethod("post");
      Serializable[] parameters = {"ERROR"};
      am.invokeMethod("tabDefault",parameters);
    else if ("cancelProcessLine".equals(pageContext.getParameter(EVENT_PARAM)))
      am.invokeMethod("cancelLine");
      am.invokeMethod("post");
      Serializable[] parameters = {"INPROCESS"};
      am.invokeMethod("tabDefault",parameters);
    else if ("addRows".equals(pageContext.getParameter(EVENT_PARAM)))
      System.out.println("In addRow");
      if(batchrow.getAttribute("ContractId")!=null)
        am.invokeMethod("addRow");
      else
        throw new OAException("Please enter a contract number before creating billing schedule.", OAException.ERROR);
    else if ("deletePeriod".equals(pageContext.getParameter(EVENT_PARAM)))
      Boolean notlast = Boolean.FALSE;
      OksBillingPeriodsVOImpl billvo = (OksBillingPeriodsVOImpl)am.findViewObject("OksBillingPeriodsVO2");
      Row rows[] = billvo.getAllRowsInRange();
      //System.out.println("total rows = "+billvo.getFetchedRowCount());
      for(int i=0; i<rows.length; i++)
        OksBillingPeriodsVORowImpl rowi = (OksBillingPeriodsVORowImpl)rows[i];
        System.out.println("SeqNum = "+rowi.getSeqNum().toString());
        if(!rowi.getSeqNum().equals(billvo.getFetchedRowCount()) && rowi.getPeriodMultiSelect()!=null&&rowi.getPeriodMultiSelect().equals("Y"))
          notlast = Boolean.TRUE;
      if(notlast)
        OAException confirmMessage = new OAException("Since deleting one of these sequences will cause a break in billing periods, all of the subsequent sequences will be deleted.  To proceed please click Ok");
        OADialogPage dialogPage = new OADialogPage(OAException.CONFIRMATION,
                                                   confirmMessage,
                                                   null,
        String yes = "Ok";//pageContext.getMessage("AK", "FWK_TBX_T_YES", null);
        String no = "Cancel";//pageContext.getMessage("AK", "FWK_TBX_T_NO", null);
        dialogPage.setOkButtonItemName("YesDelButton");
        dialogPage.setNoButtonItemName("NoDelButton");
        dialogPage.setOkButtonToPost(true);
        dialogPage.setNoButtonToPost(true);
        dialogPage.setPostToCallingPage(true);
        dialogPage.setOkButtonLabel(yes);
        dialogPage.setNoButtonLabel(no);
        pageContext.redirectToDialogPage(dialogPage);
      else
        Serializable[] params = {"Last"};
        am.invokeMethod("deletePeriod", params);
    else if (pageContext.getParameter("YesDelButton")!=null)
      Serializable[] params = {"NotLast"};
      am.invokeMethod("deletePeriod", params);
      pageContext.setForwardURL("OA.jsp?page=/com/datacard/oracle/apps/dcrd/oksupdate/webui/OksBatchPG&batchId="+batchId+"&viewOnly=N"+"&"+OASubTabLayoutBean.OA_SELECTED_SUBTAB_IDX + "=" + 0
                                , null //not needed as we are retaining menu context
                                ,OAWebBeanConstants.KEEP_MENU_CONTEXT
                                ,null //not needed as we are retaining menu context
                                ,null //pass the hashMap that contains values for all of the parameters
                                ,true //retain AM
                                ,OAWebBeanConstants.ADD_BREAD_CRUMB_NO
                                ,OAWebBeanConstants.IGNORE_MESSAGES);
    else if (pageContext.getParameter("NoDelButton")!=null)
      pageContext.setForwardURL("OA.jsp?page=/com/datacard/oracle/apps/dcrd/oksupdate/webui/OksBatchPG&batchId="+batchId+"&viewOnly=N"+"&"+OASubTabLayoutBean.OA_SELECTED_SUBTAB_IDX + "=" + 0
                                , null //not needed as we are retaining menu context
                                ,OAWebBeanConstants.KEEP_MENU_CONTEXT
                                ,null //not needed as we are retaining menu context
                                ,null //pass the hashMap that contains values for all of the parameters
                                ,true //retain AM
                                ,OAWebBeanConstants.ADD_BREAD_CRUMB_NO
                                ,OAWebBeanConstants.IGNORE_MESSAGES);
    else if ("levelPeriods".equals(pageContext.getParameter(EVENT_PARAM)))
      System.out.println("Passed sequence is "+pageContext.getParameter("pSeqNum"));
      String item = "LEVEL_PERIODS";
      String seq = pageContext.getParameter("pSeqNum");
      Serializable[] parameters = {item, seq};
      am.invokeMethod("validateUOM", parameters);
    else if ("uomperperiod".equals(pageContext.getParameter(EVENT_PARAM)))
      System.out.println("Passed sequence is "+pageContext.getParameter("pSeqNum"));
      String item = "UOM_PER_PERIOD";
      String seq = pageContext.getParameter("pSeqNum");
      Serializable[] parameters = {item, seq};
      am.invokeMethod("validateUOM", parameters);
    else if ("enddate".equals(pageContext.getParameter(EVENT_PARAM)))
      System.out.println("Passed sequence is "+pageContext.getParameter("pSeqNum"));
      String item = "END_DATE";
      String seq = pageContext.getParameter("pSeqNum");
      Serializable[] parameters = {item, seq};
      am.invokeMethod("validateEndDate", parameters);

Similar Messages

  • Page Erroring if Fnd:Diagnostics profile is not set...

    Hi,
    When I run the OAF page and click on Apply the page was erroring as the Fnd:Diagnostics profile was not set I could not see the reasons for error. So I enabled the Fnd:Diagnostics profile at the responsibility level and when I openeed the page and clicked on apply, now the page is not erroring out. Is there any connection between this profile with the pages erroring out? Note: I am using pageContext.writeDiagnostics to log the comments....
    Thanks,
    Srikanth

    Hi,
    I am facing the similar issue
    but in my development instance it is working fine when i click on Yes or No button in my Dialog page,
    the issue arises when i try it out in my TEST instance or in SUPPORT instance,
    how can this work fine in one instance and fail in the others.
    The code in my PFR:
    String action = pageContext.getParameter(OAWebBeanConstants.EVENT_PARAM);
    String parrowid = pageContext.getParameter("paramRowid");
    OAApplicationModule am=(OAApplicationModule)pageContext.getApplicationModule(webBean);
    if ("deleterecord".equals(action))
    OAViewObject vo = (OAViewObject)am.findViewObject("HyperionNPIEOVO1");
    OAException dmsg=new OAException(" Do you wish to delete the Record? Please Confirm ");
    OADialogPage dpage=new OADialogPage(OAException.CONFIRMATION,dmsg,null,"","");
    dpage.setOkButtonLabel("Yes");
    dpage.setNoButtonLabel("No");
    dpage.setOkButtonToPost(true);
    dpage.setNoButtonToPost(true);
    dpage.setOkButtonItemName("DeleteYes");
    dpage.setPostToCallingPage(true);
    java.util.Hashtable ht=new java.util.Hashtable(1);
    ht.put("rowid",parrowid);
    ht.put("action",action);
    dpage.setFormParameters(ht);
    pageContext.redirectToDialogPage(dpage);
    if(pageContext.getParameter("DeleteYes")!=null)
    System.out.println("In Dialog");
    String s2=pageContext.getParameter("rowid");
    String s1=pageContext.getParameter("action");
    Serializable paramDel[] = {s1, s2};
    am.invokeMethod("deleteMethod",paramDel);
    plzzz provide me your valuable suggestions on this.
    Thanks in Advance,
    Afzal.
    Edited by: Afzal on Sep 20, 2011 9:28 PM

  • What is "FND : Diagnostics %"  profile option used for ?

    What is "FND : Diagnostics %" profile option used for ?
    How is it different from "FND : Debug%" profiles ?

    I guess my above update was misleading (Sorry for that) .. Please find below more details about (FND: Diagnostics) and (FND: Debug Log Enabled):
    Both profile options are used to configure logging, the difference between them is (FND: Debug Log Enabled) is a database profile option used to configure logging while (FND: Diagnostics) is used to configure logging to screen.
    Logging to screen provides:
    - The ability to enable logging on a per HTTP request or per HTTP session basis.
    - Dynamic configuration which does not require restarting any servers or changing any log profiles.
    - A convenient lightweight mechanism to diagnose performance issues. Each message is timestamped to the millisecond.
    If Logging to Screen is enabled, then the Java log messages generated for a particular HTTP Request-Response are buffered in memory and appended to the end of the generated HTML page.
    This feature does not affect any existing configurations of file or database logging. File or database logging continues to behave per the configured middle tier log properties and/or log profile values.
    Note that this mechanism currently provides only Java layer messages. Regular file or database logging should be used if messages from other layers (e.g., PL/SQL) are needed.
    In brief ..
    FND: Diagnostics (Self-Service) --> To see this, Login as that user and navigate to self-service, Click the Diagnostics link in the upper right corner
    - Default = “No”
    - Recommendation = “No”
    - Requires APPS password to use Examine function
    - Usually set to “Yes” during development

  • "FND: Diagnostics" profile option is disabled

    Hi,
    When I choose the system administration responsibility and click on JSP class information under Diagnostics, I get a message "FND: Diagnostics" profile option is disabled. What should I do to avoid this message and see the ouput.
    Thanks.

    Hi All,
    Thanks much for your help. The FND:Diagnostics setting at site level did help. The other levels are disabled. I actually did not bounce apache. After enabling FND:Diagnostics at site level, logged out and logged in again and this helped.
    Thanks.

  • I have tried replacing the Firefox start-up page with my own home page choice many times and it will not set--I get the circle with the slash through it when I try to drag the webpage icon to "home."

    I am using Windows 7 Professional, and have tried all of the recommended troubleshooting tips for this problem. I do not have the new version of Firefox installed because it had all kinds of problems so I went back to the version I had--I believe it was 3.6.24. Since then, I have not been able to set a home page. Any help out there? Thank You!

    Try to drag the tab or the website's favicon on the Home button if you currently drag selected text.
    If it doesn't work with dragging the icon then copy the URL to the clipboard and paste it via the Options window in the home page field.
    *Tools > Options > General > Startup: Home page
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode

  • Compensation Profile Page iViews Error Messages (Parameter CREVI not set)

    Hello Folks,
    We are currently implementing ECM with MSS and SAP Portal. In the Plan Compensation iView when I click on the Employee Name hyperlink it is launching Employee Compensation Profile page having General Data, Compensation Adjustments, Salary Development, Salary Survey Data, Compensation Guidelines, Compensation Eligibility, LT Incentive iViews.
    I am getting below listed messages in these iViews, I am not able to trace where the configuration for these is missing i.e. either in the Resource or Service or in any of the SPRO step. Could you please help me in pointing to the location where I am missing in the config part.
    General Data iView - "Internal error; Parameter CREVI is not set, Salary Development: An error occurred while the data was read."
    Salary Development, Salary Survey Data, LT Incentive iViews - "No data available"
    Compensation Guidelines, Compensation Eligibility iViews - "To display data, first select an employee".
    Thanks much for your help!
    Thanks,
    NVR.

    Hi NVR,
      Please check http://help.sap.com/erp2005_ehp_04/helpdata/EN/ff/c5d98c226848ebae8e7c2ce106db67/frameset.htm for settings and http://help.sap.com/erp2005_ehp_04/helpdata/EN/97/da81a2167345359f153fafcbc8aadf/frameset.htm and the like for the different section values.  We do not use some of the infotypes, so there is no data.  I am just down to a salary development error now.  Working with SAP on message 191413.  I wish you well.
    Best Regards,
    Mike

  • 'Profile Server Not Available' error when trying to access Profile Manager

    Hello all,
    I'm totally, totally new to OS X Server, but I have a class full of new iMac's and MacBook's that I want to be able to manage all in one go. Don't really mind about File Sharing, access from anywhere in the world etc. but I just want to be able to push updates to all of them at once as well as manage some default settings for them all.
    I've set up most of what I can see I need to do in OS X Server such as the server itself as a .local, Profile Manager, Websites, VPN, Open Directory and Software Update, but when I try to access my .local through any browser, I get the main screen, but get an error page when I try to go into Profile Manager that says 'Profile Server Not Available. Please wait a moment and try again.'
    Can anyone suggest where they think I might be going wrong or need to do? I can give more information or screenshots if needed, juts let me know. Any help super appreciated
    Yours,
    Elliot

    Hey,
    Sorry, because I'm so new I don't quite get what you mean. A little more information is I'm using my MacBook which is connected to the same WiFi network as the other Mac's. What do you mean by the FQDN?
    I'm able to type in the IP address etc. on any other of the Mac's and it loads the 'Welcome to OS X Server' page, it's just when I select Profile Manager, I get the error. Thanks for getting back though, appreciated the quick help.. and I'm still super stuck. I've got a whole day on it today ha.
    Elliot

  • Can you upload a facebook cover created in elements 13 to page that you manage? This is not my personal page but a community page. When I try to do this Elements asks me to revert back to my personal page.

    Can you upload a facebook cover created in elements 13 to page that you manage? This is not my personal page but a community page. When I try to do this Elements asks me to revert back to my personal page.

    Hi,
    You can also try one more workaround for this by using PSE Organizer. The steps are as follows:
    1. Create a facebook cover. In case you don't know how to creatw a facebook cover, please go through Photoshop Elements Help | Create a Facebook profile and cover picture
    2. Save the cover with "Include in Elements Organizer" option checked.
    3. Now, go to Elements Organizer and export that file.
        - Select the cover photo.
        - Go to File > Export as New File
        - Choose format and location.
        - Click OK.
    4. Now, you can use this file to upload.
    If you stuck somewhere or need any other assistance, do let me know.
    Thanks,
    Swapnil

  • Oracle.apps.fnd.framework.OAException: Could not load application module

    Hi All,
    Need an urgent help.
    I have creted new VO which extends to the seede VO. Ihave run jpx import utility to import all file and it has shows that import has been done succesfully.
    After that I have bounced apache and checking the page..It is giving error as
    oracle.apps.fnd.framework.OAException: Could not load application module 'oracle.apps.pon.homepages.buying.server.BuyerHomeAM'.
         at oracle.apps.fnd.framework.webui.OAJSPApplicationRegistry.registerApplicationModule(OAJSPApplicationRegistry.java:279)
         at oracle.apps.fnd.framework.webui.OAJSPApplicationRegistry.registerApplicationModule(OAJSPApplicationRegistry.java:78)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1166)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:497)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:418)
         at oa_html._OA._jspService(_OA.java:88)
         at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
         at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417)
         at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267)
         at oracle.jsp.JspServlet.internalService(JspServlet.java:186)
         at oracle.jsp.JspServlet.service(JspServlet.java:156)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
         at oracle.jsp.provider.Jsp20RequestDispatcher.forward(Jsp20RequestDispatcher.java:162)
         at oracle.jsp.runtime.OraclePageContext.forward(OraclePageContext.java:187)
         at oa_html._RF._jspService(_RF.java:102)
         at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
         at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417)
         at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267)
         at oracle.jsp.JspServlet.internalService(JspServlet.java:186)
         at oracle.jsp.JspServlet.service(JspServlet.java:156)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
         at org.apache.jserv.JServConnection.processRequest(JServConnection.java:456)
         at org.apache.jserv.JServConnection.run(JServConnection.java:294)
         at java.lang.Thread.run(Thread.java:484)
    ## Detail 0 ##
    JBO-30003: The application pool (schd001b.sch.ge.comgpsst11719201oracle.apps.pon.homepages.buying.server.BuyerHomeAM) failed to checkout an application module due to the following exception:
    oracle.jbo.JboException: JBO-29000: Unexpected exception caught: oracle.jbo.NoDefException, msg=JBO-25002: Definition mycompany.oracle.apps.pon.homepages.buying.server.mycompanyBuyerHomeNegotiationsGlanceVO of type View Definition not found
         at oracle.jbo.common.ampool.ApplicationPoolImpl.doCheckout(ApplicationPoolImpl.java:1610)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.useApplicationModule(ApplicationPoolImpl.java:2357)
         at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:427)
         at oracle.jbo.http.HttpSessionCookieImpl.useApplicationModule(HttpSessionCookieImpl.java:214)
         at oracle.apps.fnd.framework.webui.OAHttpSessionCookieImpl.useApplicationModule(OAHttpSessionCookieImpl.java:473)
         at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:398)
         at oracle.apps.fnd.framework.webui.OAJSPApplicationRegistry.registerApplicationModule(OAJSPApplicationRegistry.java:208)
         at oracle.apps.fnd.framework.webui.OAJSPApplicationRegistry.registerApplicationModule(OAJSPApplicationRegistry.java:78)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1166)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:497)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:418)
         at oa_html._OA._jspService(_OA.java:88)
         at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
         at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417)
         at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267)
         at oracle.jsp.JspServlet.internalService(JspServlet.java:186)
         at oracle.jsp.JspServlet.service(JspServlet.java:156)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
         at oracle.jsp.provider.Jsp20RequestDispatcher.forward(Jsp20RequestDispatcher.java:162)
         at oracle.jsp.runtime.OraclePageContext.forward(OraclePageContext.java:187)
         at oa_html._RF._jspService(_RF.java:102)
         at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
         at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417)
         at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267)
         at oracle.jsp.JspServlet.internalService(JspServlet.java:186)
         at oracle.jsp.JspServlet.service(JspServlet.java:156)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
         at org.apache.jserv.JServConnection.processRequest(JServConnection.java:456)
         at org.apache.jserv.JServConnection.run(JServConnection.java:294)
         at java.lang.Thread.run(Thread.java:484)
    ## Detail 0 ##
    oracle.jbo.NoDefException: JBO-25002: Definition mycompany.oracle.apps.pon.homepages.buying.server.mycompanyBuyerHomeNegotiationsGlanceVO of type View Definition not found
         at oracle.jbo.mom.DefinitionManager.findDefinitionObject(DefinitionManager.java:329)
         at oracle.jbo.mom.DefinitionManager.findDefinitionObject(DefinitionManager.java:269)
         at oracle.jbo.server.MetaObjectManager.findMetaObject(MetaObjectManager.java:649)
         at oracle.jbo.server.ViewDefImpl.findDefObject(ViewDefImpl.java:369)
         at oracle.jbo.server.ApplicationModuleDefImpl.loadViewObject(ApplicationModuleDefImpl.java:494)
         at oracle.jbo.server.ApplicationModuleDefImpl.loadComponents(ApplicationModuleDefImpl.java:673)
         at oracle.jbo.server.ApplicationModuleImpl.createRootApplicationModule(ApplicationModuleImpl.java:369)
         at oracle.jbo.server.ApplicationModuleHomeImpl.create(ApplicationModuleHomeImpl.java:91)
         at oracle.jbo.common.ampool.DefaultConnectionStrategy.createApplicationModule(DefaultConnectionStrategy.java:135)
         at oracle.jbo.common.ampool.DefaultConnectionStrategy.createApplicationModule(DefaultConnectionStrategy.java:76)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.instantiateResource(ApplicationPoolImpl.java:1984)
         at oracle.jbo.pool.ResourcePool.createResource(ResourcePool.java:361)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.doCheckout(ApplicationPoolImpl.java:1543)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.useApplicationModule(ApplicationPoolImpl.java:2357)
         at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:427)
         at oracle.jbo.http.HttpSessionCookieImpl.useApplicationModule(HttpSessionCookieImpl.java:214)
         at oracle.apps.fnd.framework.webui.OAHttpSessionCookieImpl.useApplicationModule(OAHttpSessionCookieImpl.java:473)
         at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:398)
         at oracle.apps.fnd.framework.webui.OAJSPApplicationRegistry.registerApplicationModule(OAJSPApplicationRegistry.java:208)
         at oracle.apps.fnd.framework.webui.OAJSPApplicationRegistry.registerApplicationModule(OAJSPApplicationRegistry.java:78)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1166)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:497)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:418)
         at oa_html._OA._jspService(_OA.java:88)
         at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
         at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417)
         at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267)
         at oracle.jsp.JspServlet.internalService(JspServlet.java:186)
         at oracle.jsp.JspServlet.service(JspServlet.java:156)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
         at oracle.jsp.provider.Jsp20RequestDispatcher.forward(Jsp20RequestDispatcher.java:162)
         at oracle.jsp.runtime.OraclePageContext.forward(OraclePageContext.java:187)
         at oa_html._RF._jspService(_RF.java:102)
         at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
         at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417)
         at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267)
         at oracle.jsp.JspServlet.internalService(JspServlet.java:186)
         at oracle.jsp.JspServlet.service(JspServlet.java:156)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
         at org.apache.jserv.JServConnection.processRequest(JServConnection.java:456)
         at org.apache.jserv.JServConnection.run(JServConnection.java:294)
         at java.lang.Thread.run(Thread.java:484)
    JBO-30003: The application pool (schd001b.sch.ge.comgpsst11719201oracle.apps.pon.homepages.buying.server.BuyerHomeAM) failed to checkout an application module due to the following exception:
    oracle.jbo.JboException: JBO-29000: Unexpected exception caught: oracle.jbo.NoDefException, msg=JBO-25002: Definition mycompany.oracle.apps.pon.homepages.buying.server.mycompanyBuyerHomeNegotiationsGlanceVO of type View Definition not found
         at oracle.jbo.common.ampool.ApplicationPoolImpl.doCheckout(ApplicationPoolImpl.java:1610)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.useApplicationModule(ApplicationPoolImpl.java:2357)
         at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:427)
         at oracle.jbo.http.HttpSessionCookieImpl.useApplicationModule(HttpSessionCookieImpl.java:214)
         at oracle.apps.fnd.framework.webui.OAHttpSessionCookieImpl.useApplicationModule(OAHttpSessionCookieImpl.java:473)
         at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:398)
         at oracle.apps.fnd.framework.webui.OAJSPApplicationRegistry.registerApplicationModule(OAJSPApplicationRegistry.java:208)
         at oracle.apps.fnd.framework.webui.OAJSPApplicationRegistry.registerApplicationModule(OAJSPApplicationRegistry.java:78)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1166)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:497)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:418)
         at oa_html._OA._jspService(_OA.java:88)
         at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
         at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417)
         at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267)
         at oracle.jsp.JspServlet.internalService(JspServlet.java:186)
         at oracle.jsp.JspServlet.service(JspServlet.java:156)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
         at oracle.jsp.provider.Jsp20RequestDispatcher.forward(Jsp20RequestDispatcher.java:162)
         at oracle.jsp.runtime.OraclePageContext.forward(OraclePageContext.java:187)
         at oa_html._RF._jspService(_RF.java:102)
         at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
         at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417)
         at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267)
         at oracle.jsp.JspServlet.internalService(JspServlet.java:186)
         at oracle.jsp.JspServlet.service(JspServlet.java:156)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
         at org.apache.jserv.JServConnection.processRequest(JServConnection.java:456)
         at org.apache.jserv.JServConnection.run(JServConnection.java:294)
         at java.lang.Thread.run(Thread.java:484)
    ## Detail 0 ##
    oracle.jbo.NoDefException: JBO-25002: Definition mycompany.oracle.apps.pon.homepages.buying.server.mycompanyBuyerHomeNegotiationsGlanceVO of type View Definition not found
         at oracle.jbo.mom.DefinitionManager.findDefinitionObject(DefinitionManager.java:329)
         at oracle.jbo.mom.DefinitionManager.findDefinitionObject(DefinitionManager.java:269)
         at oracle.jbo.server.MetaObjectManager.findMetaObject(MetaObjectManager.java:649)
         at oracle.jbo.server.ViewDefImpl.findDefObject(ViewDefImpl.java:369)
         at oracle.jbo.server.ApplicationModuleDefImpl.loadViewObject(ApplicationModuleDefImpl.java:494)
         at oracle.jbo.server.ApplicationModuleDefImpl.loadComponents(ApplicationModuleDefImpl.java:673)
         at oracle.jbo.server.ApplicationModuleImpl.createRootApplicationModule(ApplicationModuleImpl.java:369)
         at oracle.jbo.server.ApplicationModuleHomeImpl.create(ApplicationModuleHomeImpl.java:91)
         at oracle.jbo.common.ampool.DefaultConnectionStrategy.createApplicationModule(DefaultConnectionStrategy.java:135)
         at oracle.jbo.common.ampool.DefaultConnectionStrategy.createApplicationModule(DefaultConnectionStrategy.java:76)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.instantiateResource(ApplicationPoolImpl.java:1984)
         at oracle.jbo.pool.ResourcePool.createResource(ResourcePool.java:361)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.doCheckout(ApplicationPoolImpl.java:1543)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.useApplicationModule(ApplicationPoolImpl.java:2357)
         at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:427)
         at oracle.jbo.http.HttpSessionCookieImpl.useApplicationModule(HttpSessionCookieImpl.java:214)
         at oracle.apps.fnd.framework.webui.OAHttpSessionCookieImpl.useApplicationModule(OAHttpSessionCookieImpl.java:473)
         at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:398)
         at oracle.apps.fnd.framework.webui.OAJSPApplicationRegistry.registerApplicationModule(OAJSPApplicationRegistry.java:208)
         at oracle.apps.fnd.framework.webui.OAJSPApplicationRegistry.registerApplicationModule(OAJSPApplicationRegistry.java:78)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1166)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:497)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:418)
         at oa_html._OA._jspService(_OA.java:88)
         at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
         at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417)
         at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267)
         at oracle.jsp.JspServlet.internalService(JspServlet.java:186)
         at oracle.jsp.JspServlet.service(JspServlet.java:156)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
         at oracle.jsp.provider.Jsp20RequestDispatcher.forward(Jsp20RequestDispatcher.java:162)
         at oracle.jsp.runtime.OraclePageContext.forward(OraclePageContext.java:187)
         at oa_html._RF._jspService(_RF.java:102)
         at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
         at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417)
         at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267)
         at oracle.jsp.JspServlet.internalService(JspServlet.java:186)
         at oracle.jsp.JspServlet.service(JspServlet.java:156)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
         at org.apache.jserv.JServConnection.processRequest(JServConnection.java:456)
         at org.apache.jserv.JServConnection.run(JServConnection.java:294)
         at java.lang.Thread.run(Thread.java:484)
    Can anyone help me in this regard..
    Thanks in advance

    Please confirm the classpath where
    mycompany.oracle.apps.pon.homepages.buying.server.mycompanyBuyerHomeNegotiationsGlanceVO
    is added in the jserv.properities file in the application server.
    --Bala                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Oracle.apps.fnd.framework.OAException: Message not found. Application: FND

    Hi Team,
    In My Project i am using One AM called rootAM and 2 VO's are attached with the rootAM,While running the page i am getting following error ..Please help me.......
    oracle.apps.fnd.framework.OAException: Message not found. Application: FND, Message Name: FND_VIEWOBJECT_NOT_FOUND. Tokens: VONAME = SearchVO1; APPLICATION_MODULE = learning.oracle.apps.icx.update.server.rootAM;

    Hi,
    Have u deployed the VO and associted class files ?
    Chk in the controller have u referred any VO with SearchVO1, it should be SearchVO.

  • Player Works in Administrator Profile, But Not User Profiles

    I am running Windows XP, SP 3, and Flash Player 10.0.32.18.
    Flash Player functions correctly in my administrator desktop profile, but whenever my wife or my daughter try to use a function on a Web site that uses Flash, they get a prompt to update Flash Player.  I have downloaded the update on my wife's profile over and over again (because she has administrator rights, my daughter's profile does not), but the same prompt appears when clicking on whatever Web page function she wants to use.  I had the same issue with Nero a couple of years ago, and the company that publishes that program had a program that I downloaded to enable their product to function in all user profiles.
    Is there a similar solution for Flash Player?  I have not found a reference to such a solution anywhere.
    Please advise.  Thanks.

    In order to use it with OS X it must be compatible with a Mac and its drive must be formatted to use on a Mac. Since the device is apparently not originally intended to be used on a Mac you should contact Creative and obtain instructions for doing so if in fact it's possible to do so.

  • ORA-20001: FND-ORG_ID PROFILE CANNOT READ: N, OPTION, MO: Operating Unit

    Hi All,
    I have a issue major issue while running Pages from Jdeveloper. The pages are erroring out.
    I guess it has something to do with Profile Options- MO: Operating Unit.
    Its very urgent.Can anybody help.
    Below is the ERROR STACK related to the same
    Exception Details.
    oracle.apps.fnd.framework.OAException: Application: FND, Message Name: SQL_PLSQL_ERROR. Tokens: ROUTINE = AppsConnectionManager.appsInitialize(int,int,int,int,Connection):23120,-1,-1,0,oracle.jdbc.driver.OracleConnection@9aba32; REASON = java.sql.SQLException: ORA-20001: FND-ORG_ID PROFILE CANNOT READ: N, OPTION, MO: Operating Unit
    ORA-06512: at "APPS.FND_MESSAGE", line 498
    ORA-06512: at "APPS.FND_CLIENT_INFO", line 141
    ORA-06512: at "APPS.FND_GLOBAL", line 1977
    ORA-06512: at "APPS.FND_GLOBAL", line 2171
    ORA-06512: at "APPS.FND_GLOBAL", line 2313
    ORA-06512: at "APPS.FND_GLOBAL", line 2251
    ORA-06512: at line 1
    ; ERRNO = 20001;
         at oracle.apps.fnd.framework.server.OAExceptionUtils.processAOLJErrorStack(OAExceptionUtils.java:988)
         at oracle.apps.fnd.framework.OACommonUtils.processAOLJErrorStack(OACommonUtils.java:866)
         at oracle.apps.fnd.framework.CreateIcxSession.createTransaction(CreateIcxSession.java:525)
         at runregion.jspService(runregion.jsp:103)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:317)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:465)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:379)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:727)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:306)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:767)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:259)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:106)
         at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:803)
         at java.lang.Thread.run(Thread.java:534)
    ## Detail 0 ##
    oracle.apps.fnd.framework.OAException: Application: FND, Message Name: FND_GENERIC_MESSAGE. Tokens: MESSAGE = java.sql.SQLException: ORA-20001: FND-ORG_ID PROFILE CANNOT READ: N, OPTION, MO: Operating Unit
    ORA-06512: at "APPS.FND_MESSAGE", line 498
    ORA-06512: at "APPS.FND_CLIENT_INFO", line 141
    ORA-06512: at "APPS.FND_GLOBAL", line 1977
    ORA-06512: at "APPS.FND_GLOBAL", line 2171
    ORA-06512: at "APPS.FND_GLOBAL", line 2313
    ORA-06512: at "APPS.FND_GLOBAL", line 2251
    ORA-06512: at line 1
         at oracle.apps.fnd.framework.OAException.wrapperException(OAException.java:891)
         at oracle.apps.fnd.framework.OAException.wrapperException(OAException.java:865)
         at oracle.apps.fnd.framework.server.OAExceptionUtils.processAOLJErrorStack(OAExceptionUtils.java:980)
         at oracle.apps.fnd.framework.OACommonUtils.processAOLJErrorStack(OACommonUtils.java:866)
         at oracle.apps.fnd.framework.CreateIcxSession.createTransaction(CreateIcxSession.java:525)
         at runregion.jspService(runregion.jsp:103)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:317)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:465)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:379)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:727)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:306)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:767)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:259)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:106)
         at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:803)
         at java.lang.Thread.run(Thread.java:534)
    ## Detail 0 ##
    java.sql.SQLException: ORA-20001: FND-ORG_ID PROFILE CANNOT READ: N, OPTION, MO: Operating Unit
    ORA-06512: at "APPS.FND_MESSAGE", line 498
    ORA-06512: at "APPS.FND_CLIENT_INFO", line 141
    ORA-06512: at "APPS.FND_GLOBAL", line 1977
    ORA-06512: at "APPS.FND_GLOBAL", line 2171
    ORA-06512: at "APPS.FND_GLOBAL", line 2313
    ORA-06512: at "APPS.FND_GLOBAL", line 2251
    ORA-06512: at line 1
         at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:134)
         at oracle.jdbc.ttc7.TTIoer.processError(TTIoer.java:289)
         at oracle.jdbc.ttc7.Oall7.receive(Oall7.java:583)
         at oracle.jdbc.ttc7.TTC7Protocol.doOall7(TTC7Protocol.java:1986)
         at oracle.jdbc.ttc7.TTC7Protocol.parseExecuteFetch(TTC7Protocol.java:1144)
         at oracle.jdbc.driver.OracleStatement.executeNonQuery(OracleStatement.java:2176)
         at oracle.jdbc.driver.OracleStatement.doExecuteOther(OracleStatement.java:2050)
         at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:2959)
         at oracle.jdbc.driver.OraclePreparedStatement.executeUpdate(OraclePreparedStatement.java:650)
         at oracle.jdbc.driver.OraclePreparedStatement.execute(OraclePreparedStatement.java:726)
         at oracle.apps.fnd.security.AppsConnectionManager.appsInitialize(AppsConnectionManager.java:472)
         at oracle.apps.fnd.security.AppsConnectionManager.borrowConnection(AppsConnectionManager.java:319)
         at oracle.apps.fnd.common.Context.borrowConnection(Context.java:1773)
         at oracle.apps.fnd.common.AppsContext.getPrivateConnectionFinal(AppsContext.java:2460)
         at oracle.apps.fnd.common.AppsContext.getPrivateConnection(AppsContext.java:2398)
         at oracle.apps.fnd.common.AppsContext.getJDBCConnection(AppsContext.java:2257)
         at oracle.apps.fnd.common.AppsContext.getLocalJDBCConnection(AppsContext.java:2650)
         at oracle.apps.fnd.common.AppsContext.getLocalJDBCConnection(AppsContext.java:2584)
         at oracle.apps.fnd.common.AppsContext.getLocalJDBCConnection(AppsContext.java:2564)
         at oracle.apps.fnd.common.WebAppsContext.createTransaction(WebAppsContext.java:2610)
         at oracle.apps.fnd.framework.CreateIcxSession.createTransaction(CreateIcxSession.java:504)
         at runregion.jspService(runregion.jsp:103)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:317)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:465)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:379)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:727)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:306)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:767)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:259)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:106)
         at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:803)
         at java.lang.Thread.run(Thread.java:534)
    oracle.apps.fnd.framework.OAException: Application: FND, Message Name: FND_GENERIC_MESSAGE. Tokens: MESSAGE = java.sql.SQLException: ORA-20001: FND-ORG_ID PROFILE CANNOT READ: N, OPTION, MO: Operating Unit
    ORA-06512: at "APPS.FND_MESSAGE", line 498
    ORA-06512: at "APPS.FND_CLIENT_INFO", line 141
    ORA-06512: at "APPS.FND_GLOBAL", line 1977
    ORA-06512: at "APPS.FND_GLOBAL", line 2171
    ORA-06512: at "APPS.FND_GLOBAL", line 2313
    ORA-06512: at "APPS.FND_GLOBAL", line 2251
    ORA-06512: at line 1
         at oracle.apps.fnd.framework.OAException.wrapperException(OAException.java:891)
         at oracle.apps.fnd.framework.OAException.wrapperException(OAException.java:865)
         at oracle.apps.fnd.framework.server.OAExceptionUtils.processAOLJErrorStack(OAExceptionUtils.java:980)
         at oracle.apps.fnd.framework.OACommonUtils.processAOLJErrorStack(OACommonUtils.java:866)
         at oracle.apps.fnd.framework.CreateIcxSession.createTransaction(CreateIcxSession.java:525)
         at runregion.jspService(runregion.jsp:103)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:317)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:465)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:379)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:727)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:306)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:767)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:259)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:106)
         at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:803)
         at java.lang.Thread.run(Thread.java:534)
    ## Detail 0 ##
    java.sql.SQLException: ORA-20001: FND-ORG_ID PROFILE CANNOT READ: N, OPTION, MO: Operating Unit
    ORA-06512: at "APPS.FND_MESSAGE", line 498
    ORA-06512: at "APPS.FND_CLIENT_INFO", line 141
    ORA-06512: at "APPS.FND_GLOBAL", line 1977
    ORA-06512: at "APPS.FND_GLOBAL", line 2171
    ORA-06512: at "APPS.FND_GLOBAL", line 2313
    ORA-06512: at "APPS.FND_GLOBAL", line 2251
    ORA-06512: at line 1
         at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:134)
         at oracle.jdbc.ttc7.TTIoer.processError(TTIoer.java:289)
         at oracle.jdbc.ttc7.Oall7.receive(Oall7.java:583)
         at oracle.jdbc.ttc7.TTC7Protocol.doOall7(TTC7Protocol.java:1986)
         at oracle.jdbc.ttc7.TTC7Protocol.parseExecuteFetch(TTC7Protocol.java:1144)
         at oracle.jdbc.driver.OracleStatement.executeNonQuery(OracleStatement.java:2176)
         at oracle.jdbc.driver.OracleStatement.doExecuteOther(OracleStatement.java:2050)
         at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:2959)
         at oracle.jdbc.driver.OraclePreparedStatement.executeUpdate(OraclePreparedStatement.java:650)
         at oracle.jdbc.driver.OraclePreparedStatement.execute(OraclePreparedStatement.java:726)
         at oracle.apps.fnd.security.AppsConnectionManager.appsInitialize(AppsConnectionManager.java:472)
         at oracle.apps.fnd.security.AppsConnectionManager.borrowConnection(AppsConnectionManager.java:319)
         at oracle.apps.fnd.common.Context.borrowConnection(Context.java:1773)
         at oracle.apps.fnd.common.AppsContext.getPrivateConnectionFinal(AppsContext.java:2460)
         at oracle.apps.fnd.common.AppsContext.getPrivateConnection(AppsContext.java:2398)
         at oracle.apps.fnd.common.AppsContext.getJDBCConnection(AppsContext.java:2257)
         at oracle.apps.fnd.common.AppsContext.getLocalJDBCConnection(AppsContext.java:2650)
         at oracle.apps.fnd.common.AppsContext.getLocalJDBCConnection(AppsContext.java:2584)
         at oracle.apps.fnd.common.AppsContext.getLocalJDBCConnection(AppsContext.java:2564)
         at oracle.apps.fnd.common.WebAppsContext.createTransaction(WebAppsContext.java:2610)
         at oracle.apps.fnd.framework.CreateIcxSession.createTransaction(CreateIcxSession.java:504)
         at runregion.jspService(runregion.jsp:103)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:317)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:465)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:379)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:727)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:306)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:767)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:259)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:106)
         at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:803)
         at java.lang.Thread.run(Thread.java:534)
    Thanks,
    Sombit.

    Hi,
    Can you please let me know where we can set the custom property MULTIORG_ENABLED in AM?Please see (Oracle Applications Multiple Organizations Access Control for Custom Code [ID 420787.1]) -- Search for "MULTIORG_ENABLED".
    Thanks,
    Hussein

  • MSS - Compensation Profile iViews Error Messages (Parameter CREVI not set)

    Hello Folks,
    We are currently implementing ECM with MSS and SAP Portal. In the Plan Compensation iView when I click on the Employee Name hyperlink it is launching Employee Compensation Profile page having General Data, Compensation Adjustments, Salary Development, Salary Survey Data, Compensation Guidelines, Compensation Eligibility, LT Incentive iViews.
    I am getting below listed messages in these iViews, I am not able to trace where the configuration for these is missing i.e. either in the Resource or Service or in any of the SPRO step. Could you please help me in pointing to the location where I am missing in the config part.
    General Data iView - "Internal error; Parameter CREVI is not set, Salary Development: An error occurred while the data was read."
    Salary Development, Salary Survey Data, LT Incentive iViews - "No data available"
    Compensation Guidelines, Compensation Eligibility iViews - "To display data, first select an employee".
    Thanks much for your help!
    Thanks,
    NVR.

    Enter in the iview PCD portal content :
    iView Compensation Planning - edit iview - in propertes search for the field Compensation Review (CREV) it's optional and fey from SAP Table T71ADM08
    Edited by: Javier Ignacio Serrano Zamorano on May 5, 2010 10:20 PM

  • Profile Manager not quite loading...

    Hi all,
    I have a question about Profile Manager not loading on a fresh install. I've got this working in the past, but don't ask me how as I don't know anymore, plus the conditions were different.
    Now when I go to https://server.example.com/profilemanager or /mydevices I can't even log in and it doesn't show anything. The status bar in Safari shows that 5 out of 7 items have been loaded and when I view the source, it shows:
    <!DOCTYPE html><html>  <head>    <script>    var _SC_performanceEvents = { headStart: new Date().getTime() };    </script>        <meta http-equiv="Content-type" content="text/html; charset=utf-8" />    <meta http-equiv="X-UA-Compatible" content="IE=8" />    <meta http-equiv="Content-Script-Type" content="text/javascript" />    <meta name="apple-mobile-web-app-capable" content="yes" />    <meta name="apple-mobile-web-app-status-bar-style" content="default" />    <meta name="viewport" content="initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no" />    <link rel="apple-touch-icon" href="/devicemanagement/console/sproutcore/foundation/en/b74a542f762e55107620d6f19465a 4ec3258c4df/images/sproutcore-logo.png" />  <link rel="apple-touch-startup-image" media="screen and (orientation:portrait)" href="/devicemanagement/console/sproutcore/foundation/en/b74a542f762e55107620d6f19465a 4ec3258c4df/images/sproutcore-startup-portrait.png" />        <link rel="apple-touch-startup-image" media="screen and (orientation:landscape)" href="/devicemanagement/console/sproutcore/foundation/en/b74a542f762e55107620d6f19465a 4ec3258c4df/images/sproutcore-startup-landscape.png" />  <link rel="shortcut icon" href="" type="image/x-icon" />        <title>Admin</title>  <script type="text/javascript">/* >>>>>>>>>> BEGIN source/core.js */// ==========================================================================// Project:   SproutCore - JavaScript Application Framework// Copyright: ©2006-2009 Sprout Systems, Inc. and contributors.//            Portions ©2008-2009 Apple Inc. All rights reserved.// License:   Licensed under MIT license (see license.js)// ==========================================================================
    /* >>>>>>>>>> BEGIN source/system/browser.js */// ==========================================================================// Project:   SproutCore - JavaScript Application Framework// Copyright: ©2006-2009 Sprout Systems, Inc. and contributors.//            Portions ©2008-2009 Apple Inc. All rights reserved.// License:   Licensed under MIT license (see license.js)// ==========================================================================
    var SC = SC || { BUNDLE_INFO: {}, LAZY_INSTANTIATION: {} };
    SC.browser = (function() {  var userAgent = navigator.userAgent.toLowerCase(),      version = (userAgent.match( /.+(?:rv|it|ra|ie)[\/: ]([\d.]+)/ ) || [])[1] ;
      var browser = {    version: version,    safari: (/webkit/).test( userAgent ) ? version : 0,    opera: (/opera/).test( userAgent ) ? version : 0,    msie: (/msie/).test( userAgent ) && !(/opera/).test( userAgent ) ? version : 0,    mozilla: (/mozilla/).test( userAgent ) && !(/(compatible|webkit)/).test( userAgent ) ? version : 0,    mobileSafari: (/apple.*mobile.*safari/).test(userAgent) ? version : 0,    chrome: (/chrome/).test( userAgent ) ? version : 0,    windows: !!(/(windows)/).test(userAgent),    mac: !!((/(macintosh)/).test(userAgent) || (/(mac os x)/).test(userAgent)),    language: (navigator.language || navigator.browserLanguage).split('-', 1)[0]  };      browser.current = browser.msie ? 'msie' : browser.mozilla ? 'mozilla' : browser.safari ? 'safari' : browser.opera ? 'opera' : 'unknown' ;  return browser ;})();
    /* >>>>>>>>>> BEGIN source/system/bench.js */// ==========================================================================// Project:   SproutCore - JavaScript Application Framework// Copyright: ©2006-2010 Sprout Systems, Inc. and contributors.//            Portions ©2008-2010 Apple Inc. All rights reserved.// License:   Licensed under MIT license (see license.js)// ==========================================================================
    // sc_require("system/browser")if (typeof _SC_performanceEvents !== "undefined") {  SC._performanceEvents = _SC_performanceEvents;  _SC_performanceEvents = undefined;} else {  SC._performanceEvents = { headStart: new Date().getTime() };}/* >>>>>>>>>> BEGIN source/system/loader.js */// ==========================================================================// Project:   SproutCore - JavaScript Application Framework// Copyright: ©2006-2009 Sprout Systems, Inc. and contributors.//            Portions ©2008-2009 Apple Inc. All rights reserved.// License:   Licensed under MIT license (see license.js)// ==========================================================================
    // sc_require("system/browser");
    SC.bundleDidLoad = function(bundle) {  var info = this.BUNDLE_INFO[bundle] ;  if (!info) info = this.BUNDLE_INFO[bundle] = {} ;  info.loaded = true ;};
    SC.bundleIsLoaded = function(bundle) {  var info = this.BUNDLE_INFO[bundle] ;  return info ? !!info.loaded : false ;};
    SC.loadBundle = function() { throw "SC.loadBundle(): SproutCore is not loaded."; };
    SC.setupBodyClassNames = function() {  var el = document.body ;  if (!el) return ;  var browser, platform, shadows, borderRad, classNames, style;  browser = SC.browser.current ;  platform = SC.browser.windows ? 'windows' : SC.browser.mac ? 'mac' : 'other-platform' ;  style = document.documentElement.style;  shadows = (style.MozBoxShadow !== undefined) ||                 (style.webkitBoxShadow !== undefined) ||                (style.oBoxShadow !== undefined) ||                (style.boxShadow !== undefined);    borderRad = (style.MozBorderRadius !== undefined) ||               (style.webkitBorderRadius !== undefined) ||              (style.oBorderRadius !== undefined) ||              (style.borderRadius !== undefined);    classNames = el.className ? el.className.split(' ') : [] ;  if(shadows) classNames.push('box-shadow');  if(borderRad) classNames.push('border-rad');  classNames.push(browser) ;  classNames.push(platform) ;  if (parseInt(SC.browser.msie,0)==7) classNames.push('ie7') ;  if (SC.browser.mobileSafari) classNames.push('mobile-safari') ;  if ('createTouch' in document) classNames.push('touch');  el.className = classNames.join(' ') ;} ;
    /* >>>>>>>>>> BEGIN bundle_loaded.js */; if ((typeof SC !== 'undefined') && SC && SC.bundleDidLoad) SC.bundleDidLoad('sproutcore/bootstrap');
    </script>
         <link href="/devicemanagement/console/sproutcore/en/a8b61437c15a278078f3fffb972489104026f783 /stylesheet-packed.css" rel="stylesheet" type="text/css" />  <link href="/devicemanagement/console/apple_theme_v2/en/63cd5f0fb706373f354a879d93bb4f0dc898 b2b2/stylesheet.css" rel="stylesheet" type="text/css" />  <link href="/devicemanagement/console/admin/en/0803f0af1163f6efa8d9d71f0cc7179d84da0f27/styl esheet.css" rel="stylesheet" type="text/css" />       <script>    SC._performanceEvents['headEnd'] = new Date().getTime();    </script>  </head>      <body class="apple-theme-v2 focus">      <script>    SC._performanceEvents['bodyStart'] = new Date().getTime();    </script><script type="text/javascript">/* >>>>>>>>>> BEGIN source/setup_body_class_names.js */// ==========================================================================// Project:   SproutCore - JavaScript Application Framework// Copyright: ©2006-2009 Sprout Systems, Inc. and contributors.//            Portions ©2008-2009 Apple Inc. All rights reserved.// License:   Licensed under MIT license (see license.js)// ==========================================================================
    // sc_resource('setup_body_class_names'); // publish into inline format
    if (SC.setupBodyClassNames) SC.setupBodyClassNames() ;
    </script>
      <script type="text/javascript" src="/devicemanagement/console/sproutcore/en/a8b61437c15a278078f3fffb972489104026f783 /javascript-packed.js"></script>  <script type="text/javascript" src="/devicemanagement/console/apple_theme_v2/en/63cd5f0fb706373f354a879d93bb4f0dc898 b2b2/javascript.js"></script>  <script type="text/javascript" src="/devicemanagement/console/admin/en/0803f0af1163f6efa8d9d71f0cc7179d84da0f27/java script.js"></script><script type="text/javascript">String.preferredLanguage = "en";</script>
      <script>  SC._performanceEvents['bodyEnd'] = new Date().getTime();  </script> </body></html>
    ...which looks fine to me. My question is: why doesn't the page show up at all (ultimately it fails)?
    I have included a screen print of my server's server.app below:
    Thanks in advance.

    I had multiple IP's set on my server, which randomly seemed to switch. It seems like there is an incompatibility still between Server Admin and server.app. Since Apple is pressing developers to test server admin and server.app I am confident those problems will resolve eventually, but for now I have deleted all-but-1 IPv4 and 1 IPv6 address (same interface), the networking interface overview for my server within Server Admin was updated and it looks like it works solid now, this was not by design I presume, so this must be another bug plaguing Lion...
    After upgrading Postgres to 9.1.3 and upgrading webmail (upgrade: usr/share/webmail) from www.roundcube.net, making a new site webmail.example.com with the files stored in /Library/Server/Web/Data/Sites/CustomSitesDefault/webmail/ I made a symbolic link from that 'directory' to the actual built in webmail facility found in /usr/share/webmail by entering the following in terminal.
    ln -s -i /usr/share/webmail/ /Library/Server/Web/Data/Sites/CustomSitesDefault/webmail/
    By doing this it will ask to remove a directory, if you didn't put any important files in there, which I presume you didn't, confirm with the letter y and press enter.
    Webmail now works every time the way I want it The same goes for Profile Manager, at least for now...

  • User Profile Synchronization not displaying Title field correctly

    Hello,
    I've an issue with User Profile Synchronization (SP 2010). The Title field is displaying correctly for most of the users but still there are few user for them the Title field is blank. However in "User Information List" it displays the Title field
    properly for those users. But in Central Administration when I check the User Profiles it's blank.I have already run Full Profile Synchronization few times in Central Administrations. Every time it's shows as successful but still no luck, still the Title field
    is blank for some profiles.
    Can anybody help on this? Thanks in advance.

    Hi ,
    Firstly , I need to verify the followings:
    Whether the title field of user information list is changed if you type a value in user profile page and perform full sync.
    Whether you have upgraded to SharePoint 2010.
    If you have upgraded to SharePoint 2010, you need to make sure the user information list is mapped or connected to AD directly. More information, please refer to the post below:
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/926abf50-83a0-4e9c-a4cb-4848fcf4f88d/sharepoint-2010-userprofile-title-field-empty?forum=sharepointgeneralprevious
    If this issue still exists, please create a new User Profile Services Application, and compare the result.
    Here are some similar posts for you to take a look at:
    http://social.technet.microsoft.com/Forums/en-US/0b9b5747-80b2-4a2e-8e8e-c918bc9d6cbd/user-profile-synchronization-not-working-correctly?forum=sharepointadmin
    http://blog-sharepoint.blogspot.in/2010/08/user-information-list-not-synchronised.html
    I hope this helps.
    Thanks,
    Wendy
    Wendy Li
    TechNet Community Support

Maybe you are looking for