How to update Asset transactions

Hi FI Experts,
I've been updating a asset by providing values for ANLC table during asset creation. The asset summary is getting updated properly for the fiscal year. I can see them under Planned Value tab..
But Transactions is not updated.
Could anybody help, which table contains the entry for asset transactions. Can it be updated during asset creation?
Thanks & Regards,
Ravi

Hi Eli,
I don't find the BAPI FIXEDASSET_CREATEINCLVALUES in the system. Could you please provide me the correct BAPI and if possible an example on how to create a reference asset.
As I mentioned, I'm using Z Object, which is a copy of LAFA_ASSET_CREATE. I'm providing the values for ANLC using the FM AMSP_ADD_ENTRIES_TO_GLOBAL_TBS (available in LAFA_ASSET_CREATE). So the values for the asset is properly updated. I can not pass values for tables ANEK and ANEP using the same FM i.e. AMSP_ADD_ENTRIES_TO_GLOBAL_TBS so I'm using FM AMBU_APPEND_LINES_OF_ITAB_AC to update values of ANEP and ANEK. But the values for ANEP and ANEL are not getting updated. If you can suggest something here, it would be great help.
Regards,
Ravi

Similar Messages

  • How to simulate asset transaction in future

    Hi Friends,
    can someone advise how to simulate posting of transaction i.e. in next year? I mean in asset explorer simulation is not possible unless you have the period opened for posting in FI.
    Is it possible without opening the period i.e. for year 2010 ? Or is there any other way how to calculate future depreciation amount for example for year 2010 with subseq. acquisition in 11/2009. Do hope there is some program in SAP, or do you know some external tool i.e. via Excel...?
    Thank you for answers!

    Hi,
    Go to AWO1N. Give your asset details. Then on the top click on "Swithon Simulation" (Icon with three blue dots and two red dots). Then in the planned values tab, down you can find the same type of icon "Trans.Simulation" Click on that. It will take you to Simulate asset transaction. There you can give the details and simulate the depreciation.
    Regards
    shankar

  • Demo for updating a transaction

    hi all,
    can anyone plz send me the demo for how to updata a transaction ,
    not standard transaction like mm01,va01,me21 some what other transaction.why iam asking for some what other transaction when ever i was attending for interview they expecting some different transaction
    plz help me ,so that i will be thankful to you.some differnt transaction with steps plzzzzzzzzzzz.
    thank u all.

    Hi,
    create a new program and copy the below code.
    Note:- create a flat file (with comma seperated) with the below structure.
    Flat file Example:-
    Material number,oldmaterial number (don't put this header in your flat file)
    13571228,oldmaterial
    13571229,oldmaterial1
    save this file into your local path, make sure that the path should be given in the function module "GUI_UPLOAD" example:- "D:\MM02.TXT".
    test this it will work.
    copy from here.
    DATA : BEGIN OF it_data OCCURS 0,
    data(255),
    END OF it_data .
    DATA : BEGIN OF it_mat OCCURS 0,
    matnr LIKE rmmg1-matnr,
    bismt LIKE mara-bismt,
    END OF it_mat.
    DATA : BEGIN OF it_error OCCURS 0,
    matnr LIKE mara-matnr,
    mess(255),
    END OF it_error.
    DATA : it_bdcdata LIKE bdcdata OCCURS 0 WITH HEADER LINE,
    it_bdcmsgcoll LIKE bdcmsgcoll OCCURS 0 WITH HEADER LINE,
    v_text(200).
    PERFORM upload.
    LOOP AT it_data.
    PERFORM pop_mat.
    ENDLOOP.
    LOOP AT it_mat.
    PERFORM pop_bdcdata.
    REFRESH it_bdcmsgcoll.
    CLEAR it_bdcmsgcoll.
    CALL TRANSACTION 'MM02' USING it_bdcdata
    UPDATE 'S'
    MODE 'A'
    MESSAGES INTO it_bdcmsgcoll.
    IF sy-subrc NE 0.
    LOOP AT it_bdcmsgcoll WHERE msgtyp = 'E' OR
    msgtyp = 'A' OR
    msgtyp = 'S'.
    CALL FUNCTION 'FORMAT_MESSAGE'
    EXPORTING
    id = it_bdcmsgcoll-msgid
    lang = sy-langu
    no = it_bdcmsgcoll-msgnr
    v1 = it_bdcmsgcoll-msgv1
    v2 = it_bdcmsgcoll-msgv2
    v3 = it_bdcmsgcoll-msgv3
    v4 = it_bdcmsgcoll-msgv4
    IMPORTING
    msg = v_text
    EXCEPTIONS
    NOT_FOUND = 1
    OTHERS = 2
    IF sy-subrc NE 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    CONCATENATE it_error-mess v_text INTO it_error-mess.
    ENDLOOP.
    it_error-matnr = it_mat-matnr.
    APPEND it_error.
    CLEAR it_error.
    ENDIF.
    ENDLOOP.
    LOOP AT it_error.
    WRITE : it_error-matnr, it_error-mess.
    ENDLOOP.
    FORM upload .
    CALL FUNCTION 'GUI_UPLOAD'
    EXPORTING
    filename = 'D:\sreeram\MM02.TXT'
    filetype = 'ASC'
    TABLES
    data_tab = it_data .
    IF sy-subrc NE 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    ENDFORM. " UPLOAD
    FORM pop_mat .
    SPLIT it_data AT ',' INTO it_mat-matnr
    it_mat-bismt.
    APPEND it_mat.
    CLEAR it_mat.
    ENDFORM. " POP_BDCDATA
    FORM pop_bdcdata .
    REFRESH it_bdcdata.
    CLEAR it_bdcdata.
    PERFORM fill_screen USING 'SAPLMGMM' '0060' 'X'.
    PERFORM fill_valus USING 'BDC_CURSOR'
    'RMMG1-MATNR'.
    PERFORM fill_valus USING 'RMMG1-MATNR'
    it_mat-matnr.
    PERFORM fill_valus USING 'BDC_OKCODE'
    '=AUSW'.
    PERFORM fill_screen USING 'SAPLMGMM' '0070' 'X'.
    PERFORM fill_valus USING 'BDC_CURSOR'
    'MSICHTAUSW-DYTXT(01)'.
    PERFORM fill_valus USING 'MSICHTAUSW-KZSEL(01)'
    'X'.
    PERFORM fill_valus USING 'BDC_OKCODE'
    '=ENTR'.
    PERFORM fill_screen USING 'SAPLMGMM' '4004' 'X'.
    PERFORM fill_valus USING 'BDC_CURSOR'
    'MARA-BISMT'.
    PERFORM fill_valus USING 'MARA-BISMT'
    it_mat-bismt.
    PERFORM fill_valus USING 'BDC_OKCODE'
    '=BU'.
    ENDFORM. " POP_BDCDATA
    FORM fill_screen USING p_prog
    p_dynpro
    p_dynbegin.
    it_bdcdata-program = p_prog.
    it_bdcdata-dynpro = p_dynpro.
    it_bdcdata-dynbegin = p_dynbegin.
    APPEND it_bdcdata.
    CLEAR it_bdcdata.
    ENDFORM. " FILL_SCREEN
    FORM fill_valus USING p_fnam
    p_fval.
    it_bdcdata-fnam = p_fnam.
    it_bdcdata-fval = p_fval.
    APPEND it_bdcdata.
    CLEAR it_bdcdata.
    ENDFORM. " FILL_VALUS
    End of copy
    Also see this :
    Here iam giving just recorded sample code.here material number is ASNFINAL.
    Old material number changed is :'OLD_BSIMT'.
    perform bdc_dynpro using 'SAPLMGMM' '0060'.
    perform bdc_field using 'BDC_CURSOR'
    'RMMG1-MATNR'.
    perform bdc_field using 'BDC_OKCODE'
    '=ENTR'.
    perform bdc_field using 'RMMG1-MATNR'
    'ASNFINAL'.
    perform bdc_dynpro using 'SAPLMGMM' '0070'.
    perform bdc_field using 'BDC_CURSOR'
    'MSICHTAUSW-DYTXT(01)'.
    perform bdc_field using 'BDC_OKCODE'
    '=ENTR'.
    perform bdc_field using 'MSICHTAUSW-KZSEL(01)'
    'X'.
    perform bdc_dynpro using 'SAPLMGMM' '4004'.
    perform bdc_field using 'BDC_OKCODE'
    '=BU'.
    perform bdc_field using 'MAKT-MAKTX'
    'ASN FINAL TEST MATERIAL'.
    perform bdc_field using 'BDC_CURSOR'
    'MARA-BISMT'.
    perform bdc_field using 'MARA-MEINS'
    'EA'.
    perform bdc_field using 'MARA-MATKL'
    'AS02'.
    perform bdc_field using 'MARA-BISMT'
    'OLD_BSIMT'.
    perform bdc_field using 'MARA-SPART'
    '10'.
    perform bdc_field using 'MARA-PRDHA'
    'RC2120'.
    perform bdc_field using 'MARA-GEWEI'
    'KG'.
    Reward Points if found helpfull..
    Cheers,
    Chandra Sekhar.

  • Update Asset details in AIBU transaction

    Hi,
          If an asset has four invoices and these are settled to another asset using AIBU, the standard program settles the sender line items to the receiver as one line item in the receiver.
          Our requirement is  to settle each line item in the sender as a separate line item in the receiver. For that we are trying for BADIs,EXITS or Ehancement points.
         We were able to update the asset accounting details using the BADI,BADI_FIAA_DOCLINES but we were not able to update asset details( transaction type, assignment field etc) in ANEP,AUAS tables. The transaction type is changing and defaulting to 345(for sender) and 346(for receiver).  Please tell me how to achieve this.
    Thanks in Advance,
    Deepthi

    Hi,
    Thanks for reply.
    I need to achieve my requirement through coding. I have created few enhancement spots and its working fine now. But accounting details were not updating correctly.  I need to update them(ACCIT table) with Assingment, item text etc in the BADI BADI_FIAA_DOCLINES. Could not find the link to update the reciver entries with sender details aptly. Please suggest me the solution for this.
    Thanks,
    Deepthi

  • How to calculatee Dep manually and how to update fixed assets register

    Hi Gurus,
    I have a issue like Asset vale is Rs. 1000 Dep % is 1st year 35%  2nd year 15%3rd year 15% 4th year35% for 4 years .if buys another  asset in addtion to old asset Rs.500  the depreciation is same has earlie said percentage . my clients wants to post  this depreciation manually.and how to update fixed assets  register.
    Regards,
    Ssriram.

    Hi
    Depreciation terms are applicable to the entire asset (not for individual transactions). If you want to have different terms, you may create the additions as Sub-asset (Tcode AS11) to the main asset and enter depreciation terms.
    Thanks
    Palani

  • Do not update in qty for asset transaction

    Dear all,
    the system update the qty field in asset master data when transaction take effects. But there is any why that qty field in asset master data do not update  after transaction takes place like when transfer from one asset "a" to asset "b" with t code ABUMN.
    asset a with qty 1 and asset b with qty 2 in the master record,
    when transfer from a to b the system must not update the qty field in asset master data that the system updates to 3.
    How can the system do update qty ?????
    regards

    Hi,
    This is the standard behaviour of the system.
    If a transfer takes place from asset X to asset Y, then the system adds the sending asset's qty to receving asset's qty, only if the both UOM are same.
    Often users create an asset master with values in qty fields also, but that qty field should be blank only, since the qty will be added to it through asset transaction only.(if earlier qty is 0 and transaction qty is 1, then it would be 0+1=1)
    In your case you might have created your second asset with 2 qty and transfered 1 qty from sending asset, so the system added the both quantities in receiving asset. ( 1+2=3), as you are aware of this.
    Thanks,
    Srinu

  • IB:How to update a serial Number which has Inventory Material Transactions?

    Dear friends
    first of all thanks for your time and valuable solutions
    Install base: How to update a serial Number which has Inventory Material Transactions
    problem description:
    Install base > quick search
    Here is Installbase record, when I query from quick search
    Rec#     Item          Item Instance           Serial Number          Status
    1     300-7000-01      3000000           1000XXX-0538JQ0003 Return for Adv Exchange
    2     300-7000-01     8000000               1000XXX-0538JQ0003-     Return for Adv Exchange
    3     300-7000-01     5000000               1000XXX-0538JQ0003-A     Return for Adv Exchange
    looking above data, first and third records are the legitimate serial numbers(correct according to the client specs), second record is not legitimate since it has a dash as suffix, we found there are many illegitimate serial Numbers exists, needs to be updated with the right serial Numbers which I analyzed in excel after pulling data from mtl_material_transactions , oe_order_lines_all , mtl_serial_numbers , mtl_system_items_b
    basically these are all RMAs
    I need to update the second record as 1094SUZ-0538JQ0003-B as per the guidelines, while updating I need to keep all the existing contracts, Warranty, what ever material transations it has, need to be same.
    we have a package updating the serial numbers using IB API (csi_Item_Instance_Pub.update_item_instance) but it is updating only the records which has no serial numbers present for that instance, if there is a serial number already exists it is not working.
    user define error msg "Serial Number 1094SUZ-0538JQ0003- has Inventory Material Transactions. This serial number cannot be used to update an existing Item Instance", but I need to update this anyway!! or am I missing something here, please advice me
    below post looks like similar issue, talks about hard update, I have no clue, by doing that the updated serial number will have same transations, contracts, dates....attached to it like the previous serial number
    IB UPDATE_ITEM_INSTANCE ERROR - doesn't allow ACTIVE_START_DATE to change
    would be great If you guys help me out, really appreciated!!
    unfortunately I couldn't find any solutoin in metalink for the existing serial number update
    code for updating the serial number using IB API
              x_msg_count := 0;
    x_msg_data := '';
    p_instance_rec.instance_id := rec.child_instance_id;
    p_instance_rec.serial_number := rec.child_serial_number;
    p_instance_rec.object_version_number := rec.child_object_number;
    p_txn_rec.transaction_id := Fnd_Api.g_miss_num;
    p_txn_rec.transaction_date := SYSDATE;
    p_txn_rec.source_transaction_date := SYSDATE;
    p_txn_rec.transaction_type_id := 1;
    csi_Item_Instance_Pub.update_item_instance
    p_api_version => 1.0,
    p_commit => Fnd_Api.g_false,
    p_init_msg_list => Fnd_Api.g_false,
    p_validation_level => 1,
    p_instance_rec => p_instance_rec,
    p_ext_attrib_values_tbl => p_ext_attrib_values_tbl,
    p_party_tbl => p_party_tbl,
    p_account_tbl => p_account_tbl,
    p_pricing_attrib_tbl => p_pricing_attrib_tbl,
    p_org_assignments_tbl => p_org_assignments_tbl,
    p_asset_assignment_tbl => p_asset_assignment_tbl,
    p_txn_rec => p_txn_rec,
    x_instance_id_lst => x_instance_id_lst,
    x_return_status => x_return_status,
    x_msg_count => x_msg_count,
    x_msg_data => x_msg_data
    Thanks
    Suri

    Suri
    Used this. May not be perfect but should get you there. Only if the table is registered (all the seeded tables should be registered) this will work.
    select distinct a.table_name,b.column_name from fnd_tables a, fnd_columns b
    where a.table_id=b.table_id
    and upper(b.column_name) like '%SERIAL%'
    Also this is very old one but if you need history for this change add the history insert logic as well..
    DECLARE
    l_return_err VARCHAR2 (80);
    PROCEDURE debug (p_message IN VARCHAR2)
    IS
    BEGIN
    dbms_output.put_line (SUBSTR (p_message, 1, 255));
    END debug;
    BEGIN
    debug('======================================================================');
    debug('Switching from serial number XDT07406. to XDT07406 ');
    debug('======================================================================');
    UPDATE fa_additions_b
    SET serial_number = 'XDT07406'
    WHERE serial_number = 'XDT07406.';
    debug('No of rows in fa_additions_b updated :'||sql%rowcount);
    UPDATE fa_mass_additions
    SET serial_number = 'XDT07406'
    WHERE serial_number = 'XDT07406.';
    debug('No of rows in fa_mass_additions updated :'||sql%rowcount);
    UPDATE rcv_serial_transactions
    SET serial_num = 'XDT07406'
    WHERE serial_num = 'XDT07406.';
    debug('No of rows in rcv_serial_transactions updated :'||sql%rowcount);
    UPDATE mtl_serial_numbers
    SET serial_number = 'XDT07406'
    WHERE serial_number = 'XDT07406.';
    debug('No of rows in mtl_serial_numbers updated :'||sql%rowcount);
    UPDATE mtl_unit_transactions
    SET serial_number = 'XDT07406'
    WHERE serial_number = 'XDT07406.';
    debug('No of rows in mtl_unit_transactions updated :'||sql%rowcount);
    UPDATE csi_item_instances_h
    SET new_serial_number = 'XDT07406'
    WHERE new_serial_number = 'XDT07406.';
    debug('No of rows in csi_item_instances_h updated :'||sql%rowcount);
    UPDATE csi_t_txn_line_details
    SET serial_number = 'XDT07406'
    WHERE serial_number = 'XDT07406.';
    debug('No of rows in csi_t_txn_line_details updated :'||sql%rowcount);
    UPDATE csi_item_instances
    SET serial_number = 'XDT07406'
    WHERE serial_number = 'XDT07406.';
    debug('No of rows in csi_item_instances updated :'||sql%rowcount);
    UPDATE wsh_delivery_details
    SET serial_number = 'XDT07406'
    WHERE serial_number = 'XDT07406.';
    debug('No of rows in wsh_delivery_details updated :'||sql%rowcount);
    debug('======================================================================');
    debug('Switching from serial number jct20591 to JCT20591 ');
    debug('======================================================================');
    UPDATE fa_additions_b
    SET serial_number = 'JCT20591'
    WHERE serial_number = 'jct20591';
    debug('No of rows in fa_additions_b updated :'||sql%rowcount);
    UPDATE fa_mass_additions
    SET serial_number = 'JCT20591'
    WHERE serial_number = 'jct20591';
    debug('No of rows in fa_mass_additions updated :'||sql%rowcount);
    UPDATE rcv_serial_transactions
    SET serial_num = 'JCT20591'
    WHERE serial_num = 'jct20591';
    debug('No of rows in rcv_serial_transactions updated :'||sql%rowcount);
    UPDATE mtl_serial_numbers
    SET serial_number = 'JCT20591'
    WHERE serial_number = 'jct20591';
    debug('No of rows in mtl_serial_numbers updated :'||sql%rowcount);
    UPDATE mtl_unit_transactions
    SET serial_number = 'JCT20591'
    WHERE serial_number = 'jct20591';
    debug('No of rows in mtl_unit_transactions updated :'||sql%rowcount);
    UPDATE csi_item_instances_h
    SET new_serial_number = 'JCT20591'
    WHERE new_serial_number = 'jct20591';
    debug('No of rows in csi_item_instances_h updated :'||sql%rowcount);
    UPDATE csi_t_txn_line_details
    SET serial_number = 'JCT20591'
    WHERE serial_number = 'jct20591';
    debug('No of rows in csi_t_txn_line_details updated :'||sql%rowcount);
    UPDATE csi_item_instances
    SET serial_number = 'JCT20591'
    WHERE serial_number = 'jct20591';
    debug('No of rows in csi_item_instances updated :'||sql%rowcount);
    COMMIT;
    EXCEPTION
    WHEN OTHERS
    THEN
    l_return_err :='Updating in one of the script has this error:'|| substrb(sqlerrm, 1, 55);
    debug('Value of l_return_err='||l_return_err);
    END;
    Thanks
    Nagamohan

  • Integration with MM how the asset transaction type is triggered during MIGO

    Hello everybody,
    Do you know how SAP triggers the asset transaction type during MIGO when Asset is purchase with MM?
    Is there a customizing transaction to set up the link between the movement type used in the MIGO and the asset transaction type during the receipt of the asset?
    Thank you in advance
    Regards

    Hello,
    This is maintained in FI-AA Spro - Financial Accounting - Asset Accounting - Transactions - Specify Default Transaction Types
    For example for GR (MIGO), the accounting transaciton is called "Acquis. from goods receipt w/o affiliated company" and the default FI-AA Transaction type is 120.
    Hope this helps!

  • How to update a table (CUSTOMER) on a Report Server with the data from the same table (CUSTOMER) from another server Transaction server?

    I had an interview question that is:
    How to update a table (Customer) on a server ex: Report Server with the data from the same table (Customer) From another server ex: Transaction server?
    Set up steps so inset, update or delete operation takes place across the servers.
    It would be great if someone please enlighten me in details about this process in MS SQL Server 2008 R2.
    Also please describe would it be different for SQL Server 2012?
    If so, then what are the steps?

    I had an interview question that is:
    How to update a table (Customer) on a server ex: Report Server with the data from the same table (Customer) from another server ex: Transaction server?
    Set up steps so that inset, update or delete operation gets done correctly across servers.
    I was not sure about the answer, it would be great if someone please put some light on this and explain in details about this process in MS SQL Server 2008 R2.
    Also it would be very helpful if you please describe would it be different for SQL Server 2012? If so, then what are the steps?

  • How to update transaction data automatically into MySQL database using PI

    Dear All,
    With reference to subject matter I want a sincere advice regarding how to update transaction data automatically into MySQL database using PI. Is there any link available where I can get step-by-step process.
    Ex: I have a MYSQL database in my organization. Whenever a delivery created in SAP some fields like DO Number, DO quantity, SO/STO number should get updated in MYSQL database automatically.
    This scenario is related to updation of transactional data into MYSQL DB and I want your suggestions pertaining to same issue.
    Thanks and Regards,
    Chandra Sekhar

    Hi .
    Develop a sceanrio between SAP to Database system,When the data updates in SAP Tables read the data and update it in DATA Base using JDBC adapter,but there will be some delay in updating data in MySQL.
    serach in sdn for IDOC-TOJDBC sceannario,many documents available for the same.
    Regards,
    Raja Sekhar

  • How to update the FB01L transaction using the FM  bapi_acc_document_post

    Hi All,
            How to update the FB01L transaction using the bapi_acc_document_post but there is no ledger group field in the bapi function module.
    Please help me how to do it.

    hi,
    use batch input method for the same.
    check this.
    [https://forums.sdn.sap.com/click.jspa?searchID=19107237&messageID=884744]

  • How to update the New Depreciation Area in Asset Master Data

    Hi,
    Please guide me
    How to update the New Depreciation Area in the Asset Master Data.
    Regards
    Srinivas

    Hi,
    a) The procedure is as follows:
    1. Create Depreciation area via OADB.                                                                               
    2. Activate Depreciation area via OAYZ.                                                                               
    3. Automatic opening of new depreciation are via AFBN and program  
       RAFABNEW :                                                                               
    3.1     Indicator: Leave values initial = not ticked.           
               Do not set this indicator if you want the system        
               to copy the values from depreciation area 01.                                                                               
    3.2     Indicator: Leave values initial = ticked.               
               Set this indicator if you want to open the newly created
               depreciation area without any values i.e. blank.                                                                               
    4. Recalculate depreciation via AFAR and program RAAFAR00.   
    b) Helpful notes:
    430618 (Procedure for setting up new depreciation area)                           
    301113 (Restrictions of RAFABNEW)                                                 
    421549  (RAFABNEW: Error with closed fiscal years)
    c) A documenttation you find if you enter RAFABNEW in SE38 and press the butto "documentation"
    regards Bernhard

  • Error in Asset Transactions Report in ECC 6

    Hi Friends,
    We have upgraded from ECC 4.7 to ECC 6.0 in Nov 2007.
    In Asset Transactions Report (S_ALR_87012048) the Depreciation column is displaying Zero Values for individual line items after November 2007 (ie for Assets posted after Nov, 07).
    We posted the same to SAP and they are saying that since New Depreciation Calculation has been activated, Depreciation on Individual transactions will not be calculated.
    SAP has quoted the following note:
    As per note 965032 point 4d under the header 'No depreciations ontransactions' which states:-
    .... if you use the new depreciation calculation, the system no longer saves depreciations on transactions in the line items. Exceptions to this rule are - proportional value adjustments in the case of retirements or retirement transfers, since these must continue to be calculated at single transaction level.
    My questions are:
    1.Even after this the report with depreciation values as Zero can be grossly misleading (other reports are showing correct values).  Is it correct?
    2.If what SAP is saying is correct, then How is this New Depreciation calculated? If anybody has an idea, please explain...
    I hope i am clear in stating my requirements.
    Thanks in advance.
    SK

    Hello,
    Can you please look in the /put/log directory and copy the error from the appropriate log file. You should find a log file with a name similar the to upgrade phase that is causing the error.
    Thanks
    N.P.C

  • How to update all condition records at a time with some percentage or some

    Dear Sir,
    In PRD system we have more than 600 condtion records.
    Noe desiel hikes happend, due to that client want to update all condition records(600) at a time with required percentage or required value.
    How to update all records at a time
    With regards
    Lakshmikanth

    Hi,
    Through BDC or LSMW first you have to do the recording for particular transaction code and then base on that u have to prepare the flat file to upload the file for the same.
    For BDC programing you have to take the help of ABAP progmer but LSMW you can also do.
    For more information about LSMW plz go to following link :
    [LSMW |http://www.slideshare.net/arun_bala1/sap-sd-lsmw-legacy-system-migration-workbench/]
    [Step-by-Step Guide for using LSMW|www.scmexpertonline.com/downloads/SCM_LSMW_StepsOnWeb.doc ]
    BDC
    [BDC Call Transaction|http://www.sapdevelopment.co.uk/bdc/bdc_ctcode.htm]
    [BDC Recording|http://www.sapdevelopment.co.uk/bdc/bdc_recording.htm]
    But it would be better for you to please contact to your ABAPer for BDC programming.
    Cheers...

  • Asset transaction type default wrongly

    I go to t-code ao76, for asset transaction type 350, there is no tab called "posting type" , thus i can't find gross/net indicator.
    but in other system, i see posting type indicator.
    any one know how to solve this problem, now any transaction type I created under ao76 does not have posting tab

    I already check in this way, by this way, it will not allow you to modify standard transaction type 3**, all my transaction type under transaction group 30 is missing posting type, none of the four radio button is selected in the expert view.
    Is there any note to repair transaction type group 30? I find some notes, they suggest using Zcorrection prgram and transfered from client zero, but none can treat group 30.
    thus I expect any solution, may be it needs other configuration?

Maybe you are looking for