Try to add new View object to an exist AM

Dears ,
i'm trying to create new text filed in an exist OAF page and i have create anew vo and add it to the exist AM the below erroe has been appeared
Message not found. Application: FND, Message Name: FND_VIEWOBJECT_NOT_FOUND. Tokens: VONAME = XxTedExtVONEW1; APPLICATION_MODULE = xxted.oracle.apps.per.extint.server.XxTedExtAM;
below is the code of XxTedExtAM  and the red is my code for adding the new view object:
/*     */ package xxted.oracle.apps.per.extint.server;
/*     */ import java.io.PrintStream;
/*     */ import oracle.apps.fnd.framework.OAException;
/*     */ import oracle.apps.fnd.framework.OARow;
/*     */ import oracle.apps.fnd.framework.OAViewObject;
/*     */ import oracle.apps.fnd.framework.server.OAApplicationModuleImpl;
/*     */ import oracle.apps.fnd.framework.server.OADBTransaction;
/*     */ import oracle.jbo.Row;
/*     */ import oracle.jbo.domain.Date;
/*     */ import oracle.jbo.domain.Number;
/*     */ import oracle.jbo.server.ViewLinkImpl;
/*     */ public class XxTedExtAMImpl extends OAApplicationModuleImpl
/*     */   public XxTedAnotherJobVOImpl getXxTedAnotherJobVO1()
/*  19 */     return (XxTedAnotherJobVOImpl)findViewObject("XxTedAnotherJobVO1");
/*     */   public XxTedCompenVOImpl getXxTedCompenVO1()
/*  24 */     return (XxTedCompenVOImpl)findViewObject("XxTedCompenVO1");
/*     */   public XxTedCultIssueVOImpl getXxTedCultIssueVO1()
/*  29 */     return (XxTedCultIssueVOImpl)findViewObject("XxTedCultIssueVO1");
/*     */   public XxTedGuidlinesVOImpl getXxTedGuidlinesVO1()
/*  34 */     return (XxTedGuidlinesVOImpl)findViewObject("XxTedGuidlinesVO1");
/*     */   public XxTedJobIssueVOImpl getXxTedJobIssueVO1()
/*  39 */     return (XxTedJobIssueVOImpl)findViewObject("XxTedJobIssueVO1");
/*     */   public XxTedLeaveResVOImpl getXxTedLeaveResVO1()
/*  44 */      return (XxTedLeaveResVOImpl)findViewObject("XxTedLeaveResVO1");
/*     */   public XxTedRelIssueVOImpl getXxTedRelIssueVO1()
/*  49 */     return (XxTedRelIssueVOImpl)findViewObject("XxTedRelIssueVO1");
/*     */   public XxTedTerminologyVOImpl getXxTedTerminologyVO1()
/*  54 */     return (XxTedTerminologyVOImpl)findViewObject("XxTedTerminologyVO1");
/*     */   public static void main(String[] args)
/*  58 */     launchTester("xxted.oracle.apps.per.extint.server", "XxTedExtAMLocal");
/*     */   public XxTedExitInterviewVOImpl getXxTedExitInterviewVO1()
/*  64 */     return (XxTedExitInterviewVOImpl)findViewObject("XxTedExitInterviewVO1");
/*     */   public XxTedExitintDetF1VOImpl getXxTedExitintDetF1VO1()
/*  69 */     return (XxTedExitintDetF1VOImpl)findViewObject("XxTedExitintDetF1VO1");
/*     */   public XxTedExitintDetF2VOImpl getXxTedExitintDetF2VO1()
/*  74 */     return (XxTedExitintDetF2VOImpl)findViewObject("XxTedExitintDetF2VO1");
/*     */   public XxTedExitintDetF3VOImpl getXxTedExitintDetF3VO1()
/*  79 */     return (XxTedExitintDetF3VOImpl)findViewObject("XxTedExitintDetF3VO1");
/*     */   public XxTedExitintDetF4VOImpl getXxTedExitintDetF4VO1()
/*  84 */     return (XxTedExitintDetF4VOImpl)findViewObject("XxTedExitintDetF4VO1");
/*     */   public XxTedExitintDetF5VOImpl getXxTedExitintDetF5VO1()
/*  89 */     return (XxTedExitintDetF5VOImpl)findViewObject("XxTedExitintDetF5VO1");
/*     */   public XxTedExitintDetF6VOImpl getXxTedExitintDetF6VO1()
/*  94 */     return (XxTedExitintDetF6VOImpl)findViewObject("XxTedExitintDetF6VO1");
/*     */   public ViewLinkImpl getXxTedExitintDetF1VL1()
/*  99 */     return (ViewLinkImpl)findViewLink("XxTedExitintDetF1VL1");
/*     */   public ViewLinkImpl getXxTedExitintDetF2VL1()
/* 104 */     return (ViewLinkImpl)findViewLink("XxTedExitintDetF2VL1");
/*     */   public ViewLinkImpl getXxTedExitintDetF3VL1()
/* 109 */     return (ViewLinkImpl)findViewLink("XxTedExitintDetF3VL1");
/*     */   public ViewLinkImpl getXxTedExitintDetF4VL1()
/* 114 */     return (ViewLinkImpl)findViewLink("XxTedExitintDetF4VL1");
/*     */   public ViewLinkImpl getXxTedExitintDetF5VL1()
/* 119 */     return (ViewLinkImpl)findViewLink("XxTedExitintDetF5VL1");
/*     */   public ViewLinkImpl getXxTedExitintDetF6VL1()
/* 124 */     return (ViewLinkImpl)findViewLink("XxTedExitintDetF6VL1");
/*     */   public XxTedReqIdVOImpl getXxTedReqIdVO1()
/* 129 */     return (XxTedReqIdVOImpl)findViewObject("XxTedReqIdVO1");
/*     */   public XxTedInterviewerVOImpl getXxTedInterviewerVO1()
/* 134 */     return (XxTedInterviewerVOImpl)findViewObject("XxTedInterviewerVO1");
/*     */   public void initRecords()
/* 138 */     OAViewObject XxTedEmpDataVO = getXxTedEmpDataVO1();
/* 139 */     Row[] empRow = XxTedEmpDataVO.getAllRowsInRange();
/* 140 */     XxTedEmpDataVORowImpl empRowImp = (XxTedEmpDataVORowImpl)empRow[0];
/* 141 */     OAViewObject XxTedReqIdVO = getXxTedReqIdVO1();
/* 142 */     if (!XxTedReqIdVO.isPreparedForExecution())
/* 144 */       XxTedReqIdVO.executeQuery();
/* 146 */     Row[] reqRow = XxTedReqIdVO.getAllRowsInRange();
/* 147 */     XxTedReqIdVORowImpl reqRowImp = (XxTedReqIdVORowImpl)reqRow[0];
/* 149 */     OAViewObject XxTedExitInterviewVO = getXxTedExitInterviewVO1();
/* 150 */     if (!XxTedExitInterviewVO.isPreparedForExecution())
/* 152 */       XxTedExitInterviewVO.setMaxFetchSize(0);
/* 153 */       XxTedExitInterviewVO.executeQuery();
/* 154 */       XxTedExitInterviewVO.setMaxFetchSize(-1);
/* 156 */     Row row = XxTedExitInterviewVO.createRow();
/* 157 */     row.setAttribute("RequestId", reqRowImp.getAttribute("Reqid"));
/* 158 */     row.setAttribute("RequesterId", empRowImp.getAttribute("EmployeeNumber"));
/* 160 */     XxTedExitInterviewVO.insertRow(row);
/* 161 */     row.setNewRowState((byte)0);
/*     */   public void execQueries(String userId)
/* 166 */     OAViewObject XxTedGuidlinesVO = getXxTedGuidlinesVO1();
/* 167 */     if (!XxTedGuidlinesVO.isPreparedForExecution())
/* 169 */       XxTedGuidlinesVO.executeQuery();
/* 172 */     OAViewObject XxTedEmpDataVO = getXxTedEmpDataVO1();
/* 173 */     if (!XxTedEmpDataVO.isPreparedForExecution())
/* 175 */       XxTedEmpDataVO.setNamedWhereClauseParam("p_user_id", userId);
/* 176 */       XxTedEmpDataVO.executeQuery();
/* 179 */     OAViewObject XxTedTerminologyVO = getXxTedTerminologyVO1();
/* 180 */     if (!XxTedTerminologyVO.isPreparedForExecution())
/* 182 */       XxTedTerminologyVO.executeQuery();
/* 185 */     OAViewObject XxTedLeaveResVO = getXxTedLeaveResVO1();
/* 186 */     if (!XxTedLeaveResVO.isPreparedForExecution())
/* 188 */       XxTedLeaveResVO.executeQuery();
/////////////////////////////lamiaa///////////////
       /* OAViewObject XxTedExtVONEW = getXxTedExtVONEW();
            if (!XxTedExtVONEW.isPreparedForExecution())
            XxTedExtVONEW.executeQuery();
  /////////////////////////////lamiaa///////////////
/* 191 */     OAViewObject XxTedCompenVO = getXxTedCompenVO1();
/* 192 */     if (!XxTedCompenVO.isPreparedForExecution())
/* 194 */       XxTedCompenVO.executeQuery();
/* 197 */     OAViewObject XxTedJobIssueVO = getXxTedJobIssueVO1();
/* 198 */     if (!XxTedJobIssueVO.isPreparedForExecution())
/* 200 */       XxTedJobIssueVO.executeQuery();
/* 203 */     OAViewObject XxTedRelIssueVO = getXxTedRelIssueVO1();
/* 204 */     if (!XxTedRelIssueVO.isPreparedForExecution())
/* 206 */       XxTedRelIssueVO.executeQuery();
/* 209 */     OAViewObject XxTedCultIssueVO = getXxTedCultIssueVO1();
/* 210 */     if (!XxTedCultIssueVO.isPreparedForExecution())
/* 212 */       XxTedCultIssueVO.executeQuery();
/* 215 */     OAViewObject XxTedAnotherJobVO = getXxTedAnotherJobVO1();
/* 216 */     if (!XxTedAnotherJobVO.isPreparedForExecution())
/* 218 */       XxTedAnotherJobVO.executeQuery();
/* 220 */     OAViewObject XxTedInterviewerVO = getXxTedInterviewerVO1();
/* 221 */     if (!XxTedInterviewerVO.isPreparedForExecution())
/* 223 */       XxTedInterviewerVO.executeQuery();
/*     */   public void insertData()
/* 229 */     OAViewObject XxTedExitintDetF1VO = getXxTedExitintDetF1VO1();
/* 230 */     OAViewObject XxTedExitintDetF2VO = getXxTedExitintDetF2VO1();
/* 231 */     OAViewObject XxTedExitintDetF3VO = getXxTedExitintDetF3VO1();
/* 232 */     OAViewObject XxTedExitintDetF4VO = getXxTedExitintDetF4VO1();
/* 233 */     OAViewObject XxTedExitintDetF5VO = getXxTedExitintDetF5VO1();
/* 234 */     OAViewObject XxTedExitintDetF6VO = getXxTedExitintDetF6VO1();
/* 236 */     OAViewObject XxTedLeaveResVO = getXxTedLeaveResVO1();
    /////////////////////////////lamiaa///////////////
             //OAViewObject XxTedExtVONEW = getXxTedExtVONEW();
    /////////////////////////////lamiaa///////////////
/* 237 */     OAViewObject XxTedCompenVO = getXxTedCompenVO1();
/* 238 */     OAViewObject XxTedJobIssueVO = getXxTedJobIssueVO1();
/* 239 */     OAViewObject XxTedRelIssueVO = getXxTedRelIssueVO1();
/* 240 */     OAViewObject XxTedCultIssueVO = getXxTedCultIssueVO1();
/* 241 */     OAViewObject XxTedAnotherJobVO = getXxTedAnotherJobVO1();
/* 243 */     Row[] rowF1 = XxTedLeaveResVO.getFilteredRows("SelectFlg", "Y");
            /////////////////////////////lamiaa///////////////
            //  Row[] rowF7 = XxTedExtVONEW.getFilteredRows("SelectFlg", "Y");
            /////////////////////////////lamiaa///////////////
