Error while trying to delete a pending Work Item

hi all,
working with Identity Manager 8.1, in an attempt to delete a pending workitem through debug page, the following error eppeared
ERROR: com.waveset.util.WSAuthorizationException: Delete access denied to Subject gvlachopoulos on WorkItem: WFI4439dabe6dc328af:1348a6:12ccd303f18:-519
note that my account is an administrator with full rights.
while trying with configurator account, the same message appeared
thank you in advance

Hy Tycho,
Yes, it's a tape backup.
This is the channel used to take the backup:
allocate channel t1 type 'sbt_tape' parms 'ENV=(TDPO_OPTFILE=/opt/tsm..../...opt)';
I tried this rman command with a file name that is 35 days older in rc_backup_piece:
list backuppiece <file name>;
I received this error:
RMAN-20260: backup piece not found in the recovery catalog;
How can this file be in the rc_backup_piece and not appear in the list backuppiece ?
Thanks a lot.
Fer

Similar Messages

  • Error while trying to delete the universe from CMS

    Dear All,
    I am getting "Unable to reconnect to the CMS XXXXXXXXX. The session has been logged off or has expired" error while trying to delete any universe from the CMS. I tried restarting tomcat but it didnt work. I am unable to delete any universe from CMS. We have BO XI R2 SP2 environment on Windows 2003 Server.
    regards,
    Umair

    SAP NOTE - 1199539 gives a possible solution to this problem:
    When attempting to delete or migrate a universe, the following error message appears:
    "Unable to reconnect to the CMS BUSOBJDV.ACSAD.NCSU.EDU. The session has been logged off or has expired."
    Environment
    BusinessObjects Enterprise Premium XI Release 2 SP1 CHF15
    JDK version 1.4.2_08
    Tomcat version is the same as that shipped with the product
    Cause
    The universes and connection pages are special (AFAIK) compared to the other pages because they are pure JSP, while most of the other Central Management Console (CMC) pages still go though the CMC and use COM/C++ code unaffected by the Java Virtual Machine (JVM). If the JVM has not been updated against Eastern Daylight Savings Time (EDST), it may calculate the incorrect time locally, and problems may occur with token expiry or validation.
    Resolution
    Update the Tomcat JDK to JDK 1.5.0_11 for EDST:
    1. Go to the Microsoft web site and verify if you have the time zone update installed.
    2. Download JDK 1.5.0_11.
    3. Install JDK 1.5.0_11 on your server.
    4. Modify the JAVA_HOME here:
    C:\Program Files\Business Objects\Tomcat\bin\setenv.bat
    as follows:
    set JAVA_HOME=C: \Program Files\Java\jdk1.5.0_11\jre
    5. In Java Virtual Machine and Java Class Path, modify JAVA properties for Tomcat (Start > Programs > Tomcat > Tomcat Configuration > Java). Replace the default Business Objects JDK 1.4 directory:
    C:\Program Files\Business Objects\j2sdk1.4.2_08
    with JDK 1.5.0_11:
    C:\Program Files\Java\jdk1.5.0_11
    6. Go to Windows Time Zone (double-click Windows time) then on the Time Zone tab, select the automatically adjust clock for day light saving changes check box against EST time zone.
    7. Restart Tomcat and the Central Management Server (CMS) and, if possible, reboot your computer.
    Hope this works anyone facing this problem on Windows servers.
    Not sure what the solution is for BO instances running on Solaris. We have business objects/Weblogic running on a solaris server. I tried just changing java home to jdk1.5.0_12 but this didn't work.

  • Error while trying to delete messages

    Since updating to Mavericks OS 10.9.1, I've been getting a periodic error while attempting to delete messages in my Inbox.  I believe that it's always come up when deleting messages in my Outlook.com mailbox.  I've attached a copy of the error message about a server error: Error 9 during which the UID COPY (to Deleted) failed.
    After closing the error message and clicking again (usually once, occasionally twice) on the Delete button in the Toolbar, the message will successfully be deleted, but that shouldn't be necessary.  Any help would be appreciated.  Thanks.

    I have the same problem.

  • RMAN-20260 error while trying to delete a backup piece

    Hello,
    In my company we use Oracle 10g, backup managed by RMAN and integrated with TSM.
    In order to remove the old backup files, there is a delete script to do this.
    Basically this script:
    connect to RMAN catalog
    allocate channel for maintenance device type 'sbt_tape'
    change backuppiece <file names from rc_backup_piece older than 35 days> delete;
    When this command is run, this error is being generated:
    RMAN-03002: failure of delete command at 01/18/2010 17:14:00
    RMAN-06004: ORACLE error from recovery catalog database: RMAN-20260: backup piece not found in the recovery catalog
    RMAN-06092: error while looking up backup piece
    Any ideas?
    Thanks in advance.
    Fer

    Hy Tycho,
    Yes, it's a tape backup.
    This is the channel used to take the backup:
    allocate channel t1 type 'sbt_tape' parms 'ENV=(TDPO_OPTFILE=/opt/tsm..../...opt)';
    I tried this rman command with a file name that is 35 days older in rc_backup_piece:
    list backuppiece <file name>;
    I received this error:
    RMAN-20260: backup piece not found in the recovery catalog;
    How can this file be in the rc_backup_piece and not appear in the list backuppiece ?
    Thanks a lot.
    Fer

  • Getting error while trying to delete multiple rows

    Hi Experts,
    Working in jdev 11.1.1.3.0 with ADF BC and rich faces.
    i am trying to delete multiple records from the table, everything is working fine if i use filter or not using horizontal scroll bar of the table. if i try to delete last records on the table and the records are deleting from UI and from the DB also, but i am getting error like
    ADFv:Count not find row:_$<to-calc>$_with key:oracle.jbo.key[2333] inside parent: XxwfsAvcardXXXXXXXVO1Iterator with key:null
    I have changed my method with the below link
    Re: JDev 11g-Multiple Row Selection Table-Ctrl+A error
    but till i am getting the same error:
    Method:
    public void deleteRec(ActionEvent actionEvent) {
    // Add event code here...
    RowKeySet rowKeySet = (RowKeySet)this.embossTB.getSelectedRowKeys();
    CollectionModel cm = (CollectionModel)this.embossTB.getValue();
    Row specRow = null;
    ArrayList rowList = new ArrayList();
    int listLength = 0;
    ArrayList<Number> printReqLST=new ArrayList<Number>();
    ViewObject vo1=null;
    boolean flag=false;
    for (Object facesTreeRowKey : rowKeySet) {
    cm.setRowKey(facesTreeRowKey);
    JUCtrlHierNodeBinding rowData = (JUCtrlHierNodeBinding)cm.getRowData();
    specRow = rowData.getRow();
    rowList.add(specRow);
    listLength++;
    for (int index = 0; index < listLength; index++){
    specRow = (Row)rowList.get(index);
    Number printReqID = (Number)specRow.getAttribute("PrintRequestId");
    String PrintState = specRow.getAttribute("PrintState").toString();
    if (PrintState.equalsIgnoreCase("PRINTED")) {
    System.out.println("cann't delete");
    FacesContext fctx = FacesContext.getCurrentInstance();
    FacesMessage message =
    new FacesMessage("Cann't Delete the selected row:" + printReqID);
    message.setSeverity(FacesMessage.SEVERITY_ERROR);
    fctx.addMessage(null, message);
    } else {
    System.out.println("delete");
    flag=true;
    specRow.remove();
    if(flag){
    System.out.println("before commit");
    commitRows();
    Can any one help me....

    Can any one help me...
    i written logic in AM but still i am facing the same issue.
    can any one help me, is this is bug or coding issue.
    If i am not doing scroll down and trying to delete rows then there is no error.... only error is coming when i scroll down and try to delete.
    Method:
    public void deleteRec(ActionEvent actionEvent) {
    // Add event code here...
    RowKeySet rowKeySet = (RowKeySet)this.embossTB.getSelectedRowKeys();
    CollectionModel cm = (CollectionModel)this.embossTB.getValue();
    List<Row> rowsToDelete = new ArrayList<Row>();
    for (Object facesTreeRowKey : rowKeySet) {
    cm.setRowKey(facesTreeRowKey);
    JUCtrlHierNodeBinding rowData = (JUCtrlHierNodeBinding)cm.getRowData();
    Number printReqID = (Number)rowData.getAttribute("PrintRequestId");
    String PrintState=rowData.getAttribute("PrintState").toString();
    if (PrintState.equalsIgnoreCase("PRINTED")){
    System.out.println("cann't delete");
    FacesContext fctx = FacesContext.getCurrentInstance();
    FacesMessage message =
    new FacesMessage("Cann't Delete the selected row:" + printReqID);
    message.setSeverity(FacesMessage.SEVERITY_ERROR);
    fctx.addMessage(null, message);
    } else{
    System.out.println("delete");
    Row row1 = rowData.getRow();
    rowsToDelete.add(row1);
    // deletePrintRecords(printReqID);
    for (Row row : rowsToDelete){
    System.out.println("inside deleting rows");
    row.remove();
    //commitRows();
    System.out.println("After commit from am");
    public void commitRows(){
    // System.out.println("commit");
    DCIteratorBinding embossIter =
    ADFUtils.findIterator("XxwfsAvcardEmbossInterfaceVO1Iterator");
    ADFUtils.invokeEL("#{bindings.Commit.execute}");
    embossIter.getViewObject().executeQuery();
    AdfFacesContext.getCurrentInstance().addPartialTarget(embossTB);
    Edited by: user5802014 on Sep 3, 2010 11:47 AM
    Edited by: user5802014 on Sep 3, 2010 1:07 PM

  • Error while trying to delete leave request

    Dear All,
    When trying to delete a leave request via ESS Portal, system is displaying the following error message:
    "No Customizing for status type ARQ, status Posted and transition event Delete."
    In the workflow log, Document Status is POSTED and Workflow Status is COMPLETED.
    Kindly let me know if any other information is required.
    Any pointers to resolve the above issue will be highly appreciated.
    Regards,
    Rahul

    Hi Rahul,
    Please check the below threads which may help you.
    Re: Cancellation Leave request
    Re: Leave request deletion problem
    Thanks & Regards,
    Sandip Biswas.

  • 'Data Access Error' while trying to delete period using Table Editor in FDM

    Hi,
    I'm trying to delete a period that has been entered wrongly using Tools->Table Editor option.
    But when I try to 'Update Grid' after deleting the Period,I get 'Data Access Error'.
    Could any one let me know how to solve the error.
    Thanks in advance

    Hi Kelly,
    There is no data that is entered in that period.The data will be entered for that period next month.
    POV is also not set to that period,but still the problem persists.
    Thanks

  • Getting error while trying to delete columns from form designer

    I Am trying to make last name a mandatory field.
    AD was not getting provisioned for users that i created.The system validation task was not getting completed.WHen i tried to save the process form it was showing that last name was a mandatory field.So i figured it out that my process form was not getting populated.
    i was trying to delete last name from the form version.But it was throwing an error code= DOBJ.SDC_CANNOT_DELETE_SRE_ENTRIES_EXIST
    So i am trying to create a new version of a form and delete some columns.But when im doing it it shows the following error :
    ERROR,15 Dec 2008 18:03:20,073,[XELLERATE.SERVER],Class/Method: tcSDC/hasPrePopulatedEntries Error :Sdk cannot drop, SRE entries Exist.
    Could you help as to how i can resolve this.

    You cannot delete a column, but you can hide it ;)
    In your case, you may follow these steps:
    1) Create a new form version.
    2) Go to the "Properties" tab in the form editor.
    3) Delete the "Required=true" property for the "Last Name" field.
    4) Add a new property to the "Last Name" field: select "Visbile Field" in the "Property Name" combo-box, and add "false" to the "Property Value". Save.
    5) Activate your version.
    Think again about hidding the "Last Name", because I think it's a mandatory value for AD user creation (i.e., AD won't let you create users if they don't have Last Name set). However, I'm not sure.
    Hope this help!

  • Error while trying to delete

    Hi All,
    I need a help to modify the query.
    The table s_table is holding all the table names. I like fetch table names from s_table and delete all the records in it. Following is the query i tried,
    declare
    cursor c1 is select * from s_table where NAME like 'S_%';
    temp1 s_table%rowtype;
    begin
    open c1;
    loop
    fetch c1 into temp1;
    exit when c1%notfound;
    --dbms_output.put_line ('delete from'||' '||temp1.name);
    execute immediate 'delete from '||' '|| temp1.name ||';';
    ----delete from ||' '|| temp1.name;
    end loop;
    close c1;
    end;
    I am getting an error: table or view does not exists.
    Note: DBMS output statement lists all the tables when I am not trying execute immediate statement. I also tried 'delete from ||' '|| temp1.name' instead of execute immediate, it is also ending in error message.
    Could anyone help me in solving this error.
    Thanks,
    Yar

    An example of what SIS said:
    SQL> create table s_table
      2  as
      3  select 'S_T1' name from dual union all
      4  select 'S_T2' from dual
      5  /
    Tabel is aangemaakt.
    SQL> create table s_t1 as select level id from dual connect by level <= 10
      2  /
    Tabel is aangemaakt.
    SQL> create table s_t2 as select level id from dual connect by level <= 100
      2  /
    Tabel is aangemaakt.
    SQL> select count(*) from s_t1
      2  /
                                  COUNT(*)
                                        10
    1 rij is geselecteerd.
    SQL> select count(*) from s_t2
      2  /
                                  COUNT(*)
                                       100
    1 rij is geselecteerd.
    SQL> declare
      2    cursor c1 is select * from s_table where NAME like 'S_%';
      3    temp1 s_table%rowtype;
      4  begin
      5    open c1;
      6    loop
      7      fetch c1 into temp1;
      8      exit when c1%notfound;
      9      dbms_output.put_line ('delete from'||' '||temp1.name);
    10      execute immediate 'delete from '|| temp1.name;
    11    end loop;
    12    close c1;
    13  end;
    14  /
    delete from S_T1
    delete from S_T2
    PL/SQL-procedure is geslaagd.
    SQL> select count(*) from s_t1
      2  /
                                  COUNT(*)
                                         0
    1 rij is geselecteerd.
    SQL> select count(*) from s_t2
      2  /
                                  COUNT(*)
                                         0
    1 rij is geselecteerd.Regards,
    Rob.

  • Error while trying to delete user in OIM 11gR1

    Hi,
    When I try to delete the user from OIM console by clicking on 'Delete User' button, I get the following error:
    "The Delete operation failed. Bulk Orchestration not yet implmented" on the cosole.
    Kindly help in resolving the issue.
    Regards

    I have been able to resolve the issue now.
    I followed the below steps for the same:
    1. In the Welcome page for Oracle Identity Manager Administration, under System Management, click System Configuration.
    2. In the left pane, search for system properties.
    3. In the search result, select the Period to Delay User Delete property.
    4. Edit the property value to 0.
    5. Save the property.
    After setting the same, I was able to successfully delete the user.
    Regards.
    Edited by: 963540 on Jun 4, 2013 5:11 AM

  • Lock Error while trying to Delete

    I am trying to detele a row from database but I get this error at times.
    What does this signify
    Validation Error
    You must correct the following error(s) before proceeding:
    JBO-26030: Failed to lock the record, another user holds the lock.
    Is this error ralated with setting the current row?? I am sure though that i dont have any lock at the database level.
    The next error i get is
    Validation Error
    You must correct the following error(s) before proceeding:
    JBO-27008: Attribute set for Windowfaceid in view object WindowFaceView1 failed
    Can anyone give me a clue about these errors??
    Thanks

    I am trying to detele a row from database but I get this error at times.
    What does this signify
    Validation Error
    You must correct the following error(s) before proceeding:
    JBO-26030: Failed to lock the record, another user holds the lock.
    Is this error ralated with setting the current row?? I am sure though that i dont have any lock at the database level.
    The next error i get is
    Validation Error
    You must correct the following error(s) before proceeding:
    JBO-27008: Attribute set for Windowfaceid in view object WindowFaceView1 failed
    Can anyone give me a clue about these errors??
    Thanks

  • Idoc in error while trying to post vendor invoice(higher items not allowed)

    Hi All,
    we have two SAP systems. SAP A and SAP B.
    SAP A is the vendor for SAP B system we have created a sales order/delivery/out bound invoice in SAP A system.The sales order has BOM material with main item and sub items. We have the same material master data and BOM master data in system A and system B since we are following split architecture.
    The outbound invoice(with main and sub item) in system A has generated  an outbound idoc and the idoc has gone to SAP
    system B. There are the usual segments like E1EDP01 for  main item and another E1EDp01 for the sub itmes in the outbound
    idoc.The message type is INVOIC and basic type INVOIC02 with no extension.
    In system B,  the inbound idoc (coming from system A) has failed giving the error message "higher level items not allowed". The
    segment E1EDP01 for sub item is highlighted in red ! basically the inbound idoc in sap system B is posting a vendor
    invoice since the inbound idoc in B is calling the FM  IDOC_INPUT_INVOIC_MRM... I think this is doing vendor invoice
    verification.
    I have checked in system A, all is ok and the outbound idoc is ok but the issue is in sap system B, the inbound idoc has failed
    with message  "higher level items not allowed". The segment E1EDP01 for sub item is highlighted in red in inbound idoc in
    system B. The segments are the same for inbound idoc in B and outbound idoc in A.
    Can someone pls tell what is wrong in system B.(config or data issue) as we are managing both systems.
    regds
    Edited by: sapsd73 on Jul 9, 2010 3:26 PM
    Edited by: sapsd73 on Jul 9, 2010 3:27 PM

    I do not see any reason why you would need to use COND_A04  if COND_A01 is working.
    What if you could get COND_A04 to post and you would face the same result as in COND_A01?
    If SAP does not check wrong values, then you have to do it yourself, or you report an incident at SAP (after you have searched for OSS notes that may have fixed this error already)
    For example OSS Note 1169998 - IDoc: KONP-LIFNR values not checked
    fixed a situation where the vendor number was not validated.

  • Error while trying to remove an object with dsrm command

    hello,
    i get an error while trying to delete an object computer with the command line tool, DSRM. i get this view:
    actually, it's a one of hundreds of commands, that help cleaning the active directory of the obsolete objects. it is saying : "Access Denied" (in french, accès refusé). i say that the account used to execute this command, is a member of domain
    admins group, and enterprise admins group too. so i cannot believe it's a mater of some missing rights... :/
    thanks in advance, for your help,
    regards
    Lotfi BOUCHERIT

    Hi,
    I was able to reproduce your issue when using a non-elevated command prompt in a 2008R2 box. So please try to elevate your command prompt and your command will most likely go through.
    In addition to above, I'd suggest you look in to PowerShell instead, which in most cases is more effective.(and doesn't need to run in an elevated prompt to make AD-Changes)
    The same as above could be done with the powershell cmdlet Remove-AdComputer.
    Remove-AdComputer -Identity "Distinguishedname"
    Hope this helps you!
    Microsoft Certified Trainer
    MCSE: Desktop, Server, Private Cloud, Messaging
    Blog: http://365lab.net

  • On my Mac Mini, I keep getting this error message: "iCloud encountered an error while trying to connect to the server".  I don't have any problems with iCloud on my laptop / PC.  It works fine... Does anyone know what the problem could be?

    On my Mac Mini, I keep getting this error message: "iCloud encountered an error while trying to connect to the server".  I don't have any problems with iCloud on my laptop / PC.  It works fine... Does anyone know what the problem could be?

    Your Mac must be on Lion (10.7) to run iCloud. Apple had to change the operating system to fully support it. Nevertheless, it is possible to get emails from iCloud without having Lion. Please tell me if this interests you.
    Anyways, here is the link to buy Lion (30 dollars, totally worth the upgrade ): http://itunes.apple.com/be/app/os-x-lion/id444303913?mt=12
    Franklin

  • Trying to setup new iCloud in system preferences and get error message: "iCloud encountered an error while trying to connect to the server."

    Here's the sequence of events:
    Setting up a new iMac.
    Migration Assistant was aborted during setup and a normal setup was completed.
    Then ran Migration Assistant from the newly setup account.
    It ran fine, but put all the data in a new account called "user".
    Renamed "user" to a new name, renamed the home folder to a new name following these instructions: OS X: How to change your account name or home directory name
    Delete the account we originally created, so just have one account with the name we want and all the data, email. Works fine.
    Sign into the App Store with the account we share for purchases.
    Now, the problem:
    Go to System Preferences to setup iCloud with a new Apple ID
    Get this error: "iCloud encountered an error while trying to connect to the server."
    So I'm unable to setup iCloud for photo stream, FaceTime, etc.
    Internet works fine, we can get mail, etc.
    Rebooting doesn't help
    Ideas?

    never mind the problem is gone this morning.

Maybe you are looking for

  • Execute Pacakge Task in SSIS 2012

    Team , Thanks for your pointers in advance . I'm Looking out for a way to run SSIS package which is deployed over to SSIS Catalog using another SSIS Package ( a Package Wrapper which executes other packages ) , How should i configure ? Is this possib

  • Preview "select" tool

    Hello all. The question I have is regarding using the select tool in preview. When I open my image in preview, when I use the rectangular option in select, I copy it and then paste it in powerpoint or word and it's just fine. When I use the elliptica

  • How do I install the apple mobile device driver for windows xp?

    I get a code 10 error when I plug my iphone in to the usb connection on my windows xp based computer. I tried going through several steps to remove all apple software from my computer, then reinstalling it and still I cannot get my iphone to show up

  • Contacts don't show up on my iphone 4

    I cannot see my contacts when phone or text is received, only their numbers. Information is loaded correctly. What's wrong with my iphone?

  • Import dialog - change in appereance and functionality

    HI! I have spent hours of searching photographs accidentaly imported in different Catalogue. To avoid this problem, I have idea to highlight Catalogue name when importing photographs. This is one of stupid mistakes that anyone can make: Came from sho