Problem while deleting assets

Dear All:
                  I am trying to delete some assets through AS06 , These assets were earlier purchased through Purchase order and down payments were made through F-48. Complete MIRO have been done for these PO and no any balance is left in PO. But when i try tpo delete these assets i get an error Assets can not be deleted DOWN PAYMENT EXISTS. I go to AW01N and see there.there are some down payment which are still pending against these assets. Now i am unable to understand how to proceed with deletion of assets.PO have been fully processed and invoiced. Please what to do in order to get these down payments clear so that assets could be deleted.
Regards

Hi,
I think you have to do transfer of down payment to normal payment through T.code F-54.
Then this problem will be solved try once in your test server.
Revert back in case of any query.
Regards,
sankar

Similar Messages

  • Document Splitting problem while posting asset acquisition using F-90

    Hi,
    We are using ECC 6.0 with document splitting functionality and are facing problem while posting asset acquisition using F-90.
    The transaction entry details are as below:
    Document Type - KR
    Vendor Line Item PKey - 31
    Amount - 10000
    Asset Line Item with PKey - 70, Transaction Type - 100
    Amount - 10000
    The Document Splitting Rule - 0000000012 is used and the Field Status Group for the Vendor Reconciliation Account and Asset Reconciliation account have Cost Center, Profit Center and Segment as "Optional" field.
    The Balance Sheet Item - Asset Reconciliation Account has been created as
    Secondary Cost Element - 90.
    The Profit Center and Segment field have been made mandatory and zero balancing is also set in the settings for Document Splitting.
    While posting asset acquisition using F-90, we are getting the error message - "Balancing Field "Profit Center" in line item 001 not filled"
    The first line refers to the Vendor Line item.
    Please let me know how to overcome this error.
    Regards,
    Ramanand

    Please follow the below path and do config :-
    IMG>FA>Asset Accounting>Integration with the General Ledger>Additional Account Assignment Objects>Specify Account Assignment Types for Account Assignment Objects
    here you have to put KOSTL (Cost center) for both against APC and Dep run for each Dep area.
    Thanks
    Pyare

  • Problem while creating assets using BAPI

    Use table enhancement BAPI_TE_ANLU
    Diagnosis :The BAPIs for creating and changing assets currently support only those customer enhancements that relate to the user fields created using SAP enhancement AIST0002.
    Can anybody give the appropriate solution why this error is coming while creating assets using BAPI.

    Looks like you are trying to transfer custom fields into the asset master data that were not added following the steps in enhancement AIST0002.
    Using EXTENSIONIN parameter, you can transfer user fields from the asset master record. However, it is not possible to transfer fields that are updated in user-defined tables. Only user fields that were defined using SAP enhancement AIST0002 and are automatically updated in table ANLU can be udpated in this way. This means you have to use table extension BAPI_TE_ANLU.
    Enhancement AIST0002 contains function module EXIT_SAPL1022_001 as a component in which user fields can be implemented.
    The documentation ( BAPIPAREX) of the structure that forms the basis for this parameter contains additional information about using this parameter.
    Please check how table ANLU has been enhanced and also go through the documentation of enhancement AIST0002.
    Regards,
    Shyam

  • Problem while deleting the Project & Extension created using EEWB

    Hi
    I have created a Project and Extension to add a new field in Opportunity using EEWB however it got some errors and hence
    wanted to delete this Extension and Project as well but while deleting the Extension system is throwing an error 'Extension XXX couldn't be deleted'.
    Because of this we have been facing some issue in BW Extractions.
    Could you please help me out how can we delete this ?
    Best Regards
    Anil

    Hi Prasenjit
    I have deleted all the fields and corresponding structures as per your suggestion however still I'm not able to delete the
    Extension and Project.
    Best Regards
    Anil

  • Facing problem While deleting rows and adding rows

    Hi,
    In my form i have pass values to table rows by selecting values from Dropdown list.
    i have taken 3 hidden obj and passing the dropdown values to hidden objects and then from hidden objects to table rows.
    h1,h2,h2 are hidden obj
    EMPNO,EMPNAME, DESIGNATION are drop downlist
    i have add button with the following code
    if(form1.P1.ItemSet.EMPNO.rawValue != null){
    form1.P1.ItemSet.instanceManager.addInstance();
    form1.P1.execInitialize();
    var dynamicArray = form1.P1.resolveNode("ItemSet[" + arrayIncri + "]");
    dynamicArray .EMPNO.rawValue = form1.P1.hidden.h1.rawValue;
    dynamicArray .EMPNAME.rawValue = form1.P1.hidden.h2.rawValue;
    dynamicArray .DESIGNATION.rawValue = form1.P1.hidden.h3.rawValue;
    arrayIncri++;
    form1.P1.SF1.EmpID.rawValue = null;
    form1.P1.SF1.EmpName.rawValue = null;
    form1.P1.SF1.Designation.rawValue = null;
    My delete button code is
    _ItemSet.removeInstance(this.parent.index);
    form1.P1.execInitialize();
    My problem is adding is happening while click and deleting is happening to the perticular row but once i delete paricular row then again if i want to add new row then it is taking null values . and agian if i click add then the values are passing to the next row
    means i am getting null row if i do add funtionality after delete funtionality....
    Please help me out in this..
    Subba reddy

    Hi,
    I got the answer for this query, but when i do download and upload of the files from R/3 to GRC. Still it is not showing me the new transactions which were developed in R/3.
    it means when i try to add the transaction in a function, under search mode with respective of the r/3 system, it is not showing me the search results.
    What i did was, i run the reports /VIRSA/ZCC_DOWNLOAD_DESC & /VIRSA/ZCC_DOWNLOAD_SAPOBJ and uploaded them as below in GRC.
    Text Objects - /VIRSA/ZCC_DOWNLOAD_DESC
    permissions   -  /VIRSA/ZCC_DOWNLOAD_SAPOBJ
    For each of the download i get 2 files for each and i tried to upload both of them but no luck.
    Please suggest me, as am missing anything in this process
    SV

  • Facing problem while deleting a child record in hibernate.

    I am trying to update a child records i have following scenario
    master record (having one to many assciation with child table cascade=all in .hbm.xml configuration file) ===> customerInfo
    detail record set (having many to one assciation with master table cascade=all in .hbm.xml configuration file) ===> customerAccountsSet
    i do following steps to update a record
    1) get the customerInfo objetc from session successfully
    2) get the customerAccountsSet = customerInfo.getCustomerAccounts();
    3) traying to add a new customerAccount say customerAccount1 to be saved for the first time without primery key in it
    4) traying to update a customerAccount say customerAccount2 to be updated with primery key in it
    5) traying to add a delete customerAccount say customerAccount3 with primery key in it
    only step 5 is not executed properly as i can still see the deleted record in db , although save and update steps have been successfully completed in db.
    can anybody tell me whats going wrong here.code for steps 2,3,4,5 is as follows in the same order
    2)Set customerAccountSet = (Set) customerInfo.getCustomerAccounts();
    3)customerAccountSet.add(customerAccount);
    4)customerAccountSet.add(customerAccount);
    5)customerAccountSet.remove(customerAccount);

    Hi Nitesh,
    1) Java stack should be up while trying to connect to R/3 backend.
    2) You can check the JCOs by doing the following:
                           Type the following url   http://<server name>:<port number>
                           Click on Webdynpro Console
                           Enter the user name and password.(You need the system admin right on the EP to do the same)
                           You can find the JCOs.
    3) Better you contact the basis guy who had created the JCOs earlier and get the JCOs tested.
    Hope it helps.
    Regards.
    Rajat
    Edited by: Rajat Jain on Oct 12, 2009 1:47 PM

  • Problem While deleting a  PP/DS PPM

    Hi,
    I am trying to delete SNP PPMs and PP/DS PPMS, the  problem is only with PP/DS PPMS is it is showing up an error saying " Plan cannot be deleted since there are orders referencing it "
    I went into RLCDEL transaction and deleted all orders from AA to ZZ and even checked in the Product View but there were no Planned orders or Production orders, Even after checking with the orders individually the error message is still persistent.
    Please Suggest.
    Any help is greatly appreciated.
    My

    Hi
    There are a few ways to view orders in the system.
    You could use the "Where Used List" transaction code WUF and then select the object type you are interested in, eg PPM or Product. This will then list all the related data items that use that object, eg all the orders etc.
    The transaction /sapapo/cdps_rept will allow you to list orders by resource/location etc.
    You can also display livecache contents through transaction /sapapo/om16, using the "Orders" tab would allow you to select by location for example.
    Alternatively, you could use the tables /sapapo/ordmap and /sapapo/ordkey to find orders, however you need to relate the two via the GUID's to make full sense of the data!
    Hope that helps
    Regards
    Ian

  • Problem while deleting a PO

    Hi friends,
    Im facing a problem, release strategy is defined for all POs in my company. Now after deleting POs by setting deletion indicator
    for all line item in a PO(mark for deletion), those POs still appear in the release due list.
    Is there a way to avoid those POs to appear in ME28.
    Please help.
    Thanks,
    Ritesh

    Hi,
    Unless and untill you archive the deleted POs from the system still you will get the all POs.There is no standard functionality for this.
    With the help of ABAPer you can develop the report for the same.
    Regards,
    Goraksh Dhikale.
    Edited by: goraksh dhikale on Sep 20, 2008 7:38 AM
    Edited by: goraksh dhikale on Sep 20, 2008 7:40 AM

  • DataScroller problem while delete the recoreds using checkbox

    Hi all
    I am new for jsf. I am using datascroller working with Tomahawk.My requirement like .
    I need to display 15 records in a page.And every row having checkbox which is used for delete the record.
    These are all working fine.Problem is if i delete all records in last page .The page is not going to previous page.
    The following is my xhtml code
    <h:panelGrid columns="2" style="width: 100% ">
              <h:outputText value="" style="width: 100%"/>
                   <t:dataScroller id="scroll_1"
              for="detailData"
                   styleClass="scroller"
                   style="align=right"
                   paginator="true"
                   paginatorActiveColumnStyle="font-weight:bold;"
                   displayedRowsCountVar="displayedRowsCount"
                   fastStep="10"
                   pageCountVar="pageCount"
                   pageIndexVar="pageIndex"
                   immediate="true"
                   paginatorMaxPages="9">
         </t:dataScroller>     
    </h:panelGrid>

    For Tomahawk specific questions, I would recommend posting to the myfaces user mailing list.
    Edited by: rlubke on Aug 7, 2008 1:19 PM

  • Problem while deleting a name space

    Hi All,
    When i delete a name space, its says it cannot delete as the objects (ExchangeLogData,ExchangeFaultData) are referring some xyz interface which doesn't even exist under the SCW.
    Please help me out to solve the error.
    regards,
    younus

    Hi,
    The error is
    "Error while parsing or executing XML-SQL document: Error processing request in sax parser: No 'action' attribute found in XML document (attribute "action" missing or wrong XML structure)"
    My target structure has action attribute in it, and the message mapping is working fine.
    What could be the error,  Please help me.
    regards

  • Problem while deleting objects in Transport request

    Hi  Guys,
    I am working on some object .It has some tables ,RFC's etc
    If I make changes to some of the objects the next day aging the same object is attached with the same name in the Transport Request.Also if i try to delete one out of it,I get the folllowing message & I am unable to delete it.Please guide on both.
    Message: "Object entry exists more than once. Sort and compress first"
    1. why same object gets attached to the request again?
    2.How to delete the duplicates entries of the object

    Hi,
    If more than one user has worked on the same object, then it would be included in the TR twice.
    Right click & select SORT COMPRESS, then try to delete.
    Best regards,
    Prashant

  • Problem while Posting Assets through BAPI

    Hi,
    I am using BAPI_ACC_DOCUMENT_POST to handle assets postings in SAP.Here whenever i am running BAPI from SE37 using asset_no with regular length which is 6digits[730011] bapi is giving me correct results and documents gets posted successfully with assets.
    The same thing when I do it from my program by populating values and filling the asset_no correctly in BAPI Structure I am getting error as below
    "Asset 730011 not found in Company 1001".
    but the same assets works fine through SE37.
    Could anyone let me know why is this happening?
    Thanks

    Try adding leading zeros.
    ( When you test via SE37 you come across conv_exit_module / kind of screen exit )
    Hope this helps,
    Erwan

  • Problem while deleting overlaping request from cube

    Hi experts,
    I have one process chain in which i have one step where i am executing one DTP to load one cube and in next step deleing overlapping requests from same cube.
    i am getting error at that step "Error when deleting requests for comparison request DTPR_4CCDXZLK1OIGCVGGE1PP31Z3Y"
    what could be reason?
    plz help

    Hello,
    I guess you have not defined the overlapping variant properly.
    Please goto the definition of the variant and check for the right DTP input.
    Then at the bottom, select second option "Edit all Infocubes with Following Delete Selections"
    Click on deletion selections -> select delete existing requests.
    Also select if same datasource and source system. and importantly select the radio button as overlapping.
    Then save the variant. and try to use it.
    Regards,
    Shashank

  • Problem while deleting activation request

    HI all,
    we are getting short dumps with UNCAUGHT_EXCEPTION and CX_RSR_X_MESSAGE when trying to delete ODS activation requests, included in Business Content process chains. These requests went bad because the authorization for user ALEREMOTE was not set properly.
    After we set this, we re-ran the process chains which loaded the ODS but all failed to activate them. Trying to delete any request causes a dump. Even selecting the "reconstruction" tab of the request causes a dump.
    Is there any way to "clean" or reset everything ?
    Of course, any effective suggestion will be appreciated and rewarded
    Thanks

    Hi,
    In your short dump description (ST22) or in the system logs (SM21), there should be listed the table where the issue comes from.
    When you found that table, try to adjust (via SE14) that table (first without deleting data, then if it doesn't work with the deleting option selected).
    Hope it helps,

  • Interesting scenario- user facing error while deleting a sales order

    Hello All,
    I have one interesting scenario and want feedback from your side as soon as possible
    Scenario-
    One of my clients is facing a problem while deleting a sales order.
    the sales order he is trying to delete is the old order created in 2007.
    when i see the document flow the user has created the export order, then delivered it, invoiced and sent it to accounting, accounting document is also cleared. then he cancelled the invoice, reverse PGI and deleted the delivery. the status of the sales order system is showing is being processed. but please note in this case after reversing PGI and deleting a delivery the delivery document disappears from the document flow.
    document flow looks like this
    Order - 200004715                     Being processed
    invoice- 700005310                    completed
    accounting 700005311                 cleared
    Cancel Invoice 700005315            completed
    Accounting 700005316                 cleared
    Now, in 2008 user is trying to delete the sales order but he is unable to do the same. system is giving him message "unable to delete sales order because of subsequent document 70005310 (which is invoice number)"
    Can somebody please throw some light on this problem.
    Thanks in advance.

    Hi,
    As fas as I know, this is standard system behaviour. The reason - you have done PGI (which has created a material document as well as accounting doc) and invoiced & reversed (which again has created accounting documents & rversal documents). All these documents are referencing the sales order.
    If you delete sales order, sales order number gets deleted from VBAK /VBAP tables.
    Hence, in relational data base scenario (meanin SAP in this context), deletion of sales order after creation of subsequent documents is not feasible.
    Hope it clarifies the issue.
    Regards
    Murali

Maybe you are looking for