Why After Vo Creation dynamicall i got the this error ?

Hi Gurus,
After VO Creation dynamically i got this error pl z help us.
**Message not found. Application: FND, Message Name: FND_VIEWOBJECT_NOT_FOUND. Tokens: VONAME = BehCompetenceElementsVoEx; APPLICATION_MODULE = xxhr.oracle.apps.per.selfservice.appraisals.server.BEHVAssessmentsAMEx;**
i am trying create the new VO dynamically .
i am using this code plz help us.
OAApplicationModule am = pageContext.getApplicationModule(webBean);
OAViewObject ratingvo = (OAViewObject)am.findViewObject("BehCompetenceElementsVoEx");
if ( ratingvo != null ) {
System.out.println("Vo Found VO BehCompetenceElementsVoEx for AM. This means we have re-entered the page" );
else
System.out.println("CAN NOT FIND VO for AM" );
ratingvo = (OAViewObject)am.createViewObject("BehCompetenceElementsVoEx", "xxhr.oracle.apps.per.selfservice.appraisals.server.BehCompetenceElementsVoEx") ;
Regards,
Srini

Hi Ali,
Plz help i am new in these things this is my VO Query ,plz help me how to write the programmatic ........i am trying but unable to retrieve the data plz give me any reference controller.
SELECT pce.competence_element_id, pce.business_group_id, pce.competence_id,
pce.proficiency_level_id, pce.high_proficiency_level_id,
pce.weighting_level_id, pce.rating_level_id, pce.person_id,
pce.enterprise_id, pce.job_id, pce.valid_grade_id, pce.position_id,
pce.organization_id, pce.assessment_id, pce.assessment_type_id,
pce.comments, pce.effective_date_from, pce.effective_date_to,
pce.line_score, pce.attribute_category, pce.attribute1,
pce.attribute2, pce.attribute3, pce.attribute4, pce.attribute5,
pce.attribute6, pce.attribute7, pce.attribute8, pce.attribute9,
pce.attribute10, pce.attribute11, pce.attribute12, pce.attribute13,
pce.attribute14, pce.attribute15, pce.attribute16, pce.attribute17,
pce.attribute18, pce.attribute19, pce.attribute20, pc.NAME,
pc.competence_id AS competence_id1, pc.rating_scale_id,
pc.competence_alias,
DECODE (pce3.TYPE,
'ASSESSMENT', 'DisableCompDelete',
'ASSESSMENT_COMPETENCE', 'DisableCompDelete',
NVL ((SELECT DISTINCT 'DisableCompDelete'
FROM per_competence_elements
WHERE parent_competence_element_id =
pce.competence_element_id),
'EnableCompDelete'
) AS delete_comp,
pce.parent_competence_element_id, prl1.NAME AS prof_level,
prl1.rating_level_id AS rating_level_id1, prl2.NAME AS perf_level,
prl2.rating_level_id AS rating_level_id2, prl3.NAME AS weigh_level,
prl3.rating_level_id AS rating_level_id3, pce.object_id,
pce.object_name, pce1.competence_element_id AS ref1_comp_element_id,
pce1.proficiency_level_id AS ref1_prof_level_id,
pce1.weighting_level_id AS ref1_weigh_level_id,
pce1.rating_level_id AS ref1_perf_level_id,
pce1.comments AS ref1_comments,
pce1.attribute_category AS ref1_attribute_category,
pce1.attribute1 AS ref1_attribute1,
pce1.attribute2 AS ref1_attribute2,
pce1.attribute3 AS ref1_attribute3,
pce1.attribute4 AS ref1_attribute4,
pce1.attribute5 AS ref1_attribute5,
pce1.attribute6 AS ref1_attribute6,
pce1.attribute7 AS ref1_attribute7,
pce1.attribute8 AS ref1_attribute8,
pce1.attribute9 AS ref1_attribute9,
pce1.attribute10 AS ref1_attribute10,
pce1.attribute11 AS ref1_attribute11,
pce1.attribute12 AS ref1_attribute12,
pce1.attribute13 AS ref1_attribute13,
pce1.attribute14 AS ref1_attribute14,
pce1.attribute15 AS ref1_attribute15,
pce1.attribute16 AS ref1_attribute16,
pce1.attribute17 AS ref1_attribute17,
pce1.attribute18 AS ref1_attribute18,
pce1.attribute19 AS ref1_attribute19,
pce1.attribute20 AS ref1_attribute20,
pce2.competence_element_id AS ref2_comp_element_id,
pce2.proficiency_level_id AS ref2_prof_level_id,
pce2.weighting_level_id AS ref2_weigh_level_id,
pce2.rating_level_id AS ref2_perf_level_id,
pce2.comments AS ref2_comments,
pce2.attribute_category AS ref2_attribute_category,
pce2.attribute1 AS ref2_attribute1,
pce2.attribute2 AS ref2_attribute2,
pce2.attribute3 AS ref2_attribute3,
pce2.attribute4 AS ref2_attribute4,
pce2.attribute5 AS ref2_attribute5,
pce2.attribute6 AS ref2_attribute6,
pce2.attribute7 AS ref2_attribute7,
pce2.attribute8 AS ref2_attribute8,
pce2.attribute9 AS ref2_attribute9,
pce2.attribute10 AS ref2_attribute10,
pce2.attribute11 AS ref2_attribute11,
pce2.attribute12 AS ref2_attribute12,
pce2.attribute13 AS ref2_attribute13,
pce2.attribute14 AS ref2_attribute14,
pce2.attribute15 AS ref2_attribute15,
pce2.attribute16 AS ref2_attribute16,
pce2.attribute17 AS ref2_attribute17,
pce2.attribute18 AS ref2_attribute18,
pce2.attribute19 AS ref2_attribute19,
pce2.attribute20 AS ref2_attribute20,
pce3.competence_element_id AS par_comp_element_id,
pce1.TYPE AS type1, pce2.TYPE AS type2, pce3.TYPE AS type3, pce.TYPE
FROM per_competence_elements pce,
per_competences_vl pc,
per_rating_levels_vl prl1,
per_rating_levels_vl prl2,
per_rating_levels_vl prl3,
per_competence_elements pce1,
per_competence_elements pce2,
per_competence_elements pce3
WHERE pce.competence_id = pc.competence_id
AND pce.proficiency_level_id = prl1.rating_level_id(+)
AND pce.rating_level_id = prl2.rating_level_id(+)
AND pce.weighting_level_id = prl3.rating_level_id(+)
AND pc.NAME LIKE 'BEHV%'
--AND pc.NAME is         Not Null
AND pce.competence_id = pce1.competence_id(+)
AND pce1.object_id(+) = :1
AND pce.assessment_id = pce1.assessment_id(+)
AND pce1.object_name(+) = :2
AND pce.competence_id = pce2.competence_id(+)
AND pce2.object_id(+) = :3
AND pce.assessment_id = pce2.assessment_id(+)
AND pce2.object_name(+) = :4
AND pce.parent_competence_element_id = pce3.competence_element_id(+)
AND (pce.assessment_id = :5 AND pce.object_id = :6
AND pce.object_name = :7
ORDER BY pc.NAME
Regards,
Srini

Similar Messages

  • After downloading the updates for Premier Elements 12 I got the following error message U44M1P7. What does this mean and how can I correct it. Thanks.

    After downloading the updates for Premier Elements 12 I got the following error message U44M1P7. What does this mean and how can I correct it. Thanks.

    glennpsychdoc
    What computer operating system is your Premiere Elements 12 running on? I suspect Mac because of the name your error.
    Please read the following Adobe document with the details and fix for error U44M1P7
    ATR Premiere Elements Troubleshooting: PE12: 12.1 Update Released
    Specifically open the following link in the above
    Update 12.1 installation errors | Photoshop Elements, Premiere Elements
    Please let us know if that works for you.
    Thank you.
    ATR

  • Trying to implement a VPD policy but got the following error ORA-20001

    hey good day,
    I'm trying to implement a VPD policy to my application. After I have performed the below task (Label 1) in oracle 10g database. When I'm about to access my application page in ApEx 3.2.1 I got the following error
    ORA-20001: get_dbms_sql_cursor error ORA-28110: policy function or package CHARLES.VPD_PREDICATE has error
    any form of assistance will be greatly appreciated.
    thanks in advance
    Label 1
    USER is "VPD_ADMIN"
    SQL> create or replace context empnum_ctx using set_empnum_ctx_pkg;
    Context created.
    SQL> CREATE OR REPLACE PACKAGE set_empnum_ctx_pkg IS
      2    PROCEDURE set_empnum;
      3  END;
      4  /
    Package created.
    SQL> CREATE OR REPLACE PACKAGE BODY set_empnum_ctx_pkg IS
      2    PROCEDURE set_empnum IS
      3     emp_id NUMBER;
      4    BEGIN
      5     SELECT EMPNUM INTO emp_id FROM CHARLES.INSTRUCTOR
      6     WHERE upper(username) = nvl(v('APP_USER'), USER);
      7     DBMS_SESSION.SET_CONTEXT('empnum_ctx', 'empnum', emp_id);
      8
      9    EXCEPTION
    10      WHEN NO_DATA_FOUND THEN NULL;
    11    END;
    12  END;
    13  /
    Package body created.
    SQL> create or replace package vpd_policy as
      2    function vpd_predicate(object_schema in varchar2 default null, object_name in varchar2 default null)
      3     return varchar2;
      4  end;
      5  /
    Package created.
    SQL> create or replace package body vpd_policy as  function vpd_predicate(
      2   object_schema in varchar2 default null, object_name in varchar2 default null)
      3     return varchar2 as
      4
      5      BEGIN
      6     if (USER = 'ADMIN') and (v('APP_USER') is null) or
      7        (USER = 'MICHAEL.GRAY') and (v('APP_USER') is NULL) then
      8       return '';
      9     else
    10       return '(
    11             exists (
    12                     select  "INSTRUCTOR"."EMPNUM" as "EMPNUM",
    13                             "INSTRUCTOR"."FIRSTNAME" as "FIRSTNAME",
    14                             "INSTRUCTOR"."LASTNAME" as "LASTNAME",
    15                             "LOAD"."COURSEID" as "COURSEID",
    16                             "COURSE"."CREDIT" as "CREDIT",
    17                             "COURSE"."HPW" as "HPW",
    18                             "LOAD"."CAMPID" as "CAMPID",
    19                             "LOAD"."YR" as "YR",
    20                             "INSTRUCTOR"."POS" as "POS",
    21                             "INSTRUCTOR"."USERNAME" as "USERNAME",
    22                             "INSTRUCTOR"."DEPARTMENT_NAME" as "DEPARTMENT_NAME",
    23                             "LOAD"."SEMESTER" as "SEMESTER"
    24                     from    "COURSE" "COURSE",
    25                             "INSTRUCTOR" "INSTRUCTOR",
    26                             "LOAD" "LOAD"
    27                     where   "INSTRUCTOR"."EMPNUM"="LOAD"."EMPNUM"
    28                     and     "LOAD"."COURSEID"="COURSE"."COURSEID"
    29                     and     department_name = (
    30                                     select department_name from departments
    31                                     where upper (assigned_to) = nvl(v(''APP_USER''),USER) )
    32                                     )
    33
    34                     or upper(username) = nvl(v(''APP_USER''), USER)
    35                                                ) ';
    36
    37     END IF;
    38  END vpd_predicate;
    39  END vpd_policy;
    40  /
    Package body created.
    SQL> begin
      2  dbms_rls.add_policy(
      3  object_schema => 'charles',
      4  object_name => 'load',
      5  policy_name => 'Loading Policy',
      6  function_schema => 'charles',
      7  policy_function => 'vpd_predicate',
      8  statement_types => 'select, update, insert, delete');
      9  end;
    10  /
    PL/SQL procedure successfully completed.

    ORA-20001 isn't an Oracle error message it was coded into your application by a developer: Look it up.
    Consider too the following:
    EXCEPTION
       WHEN NO_DATA_FOUND THEN NULL;so if the employee identifier is not found ... is this really what you want? If an employee isn't valid shouldn't you know it?

  • When click on the submit button i got the below error.

    Hi Gurus,
    i am very new to oaf.
    i am trying to insert data into database tables.
    so i am entering the data and click on the submit button i got the below error in createPG rightside the top
    Error while creating a new entity row for NewManagerCustomTableEO
    Plz help me
    thanks
    latha.

    Hi,
    Please provide the code that u r using..
    Thanks
    Raghav.

  • While running the page i got the below error

    Hi All,
    i am new to oaf. plz help me.
    i am try to running the page i got the below error.
    Error(14,8): class wnsgs.oracle.apps.pa.managerinformation.server.ManagerCustomTableEOImpl should be declared abstract; it does not define method setLastUpdateLogin(oracle.jbo.domain.Number) in class oracle.apps.fnd.framework.server.OAEntityImpl
    so plz help me.its very urgent.
    thanks
    Latha.

    Hi Gyan,
    I did create VO with who columns.
    still i get same error.
    SELECT ManagerCustomTableEO.PROJECT_NUMBER,
    ManagerCustomTableEO.OLD_OPERATION_MANAGER_NAME,
    ManagerCustomTableEO.NEW_OPERATION_MANAGER_NAME,
    ManagerCustomTableEO.APPROVAL_STATUS,
    ManagerCustomTableEO.APPROVED_BY_NAME,
    ManagerCustomTableEO.API_STATUS,
    ManagerCustomTableEO.CREATED_BY,
    ManagerCustomTableEO.CREATION_DATE,
    ManagerCustomTableEO.LAST_UPDATED_BY,
    ManagerCustomTableEO.LAST_UPDATED_DATE,
    ManagerCustomTableEO.LAST_UPDATED_LOGIN
    FROM CUS_APPS.WNS_MANAGER_DETAILS_STG ManagerCustomTableEO
    where project_number=nvl(:1,project_number)
    Thanks
    latha

  • Tried to "Open As" in PS a NEF file I modified in LR.  Got the following error message:  "Could not complete your request because the file format module cannot parse the file."  I can "Open" the file in PS, but then the changes I made in LR (and saved in

    Tried to "Open As" in PS a NEF file I modified in LR.  Got the following error message:  "Could not complete your request because the file format module cannot parse the file."  I can "Open" the file in PS, but then the changes I made in LR (and saved in the associated meta data file with the "Control S" command) are not applied to the opened PS file.  HELP!

    If you are working with a file you modified in Lightroom, you should go to the Lightroom Photo menu and choose Edit in... and the version of Photoshop you want to open it in.
    There a dialog will ask if you want to transfer the LR settings you made to your photo when you open in Photoshop.
    Gene

  • I got the above error while i restore the standby database using RMAN backu

    Dear All,
    RMAN> crosscheck archivelog all;
    using target database controlfile instead of recovery catalog
    allocated channel: ORA_DISK_1
    channel ORA_DISK_1: sid=14 devtype=DISK
    specification does not match any archive log in the recovery catalogi got the above error while i restore the standby database using RMAN backup from production.
    Help need.i take the backup without catalog database.
    regards,
    DB

    rman> list backup;
    it shows lengthier but i showed only the corresponding
    BS Key  Type LV Size       Device Type Elapsed Time Completion Time
    3479    Full    17G        DISK        01:29:42     09-FEB-13
            BP Key: 3479   Status: AVAILABLE   Tag: 09FEB13_FULL_ESMSRV1_DB
            Piece Name: /oradatabkp/rman/esmsrv1_full_db_09feb13
      SPFILE Included: Modification time: 08-FEB-13
      List of Datafiles in backup set 3479
      File LV Type Ckp SCN    Ckp Time  Name
      1       Full 1759250260 09-FEB-13 /esmsrv1/dbs/system01.dbf
      2       Full 1759250260 09-FEB-13 /esmsrv1/dbs/undotbs01.dbf
      3       Full 1759250260 09-FEB-13 /esmsrv1/dbs/cwmlite01.dbf
      4       Full 1759250260 09-FEB-13 /esmsrv1/dbs/drsys01.dbf
      5       Full 1759250260 09-FEB-13 /esmsrv1/dbs/example01.dbf
      6       Full 1759250260 09-FEB-13 /esmsrv1/dbs/indx01.dbf
      7       Full 1759250260 09-FEB-13 /esmsrv1/dbs/odm01.dbf
      8       Full 1759250260 09-FEB-13 /esmsrv1/dbs/tools01.dbf
      9       Full 1759250260 09-FEB-13 /esmsrv1/dbs/users01.dbf
      10      Full 1759250260 09-FEB-13 /esmsrv1/dbs/xdb01.dbf
      11      Full 1759250260 09-FEB-13 /esmsrv1/dbs/dpipe_default_seg_001.dbf
      12      Full 1759250260 09-FEB-13 /esmsrv1/dbs/dpipe_property_ind_seg_001.dbf
      13      Full 1759250260 09-FEB-13 /esmsrv1/dbs/dpipe_property_seg_001.dbf
      14      Full 1759250260 09-FEB-13 /esmsrv1/dbs/dpipe_upload_ind_seg_001.dbf
      15      Full 1759250260 09-FEB-13 /esmsrv1/dbs/dpipe_upload_seg_001.dbf
      16      Full 1759250260 09-FEB-13 /esmsrv1/dbs/dpipe_rate_ind_seg_001.dbf
      17      Full 1759250260 09-FEB-13 /esmsrv1/dbs/dpipe_rate_seg_001.dbf
      18      Full 1759250260 09-FEB-13 /esmsrv1/dbs/dpipe_summary_ind_seg_001.dbf
      19      Full 1759250260 09-FEB-13 /esmsrv1/dbs/dpipe_summary_seg_001.dbf
      20      Full 1759250260 09-FEB-13 /esmsrv1/dbs/dpipe_overflow_seg_001.dbf
      21      Full 1759250260 09-FEB-13 /esmsrv1/dbs/dpipe_overflow_seg_002.dbf
      22      Full 1759250260 09-FEB-13 /esmsrv1/dbs/dpipe_summary_seg_002.dbf
      23      Full 1759250260 09-FEB-13 /esmsrv1/dbs/perfstat_001.dbf
      39      Full 1759250260 09-FEB-13 /esmsrv1/dbs/oem_repository.dbf
    BS Key  Type LV Size       Device Type Elapsed Time Completion Time
    3480    Full    17G        DISK        01:21:30     09-FEB-13
            BP Key: 3480   Status: EXPIRED   Tag: TAG20130209T200021
            Piece Name: /oradatabkp/rman/esmsrv1/esmsrv1_full_Feb09
      SPFILE Included: Modification time: 08-FEB-13
      List of Datafiles in backup set 3480
      File LV Type Ckp SCN    Ckp Time  Name
      1       Full 1759422265 09-FEB-13 /esmsrv1/dbs/system01.dbf
      2       Full 1759422265 09-FEB-13 /esmsrv1/dbs/undotbs01.dbf
      3       Full 1759422265 09-FEB-13 /esmsrv1/dbs/cwmlite01.dbf
      4       Full 1759422265 09-FEB-13 /esmsrv1/dbs/drsys01.dbf
      5       Full 1759422265 09-FEB-13 /esmsrv1/dbs/example01.dbf
      6       Full 1759422265 09-FEB-13 /esmsrv1/dbs/indx01.dbf
      7       Full 1759422265 09-FEB-13 /esmsrv1/dbs/odm01.dbf
      8       Full 1759422265 09-FEB-13 /esmsrv1/dbs/tools01.dbf
      9       Full 1759422265 09-FEB-13 /esmsrv1/dbs/users01.dbf
      10      Full 1759422265 09-FEB-13 /esmsrv1/dbs/xdb01.dbf
      11      Full 1759422265 09-FEB-13 /esmsrv1/dbs/dpipe_default_seg_001.dbf
      12      Full 1759422265 09-FEB-13 /esmsrv1/dbs/dpipe_property_ind_seg_001.dbf
      13      Full 1759422265 09-FEB-13 /esmsrv1/dbs/dpipe_property_seg_001.dbf
      14      Full 1759422265 09-FEB-13 /esmsrv1/dbs/dpipe_upload_ind_seg_001.dbf
      15      Full 1759422265 09-FEB-13 /esmsrv1/dbs/dpipe_upload_seg_001.dbf
      16      Full 1759422265 09-FEB-13 /esmsrv1/dbs/dpipe_rate_ind_seg_001.dbf
      17      Full 1759422265 09-FEB-13 /esmsrv1/dbs/dpipe_rate_seg_001.dbf
      18      Full 1759422265 09-FEB-13 /esmsrv1/dbs/dpipe_summary_ind_seg_001.dbf
      19      Full 1759422265 09-FEB-13 /esmsrv1/dbs/dpipe_summary_seg_001.dbf
      20      Full 1759422265 09-FEB-13 /esmsrv1/dbs/dpipe_overflow_seg_001.dbf
      21      Full 1759422265 09-FEB-13 /esmsrv1/dbs/dpipe_overflow_seg_002.dbf
      22      Full 1759422265 09-FEB-13 /esmsrv1/dbs/dpipe_summary_seg_002.dbf
      23      Full 1759422265 09-FEB-13 /esmsrv1/dbs/perfstat_001.dbf
      39      Full 1759422265 09-FEB-13 /esmsrv1/dbs/oem_repository.dbf
    BS Key  Type LV Size       Device Type Elapsed Time Completion Time
    3481    Full    4M         DISK        00:00:03     09-FEB-13
            BP Key: 3481   Status: AVAILABLE   Tag: TAG20130209T212205
            Piece Name: /oradatabkp/rman/esmsrv1/esmsrv1_controlfile_copy_Feb09
      Controlfile Included: Ckp SCN: 1759462488   Ckp time: 09-FEB-13
    BS Key  Type LV Size       Device Type Elapsed Time Completion Time
    3482    Full    0          DISK        00:00:01     09-FEB-13
            BP Key: 3482   Status: AVAILABLE   Tag: TAG20130209T212212
            Piece Name: /oradatabkp/rman/esmsrv1/esmsrv1_spfile_copy_Feb09
      SPFILE Included: Modification time: 08-FEB-13
    ls -l /oradatabkp
    root@drsrv1#ls -l /oradatabkp
    total 1108672
    drwxr-xr-x   2 ovsd       dba             96 Sep 27  2009 alert_bkp
    -rw-r--r--   1 oracle     dba            195 Mar 15  2007 create.sql
    drwxr-xr-x   2 oracle     dba           8192 Aug  7  2009 ctrl_bkp
    -rw-r--r--   1 root       sys        565114880 Apr 24  2007 drsrv1.tar
    drwxrwxrwx   2 root       sys             96 Jun 17  2011 drsrv2-ignitebkp
    drwxr-xr-x   4 root       sys             96 Apr 24  2007 esmsrv1
    -rw-r-----   1 root       sys        1613824 Feb 22  2007 esmsrv1stby.ctl
    -rw-r--r--   1 esmsrv1    dba           5120 Dec 31  2009 esmtables.dmp
    -rw-r--r--   1 esmsrv1    dba            538 Dec 31  2009 esmtables.log
    drwxrwxrwx   4 root       sys           8192 Mar 10  2009 export
    drwxr-xr-x   8 root       sys           8192 Apr 24  2007 finalbackup
    -rw-r--r--   1 oracle     dba           3820 Sep  5  2008 invalid.sql
    -rw-r--r--   1 esmsrv1    dba         303104 Dec 31  2009 kirdevports.dmp
    -rw-r--r--   1 esmsrv1    dba            591 Dec 31  2009 kirdevports.log
    drwxr-xr-x   2 root       root            96 Feb 12  2007 lost+found
    -rw-r--r--   1 oracle     dba          24954 Aug  9  2009 ovcontrol-090909.ctl
    drwxr-xr-x  22 root       sys           8192 Apr 24  2007 ovpi
    drwxr-xr-x   2 oracle     dba           8192 Aug  7  2009 pfile_bkp
    drwxrw-rw-   4 oracle     dba           8192 Feb 10 15:25 rman
    drwxr-xr-x  28 root       sys           8192 Feb  1 17:15 schedbkp
    drwxr-xr-x   2 oracle     dba           8192 Jul 11  2011 sdnnm
    -rw-r--r--   1 esmsrv1    dba           2196 Dec 31  2009 srirdevports.log
    drwxr-xr-x   2 oracle     dba             96 Mar 13  2009 statsreport
    -rw-r--r--   1 oracle     dba            966 Mar 15  2007 tbs.sql
    drwxr-xr-x   5 oracle     dba             96 Mar 16  2007 testov
    drwxr-xr-x   2 root       sys         442368 Mar 11  2009 trendadm_files
    root@drsrv1#ls -l /oradatabkp/rman
    total 37244448
    drwxr-xr-x   2 oracle     dba           8192 Feb 10 15:25 esmsrv1
    -rw-r-----   1 oracle     dba        19068198912 Feb  9 14:21 esmsrv1_full_db_09feb13
    drwxrw-rw-   2 oracle     dba           8192 Feb  9 21:36 openview
    -rw-r--r--   1 oracle     dba         920442 Feb  9 21:37 rmanbkp-all.log

  • I got the Mac error code -36 while trying to move a backup file

    I got the Mac error code -36 while trying to move a backup file (made by Time Machine) to another drive.  The full text of the error message is:
    The Finder can’t complete the operation because some data in “boot.efi” can’t be read or written. (Error code -36)

    It's a disk error. Although Apple documentation says you should be able to copy Time Machine backups in the FInder, that doesn't necessarily mean it will work. I suggest that, instead of copying the existing backup, you start a new one on the other drive, and keep the old one. You need more than one backup anyway.

  • While trying to setup a time capsule backup to my MyBookLive external drive, I got the following error message: The network backup disk does not support the required AFP features. What's up with this?

    While trying to setup a time capsule backup to my MyBookLive external drive, I got the following error message: The network backup disk does not support the required AFP features. What's up with this?

    This means that your NAS does not support the required encryption. Update your NAS to the latest firmware or ditch it and buy a Time Capsule (they are the most reliable when using TM).

  • I keep getting an error when trying to update an app- cannot connect to store. I logged out from my account and tried to log back in and got the same error. I am doing all this from my phone since I no longer own a personal computer (only work)

    I keep getting an error when trying to update an app- cannot connect to store. I logged out from my account and tried to log back in and got the same error. I am doing all this from my phone since I no longer own a personal computer (only work) since I use iCloud and I tunes match

    YAY!!! Saved it in my Mac's Firefox Bookmarks for easy future access!
    Hope you are having a lovely afternoon today! I'm about ready to go bobo....I have an early meeting, and I don't want to oversleep! The nice part is that I work remotely, so I only have to wake up 15 minutes or so before the meeting.... I don't even use an alarm clock anymore (really, my iPhone alarm, which is much more pleasant), unless I have to get up at 6:30 or something....
    TMI?
    GB

  • I purchased a download copy of lightroom 6 from B & H Photo.  When I attempted to open the download I got the following error message.   "Download_Adobe_Photoshop_Lightroom_6_(Mac)" can't be opened because the identity of the developer cannot be confirmed

    I recently purchased a download of Lightroom 6 from B & H Photo for my Macbook Pro
    .  When I attempted to open the download I got the following error message:  "Download_Adobe_Photoshop_Lightroom_6_(Mac)” can’t be opened because the identity of the developer cannot be confirmed."  What should I do?
    Downloading, Installing, Setting Up

    That's the Gatekeeper feature of your Apple OS X operating saystem kicking in.
    See Fix the “App can’t be opened because it is from an unidentified developer” Error in Mac OS X

  • I tried to open my Illustrator CS6 today and got the following error message, "To open Adobe Illustrator CS6 you need to install the legacy Java SE runtime". The window then states, "Click More info...to visit the legacy Java SE 6 download website."  I do

    Help. I tried to open my Illustrator CS6 today and got the following error message, "To open Adobe Illustrator CS6 you need to install the legacy Java SE runtime". The window then states, "Click More info...to visit the legacy Java SE 6 download website."  I do click on the More Info... button, but the webpage is blank. Please help.
    Thanks,
    Leo

    Leo,
    Depending on your OS, you should be able to use;
    Win:
    http://www.oracle.com/technetwork/java/javase/downloads/java-archive-downloads-javase6-419 409.html
    Mac:
    http://support.apple.com/kb/DL1572
    Some have found that the page may turn up blank to start with, so it may be necessary to reload the page.
    Others have found that it may depend on browser. Specifically, a switch from Safari has solved it in one case.

  • How to dubug the IDoc-- I got the 51 error meesage.

    How to dubug the IDoc-- I got the 51 error meesage.
    I got 51 errormessage: No batchinput data for screen.
    Please let where i can debug this.

    Hi,
    Try this.
    Goto WE02, get the IDOC number.
    Goto WE19 use the same IDOC number.
      Click inbound function module --> give ur comev name
               -->select call in debugging mode -->in foreground.
    The COMEV program appears, then goto
    breakpoint menu --> breakpoint at --> function module --> give ur compr function module name and press F8.
    You will get the compr module and start debugging.
    Sharin.

  • I got the following error when trying to strt itune "microsoft visual c   runtime library"

    Dear all
    I got the following error when trying to start itune(latest version)
    Runtime error
    "microsoft visual c ++  runtime library"

    I kept getting the same error message too! Thank goodness I'm not alone in this!

  • I need to update illustrator, flash and after effects and I keep getting the same error 49 over and over

    I need to update illustrator, flash and after effects and I keep getting the same error 49 over and over. Please help thanks!

    Link for Download & Install & Setup & Activation problems may help
    -Chat http://www.adobe.com/support/download-install/supportinfo/
    OR
    -http://helpx.adobe.com/creative-cloud/kb/error-downloading-cc-apps.html
    -http://forums.adobe.com/community/download_install_setup
    -http://helpx.adobe.com/creative-cloud/kb/troubleshoot-cc-installation-download.html
    -http://helpx.adobe.com/x-productkb/global/errors-or-unexpected-behavior-websites.html
    -http://helpx.adobe.com/creative-cloud/kb/unknown-server-error-launching-cc.html
    -Server won't connect https://forums.adobe.com/thread/1233088

Maybe you are looking for

  • New-look iCal harder to read? Can it be changed?

    I noticed with the iCal in Lion that overlapping events automatically bring the shortest event to the front, the "longer" event behind it being only viewable through the other events. This same prioritisation (ie by shorter duration) is given regardl

  • Mapping multiple source value to one target value in value mapping

    Hello experts, In my scenario, i need to map more than one source value to one target value in value mapping. Like: 1        TenderPickup 2        TenderLoan 7        TenderPickup 101     TenderPickup 102     TenderLoan 107     TenderPickup But when

  • Can't get old photo's off of iphone and into iphoto '09

    I have photo's on my iphone which iphoto does not import or even see if I use itunes sync it says will wipe out photos on my iphone, how can I get these old picture off my phone and into my computer, e-mail is no good it reduces resolution. thanks.

  • Non-static variable from a static context

    This is the error i get . If i understand the error correctly it says im using a static variable when i shouldnt be? Or is it the other way round? below the error is the actual code.... The error... Googler.java:27: non-static variable this cannot be

  • Strange behavior from this forum?

    Hello all, did anybody ever experience this? I subscribes to a post because I wanted to see people's responses. I have now received three messages telling me that there are new posts on that entry. When I go to the post there ain't any. The other wei