How to delete asset in Oracle R12 in a status "posted"

Hi all,
We upload about a lot(about 10 000) assets from mass addition template and run post mass addition. All the assets are all in the status "posted" and we just realized that we uploaded in the wrong period.
How can we delete all those assets.Please help with the steps.
Thanks

hello
please read the full document here:
Fixed Assets Mass Additions White Paper [ID 111097.1]
Delete Mass Additions is part of the “Clean Up” process that is supplied by
Oracle Assets. When reviewing your mass additions lines, you can place
lines that should not become assets in the DELETE queue. The Delete
Mass Additions program will take the following mass additions and place
them in the interim table FA_DELETED_MASS_ADDITIONS and delete
them from the FA_MASS_ADDITIONS table.
· Mass additions in the SPLIT queue for which you have already posted
the child mass addition lines created by the split.
· Mass additions in the POSTED queue that have already become assets.
· Mass additions in the DELETE queue.
i'll be grateful if inform me about the results.
bests

Similar Messages

  • How to delete client from oracle 10g ASM

    Hi,
    I would like to know how to delete client from oracle 10g ASM, while configuring Dataguard in same windows os i have by mistake created the standby in ASM.
    However later i have corrected the datafile destination. My Primary database is in ASM and the standby in disk.
    Could anyone please tell me how do i delete the client from ASM. On view from asmcmd it shows db_unknown and from v$asm_client
    GROUP_NUMBER INSTANCE_NAME
    DB_NAME STATUS
    SOFTWARE_VERSION
    COMPATIBLE_VERSION
    1 stby
    stby CONNECTED
    10.2.0.1.0
    10.2.0.1.0
    Thanks and regards,
    shaan

    Hi Deepak,
    Pls see the result from the view, i wanted to delete stby
    SQL> select * from v$asm_client;
    GROUP_NUMBER INSTANCE_NAME
    DB_NAME STATUS
    SOFTWARE_VERSION
    COMPATIBLE_VERSION
    1 prim
    prim CONNECTED
    10.2.0.1.0
    10.2.0.1.0
    2 prim
    prim CONNECTED
    10.2.0.1.0
    10.2.0.1.0
    1 stby
    stby CONNECTED
    10.2.0.1.0
    10.2.0.1.0
    regards,
    shaan

  • How to delete assets in MUSE especially photos in slideshow - keeps making a copy on preview this

    How to delete assets in MUSE especially photos in slideshow - keeps making a copy onevery  preview this is so wrong - really worried this profgram sucks

    thumbnails can be deleted in the MUSE S/Show window - this seems to delete all instances of photo in the slideshow. However the slideshow widget needs improvment keep submitting to Adobe request for features and included a pause button!! 
    The Layers Tab did not work for me?

  • How to delete Pending WIP Move Transactions with running status

    hello,
    can any one guide me, how to delete Pending WIP Move Transactions with running status
    thanks in advance
    sadiq

    Please refer to the following note:
    Note: 105647.1 - WIP and COST Frequently Used Troubleshooting Scripts
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=105647.1

  • Need help for learning how to develop interfaces for Oracle R12 EBS

    Hi all,
    I need to learn how to create interfaces in PL/SQL for Oracle R12 EBS Financials. I cannot find a good starting point for the documentation and examples to help me get started in this area. Would appreciate tips
    for this area.

    Hi,
    What kind of interfaces you are planning to develop?
    Oracle already provides list of APIs that can be used (in R12, it is responsibility).
    Oracle Integration Repository Documentation Resources Release 12 [ID 396116.1]
    Oracle Integration Repository
    http://irep.oracle.com/index.html
    If those APIs do not satisfy your requirements, you can refer to "Oracle Applications Developer" guide as well as SQL-PL/SQL guides.
    Applications Releases 11i and 12
    http://www.oracle.com/technetwork/documentation/applications-167706.html
    Database Documentation -- SQL-PL/SQL
    http://www.oracle.com/technetwork/database/enterprise-edition/documentation/index.html
    Thanks,
    Hussein

  • How to delete assets in OER

    Hello ,
    I would appreciate if someone can reply for how can i delete assets in OER?
    thanks,
    Bhuvi

    Hi user10660374 ,
    Thanks for your reply and i got to find out how to delete it. But , when i go back to OER home page and search for that deleted artefact it returns result with those names again. But, when i try to download it says, this file is no more available.
    I would like the user of OER to know straight away at search level rather than taking them till downloading file to know that file is deleted.
    Is this cache problem and will refresh after 24 hrs?.
    Regards,
    bhuvi

  • How to delete duplicates in oracle 10g ( strange behaviour)

    Recently we migrated from oracel 8i to oralce 10g and we face this problem.
    When we try to delete duplicates using rowid ( analytical functions row_number()/
    or normal delete ) and commit the same , still we find some duplicates to be existing because of which we are not able to enable costriants and resulting in process failure.
    When we run the same delete statement next time it removes more duplicates than the required or sometimes required duplicates resulting in abnormal behaviour.
    I don not understand this strange behaviour after upgrading to oracle 10g.
    It'd be great if some one who has idea on this can throw light on the same.
    thanks

    Gasparotto,
    Thanks a lot for letting me know a new procedure to delete duplicates sing lead function.
    I've tried this code on a temp table and it worked, let me use the same query on the prodn side and test the same.
    Procedure for deletion of duplicates using lead analytical function.
    create table temp ( col1 number(2) , col2 number(2) , col3 number(2));
    insert into temp values ( 1,2,10);
    insert into temp values ( 1,2,20);
    insert into temp values ( 1,2,30);
    insert into temp values ( 3,2,10);
    insert into temp values ( 3,4,12);
    insert into temp values ( 3,4,45);
    commit;
    COL1 COL2 COL3
    1 2 10
    1 2 20
    1 2 30
    3 2 10
    3 4 12
    3 4 45
    select col1,col2 , col3, LEAD(rowid) OVER (PARTITION BY col1,col2 order by null) from temp;
    COL1 COL2 COL3 LEAD(ROWID)OVER(PA
    1 2 10 AAAVBjAApAAAFyGAAB
    1 2 20 AAAVBjAApAAAFyGAAC
    1 2 30
    3 2 10
    3 4 12 AAAVBjAApAAAFyGAAF
    3 4 45
    6 rows selected.
    select rowid , temp.* from temp ;
    ROWID COL1 COL2 COL3
    AAAVBjAApAAAFyGAAA 1 2 10
    AAAVBjAApAAAFyGAAB 1 2 20
    AAAVBjAApAAAFyGAAC 1 2 30
    AAAVBjAApAAAFyGAAD 3 2 10
    AAAVBjAApAAAFyGAAE 3 4 12
    AAAVBjAApAAAFyGAAF 3 4 45
    SQL> DELETE temp
    WHERE rowid IN
    ( SELECT LEAD(rowid) OVER (PARTITION BY col1, col2 ORDER BY null)
    FROM temp ); 2 3 4
    3 rows deleted.
    SQL> select rowid , temp.* from temp ;
    ROWID COL1 COL2 COL3
    AAAVBjAApAAAFyGAAA 1 2 10
    AAAVBjAApAAAFyGAAD 3 2 10
    AAAVBjAApAAAFyGAAE 3 4 12
    Thanks for the reply

  • How to delete datafiles in oracle 10gR2

    Hi,
    we have tablespace with 70 datafiles. we have truncate some large files.
    Now the problem is that all 70 files have less data then 15G, while every datafile size is 60 G.
    I want to move all the data in to some data files, so that i can remove all the others datafiles.
    Tables are partitioned.
    Due to space issue i can not move tables to other tablesapce.

    user3240461 wrote:
    Hi,
    we have tablespace with 70 datafiles. we have truncate some large files.
    Now the problem is that all 70 files have less data then 15G, while every datafile size is 60 G.
    I want to move all the data in to some data files, so that i can remove all the others datafiles.
    Tables are partitioned.
    Due to space issue i can not move tables to other tablesapce.You can not remove datafiles.
    You can however resize them, using e.g.:
    ALTER DATABASE DATAFILE <your full path file> RESIZE 20G;For this to work, all data must be in de first 20Gb of the datafile, which might need some data shuffling upfront.
    Success

  • Oracle R12 on Win XP Post Fresh Install  Form Error

    Hi Guys,
    Please has anyone successfully and permanently resolved this issue after successfully installing and logged on to Oracle Apps R12 but consistently getting this error when trying to log on again to the forms. I installed R12 directly on Winxp and using IE8 as the browser.
    "Frm-92101: There was a failure in the forms server during startup. This could happen due to invalid configuration. Please look into the web-server log file for details"
    Steps followed to try to resolve issue but failed include:
    Running successfully Autoconfig cmd,
    Stopping/starting oracle process manager(Failed to stop but starting indicates services already running)
    Disabling XSS filter.
    Stopping and starting Oracle services
    Anymore ideas will be appreciated.
    Please do not provide me with metalink ids as I d not currently have access to it. I need direct solution if any.
    Thanks in advance
    Ify
    Edited by: Ify on 27-Jun-2012 08:01

    "Frm-92101: There was a failure in the forms server during startup. This could happen due to invalid configuration. Please look into the web-server log file for details"Check the application.log file for details about the error.
    Please do not provide me with metalink ids as I d not currently have access to it. I need direct solution if any.Please note that posting the contents of MOS docs violates Oracle Support agreement policy and that is why we post the Doc ID instead of posting its contents.
    Thanks,
    Hussein

  • Oracle R12 SCM Training

    Dear All,
    This is Hitesh Parsawala. I am a MBA (Mktg) with 4 yrs Work Experience as a Project Manager. Now I am going to take Oracle R12 SCM - Training from Oracle Authorised Education Center - iWarelogic - Pune.
    So i just wanted to know how is the market of Oracle R12 SCM - Order Management Professional.
    Is my decision of going for Oracle R12 SCM - Order Management Training Viable or Should i go for SAP R/3 - SD Module Training.
    Please do reply as this is very important for me.
    Regards
    Hitesh Parsawala

    Hitesh
    There are 100000s of institutes waiting there for customer like you !!!
    If I am in your place, I will not go for something which is brand new area/ domain ot learn on.
    You said you got 5 years of experience on project management, look for some products which enhances and takes advantage of your domain knowledge.
    Possibly, Primavera suite of products? (again its Oracle only)
    As far as Oracle ebiz is concerned, merely by training of one module will not give u a start in Oracle world straight away, unless you are very lucky in this resource densed world.
    All the best,
    Kamal

  • Oracle R12 software for practice

    My friend is using a book to learn the Oracle R12 and she would like to practice working on the software.
    Can anyone advice me how she can practice on Oracle R12. Is there any free trial software available?
    Thanks
    Edited by: 906824 on Jan 9, 2012 8:26 AM

    My laptop is windows 64bit. I could not find R12 under this operating system. What is the OS?
    Oracle EBS R12 cannot be installed on 64-bit and you will have to install it on 32-bit (or install on 32-bit then migrate to 64-bit).
    Oracle E-Business Suite Installation and Upgrade Notes Release 12 (12.1.1) for Microsoft Windows Server (32-bit) [ID 761567.1]
    Migrating Oracle E-Business Suite R12 to Microsoft Windows Server 2008 R2 [ID 1188535.1]
    Although i did find under windows 32bit. - Oracle E-Business Suite Release 12.1.1 Media Pack for Microsoft Windows (32-bit)
    I downloaded all four files below:-
    Oracle E-Business Suite Release 12.1.1 Rapid Install Start Here (Part 1 of 4)
    Oracle E-Business Suite Release 12.1.1 Rapid Install Start Here (Part 2 of 4)
    Oracle E-Business Suite Release 12.1.1 Rapid Install Start Here (Part 3 of 4)
    Oracle E-Business Suite Release 12.1.1 Rapid Install Start Here (Part 4 of 4)
    Then i unzipped the files.
    Under each folder there start cd folder - installed the exe file from part 1 of 4, part 2 of 4
    unable to find exe file in part 3 of 4.
    I am not sure i am doing the installation correctly. Once you install the right OS, please run md5sum to verify the integrity of the stage area directory.
    Using Electronic Delivery With Rapid Install in Oracle E-Business Suite Release 12 [ID 406138.1]
    MD5 Checksums for R12.1.1 Rapid Install Media [ID 802195.1]
    Thanks,
    Hussein

  • How to delete a PS network with status 'Technically Completed' (TECO)?

    Dear all,
    We have Webdynpro application, which will create a PS network in background. In the past it was working fine and many PS network  are created. Now we have a scenario where some of the networks which are with status 'Technically Completed' (TECO) needs to be deleted from system. I tried to delete it from CJ20N, but it was not possible as the status is set to TECO. Please let me know how to delete a PS network which is with status 'Technically Completed'  (TECO).
    Thanks in advance.
    Regards,
    Vijay

    The cluster goes out and finds all networks that are available.  This is an automatic process.  As long as there is a network there, it will show it.  If you don't want it to show, disable the interface and it will disappear.
    . : | : . : | : . tim
    Thanks a million Tim! Disabling the correct interface made it disappear!
    Actually, I had disabled the interface before I started this thread. When you posted the suggestion, I went back and looked at the network connections again and found out that I had disabled the wrong interface! My bad!
    However, here is the interesting thing:
    After I disabled the NIC and it disappeared from the FCM I physically disconnected its cable (actually I disconnected all unused / unconfigured NICs) ....then I re-enabled it. Now I see that FCM does NOT pick it up again.
    I think FCM picked up those NICs because at one time I had put that NIC in the production VLAN (from the switch side).
    One observation:
    If you have NICs in a HV machine which are not connected to a switch, they do NOT show up in FCM. Once you connect them to some network, they start showing up. I guess by connecting them to a network, they are able to see NICs in other HV nodes.
    Take a look at this screenshot. I have 6 NICs in there which are disconnected, none show up in FCM
    -Rajeev rajdude.com

  • FF67: How to delete Manual Bank Statement

    Hi Experts,
    Can somebody tell me, how to delete Manual Bank Statement which has not been posted.
    Thanks in advance,
    Krsnveni

    Hi,
    You can follow these steps in order to correct delete the bank statement using RFEBKA96.
    1st step. Indentify the statement ID by FF_6
    Fill the field application with 0001 (it is the code for EBS)
    Then you can fulfill also the following fields:
    - Company code
    - House Bank ID
    - Bank Account Id
    Run the program and in the headers of the output you can check the statement number (AZNUM) and the ID (KUKEY).
    Then you run RFEBKA96 for the ID.
    I believe this information will help you to solve your issue.
    Kind Regards,
    Fernando Evangelista

  • How to delete WBS  if system status is REL

    How to delete WBS at 2nd level if system status is REL (no cost have been populated yet). What happened is that system is set to auto release when created.

    Hi,
    If there are no postings , or account assignment objects such as purchase order, production order etc, you can right click the WBSE and delete it. Also you can select the WBSE and use the 'delete' icon to delete the WBSE.
    Muraleedharan.R
    091 9880028904

  • How to delete a project in Oracle apps R12

    Hi
    OS RHEL 5.5
    Database 11.1.0.7
    Applications R12
    Initially I have created a project in oracle apps from wrong template and modified the template then created a project with the same modified template.
    Now the wrong project needs to be deleted so how to delete the project which had been created from wrong template in oracle apps R12 and integrated project with MSP.
    Both the wrong and correct projects are referring to the same template.
    Please help me to delete the project as it is done in production database.
    Rgrd
    Edited by: 955685 on Feb 4, 2013 8:10 AM

    955685 wrote:
    Hi
    OS RHEL 5.5
    Database 11.1.0.7
    Applications R12
    Initially I have created a project in oracle apps from wrong template and modified the template then created a project with the same modified template.
    Now the wrong project needs to be deleted so how to delete the project which had been created from wrong template in oracle apps R12 and integrated project with MSP.
    Both the wrong and correct projects are referring to the same template.
    Please help me to delete the project as it is done in production database.
    Rgrd
    Edited by: 955685 on Feb 4, 2013 8:10 AMPlease see these docs/links.
    Delete Project Functionality not Working [ID 1060648.1]
    PRC: Delete Project Performance Reporting Data Completes With Error ORA-12838 ORA-6512 [ID 748674.1]
    How Can the PA Period Type Be Changed if It Has Been Entered Incorrectly? [ID 881424.1]
    PAXPREPR Unable To Delete Project [ID 874642.1]
    http://www.oracle.com/pls/ebs121/search?word=Delete+AND+Project&format=ranked&remark=quick_search
    Thanks,
    Hussein

Maybe you are looking for