/* 244 */     Row[] rowF2 = XxTedCompenVO.getFilteredRows("SelectFlg", "Y");
/* 245 */     Row[] rowF3 = XxTedJobIssueVO.getFilteredRows("SelectFlg", "Y");
/* 246 */     Row[] rowF4 = XxTedRelIssueVO.getFilteredRows("SelectFlg", "Y");
/* 247 */     Row[] rowF5 = XxTedCultIssueVO.getFilteredRows("SelectFlg", "Y");
/* 248 */     Row[] rowF6 = XxTedAnotherJobVO.getFilteredRows("SelectFlg", "Y");
/* 250 */     if (!XxTedExitintDetF1VO.isPreparedForExecution())
/* 252 */       XxTedExitintDetF1VO.executeQuery();
/* 254 */     for (int i = 0; i < rowF1.length; i++) {
/* 255 */       XxTedExitintDetF1VO.last();
/* 256 */       XxTedExitintDetF1VO.next();
/* 257 */       Row row1 = XxTedExitintDetF1VO.createRow();
/* 258 */       row1.setAttribute("SectionNumber", "F.1");
/* 259 */       row1.setAttribute("SelectedValue", rowF1[i].getAttribute("LookupCode"));
/* 260 */       XxTedExitintDetF1VO.insertRow(row1);
/* 261 */       row1.setNewRowState((byte)0);
/* 264 */     if (!XxTedExitintDetF2VO.isPreparedForExecution())
/* 266 */       XxTedExitintDetF2VO.executeQuery();
/* 268 */     for (int i = 0; i < rowF2.length; i++) {
/* 269 */       XxTedExitintDetF2VO.last();
/* 270 */       XxTedExitintDetF2VO.next();
/* 271 */       Row row2 = XxTedExitintDetF2VO.createRow();
/* 272 */       row2.setAttribute("SectionNumber", "F.2");
/* 273 */       row2.setAttribute("SelectedValue", rowF2[i].getAttribute("LookupCode"));
/* 274 */       XxTedExitintDetF2VO.insertRow(row2);
/* 275 */       row2.setNewRowState((byte)0);
/* 278 */     if (!XxTedExitintDetF3VO.isPreparedForExecution())
/* 280 */       XxTedExitintDetF3VO.executeQuery();
/* 282 */     for (int i = 0; i < rowF3.length; i++) {
/* 283 */       XxTedExitintDetF3VO.last();
/* 284 */       XxTedExitintDetF3VO.next();
/* 285 */       Row row3 = XxTedExitintDetF3VO.createRow();
/* 286 */       row3.setAttribute("SectionNumber", "F.3");
/* 287 */       row3.setAttribute("SelectedValue", rowF3[i].getAttribute("LookupCode"));
/* 288 */       XxTedExitintDetF3VO.insertRow(row3);
/* 289 */       row3.setNewRowState((byte)0);
/* 291 */     if (!XxTedExitintDetF4VO.isPreparedForExecution())
/* 293 */       XxTedExitintDetF4VO.executeQuery();
/* 295 */     for (int i = 0; i < rowF4.length; i++) {
/* 296 */       XxTedExitintDetF4VO.last();
/* 297 */       XxTedExitintDetF4VO.next();
/* 298 */       Row row4 = XxTedExitintDetF4VO.createRow();
/* 299 */       row4.setAttribute("SectionNumber", "F.4");
/* 300 */       row4.setAttribute("SelectedValue", rowF4[i].getAttribute("LookupCode"));
/* 301 */       XxTedExitintDetF4VO.insertRow(row4);
/* 302 */       row4.setNewRowState((byte)0);
/* 304 */     if (!XxTedExitintDetF5VO.isPreparedForExecution())
/* 306 */       XxTedExitintDetF5VO.executeQuery();
/* 308 */     for (int i = 0; i < rowF5.length; i++) {
/* 309 */       XxTedExitintDetF5VO.last();
/* 310 */       XxTedExitintDetF5VO.next();
/* 311 */       Row row5 = XxTedExitintDetF5VO.createRow();
/* 312 */       row5.setAttribute("SectionNumber", "F.5");
/* 313 */       row5.setAttribute("SelectedValue", rowF5[i].getAttribute("LookupCode"));
/* 314 */       XxTedExitintDetF5VO.insertRow(row5);
/* 315 */       row5.setNewRowState((byte)0);
/* 318 */     if (!XxTedExitintDetF6VO.isPreparedForExecution())
/* 320 */       XxTedExitintDetF6VO.executeQuery();
/* 322 */     for (int i = 0; i < rowF6.length; i++) {
/* 323 */       XxTedExitintDetF6VO.last();
/* 324 */       XxTedExitintDetF6VO.next();
/* 325 */       Row row6 = XxTedExitintDetF6VO.createRow();
/* 326 */       row6.setAttribute("SectionNumber", "F.6");
/* 327 */       row6.setAttribute("SelectedValue", rowF6[i].getAttribute("LookupCode"));
/* 328 */       XxTedExitintDetF6VO.insertRow(row6);
/* 329 */       row6.setNewRowState((byte)0);
/* 331 */     saveData();
/*     */   public void saveData()
/* 336 */     getOADBTransaction().commit();
/*     */   public XxTedEmpDataVOImpl getXxTedEmpDataVO1()
/* 342 */     return (XxTedEmpDataVOImpl)findViewObject("XxTedEmpDataVO1");
/*     */   public void queryReqUsingEmp(String pEmpno) {
/* 345 */     OAViewObject XxTedExitInterviewVO = getXxTedExitInterviewVO1();
/* 347 */     XxTedExitInterviewVO.setWhereClause("REJ_FLG <> 1 AND Requester_id = " + pEmpno);
/* 348 */     XxTedExitInterviewVO.executeQuery();
/*     */   public void execQueriesGuidlines()
/* 353 */     OAViewObject XxTedGuidlinesVO = getXxTedGuidlinesVO1();
/* 354 */     if (!XxTedGuidlinesVO.isPreparedForExecution())
/* 356 */       XxTedGuidlinesVO.executeQuery();
/*     */   public void execQueriesEmpData(String param) {
/* 361 */     OAViewObject XxTedEmpDataVO = getXxTedEmpDataVO1();
/* 363 */     if (!XxTedEmpDataVO.isPreparedForExecution())
/* 365 */       XxTedEmpDataVO.setNamedWhereClauseParam("p_user_id", param);
/* 366 */       XxTedEmpDataVO.executeQuery();
/* 369 */     Row[] empRow = XxTedEmpDataVO.getAllRowsInRange();
/* 370 */     XxTedEmpDataVORowImpl empRowImp = (XxTedEmpDataVORowImpl)empRow[0];
/* 371 */     String empNo = (String)empRowImp.getAttribute("EmployeeNumber");
/* 373 */     OAViewObject XxTedEmpDataVO2 = getXxTedEmpData2_1();
/* 374 */     XxTedEmpDataVO2.setNamedWhereClauseParam("p_emp", empNo);
/* 375 */     XxTedEmpDataVO2.executeQuery();
/* 377 */     OAViewObject XxReq = getXxTedExitInterviewVO1();
/* 378 */     XxReq.setWhereClause("Requester_id = " + empNo);
/* 379 */     if (!XxReq.isPreparedForExecution())
/* 381 */       XxReq.executeQuery();
/*     */   public void execQueriesEmpData2(String param)
/* 387 */     OAViewObject XxTedEmpDataVO2 = getXxTedEmpData2_1();
/* 388 */     XxTedEmpDataVO2.setNamedWhereClauseParam("p_emp", param);
/* 390 */     XxTedEmpDataVO2.executeQuery();
/* 392 */     OAViewObject XxReq = getXxTedExitInterviewVO1();
/* 394 */     XxReq.setWhereClause("Requester_id = " + param);
/* 396 */     XxReq.executeQuery();
/*     */   public void execQueriesTerm()
/* 401 */     OAViewObject XxTedTerminologyVO = getXxTedTerminologyVO1();
/* 402 */     if (!XxTedTerminologyVO.isPreparedForExecution())
/* 404 */       XxTedTerminologyVO.executeQuery();
/*     */   public void execQueriesLeave(String param) {
/* 409 */     OAViewObject XxTedLeaveResVO = getXxTedLeaveResVO1();
/* 410 */     if (!XxTedLeaveResVO.isPreparedForExecution())
/* 412 */       XxTedLeaveResVO.executeQuery();
    /////////////////////////////lamiaa///////////////
        /* public void execQueriesLeave_reason(String param) {
             OAViewObject XxTedExtVONEW = getXxTedExtVONEW();
            if (!XxTedExtVONEW.isPreparedForExecution())
             XxTedExtVONEW.executeQuery();
    /////////////////////////////lamiaa///////////////
/*     */   public void execQueriesCompen(String param) {
/* 417 */     OAViewObject XxTedCompenVO = getXxTedCompenVO1();
/* 418 */     if (!XxTedCompenVO.isPreparedForExecution())
/* 420 */       XxTedCompenVO.executeQuery();
/*     */   public void execQueriesJobIssue(String param) {
/* 425 */     OAViewObject XxTedJobIssueVO = getXxTedJobIssueVO1();
/* 426 */     if (!XxTedJobIssueVO.isPreparedForExecution())
/* 428 */       XxTedJobIssueVO.executeQuery();
/*     */   public void execQueriesRelIssue(String param) {
/* 433 */     OAViewObject XxTedRelIssueVO = getXxTedRelIssueVO1();
/* 434 */     if (!XxTedRelIssueVO.isPreparedForExecution())
/* 436 */       XxTedRelIssueVO.executeQuery();
/*     */   public void execQueriesCultIssue(String param) {
/* 441 */     OAViewObject XxTedCultIssueVO = getXxTedCultIssueVO1();
/* 442 */     if (!XxTedCultIssueVO.isPreparedForExecution())
/* 444 */       XxTedCultIssueVO.executeQuery();
/*     */   public void execQueriesAnotherJob(String param) {
/* 449 */     OAViewObject XxTedAnotherJobVO = getXxTedAnotherJobVO1();
/* 450 */     if (!XxTedAnotherJobVO.isPreparedForExecution())
/* 452 */       XxTedAnotherJobVO.executeQuery();
/*     */   public XxTedEmpData2Impl getXxTedEmpData2_1()
/* 459 */     return (XxTedEmpData2Impl)findViewObject("XxTedEmpData2_1");
/*     */   public XxTedF1QVOImpl getXxTedF1QVO1()
/* 464 */     return (XxTedF1QVOImpl)findViewObject("XxTedF1QVO1");
/*     */   public XxTedF2QVOImpl getXxTedF2QVO1()
/* 469 */     return (XxTedF2QVOImpl)findViewObject("XxTedF2QVO1");
/*     */   public XxTedF3QVOImpl getXxTedF3QVO1()
/* 474 */     return (XxTedF3QVOImpl)findViewObject("XxTedF3QVO1");
/*     */   public XxTedF4QVOImpl getXxTedF4QVO1()
/* 479 */     return (XxTedF4QVOImpl)findViewObject("XxTedF4QVO1");
/*     */   public XxTedF5QVOImpl getXxTedF5QVO1()
/* 484 */     return (XxTedF5QVOImpl)findViewObject("XxTedF5QVO1");
/*     */   public XxTedF6QVOImpl getXxTedF6QVO1()
/* 489 */     return (XxTedF6QVOImpl)findViewObject("XxTedF6QVO1");
/*     */   public ViewLinkImpl getXxTedF1QVL1()
/* 494 */     return (ViewLinkImpl)findViewLink("XxTedF1QVL1");
/*     */   public ViewLinkImpl getXxTedF2QVL1()
/* 499 */     return (ViewLinkImpl)findViewLink("XxTedF2QVL1");
/*     */   public ViewLinkImpl getXxTedF3QVL1()
/* 504 */     return (ViewLinkImpl)findViewLink("XxTedF3QVL1");
/*     */   public ViewLinkImpl getXxTedF4QVL1()
/* 509 */     return (ViewLinkImpl)findViewLink("XxTedF4QVL1");
/*     */   public ViewLinkImpl getXxTedF5QVL1()
/* 514 */     return (ViewLinkImpl)findViewLink("XxTedF5QVL1");
/*     */   public ViewLinkImpl getXxTedF6QVL1()
/* 519 */     return (ViewLinkImpl)findViewLink("XxTedF6QVL1");
/*     */   public XxTedReqStatusVOImpl getXxTedReqStatusVO1()
/* 524 */     return (XxTedReqStatusVOImpl)findViewObject("XxTedReqStatusVO1");
/*     */   public void execQueriesReqStatus(String param) {
/* 527 */     OAViewObject XxTedReqStatusVO = getXxTedReqStatusVO1();
/* 529 */     System.out.println("Param = " + param);
/* 531 */     XxTedReqStatusVO.setWhereClause("REQUESTER_ID = " + param);
/* 532 */     XxTedReqStatusVO.executeQuery();
/*     */   public XxTedWFItemTypeImpl getXxTedWFItemType1()
/* 538 */     return (XxTedWFItemTypeImpl)findViewObject("XxTedWFItemType1");
/*     */   public XxTedReqCntVOImpl getXxTedReqCntVO1()
/* 543 */     return (XxTedReqCntVOImpl)findViewObject("XxTedReqCntVO1");
/*     */   public void dupCheck() {
/* 546 */     OAViewObject vo = getXxTedReqCntVO1();
/* 548 */     OAViewObject XxTedEmpDataVO = getXxTedEmpDataVO1();
/* 549 */     Row[] empRow = XxTedEmpDataVO.getAllRowsInRange();
/* 550 */     XxTedEmpDataVORowImpl empRowImp = (XxTedEmpDataVORowImpl)empRow[0];
/* 552 */     vo.setWhereClause("rej_flg <> 1 and requester_id = " + empRowImp.getEmployeeNumber());
/* 553 */     vo.executeQuery();
/* 554 */     Row[] row = vo.getAllRowsInRange();
/* 555 */     if (row.length != 0)
/* 556 */       throw new OAException("This employee submitted and exit form before, Kindly contact system admin", (byte)0);
/*     */   public XxTedCurrReqImpl getXxTedCurrReq1()
/* 562 */     return (XxTedCurrReqImpl)findViewObject("XxTedCurrReq1");
/*     */   public ViewLinkImpl getXxTedCurrReqVL1()
/* 567 */     return (ViewLinkImpl)findViewLink("XxTedCurrReqVL1");
/*     */   public void execMainPG(String userId) {
/* 570 */     OAViewObject XxTedEmpDataVO = getXxTedEmpDataVO1();
/* 571 */     if (!XxTedEmpDataVO.isPreparedForExecution())
/* 573 */       XxTedEmpDataVO.setNamedWhereClauseParam("p_user_id", userId);
/* 574 */       XxTedEmpDataVO.executeQuery();
/* 576 */     Row[] empRow = XxTedEmpDataVO.getAllRowsInRange();
/* 577 */     XxTedEmpDataVORowImpl empRowImp = (XxTedEmpDataVORowImpl)empRow[0];
/* 578 */     String empNo = (String)empRowImp.getAttribute("EmployeeNumber");
/* 580 */     OAViewObject XxTedReqStatusVO = getXxTedReqStatusVO1();
/* 581 */     XxTedReqStatusVO.setWhereClause("Requester_Id = " + empNo);
/* 582 */     XxTedReqStatusVO.executeQuery();
/*     */   public void execLog()
/* 587 */     OAViewObject Xvo = getXxTedExitInterviewVO1();
/* 589 */     Row row = Xvo.getCurrentRow();
/* 590 */     XxTedExitInterviewVORowImpl rowImp = (XxTedExitInterviewVORowImpl)row;
/* 591 */     Number reqNo = (Number)rowImp.getAttribute("RequestId");
/* 593 */     OAViewObject XxLog = getXxLoG1();
/* 594 */     XxLog.setWhereClause("Request_Id = " + reqNo);
/* 595 */     XxLog.executeQuery();
/* 596 */     Row row2 = XxLog.getCurrentRow();
/* 598 */     OAViewObject XxTedReqStatusVO = getXxTedReqStatusVO1();
/* 599 */     XxTedReqStatusVO.setWhereClause("Request_Id = " + reqNo);
/* 600 */     XxTedReqStatusVO.executeQuery();
/*     */   public void validateNulls()
/* 605 */     OAViewObject XxTedLeaveResVO = getXxTedLeaveResVO1();
/* 606 */     OAViewObject XxTedCompenVO = getXxTedCompenVO1();
/* 607 */     OAViewObject XxTedJobIssueVO = getXxTedJobIssueVO1();
/* 608 */     OAViewObject XxTedRelIssueVO = getXxTedRelIssueVO1();
/* 609 */     OAViewObject XxTedCultIssueVO = getXxTedCultIssueVO1();
/* 610 */     OAViewObject XxTedAnotherJobVO = getXxTedAnotherJobVO1();
/* 612 */     Row[] rowF1 = XxTedLeaveResVO.getFilteredRows("SelectFlg", "Y");
/* 613 */     Row[] rowF2 = XxTedCompenVO.getFilteredRows("SelectFlg", "Y");
/* 614 */     Row[] rowF3 = XxTedJobIssueVO.getFilteredRows("SelectFlg", "Y");
/* 615 */     Row[] rowF4 = XxTedRelIssueVO.getFilteredRows("SelectFlg", "Y");
/* 616 */     Row[] rowF5 = XxTedCultIssueVO.getFilteredRows("SelectFlg", "Y");
/* 617 */     Row[] rowF6 = XxTedAnotherJobVO.getFilteredRows("SelectFlg", "Y");
/* 619 */     int cntF1 = rowF1.length;
/* 620 */     int cntF2 = rowF2.length;
/* 621 */     int cntF3 = rowF3.length;
/* 622 */     int cntF4 = rowF4.length;
/* 623 */     int cntF5 = rowF5.length;
/* 624 */     int cntF6 = rowF6.length;
/* 626 */     if (cntF1 < 1) {
/* 627 */       throw new OAException("Reason of Leave : Select at least one choice");
/* 629 */     if (cntF2 < 1) {
/* 630 */       throw new OAException("Compensation Issues : Select at least one choice");
/* 632 */     if (cntF3 < 1) {
/* 633 */       throw new OAException("Job Issues : Select at least one choice");
/* 635 */     if (cntF4 < 1) {
/* 636 */       throw new OAException("Relationship Issues : Select at least one choice");
/* 638 */     if (cntF5 < 1) {
/* 639 */       throw new OAException("Cultural Issues : Select at least one choice");
/* 641 */     if (cntF6 < 1) {
/* 642 */       throw new OAException("Another Job Opportunity : Select at least one choice");
/* 645 */     OAViewObject validateVo = getXxTedExitInterviewVO1();
/* 646 */     OARow oaRow = (OARow)validateVo.getCurrentRow();
/* 648 */     String CompensationComments = (String)oaRow.getAttribute("CompensationComments");
/* 649 */     if (CompensationComments == null) {
/* 650 */       throw new OAException("Compensation Issue : Field should be supplied");
/* 655 */     String LeaveReasonComments = (String)oaRow.getAttribute("LeaveReasonComments");
/* 656 */     if (LeaveReasonComments == null) {
/* 657 */       throw new OAException("Reason of leaving : Field should be supplied");
/* 661 */     String ADSL = (String)oaRow.getAttribute("AdslNumber");
/* 662 */     if (ADSL == null) {
/* 663 */       throw new OAException("ADSL Number : Field should be supplied");
/* 665 */     Date LastDate = (Date)oaRow.getAttribute("LastDate");
/* 666 */     if (LastDate == null) {
/* 667 */       throw new OAException("Last Working Day : Field should be supplied");
/* 670 */     String JobComments = (String)oaRow.getAttribute("JobComments");
/* 671 */     if (JobComments == null) {
/* 672 */       throw new OAException("Job Issues : Field should be supplied");
/* 675 */     String RelationshipComments = (String)oaRow.getAttribute("RelationshipComments");
/* 676 */     if (RelationshipComments == null) {
/* 677 */       throw new OAException("Relationship Issues : Field should be supplied");
/* 679 */     String CulturalComments = (String)oaRow.getAttribute("CulturalComments");
/* 680 */     if (CulturalComments == null) {
/* 681 */       throw new OAException("Cultural Issues : Field should be supplied");
/* 684 */     String OtherJobComments = (String)oaRow.getAttribute("OtherJobComments");
/* 685 */     if (OtherJobComments == null) {
/* 686 */       throw new OAException("Another Job Opportunity : Field should be supplied");
/* 689 */     String OtherInfoComments = (String)oaRow.getAttribute("OtherInfoComments");
/* 690 */     if (OtherInfoComments == null) {
/* 691 */       throw new OAException("Other Info : Field should be supplied");
/* 694 */     String TrainingComments = (String)oaRow.getAttribute("TrainingComments");
/* 695 */     if (TrainingComments == null) {
/* 696 */       throw new OAException("Training&Development : Field should be supplied");
/* 699 */     String PositiveWorkComments = (String)oaRow.getAttribute("PositiveWorkComments");
/* 700 */     if (PositiveWorkComments == null) {
/* 701 */       throw new OAException("Positive Work Comments : Fields should be supplied");
/* 704 */     String PositiveBestComments = (String)oaRow.getAttribute("PositiveBestComments");
/* 705 */     if (PositiveBestComments == null) {
/* 706 */       throw new OAException("Positive Work Comments : Fields should be supplied");
/* 709 */     String ChangeComments = (String)oaRow.getAttribute("ChangeComments");
/* 710 */     if (ChangeComments == null) {
/* 711 */       throw new OAException("Change : Field should be supplied");
/* 713 */     String ReemploymentComments = (String)oaRow.getAttribute("ReemploymentComments");
/* 714 */     if (ReemploymentComments == null) {
/* 715 */       throw new OAException("Re-employment : Field should be supplied");
/* 718 */     Number CompensationIssuesSts = (Number)oaRow.getAttribute("CompensationIssuesSts");
/* 719 */     if (CompensationIssuesSts == null) {
/* 720 */       throw new OAException("Compensation Satisfaction : Value should be selected");
/* 723 */     Number JobIssuesSts = (Number)oaRow.getAttribute("JobIssuesSts");
/* 724 */     if (JobIssuesSts == null) {
/* 725 */       throw new OAException("Job Issues Satisfaction : Value should be selected");
/* 728 */     Number RelationshipIssuesSts = (Number)oaRow.getAttribute("RelationshipIssuesSts");
/* 729 */     if (RelationshipIssuesSts == null) {
/* 730 */       throw new OAException("Relationship Issues Satisfaction : Value should be selected");
/* 732 */     Number CulturalIssuesSts = (Number)oaRow.getAttribute("CulturalIssuesSts");
/* 733 */     if (CulturalIssuesSts == null) {
/* 734 */       throw new OAException("Cultural Issues Satisfaction : Value should be selected");
/* 736 */     Number OtherJobSts = (Number)oaRow.getAttribute("OtherJobSts");
/* 737 */     if (OtherJobSts == null) {
/* 738 */       throw new OAException("Another Job Satisfaction : Value should be selected");
/* 741 */     Number OtherInfoSts = (Number)oaRow.getAttribute("OtherInfoSts");
/* 742 */     if (OtherInfoSts == null) {
/* 743 */       throw new OAException("Other Info Satisfaction : Value should be selected");
/* 746 */     Number TrainingSts = (Number)oaRow.getAttribute("TrainingSts");
/* 747 */     if (TrainingSts == null) {
/* 748 */       throw new OAException("Training Satisfaction : Value should be selected");
/* 751 */     Number PositiveWorkSts = (Number)oaRow.getAttribute("PositiveWorkSts");
/* 752 */     if (PositiveWorkSts == null)
/* 753 */       throw new OAException("Positive Work Satisfaction : Value should be selected");
/*     */   public void execWfRn(String reqId)
/* 758 */     OAViewObject XxTedReqStatusVO = getXxTedReqStatusVO1();
/* 759 */     XxTedReqStatusVO.setWhereClause("rej_flg <> 1 and RequestId = " + reqId);
/* 760 */     XxTedReqStatusVO.executeQuery();
/*     */   public void validateBlob(String vblob)
/* 765 */     if (vblob == null)
/* 766 */       throw new OAException("You should upload the attached resignation");
/*     */   public void validateHrForm()
/* 771 */     OAViewObject validateVo = getXxTedExitInterviewVO1();
/* 772 */     OARow oaRow = (OARow)validateVo.getCurrentRow();
/* 773 */     Date IntDate = (Date)oaRow.getAttribute("InterviewDate");
/* 774 */     if (IntDate == null) {
/* 775 */       throw new OAException("You should enter an interview date");
/* 778 */     String Intterviewer = (String)oaRow.getAttribute("InterviewerName");
/* 779 */     if (Intterviewer == null)
/* 780 */       throw new OAException("You should enter the interview data");
/*     */   public void clearForm()
/* 785 */     OAViewObject mainVo = getXxTedExitInterviewVO1();
/* 786 */     OAViewObject XxTedLeaveResVO = getXxTedLeaveResVO1();
/* 787 */     XxTedLeaveResVO.clearCache();
/* 788 */     XxTedLeaveResVO.executeQuery();
/* 789 */     OAViewObject XxTedCompenVO = getXxTedCompenVO1();
/* 790 */     XxTedCompenVO.clearCache();
/* 791 */     XxTedCompenVO.executeQuery();
/* 793 */     OAViewObject XxTedJobIssueVO = getXxTedJobIssueVO1();
/* 794 */     XxTedJobIssueVO.clearCache();
/* 795 */     XxTedJobIssueVO.executeQuery();
/* 797 */     OAViewObject XxTedRelIssueVO = getXxTedRelIssueVO1();
/* 798 */     XxTedRelIssueVO.clearCache();
/* 799 */     XxTedRelIssueVO.executeQuery();
/* 801 */     OAViewObject XxTedCultIssueVO = getXxTedCultIssueVO1();
/* 802 */     XxTedCultIssueVO.clearCache();
/* 803 */     XxTedCultIssueVO.executeQuery();
/* 805 */     OAViewObject XxTedAnotherJobVO = getXxTedAnotherJobVO1();
/* 806 */     XxTedAnotherJobVO.clearCache();
/* 807 */     XxTedAnotherJobVO.executeQuery();
/* 809 */     mainVo.removeCurrentRow();
/*     */   public XxIntrvLOVVOImpl getXxIntrvLOVVO1()
/* 815 */     return (XxIntrvLOVVOImpl)findViewObject("XxIntrvLOVVO1");
/*     */   public XxLoGImpl getXxLoG1()
/* 820 */     return (XxLoGImpl)findViewObject("XxLoG1");
/////////////////////////////lamiaa///////////////
             public XxTedExtVONEWImpl getXxTedExtVONEW1()
                return (XxTedExtVONEWImpl)findViewObject("XxTedExtVONEW1");
  /////////////////////////////lamiaa///////////////
/* Location:           D:\Oracle_developer\p8431482_R12_GENERIC_QF\jdevhome\jdev\myclasses\
* Qualified Name:     xxted.oracle.apps.per.extint.server.XxTedExtAMImpl
* JD-Core Version:    0.6.2

The error message means you have not added the View Object to AM.
You need to add the View Object to the AM and move the AM files to the server and bounce the server.
Cheers
AJ

Similar Messages

  • Adding New View Objects/Link on "Preview and Print" - Order Acknowledgement

    Hi,
    Can we add New View Objects/View Links for the existing "Preview and Print" Order Acknowledgement.
    I want to add for the 2 new functionalities i.e., for Charges (from OE_PRICE_ADJUSTMENTS_V ) and the Line Level Notes, which is currently not supported by Oracle.
    Can anyone help me on acheving this functionality?
    Looking forward for your response.
    Thanks in advance,
    Regards,
    Muru

    You can do that. You should first create the new business objects(AM, VO, VL) in jdeveloper, create your new regions in jdeveloper, associate the AM to the top level region(stackLayout) you create. Use personalization and add a stack layout in the Preview and Print page, set the extends property to point to the new region which you had created. Donot forget to deploy all the files in middle tier before doing the personalization.
    The AM which you had added to the stackLayout will automatically be nested with the root AM of the page during runtime.

  • Created a new folder in bookmarks; when try to add new bookmark, new folder does not appear in drop down menu; using safari for windows

    created a new folder in bookmarks; when try to add new bookmark, new folder does not appear in drop down menu; using safari for windows

    You are using an older version of firefox, upgrade your browser to Firefox 8 and try
    * getfirefox.com

  • New View Object not found

    Using the scott schema, in my test workspace I created a BC4J project that had 4 tables/view objects using the wizards and taking all the defaults. I created a UIX-JSP project using those view objects.
    Next I created a new table in the database (LoginMaster). I went back to the BC4J project added the entity object (LoginMaster) and allowed the wizard to build the default view object (LoginMasterView) into package1. Then I opened the properties on the AM (ScottModule)to put the new view object in the Data Model property. I tested the ScotMOdule AM and the view object is there and is accessable.
    I build a jsp page (using the starter form wizard in UIX-JSP category). I then striped out ALL of the default code and cut-n-pasted ALL of the code from another query form that was built by the "Business Components JSP Application" wizard of the UIX-JSP category. I changed the data source name from "EmpView" to "LoginMasterView" and when I run the application I'm told:
    Error Message: Could not locate View Object LoginMasterView in application Package1Module.
    oracle.jbo.JboException: Could not locate View Object LoginMasterView in application Package1Module.
    As I said, the VO LoginMasterView is in package1. I also verified it is coded in package1.xml andd scottmodule.xml, I suspect it was put here by setting the AM properties.
    So what did I leave out or do wrong?
    TIA,
    Ed.

    Edit your package1Module application module and verify that the name of the viewobject in the selected DataModel tree is the same as the name you're providing in your JSP page.
    I belive by default a number suffix is added to the VO names in the APpModule datapanel. Basically only VO usages that are included in the application module data-model are "findable" by default using the findViewObject methods. Yes it is the correct name in the DataModel Tree.
    Your response got me thinking. What files contain the text LoginMasterView? Well, all the files that conatin that text contain exactly that text. I was told package1.xml in the src directory of my BC4J objects project contained the text (which it did). But then I opened the files Package1Module.xml and Package1ModuleImpl.java and noticed they DID NOT conatin that text (even though it seems they should) so I added it to both of these files. But even after I built the BC4J objects project I noticed that the Package1ModuleImpl.class file is not recompiled (still dated July 4, 2002).
    So now I have two new questions:
    1. How come Package1Module.xml and Package1ModuleImpl.java did not get updated? What updates them?
    2. Once Package1ModuleImpl.java is manually updated and the [roject is built why is Package1ModuleImpl.class not recompiled?
    TIA,
    Ed.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Add new view in 3D annotation

    Hello,
         I have been developing a c++ plugin which embed 3D model in PDF.
         I want to add new views with 3D annotation.How i can do this ?
         In 3D annotation property form inside 3D tab i can add views so that they appears in list of view of 3D annotation .How i can do this programatically ?
    Thanks,

    IIRC, the views are listed in one of the dictionaries off the 3D annotation.  Did you check ISO 32000-1?

  • HT3771 how do you delete printer in last use when you try to add new printer again

    how do you delete printer in last use when you try to add new printer again?

    System Preferences > Print & Scan (Print & Fax on older versions of OS X)
    Select the printer and click the "–" (minus) button.

  • Creating new graphics object from a existing one and sending it for print

    Hello,
    i have a graphics object which is big in size, I am creating a new graphics object from the existing one as given below
    //map is a graphic object
    Graphic g1 = (Graphic)map.create(x,y,width,height);
    Graphic g2 = (Graphic)map.create(x,y,width1,height1);
    Graphic g3 = (Graphic)map.create(x,y,width2,height2);
    arrayList.add(g1);
    arrayList.add(g2);
    arrayList.add(g3);
    Now I want to send the graphic object g1,g2,g3 for print in the method
    public int print (Graphics g, PageFormat pf, int idx) throws PrinterException {
    // Printable's method implementation
    if (curPageFormat != pf) {
    curPageFormat = pf;
    pages = repaginate (pf);
    if (idx >= 3)) {
    return Printable.NO_SUCH_PAGE;
    g = (Graphics) arrayList.get(idx);
    return Printable.PAGE_EXISTS;
    This is not working... what is wrong. can anybody suggest..
    I tried standardprint.java to print a object inside a scrollpane, it is not printing the entire diagram. so I am thinking of something like this.... Please let me know what to do....
    Thanks
    Serj

    The easy way to do this is create a copy using Windows Explorer.
    Open the project and go to File > Rename.
    Then you have your 2013 ready made project.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • __ Is there a way to add new art boards to an existing document?

    Is there a way to add new art boards to an existing document (same dimensions and same space betwen artboards)?
    What I do now is I have to create a new file (with new number of artboards) and cut & paste - is there another way to do this?
    Thanks.

    What Illy version?
    File > Document Setup > "Edit Artboards" button (top, right)
    Before entering Edit Artboard mode though, draw boxes at the right size and at the right locations as your desired new artboards so you can snap to them. While in Edit Artboard, anything other drawing boxes will cause you to exit it.
    Tip: Alt+Left Click to convert a slected shape to an Artboard, while in Edit Artboard mode.
    EVEN EASIER:
    Draw out your new Artboards in normal mode, select them > Object > Artboards > Convert to Artboards.
    *EDIT   Larry's a ninja.

  • "Add New Tab" button does not exist in the Window -Customize Toolbar, and not on my Navigator toolbar. Where can I find one to put on my Navigator toolbar, please?

    I see "Add New Window" but..."Add New Tab" button does not exist in the Window -Customize Toolbar any longer, and not on my Navigator toolbar. Where can I find one to put on my Navigator toolbar, please?
    Thanks

    It's the "+" on the Tab bar. You can move it to the Navigation Toolbar if you prefer. When you start Customize, the + moves to the far right end of the Tab bar. You can drag it where you want (see attached image).
    Any luck?

  • How to add new price break lines to existing PO quotations?

    Hi,
    I am using a custom interface (to insert quotations data into PO headers/lines interface tables) and PO documents open interface to create PO Quotations in Oracle.
    I need to modify this interface to:
    1. Update existing price break lines for a quotation line.
    2. Add new price break lines to existing quotation line(which may/may not have exsiting price break lines).
    Please let me know:
    1. What modifications need to be done to the existing code.
    2. What values needs to be passed to the action columns in PO_HEADERS_INTERFACE and PO_LINES_INTERFACE for above scenarios?
    Any ideas/help will be appreciated.
    Thanks
    Imran

    Hi Imran,
    I have done a similar exercise for BPA price breakup.. Let me know if you need that as reference. I can share that :).. Please provide your personal mail id..
    Regards,
    S.P DASH

  • Address Book keeps crashing when I try to add new card.

    Hi All,
    Hope someone can help me....
    This problem started a couple of weeks ago:
    When I try to add a new card in Address Book, after entering the info. and then clicking the 'edit' button on the bottom of the window, the program stalls briefly, and then quits. A crash log is generated. I've pasted it here.
    Also, when I try to add a contact to Address Book from Mail, the contact is not added.
    Can anyone help me solve this? I'm hoping for a simple fix, as I am as far away from being 'computer saavy' as one can be.
    Thanks for any help!
    Greg
    Process:         Address Book [4477]
    Path:            /Applications/Address Book.app/Contents/MacOS/Address Book
    Identifier:      com.apple.AddressBook
    Version:         5.0.3 (883)
    Build Info:      AddressBook-8830000~1
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [163]
    Date/Time:       2013-11-26 20:22:25.743 -0700
    OS Version:      Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Interval Since Last Report:          148533 sec
    Crashes Since Last Report:           3
    Per-App Interval Since Last Report:  3842 sec
    Per-App Crashes Since Last Report:   2
    Anonymous UUID:                      4E05F686-8B3E-48E2-AF71-5CBF9D4F82BD
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: 0x000000000000000d, 0x0000000000000000
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Application Specific Information:
    objc_msgSend() selector name: release
    Thread 0 Crashed:  Dispatch queue: com.apple.main-thread
    0   libobjc.A.dylib                         0x00007fff81e12f10 objc_msgSend + 44
    1   com.apple.CoreFoundation                0x00007fff88efc1d6 _CFAutoreleasePoolPop + 230
    2   com.apple.Foundation                    0x00007fff85440110 -[NSAutoreleasePool drain] + 158
    3   com.apple.CoreData                      0x00007fff8642b1ce -[NSManagedObjectContext obtainPermanentIDsForObjects:error:] + 206
    4   ...apple.AddressBook.framework          0x00007fff86c8d9b0 +[PHXSource(DataSourceClient) contactsBySource:] + 347
    5   ...apple.AddressBook.framework          0x00007fff86b9dc41 +[PHXSource sourcesForManagedObjects:] + 39
    6   ...apple.AddressBook.framework          0x00007fff86c57066 -[ABMainWindowController cardControllerMOCWillSave:] + 1566
    7   com.apple.Foundation                    0x00007fff8542aad5 _nsnote_callback + 167
    8   com.apple.CoreFoundation                0x00007fff88f1ffd0 __CFXNotificationPost + 1008
    9   com.apple.CoreFoundation                0x00007fff88f0c548 _CFXNotificationPostNotification + 200
    10  com.apple.Foundation                    0x00007fff85421a36 -[NSNotificationCenter postNotificationName:object:userInfo:] + 101
    11  com.apple.CoreData                      0x00007fff8641206e -[NSManagedObjectContext save:] + 142
    12  ...apple.AddressBook.framework          0x00007fff86c66926 -[ABCardView commitAndSave:] + 271
    13  ...apple.AddressBook.framework          0x00007fff86c663b2 -[ABCardView observeValueForKeyPath:ofObject:change:context:] + 589
    14  com.apple.Foundation                    0x00007fff8543e786 NSKeyValueNotifyObserver + 338
    15  com.apple.Foundation                    0x00007fff8543e27a NSKeyValueDidChange + 458
    16  com.apple.Foundation                    0x00007fff854219ad -[NSObject(NSKeyValueObserverNotification) didChangeValueForKey:] + 139
    17  com.apple.Foundation                    0x00007fff8543a6c1 -[NSObject(NSKeyValueCoding) setValue:forKey:] + 434
    18  com.apple.Foundation                    0x00007fff85498876 -[NSObject(NSKeyValueCoding) setValue:forKeyPath:] + 240
    19  com.apple.AppKit                        0x00007fff8323a6c2 -[NSView setValue:forKeyPath:] + 460
    20  com.apple.AppKit                        0x00007fff831d4a8d -[NSBinder _setValue:forKeyPath:ofObject:mode:validateImmediately:raisesForNotApplicableKe ys:error:] + 264
    21  com.apple.AppKit                        0x00007fff831d4945 -[NSBinder setValue:forBinding:error:] + 266
    22  com.apple.AppKit                        0x00007fff835c87ae -[NSValueBinder _applyObjectValue:forBinding:canRecoverFromErrors:handleErrors:typeOfAlert:disc ardEditingCallback:otherCallback:callbackContextInfo:didRunAlert:] + 197
    23  com.apple.AppKit                        0x00007fff835c85c4 -[NSValueBinder applyDisplayedValueHandleErrors:typeOfAlert:canRecoverFromErrors:discardEditing Callback:otherCallback:callbackContextInfo:didRunAlert:] + 567
    24  com.apple.AppKit                        0x00007fff831ec396 -[NSValueBinder performAction:] + 300
    25  com.apple.AppKit                        0x00007fff831ec223 -[_NSBindingAdaptor _objectDidTriggerAction:bindingAdaptor:] + 136
    26  com.apple.AppKit                        0x00007fff8315fe1a -[NSControl sendAction:to:] + 63
    27  com.apple.AppKit                        0x00007fff831eb84b -[NSCell trackMouse:inRect:ofView:untilMouseUp:] + 1715
    28  com.apple.AppKit                        0x00007fff8321c37a -[NSButtonCell trackMouse:inRect:ofView:untilMouseUp:] + 555
    29  com.apple.AppKit                        0x00007fff831ea2f5 -[NSControl mouseDown:] + 624
    30  com.apple.AppKit                        0x00007fff831043a7 -[NSWindow sendEvent:] + 5409
    31  com.apple.AppKit                        0x00007fff83039afa -[NSApplication sendEvent:] + 4719
    32  com.apple.AppKit                        0x00007fff82fd06de -[NSApplication run] + 474
    33  com.apple.AppKit                        0x00007fff82fc93b0 NSApplicationMain + 364
    34  com.apple.AddressBook                   0x0000000100001b6c 0x100000000 + 7020
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib                       0x00007fff89de3c0a kevent + 10
    1   libSystem.B.dylib                       0x00007fff89de5add _dispatch_mgr_invoke + 154
    2   libSystem.B.dylib                       0x00007fff89de57b4 _dispatch_queue_invoke + 185
    3   libSystem.B.dylib                       0x00007fff89de52de _dispatch_worker_thread2 + 252
    4   libSystem.B.dylib                       0x00007fff89de4c08 _pthread_wqthread + 353
    5   libSystem.B.dylib                       0x00007fff89de4aa5 start_wqthread + 13
    Thread 2:  Dispatch queue: com.apple.root.default-priority
    0   libSystem.B.dylib                       0x00007fff89e05a6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89e058f9 nanosleep + 148
    2   libSystem.B.dylib                       0x00007fff89e529ac sleep + 61
    3   ...apple.AddressBook.framework          0x00007fff86b65213 -[ABMetadataOperationController lockInfo] + 282
    4   ...apple.AddressBook.framework          0x00007fff86b64b0b -[ABMetadataOperationController validateAllMetaDataForceRebuild:] + 252
    5   com.apple.Foundation                    0x00007fff85453dd0 -[__NSOperationInternal start] + 681
    6   com.apple.Foundation                    0x00007fff85531bd5 ____NSOQSchedule_block_invoke_2 + 129
    7   libSystem.B.dylib                       0x00007fff89e06d64 _dispatch_call_block_and_release + 15
    8   libSystem.B.dylib                       0x00007fff89de52d1 _dispatch_worker_thread2 + 239
    9   libSystem.B.dylib                       0x00007fff89de4c08 _pthread_wqthread + 353
    10  libSystem.B.dylib                       0x00007fff89de4aa5 start_wqthread + 13
    Thread 3:
    0   libSystem.B.dylib                       0x00007fff89de4a2a __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x00007fff89de4e3c _pthread_wqthread + 917
    2   libSystem.B.dylib                       0x00007fff89de4aa5 start_wqthread + 13
    Thread 4:
    0   libSystem.B.dylib                       0x00007fff89de4a2a __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x00007fff89de4e3c _pthread_wqthread + 917
    2   libSystem.B.dylib                       0x00007fff89de4aa5 start_wqthread + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000400  rbx: 0x0000000115d00aa0  rcx: 0x00007fff71237650  rdx: 0x000000000000cf37
      rdi: 0x0000000115d00aa0  rsi: 0x00007fff836ff640  rbp: 0x00007fff5fbfdbf0  rsp: 0x00007fff5fbfdbb8
       r8: 0x656c65726f747541   r9: 0x00000001150c05d0  r10: 0x0000000115f769b0  r11: 0x0000000115d055b9
      r12: 0x0000000100896000  r13: 0x0000000100896000  r14: 0x00007fff711633c0  r15: 0x0000000000000000
      rip: 0x00007fff81e12f10  rfl: 0x0000000000010206  cr2: 0x0000000100602000
    Binary Images:
           0x100000000 -        0x10001cff7  com.apple.AddressBook 5.0.3 (883) <ED446C11-2C57-7038-90E0-811EAFEEE505> /Applications/Address Book.app/Contents/MacOS/Address Book
           0x1007e7000 -        0x1007eafff  com.apple.yahoo.syncframework 1.3 (51) <5C20E5D3-3B2A-29D1-933F-EB35552B676D> /System/Library/PrivateFrameworks/YahooSync.framework/Versions/A/YahooSync
           0x1007f5000 -        0x1007f5fff +com.skype.skypeabdialer ??? (1.6) <3D8EE2B0-3C75-6D39-833C-D43A23DFE821> /Users/greggerla 2/Library/Address Book Plug-Ins/SkypeABDialer.bundle/Contents/MacOS/SkypeABDialer
           0x112dbf000 -        0x112dd2ff7  com.apple.AddressBook.LocalSourceBundle 1.0.3 (883) <429E114F-0B3C-BFFE-B0A4-B798094225A3> /System/Library/Address Book Plug-Ins/LocalSource.sourcebundle/Contents/MacOS/LocalSource
           0x112edf000 -        0x112ee5fff  com.apple.AddressBook.LDAPSource 1.0.3 (883) <F326BDE3-243D-5D6B-9A2A-E14B4F1C4F54> /System/Library/Address Book Plug-Ins/LDAP.sourcebundle/Contents/MacOS/LDAP
           0x1132f6000 -        0x1132f6fff +com.skype.skypeabsms ??? (1.5) <687BCB49-4E58-1A61-A7EC-2ABD16D28FA6> /Users/greggerla 2/Library/Address Book Plug-Ins/SkypeABSMS.bundle/Contents/MacOS/SkypeABSMS
        0x7fff5fc00000 -     0x7fff5fc3bdef  dyld 132.1 (???) <486E6C61-1197-CC7C-2197-82CE505102D7> /usr/lib/dyld
        0x7fff80003000 -     0x7fff80009ff7  com.apple.DiskArbitration 2.3 (2.3) <857F6E43-1EF4-7D53-351B-10DE0A8F992A> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff80055000 -     0x7fff80377fff  com.apple.JavaScriptCore 6534.59 (6534.59.11) <992F7C39-0ADA-C5EF-0405-55F81A5B2F76> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff80bfe000 -     0x7fff80cd2fe7  com.apple.CFNetwork 454.12.4 (454.12.4) <C83E2BA1-1818-B3E8-5334-860AD21D1C80> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
        0x7fff80d1d000 -     0x7fff80d3dfff  com.apple.DirectoryService.Framework 3.6 (621.16) <0ED4A74A-F8FB-366D-6588-F13EA397326F> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
        0x7fff80d3e000 -     0x7fff80d44ff7  com.apple.CommerceCore 1.0 (9.1) <3691E9BA-BCF4-98C7-EFEC-78DA6825004E> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
        0x7fff80d45000 -     0x7fff80d91fff  libauto.dylib ??? (???) <F7221B46-DC4F-3153-CE61-7F52C8C293CF> /usr/lib/libauto.dylib
        0x7fff80d92000 -     0x7fff80e32fff  com.apple.LaunchServices 362.3 (362.3) <B90B7C31-FEF8-3C26-BFB3-D8A48BD2C0DA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff80e33000 -     0x7fff80ec2fff  com.apple.PDFKit 2.5.5 (2.5.5) <18C99AB3-DACC-3654-200E-0BD09EBFB374> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
        0x7fff80ec3000 -     0x7fff80ecafff  com.apple.OpenDirectory 10.6 (10.6) <4200CFB0-DBA1-62B8-7C7C-91446D89551F> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff80ecb000 -     0x7fff81154ff7  com.apple.security 6.1.2 (55002) <D224882B-D57B-83AF-3781-548BCEACB327> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff81155000 -     0x7fff811aaff7  com.apple.framework.familycontrols 2.0.2 (2020) <F09541B6-5E28-1C01-C1AE-F6A2508670C7> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff811df000 -     0x7fff8124bfe7  com.apple.CorePDF 1.4 (1.4) <06AE6D85-64C7-F9CC-D001-BD8BAE31B6D2> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
        0x7fff8124c000 -     0x7fff812cbfe7  com.apple.audio.CoreAudio 3.2.6 (3.2.6) <79E256EB-43F1-C7AA-6436-124A4FFB02D0> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff81382000 -     0x7fff813a2fef  com.apple.DotMacSyncManager 2.0.3 (446.9) <E8F9E7E2-A696-4111-C4FF-20AB5DFBC3FC> /System/Library/PrivateFrameworks/DotMacSyncManager.framework/Versions/A/DotMac SyncManager
        0x7fff813a3000 -     0x7fff813a3ff7  com.apple.CoreServices 44 (44) <DC7400FB-851E-7B8A-5BF6-6F50094302FB> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff813a4000 -     0x7fff813cbff7  libJPEG.dylib ??? (???) <08758593-6436-B29E-1DA8-F15597835EC1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff813cc000 -     0x7fff816cafff  com.apple.HIToolbox 1.6.5 (???) <AD1C18F6-51CB-7E39-35DD-F16B1EB978A8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff817d0000 -     0x7fff817f1fe7  libPng.dylib ??? (???) <D8EC7740-EE32-865A-2F75-C9EDE2135510> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff817f2000 -     0x7fff819b0fff  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <97A75BFB-0DB6-6F44-36B0-97B7F7208ABB> /usr/lib/libicucore.A.dylib
        0x7fff819b1000 -     0x7fff81df8fef  com.apple.RawCamera.bundle 3.7.1 (570) <5AFA87CA-DC3D-F84E-7EA1-6EABA8807766> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff81df9000 -     0x7fff81e0dfff  libGL.dylib ??? (???) <2ECE3B0F-39E1-3938-BF27-7205C6D0358B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff81e0e000 -     0x7fff81ec4ff7  libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <03140531-3B2D-1EBA-DA7F-E12CC8F63969> /usr/lib/libobjc.A.dylib
        0x7fff81ec5000 -     0x7fff81ec8fff  com.apple.help 1.3.2 (41.1) <BD1B0A22-1CB8-263E-FF85-5BBFDE3660B9> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff81ec9000 -     0x7fff81edcff7  com.apple.syncservices.syncservicesui 5.2 (578.3) <4E9E62DC-148A-CC7E-601A-AC095DD5C95A> /System/Library/PrivateFrameworks/SyncServicesUI.framework/Versions/A/SyncServi cesUI
        0x7fff81edd000 -     0x7fff81f3ffe7  com.apple.datadetectorscore 2.0 (80.7) <09ED086F-438D-852B-1D13-367A36BCFF90> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff81f40000 -     0x7fff81fbcff7  com.apple.ISSupport 1.9.7 (55) <BAE839AB-9DBD-FB23-F1F1-39445F04D8DA> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
        0x7fff81fbd000 -     0x7fff82014fff  com.apple.Symbolication 1.1 (67) <73B6FC15-9E05-69E2-2955-14F82F9BC337> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff82015000 -     0x7fff8206bfe7  libTIFF.dylib ??? (???) <2DBEC120-DAA7-3789-36A2-A205BCDF2D72> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff8206c000 -     0x7fff82082fef  libbsm.0.dylib ??? (???) <42D3023A-A1F7-4121-6417-FCC6B51B3E90> /usr/lib/libbsm.0.dylib
        0x7fff82083000 -     0x7fff82100fef  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <35ECA411-2C08-FD7D-11B1-1B7A04921A5C> /usr/lib/libstdc++.6.dylib
        0x7fff82101000 -     0x7fff8236afff  com.apple.QuartzComposer 4.2 ({156.30}) <C05B97F7-F543-C329-873D-097177226D79> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
        0x7fff8236b000 -     0x7fff823b4fef  libGLU.dylib ??? (???) <B0F4CA55-445F-E901-0FCF-47B3B4BAE6E2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff823b5000 -     0x7fff824cffff  libGLProgrammability.dylib ??? (???) <D1650AED-02EF-EFB3-100E-064C7F018745> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
        0x7fff824d0000 -     0x7fff824dbfff  com.apple.CrashReporterSupport 10.6.7 (258) <A2CBB18C-BD1C-8650-9091-7687E780E689> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff824dc000 -     0x7fff82568fef  SecurityFoundation ??? (???) <F43FDB02-CAA5-F8FF-C8D7-6665E7403ECE> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff82569000 -     0x7fff8267fff7  libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <3814FCF9-92B9-A6AB-E76A-F7021894AA3F> /usr/lib/libxml2.2.dylib
        0x7fff82680000 -     0x7fff826c1fef  com.apple.QD 3.36 (???) <5DC41E81-32C9-65B2-5528-B33E934D5BB4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff826c2000 -     0x7fff826cdff7  com.apple.HelpData 2.0.5 (34.1.1) <24DC6CD3-02B7-9332-FF6D-F0C545857B55> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
        0x7fff826ce000 -     0x7fff8288dfff  com.apple.ImageIO.framework 3.0.6 (3.0.6) <92882FD3-CB3F-D0BE-DDDA-43B4BEE10F58> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
        0x7fff8288e000 -     0x7fff828a3ff7  com.apple.LangAnalysis 1.6.6 (1.6.6) <1AE1FE8F-2204-4410-C94E-0E93B003BEDA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff82ce9000 -     0x7fff82cefff7  com.apple.AOSNotification 1.2.0 (124) <19CCCD17-6888-58F3-17B6-7DC5D49276A4> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication
        0x7fff82cf0000 -     0x7fff82cf4ff7  libCGXType.A.dylib 545.0.0 (compatibility 64.0.0) <DB710299-B4D9-3714-66F7-5D2964DE585B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
        0x7fff82cf5000 -     0x7fff82d28ff7  libTrueTypeScaler.dylib ??? (???) <B7BA8104-FA18-39A2-56E1-922EE7A660AC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
        0x7fff82d29000 -     0x7fff82ddefe7  com.apple.ink.framework 1.3.3 (107) <8C36373C-5473-3A6A-4972-BC29D504250F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff82ddf000 -     0x7fff82e22fef  libtidy.A.dylib ??? (???) <2F4273D3-418B-668C-F488-7E659D3A8C23> /usr/lib/libtidy.A.dylib
        0x7fff82e23000 -     0x7fff82e26ff7  com.apple.securityhi 4.0 (36638) <87868A3E-9341-1078-F00C-5E5972F01A4A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff82e27000 -     0x7fff82ee8fef  com.apple.ColorSync 4.6.8 (4.6.8) <7DF1D175-6451-51A2-DBBF-40FCA78C0D2C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff82f2d000 -     0x7fff82f3ffe7  libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <76B83C8D-8EFE-4467-0F75-275648AFED97> /usr/lib/libsasl2.2.dylib
        0x7fff82f40000 -     0x7fff82f48fff  com.apple.iChat.IMUtils 5.0.5 (747) <8A019B06-52FB-0B23-8A8B-7C2DA5465934> /System/Library/Frameworks/IMCore.framework/Frameworks/IMUtils.framework/Versio ns/A/IMUtils
        0x7fff82f49000 -     0x7fff82fc6fef  com.apple.backup.framework 1.2.2 (1.2.2) <CD3554D8-DA47-DDBC-910C-B2F1DE3B8CA6> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff82fc7000 -     0x7fff839c1ff7  com.apple.AppKit 6.6.8 (1038.36) <4CFBE04C-8FB3-B0EA-8DDB-7E7D10E9D251> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff83ba5000 -     0x7fff83ccdff7  com.apple.MediaToolbox 0.484.60 (484.60) <F921A5E6-E260-03B4-1458-E5814FA1924D> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
        0x7fff83e91000 -     0x7fff83e91ff7  com.apple.vecLib 3.6 (vecLib 3.6) <96FB6BAD-5568-C4E0-6FA7-02791A58B584> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff83e92000 -     0x7fff83ea6ff7  com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <621B7415-A0B9-07A7-F313-36BEEDD7B132> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff83ea7000 -     0x7fff84049fe7  com.apple.WebKit 6534.59 (6534.59.10) <5F60FC29-1962-988F-96D1-A72A61F8C4EB> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
        0x7fff8404a000 -     0x7fff8404dff7  libCoreVMClient.dylib ??? (???) <75819794-3B7A-8944-D004-7EA6DD7CE836> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff84062000 -     0x7fff84087ff7  com.apple.CoreVideo 1.6.2 (45.6) <E138C8E7-3CB6-55A9-0A2C-B73FE63EA288> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff84088000 -     0x7fff84089fff  liblangid.dylib ??? (???) <EA4D1607-2BD5-2EE2-2A3B-632EEE5A444D> /usr/lib/liblangid.dylib
        0x7fff8408a000 -     0x7fff84091ff7  com.apple.KerberosHelper 2.1 (1.0) <8BCCEA2D-7CE7-1B3E-F371-AB8485A1588F> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper
        0x7fff84092000 -     0x7fff840a0ff7  libkxld.dylib ??? (???) <8145A534-95CC-9F3C-B78B-AC9898F38C6F> /usr/lib/system/libkxld.dylib
        0x7fff840bc000 -     0x7fff840c7fff  com.apple.dotMacLegacy 3.2 (266) <80F00DE2-4C50-0FD9-5C6E-3EAA1599277B> /System/Library/PrivateFrameworks/DotMacLegacy.framework/Versions/A/DotMacLegac y
        0x7fff840c8000 -     0x7fff85132fff  com.apple.WebCore 6534.59 (6534.59.6) <24B753DC-1FD4-FFCC-5F66-44799244A125> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
        0x7fff85143000 -     0x7fff8514ffff  libbz2.1.0.dylib 1.0.5 (compatibility 1.0.0) <6FB0A8F4-72A1-D28F-E801-DE2C7498AFB9> /usr/lib/libbz2.1.0.dylib
        0x7fff85150000 -     0x7fff85151fff  com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <5062DACE-FCE7-8E41-F5F6-58821778629C> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
        0x7fff85351000 -     0x7fff853d3fff  com.apple.QuickLookUIFramework 2.3 (327.7) <73407EAE-6854-E444-37B1-019AAEDEB31B> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
        0x7fff853d4000 -     0x7fff85419fff  com.apple.CoreMediaIOServices 140.0 (1496) <D93293EB-0B84-E97D-E78C-9FE8D48AF58E> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
        0x7fff8541a000 -     0x7fff8569cfff  com.apple.Foundation 6.6.8 (751.63) <E10E4DB4-9D5E-54A8-3FB6-2A82426066E4> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff8569d000 -     0x7fff85ba3ff7  com.apple.VideoToolbox 0.484.60 (484.60) <F55EF548-56E4-A6DF-F3C9-6BA4CFF5D629> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
        0x7fff85ba4000 -     0x7fff85c0cfff  com.apple.MeshKitRuntime 1.1 (49.2) <4D3045D0-0D50-7053-3A05-0AECE86E39F8> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itRuntime.framework/Versions/A/MeshKitRuntime
        0x7fff85c0d000 -     0x7fff85d42fff  com.apple.audio.toolbox.AudioToolbox 1.6.7 (1.6.7) <F4814A13-E557-59AF-30FF-E62929367933> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff85d43000 -     0x7fff85e05fe7  libFontParser.dylib ??? (???) <EF06F16C-0CC9-B4CA-7BD9-0A97FA967340> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff86002000 -     0x7fff8602dff7  libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <3630A97F-55C1-3F34-CA63-3847653C9645> /usr/lib/libxslt.1.dylib
        0x7fff8602e000 -     0x7fff86078ff7  com.apple.Metadata 10.6.3 (507.15) <DE238BE4-5E22-C4D5-CF5C-3D50FDEE4701> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff862a0000 -     0x7fff862e3ff7  libRIP.A.dylib 545.0.0 (compatibility 64.0.0) <5FF3D7FD-84D8-C5FA-D640-90BB82EC651D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
        0x7fff86330000 -     0x7fff86377ff7  com.apple.coreui 2 (114) <923E33CC-83FC-7D35-5603-FB8F348EE34B> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff86378000 -     0x7fff863c2fef  com.apple.IMCore 5.0.5 (747) <EA34457E-1946-C6E6-304D-B18233FF68BA> /System/Library/Frameworks/IMCore.framework/Versions/A/IMCore
        0x7fff863c3000 -     0x7fff86501fff  com.apple.CoreData 102.1 (251) <9DFE798D-AA52-6A9A-924A-DA73CB94D81A> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff86502000 -     0x7fff865e7fef  com.apple.DesktopServices 1.5.11 (1.5.11) <39FAA3D2-6863-B5AB-AED9-92D878EA2438> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff865e8000 -     0x7fff86637ff7  com.apple.DirectoryService.PasswordServerFramework 6.1 (6.1) <01B370FB-D524-F660-3826-E85B7F0D85CD> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
        0x7fff866a8000 -     0x7fff866adfff  libGFXShared.dylib ??? (???) <6BBC351E-40B3-F4EB-2F35-05BDE52AF87E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff866ae000 -     0x7fff866f7ff7  com.apple.securityinterface 4.0.1 (40418.0.1) <9AF33A9F-2D8C-2AE6-868C-EA836C861031> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff866f8000 -     0x7fff866f8ff7  com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <4CCE5D69-F1B3-8FD3-1483-E0271DB2CCF3> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff86736000 -     0x7fff86738fef  com.apple.ExceptionHandling 1.5 (10) <F2867B93-A56A-974F-9556-266BCE394057> /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
        0x7fff86745000 -     0x7fff8674bfff  libCGXCoreImage.A.dylib 545.0.0 (compatibility 64.0.0) <D2F8C7E3-CBA1-2E66-1376-04AA839DABBB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
        0x7fff8685e000 -     0x7fff8686bfe7  libCSync.A.dylib 545.0.0 (compatibility 64.0.0) <1C35FA50-9C70-48DC-9E8D-2054F7A266B1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
        0x7fff868ac000 -     0x7fff868dbff7  com.apple.quartzfilters 1.6.0 (1.6.0) <9CECB4FC-1CCF-B8A2-B935-5888B21CBEEF> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
        0x7fff868e6000 -     0x7fff86a56fff  com.apple.QTKit 7.7 (1800) <10F1DA07-ED26-C103-EE0A-515898C1DB19> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff86a57000 -     0x7fff86a61fff  com.apple.DisplayServicesFW 2.3.3 (289) <97F62F36-964A-3E17-2A26-A0EEF63F4BDE> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
        0x7fff86a62000 -     0x7fff86afcfff  com.apple.ApplicationServices.ATS 275.19 (???) <2DE8987F-4563-4D8E-45C3-2F6F786E120D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff86afd000 -     0x7fff86b44fff  com.apple.QuickLookFramework 2.3 (327.7) <A8169A96-FAE6-26B2-A9A9-C78BA5787146> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
        0x7fff86b4a000 -     0x7fff86b5bfff  com.apple.DSObjCWrappers.Framework 10.6 (134) <3C08225D-517E-2822-6152-F6EB13A4ADF9> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
        0x7fff86b5c000 -     0x7fff86d9efe7  com.apple.AddressBook.framework 5.0.4 (883) <3C634319-4B5B-592B-2D3A-A16336F93AA0> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
        0x7fff86e6c000 -     0x7fff871a0fef  com.apple.CoreServices.CarbonCore 861.39 (861.39) <1386A24D-DD15-5903-057E-4A224FAF580B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff871bd000 -     0x7fff871fefff  com.apple.SystemConfiguration 1.10.8 (1.10.2) <78D48D27-A9C4-62CA-2803-D0BBED82855A> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff871ff000 -     0x7fff87201fff  libRadiance.dylib ??? (???) <BF694EE5-6FDA-553A-CC89-F7135618E9C7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
        0x7fff87202000 -     0x7fff87362ff7  com.apple.syncservices 5.2 (578.3) <F86C878E-8B5E-DBCE-8592-7AF88DE53261> /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
        0x7fff87363000 -     0x7fff873f3fff  com.apple.SearchKit 1.3.0 (1.3.0) <4175DC31-1506-228A-08FD-C704AC9DF642> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff873f4000 -     0x7fff87403fef  com.apple.opengl 1.6.14 (1.6.14) <ECAE2D12-5BE3-46E7-6EE5-563B80B32A3E> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff87416000 -     0x7fff8743efff  com.apple.DictionaryServices 1.1.2 (1.1.2) <E9269069-93FA-2B71-F9BA-FDDD23C4A65E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff8743f000 -     0x7fff87480fef  com.apple.CoreMedia 0.484.60 (484.60) <6B73A514-C4D5-8DC7-982C-4E4F0231ED77> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff87482000 -     0x7fff87532fff  edu.mit.Kerberos 6.5.11 (6.5.11) <085D80F5-C9DC-E252-C21B-03295E660C91> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff87533000 -     0x7fff87535fff  com.apple.print.framework.Print 6.1 (237.1) <CA8564FB-B366-7413-B12E-9892DA3C6157> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff87639000 -     0x7fff8765cff7  com.apple.iChat.IMFoundation 5.0.5 (747) <B4C34872-5157-27C0-37F2-77D11137BD8A> /System/Library/Frameworks/IMCore.framework/Frameworks/IMFoundation.framework/V ersions/A/IMFoundation
        0x7fff876e8000 -     0x7fff876ecff7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <95718673-FEEE-B6ED-B127-BCDBDB60D4E5> /usr/lib/system/libmathCommon.A.dylib
        0x7fff876ed000 -     0x7fff87b30fef  libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <0CC61C98-FF51-67B3-F3D8-C5E430C201A9> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff87b81000 -     0x7fff87ca0ff7  libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <0CE8D59B-D0C7-1DCE-3654-37F27F61BEFA> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff87ca1000 -     0x7fff87cb0fff  com.apple.NetFS 3.2.2 (3.2.2) <7CCBD70E-BF31-A7A7-DB98-230687773145> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff87cb1000 -     0x7fff87eebfef  com.apple.imageKit 2.0.3 (1.0) <9EA216AF-82D6-201C-78E5-D027D85B51D6> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
        0x7fff87eec000 -     0x7fff87eedff7  com.apple.TrustEvaluationAgent 1.1 (1) <5952A9FA-BC2B-16EF-91A7-43902A5C07B6> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff87eee000 -     0x7fff87f09ff7  com.apple.openscripting 1.3.1 (???) <9D50701D-54AC-405B-CC65-026FCB28258B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff87f0a000 -     0x7fff87f48fe7  libFontRegistry.dylib ??? (???) <395D7C0D-36B5-B353-0DC8-51ABC0B1C030> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff87f49000 -     0x7fff87fb3fe7  libvMisc.dylib 268.0.1 (compatibility 1.0.0) <AF0EA96D-000F-8C12-B952-CB7E00566E08> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff87fb4000 -     0x7fff87ff3ff7  libssl.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <B2E93DEC-2F33-366A-995C-ACA0523D508F> /usr/lib/libssl.0.9.8.dylib
        0x7fff88024000 -     0x7fff880e1fff  com.apple.CoreServices.OSServices 359.2 (359.2) <BBB8888E-18DE-5D09-3C3A-F4C029EC7886> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff880e2000 -     0x7fff88142fe7  com.apple.framework.IOKit 2.0 (???) <4F071EF0-8260-01E9-C641-830E582FA416> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff88143000 -     0x7fff8824dff7  com.apple.MeshKitIO 1.1 (49.2) <C19D0CCD-1DCB-7EDE-76FA-BF74079AFC6A> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itIO.framework/Versions/A/MeshKitIO
        0x7fff8824e000 -     0x7fff88288fff  libcups.2.dylib 2.8.0 (compatibility 2.0.0) <4F2A4397-89BD-DEAC-4971-EE838FFA0964> /usr/lib/libcups.2.dylib
        0x7fff88289000 -     0x7fff8828aff7  com.apple.audio.units.AudioUnit 1.6.7 (1.6.7) <49B723D1-85F8-F86C-2331-F586C56D68AF> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff88297000 -     0x7fff882b0fff  com.apple.CFOpenDirectory 10.6 (10.6) <CCF79716-7CC6-2520-C6EB-A4F56AD0A207> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff882b1000 -     0x7fff88336ff7  com.apple.print.framework.PrintCore 6.3 (312.7) <CDFE82DD-D811-A091-179F-6E76069B432D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff8836f000 -     0x7fff883c2ff7  com.apple.HIServices 1.8.3 (???) <F6E0C7A7-C11D-0096-4DDA-2C77793AA6CD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff883cb000 -     0x7fff883d0ff7  com.apple.CommonPanels 1.2.4 (91) <4D84803B-BD06-D80E-15AE-EFBE43F93605> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff883d1000 -     0x7fff88443fef  com.apple.CoreSymbolication 2.0 (23) <06F8561E-4B36-7BF6-31BA-64091B3D8058> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
        0x7fff88bd9000 -     0x7fff88bf0fff  com.apple.ImageCapture 6.1 (6.1) <79AB2131-2A6C-F351-38A9-ED58B25534FD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff88c37000 -     0x7fff88c37ff7  com.apple.ApplicationServices 38 (38) <10A0B9E9-4988-03D4-FC56-DDE231A02C63> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff88c38000 -     0x7fff88ca9ff7  com.apple.AppleVAFramework 4.10.27 (4.10.27) <6CDBA3F5-6C7C-A069-4716-2B6C3AD5001F> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff88caa000 -     0x7fff88ce3ff7  com.apple.MeshKit 1.1 (49.2) <832A074D-7601-F7C9-6D3A-E1C58965C3A1> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
        0x7fff88ce4000 -     0x7fff88d62ff7  com.apple.CoreText 151.13 (???) <5C6214AD-D683-80A8-86EB-328C99B75322> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
        0x7fff88d63000 -     0x7fff88e1cfff  libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <2C5ED312-E646-9ADE-73A9-6199A2A43150> /usr/lib/libsqlite3.dylib
        0x7fff88e40000 -     0x7fff88e61fff  libresolv.9.dylib 41.1.0 (compatibility 1.0.0) <9410EC7F-4D24-6740-AFEE-90405750FAD7> /usr/lib/libresolv.9.dylib
        0x7fff88e62000 -     0x7fff88e62ff7  com.apple.Accelerate 1.6 (Accelerate 1.6) <15DF8B4A-96B2-CB4E-368D-DEC7DF6B62BB> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff88e8b000 -     0x7fff88e90fff  libGIF.dylib ??? (???) <3BAD0DE8-8151-68B0-2244-A4541C738972> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff88e91000 -     0x7fff88eb4fff  com.apple.opencl 12.3.6 (12.3.6) <42FA5783-EB80-1168-4015-B8C68F55842F> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff88eb5000 -     0x7fff88ec6ff7  libz.1.dylib 1.2.3 (compatibility 1.0.0) <97019C74-161A-3488-41EC-A6CA8738418C> /usr/lib/libz.1.dylib
        0x7fff88ec7000 -     0x7fff8903efe7  com.apple.CoreFoundation 6.6.6 (550.44) <BB4E5158-E47A-39D3-2561-96CB49FA82D4> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff8903f000 -     0x7fff8909fff7  com.apple.ExchangeWebServices 1.3 (61) <7DB2989C-1362-8688-C73E-8405734A6566> /System/Library/PrivateFrameworks/ExchangeWebServices.framework/Versions/A/Exch angeWebServices
        0x7fff890a0000 -     0x7fff898aafe7  libBLAS.dylib 219.0.0 (compatibility 1.0.0) <FC941ECB-71D0-FAE3-DCBF-C5A619E594B8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff898ab000 -     0x7fff89c48fe7  com.apple.QuartzCore 1.6.3 (227.37) <16DFF6CD-EA58-CE62-A1D7-5F6CE3D066DD> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff89c49000 -     0x7fff89c84fff  com.apple.AE 496.5 (496.5) <208DF391-4DE6-81ED-C697-14A2930D1BC6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff89c85000 -     0x7fff89ccdff7  libvDSP.dylib 268.0.1 (compatibility 1.0.0) <98FC4457-F405-0262-00F7-56119CA107B6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff89cce000 -     0x7fff89cceff7  com.apple.Carbon 150 (152) <191B4F4B-8D06-796B-CA0C-782F06DD7BC7> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff89ccf000 -     0x7fff89d0cfff  com.apple.LDAPFramework 2.0 (120.1) <54A6769E-D7E2-DBE2-EA61-87B9EA355DA4> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
        0x7fff89d0d000 -     0x7fff89d4bfef  com.apple.DebugSymbols 1.1 (70) <C3D11461-E118-09DB-D9D7-8972B3FD160F> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff89d4c000 -     0x7fff89d97fef  com.apple.ImageCaptureCore 1.1 (1.1) <F23CA537-4F18-76FC-8D9C-ED6E645186FC> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
        0x7fff89d98000 -     0x7fff89dc9fff  libGLImage.dylib ??? (???) <562565E1-AA65-FE96-13FF-437410C886D0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff89dca000 -     0x7fff89f8bfef  libSystem.B.dylib 125.2.11 (compatibility 1.0.0) <9AB4F1D1-89DC-0E8A-DC8E-A4FE4D69DB69> /usr/lib/libSystem.B.dylib
        0x7fff89f8c000 -     0x7fff89f8cff7  com.apple.Cocoa 6.6 (???) <68B0BE46-6E24-C96F-B341-054CF9E8F3B6> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff89f8d000 -     0x7fff89f98ff7  com.apple.speech.recognition.framework 3.11.1 (3.11.1) <3D65E89B-FFC6-4AAF-D5CC-104F967C8131> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff89f99000 -     0x7fff89f9fff7  IOSurface ??? (???) <EAD87C9F-BADC-7116-4ADD-0B0679459D24> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff89fa0000 -     0x7fff8a69cff7  com.apple.CoreGraphics 1.545.0 (???) <58D597B1-EB3B-710E-0B8C-EC114D54E11B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff8a69d000 -     0x7fff8a77afff  com.apple.vImage 4.1 (4.1) <C3F44AA9-6F71-0684-2686-D3BBC903F020> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff8a77b000 -     0x7fff8a7abfef  com.apple.shortcut 1.1 (1.1) <A99C9D8E-290B-B1E4-FEA5-CC5F2FB9C18D> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
        0x7fff8a7ac000 -     0x7fff8a7c2fe7  com.apple.MultitouchSupport.framework 207.11 (207.11) <8233CE71-6F8D-8B3C-A0E1-E123F6406163> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fffffe00000 -     0x7fffffe01fff  libSystem.B.dylib ??? (???) <9AB4F1D1-89DC-0E8A-DC8E-A4FE4D69DB69> /usr/lib/libSystem.B.dylib
    Model: MacBookPro3,1, BootROM MBP31.0070.B07, 2 processors, Intel Core 2 Duo, 2.4 GHz, 6 GB, SMC 1.16f11
    Graphics: NVIDIA GeForce 8600M GT, GeForce 8600M GT, PCIe, 256 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x168C, 0x87), Atheros 5416: 2.1.14.6
    Bluetooth: Version 2.4.5f3, 2 service, 19 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    PCI Card: pci168c,24, sppci_othernetwork, PCI Slot 5
    Serial ATA Device: Hitachi HTS543216L9SA02, 149.05 GB
    Parallel ATA Device: HL-DT-ST DVDRW  GSA-S10N
    USB Device: Built-in iSight, 0x05ac  (Apple Inc.), 0x8502, 0xfd400000 / 2
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x8205, 0x1a100000 / 2
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac  (Apple Inc.), 0x021a, 0x5d200000 / 3
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0x5d100000 / 2
    FireWire Device: Rugged FW/USB, LaCie, Up to 400 Mb/sec
    FireWire Device: G-DRIVE, HGST, Up to 800 Mb/sec

    Hi JulieBoo26,
    If you are having issues with Keynote crashing, you may want to start with following general troubleshooting steps to help narrow it down:
    OS X Mavericks: If an app freezes or quits unexpectedly
    http://support.apple.com/kb/PH13975
    Regards,
    - Brenden

  • HOW TO ADD NEW HR OBJECTS ????

    Hi,
    i would like to new objects in HR object selection list,especially for PPOCE.
    I donot know how to add new objects in the object selection list.
    pls anyone who knows this ,could share your knowledge with me.
    tks
    theresita

    Hi Theresita,
    All the configuration is in the IMG under Personnel Management > Organizational Management > Hierarchy Framework.  You'll want to review all the entries and related documentation, as adding objects to PPOME/PPOCE is not a simple 'one table' process.  You may need new evaluation paths to support the views you want to see in the framework, so set these up ahead of time.  Parameters to support your configuration are: OM_ARRAYTYPE_DISPLAY; OM_DIS_OBJECTMANAGER; OM_FRAMEWORK_OBJ_NR; OM_FRAM_SCEN_DISPLAY: OM_OBJIM_SCEN_DISPLAY: OM_TABTYPE_DISPLAY.  You'll notice once you add these parameters, you can see the technical names of the scenarios you're working with in PPOME/PPOCE.
    Good luck,
    Sharon

  • Bind a new view object to same adf table at run time

    Hello,
    I have an adf table, that changes based on the type of data the user selects. For example, lets say we have a page that consists of type drop down box at the top and an ADF table at the bottom, which lists data based on the type that is selected from the drop down box. For example, lets say, I have the types (Cars, Planes, and Trains).
    Let's further say we have a view object for cars, one for Planes and one for Trains. Each VO has its own specific set of attributes associated with them, which in should be reflected in the adf table that's on the screen.
    So for example, I select Train..
    My table should contain the columns, num cabs, train type, year built
    For plane, the columns might be Num engines, plane manufacturer, size(ie. 747, 727, etc), year built
    Some type of thing with Cars , cylinders, color, model, year, etc.
    Is there a way to tell my adf table to use a specific view object(ie. Plane, train, or car) at runtime?

    You can try implementing this with dynamic components, e.g. dynamic table
    >
    ADF Dynamic and ADF Read-Only Dynamic Table: Allows you to create a
    table when the attributes returned and displayed are determined dynamically
    at runtime. This component is helpful when the attributes for the
    corresponding object are not known until runtime, or you do not wish to
    hardcode the column names in the JSF page. For more information about
    working with dynamic components, see Section 26.7, "Using a Dynamic Form
    to Determine Data to Display at Runtime."
    >
    Or you use dynamic regions and swithc the region containing the table depending on the selectOneChice. Check http://docs.oracle.com/cd/E24382_01/web.1112/e16182/taskflows_regions.htm and https://blogs.oracle.com/shay/entry/adf_dynamic_regions_switching_just
    Timo

  • New view object row does not get committed to DB

    Hi guys,
    on a taskflow with a new transaction I have a form to enter a new record on an entity-based view object.
    Before the page is called I call the CreateInsert Operation to create the new record on that view object.
    There are quite a few attributes that have default values which I determine in the ViewRowImpl's create method (using populateAttributeAsChanged to set the values).
    Now if none of the inputValues in the form is filled manually and I want to save the data (default values are sufficient to save the record) the taskflow return action commit does not commit the data to the db. As soon as I manually enter one value into any field the same return action commits the record correctly to the db. There is no error message and the new record is visible in the application because it is inserted into the view's iterator...
    Is there any way to mark the new row as changed/insert if only the default values are filled? Or am I doing something wrong?
    Using JDev 11.1.1.5
    Achim

    Add the following method in your RowImpl class:
    public void setNewRowState(byte b) {
         if (b != Row.STATUS_INITIALIZED ||
             getNewRowState() != Row.STATUS_NEW) {
             super.setNewRowState(b);

  • How to add new views in Subview dropdown in UWL inbox?

    Hi All,
    I have a requirement to add more views in the "Subview" dropdown in UWL inbox?
    I uploaded the below UWL config file and didn't work.
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE UWLConfiguration PUBLIC '-//SAP//UWL1.0//EN' 'uwl_configuration.dtd'
      >
    <UWLConfiguration version="1.0">
      <ItemTypes>
        <ItemType name="uwl.task.webflow.TS99999999.SAP_R3_HumanResources" connector="WebFlowConnector" defaultView="myExpenseApproval" defaultAction="viewDetail" executionMode="pessimistic"/>
      </ItemTypes>
      <Views>
        <View name="myExpenseApproval" selectionMode="SINGLESELECT" width="98%" supportedItemTypes="uwl.task.webflow.TS999999999" columnOrder="subject, creatorId, createdDate, priority, attachmentCount, completedDate" sortby="createdDate" tableDesign="STANDARD" visibleRowCount="10" headerVisible="yes" queryRange="undefined" tableNavigationFooterVisible="yes" tableNavigationType="CUSTOMNAV" refresh="-1" dueDateSevere="0" dueDateWarning="0" emphasizedItems="new" displayOnlyDefinedAttributes="no" dynamicCreationAllowed="yes" actionPosition="bottom">
          <Descriptions default="Expense Report to Approve">
            <ShortDescriptions>
              <Description Language="en" Description="Expense Report to Approve"/>
            </ShortDescriptions>
          </Descriptions>
          <Actions>
            <Action reference="refresh"/>
            <Action reference="removeFromNavigation"/>
            <Action reference="addToNavigation"/>
            <Action name="launchSAPAction" groupAction="" handler="SAPTransactionLauncher" returnToDetailViewAllowed="yes" launchInNewWindow="no">
              <Descriptions default="launchSAPAction"/>
            </Action>
          </Actions>
        </View>
      </Views>
    </UWLConfiguration>
    Can anyone tell me what's wrong in this xml file?
    Or
    How to resolve this issue?
    Thanks
    Sundar

    Mr. I, GURU:
    I am trying to make my first workbook, and I do not have any options in the Available section. I can open up a SQL session, and view the tables with this same user ID. In Discoverer, I cannot see any items in this list. Does the Administrator have to assign separate user access for Discoverer?
    Thanks in advance.

Maybe you are looking for

  • Can we upload more than one document at a time ?

    It will take me forever to upload all my documents into the acrobat cloud , ONE at a time....is there a quicker way to do it? If not,  will there be soon? Because that would really help me and possibly others to get it done faster...

  • RSD - really fast repair!!

    My Macbook suffered from the RSD problem. I live in the UK and rang Apple on Thursday. A courier arrived with a box to return it for repair the next day, Friday. The courier also collected it the same day and I received the repaired Macbook today, Tu

  • How to make field visible and invisible dynamically in webdynpro ABAP

    Hi Experts, I am working on simple webdynpro application, in which I have two radio buttons and three fields. When I select second radio button second field should be invisible out of three and when I select first radio button the second field should

  • IAS oem web creating user accounts

    Does anyone know of a way to grant access to users so they can access oem through the web? I want to grant access to managers to view reports that have been accessed on IAS. Is there a way to create/grant access to users other than the ias_admin user

  • IPhone on PC

    I have a PC. My wife and I both have the iPhone 4. When I plug my iPhone into the computer it is listed as my wife's iPhone on C Drive. I know they must have different serial numbers. What causes this issue and what can I do to fix the problem?