GL account master upload steps using ECATT

Hello Friends,
    If any one have step by step procedure to upload GL account moster(FI) using CATT method than please forward me on "[email protected]" Please ASAP its my kind request.
Thanx & Regards,
Rahul Talele

Hi,
Go to path : Accounting -->Financial Accounting -->General Ledger -->Master Records -->G/L Accounts -->Collective Processing -->OB_GLACC11 - Chart of Accounts Data / OB_GLACC12 - Company Code Data  / OB_GLACC13 - Descriptions click on OB_GLACC11 or OB_GLACC12
And enter  give company code and Execute (F8) click on Select all records click on Print button  and click on List > Save / send>File an select Spreadsheet and enter and save the excel sheet and upload through LSMW
Thanks,
Raviteja

Similar Messages

  • Help me for material master upload by using Direct Input method

    <b>Hi All,</b>
       Can any one help me out for developing Material Master Upload program  by using <b>Direct Input</b> Method where we are also submitting the report to upload the data in SAP Database.
    <b>
    Thanks in Advance!</b>
    <b>Ramkumar.K</b>

    <b>Hi Kumar,</b>
      Thanks! I am using submit statement in my program as well but its populating all the views like Sales Organization Data, Sales - General / Plant Data, Accounting, and all the other views except the<b> Basic Data View</b>.. Eventhough i have populated the corresponding fields of the same.
    I am also using structure BGR00, BMM00, BMMH1 to upload the data
    Can you please help me on this..
    <b>
    Regards,
    Ramkumar.K</b>

  • Validations for gl master uploading by using BAPI

    Hi Gurus,
         We are trying to Upload the GL Masters by using the BAPI Programme.  So can any body tell me the validations for uploading the GL Masters. Its very urgent for me so please any body help me out in this regard.
    Thanks in Advance
    Regards,
    Siva.

    Hello
    Check this out
    regards
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/02/056c40de05587ee10000000a155106/frameset.htm

  • How to Use PM BAPI for equipment Master upload : BAPI_EQUIPMENT_SAVEREPLICA

    Hi ,
      How to use PM BAPI for equipment Master upload : BAPI_EQUIPMENT_SAVEREPLICA.
      May i know what are the input parameters & fields mandatory
      for each Table structures ct_data , ct_datax , it_descript , it_longtext.
      Can any one explain me Step by Step Process.
      B'cos i tried with below code. Equipment is not getting created.
      wa_itab-equipment_ext = '000000000100000001'.
      wa_itab-descript      = 'Test 2 -> Lube Oil Pump'.
      wa_itab-text_language = 'EN'.
      wa_itab-sdescript     = 'Short Description'.
      APPEND wa_itab TO it_itab.
      CLEAR  wa_itab.
      LOOP AT it_itab INTO wa_itab.
        ct_data-ta_guid       = '000000000000000001'.
        ct_data-equipment_ext = wa_itab-equipment_ext.
        ct_data-descript      = wa_itab-descript     .
        ct_data-valid_date    = sy-datum.
        ct_data-equicatgry    = 'M'.
        APPEND ct_data.
        CLEAR  ct_data.
        ct_datax-ta_guid       = '000000000000000001'.
        ct_datax-equipment_ext = 'X'.
        ct_datax-equipment     = 'X'.
        APPEND ct_datax.
        CLEAR  ct_datax.
        it_descript-ta_guid       = '000000000000000001'.
        it_descript-text_language = wa_itab-text_language.
        it_descript-descript      = wa_itab-sdescript    .
        APPEND it_descript.
        CLEAR  it_descript.
        it_longtext-ta_guid        = '000000000000000001'.
        it_longtext-text_language  = wa_itab-text_language.
        it_longtext-text_id        = 'LTXT'.
        it_longtext-text_line      = 'SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS'.
        APPEND it_longtext.
        CLEAR  it_longtext.
        it_longtext-ta_guid        = '000000000000000001'.
        it_longtext-text_language  = wa_itab-text_language.
        it_longtext-text_id        = 'INTV'.
        it_longtext-text_line      = 'aaaaaaaaaaaaaaa'.
        APPEND it_longtext.
        CLEAR  it_longtext.
        it_longtext-ta_guid        = '000000000000000001'.
        it_longtext-text_language  = wa_itab-text_language.
        it_longtext-text_id        = 'INTV'.
        it_longtext-text_line      = 'bbbbbbbbbbbb'.
        APPEND it_longtext.
        CLEAR  it_longtext.
        it_longtext-ta_guid        = '000000000000000001'.
        it_longtext-text_language  = wa_itab-text_language.
        it_longtext-text_id        = 'INTV'.
        it_longtext-text_line      = 'cccccccccccccccc'.
        APPEND it_longtext.
        CLEAR  it_longtext.
        CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.
      call BAPI-function in this system
        CALL FUNCTION 'BAPI_EQUIPMENT_SAVEREPLICA'
          TABLES
            ct_data     = ct_data
            ct_datax    = ct_datax
            it_descript = it_descript
            it_longtext = it_longtext
            return      = return
          EXCEPTIONS
            OTHERS      = 1.
        IF sy-subrc = 0.
          CALL FUNCTION 'BAPI_TRANSACTION_ROLLBACK'.
          WRITE : 'Successful'.
        ENDIF.
        IF NOT return IS INITIAL.
          LOOP AT return.
            IF return-type = 'A' OR return-type = 'E'.
              WRITE : 'Error'.
            ENDIF.
          ENDLOOP.
        ENDIF.
        REFRESH  return.
      ENDLOOP.
    Regards
    SUrendar

    Hi ,
      How to use PM BAPI for equipment Master upload : BAPI_EQUIPMENT_SAVEREPLICA.
      May i know what are the input parameters & fields mandatory
      for each Table structures ct_data , ct_datax , it_descript , it_longtext.
      Can any one explain me Step by Step Process.
      B'cos i tried with below code. Equipment is not getting created.
      wa_itab-equipment_ext = '000000000100000001'.
      wa_itab-descript      = 'Test 2 -> Lube Oil Pump'.
      wa_itab-text_language = 'EN'.
      wa_itab-sdescript     = 'Short Description'.
      APPEND wa_itab TO it_itab.
      CLEAR  wa_itab.
      LOOP AT it_itab INTO wa_itab.
        ct_data-ta_guid       = '000000000000000001'.
        ct_data-equipment_ext = wa_itab-equipment_ext.
        ct_data-descript      = wa_itab-descript     .
        ct_data-valid_date    = sy-datum.
        ct_data-equicatgry    = 'M'.
        APPEND ct_data.
        CLEAR  ct_data.
        ct_datax-ta_guid       = '000000000000000001'.
        ct_datax-equipment_ext = 'X'.
        ct_datax-equipment     = 'X'.
        APPEND ct_datax.
        CLEAR  ct_datax.
        it_descript-ta_guid       = '000000000000000001'.
        it_descript-text_language = wa_itab-text_language.
        it_descript-descript      = wa_itab-sdescript    .
        APPEND it_descript.
        CLEAR  it_descript.
        it_longtext-ta_guid        = '000000000000000001'.
        it_longtext-text_language  = wa_itab-text_language.
        it_longtext-text_id        = 'LTXT'.
        it_longtext-text_line      = 'SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS'.
        APPEND it_longtext.
        CLEAR  it_longtext.
        it_longtext-ta_guid        = '000000000000000001'.
        it_longtext-text_language  = wa_itab-text_language.
        it_longtext-text_id        = 'INTV'.
        it_longtext-text_line      = 'aaaaaaaaaaaaaaa'.
        APPEND it_longtext.
        CLEAR  it_longtext.
        it_longtext-ta_guid        = '000000000000000001'.
        it_longtext-text_language  = wa_itab-text_language.
        it_longtext-text_id        = 'INTV'.
        it_longtext-text_line      = 'bbbbbbbbbbbb'.
        APPEND it_longtext.
        CLEAR  it_longtext.
        it_longtext-ta_guid        = '000000000000000001'.
        it_longtext-text_language  = wa_itab-text_language.
        it_longtext-text_id        = 'INTV'.
        it_longtext-text_line      = 'cccccccccccccccc'.
        APPEND it_longtext.
        CLEAR  it_longtext.
        CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.
      call BAPI-function in this system
        CALL FUNCTION 'BAPI_EQUIPMENT_SAVEREPLICA'
          TABLES
            ct_data     = ct_data
            ct_datax    = ct_datax
            it_descript = it_descript
            it_longtext = it_longtext
            return      = return
          EXCEPTIONS
            OTHERS      = 1.
        IF sy-subrc = 0.
          CALL FUNCTION 'BAPI_TRANSACTION_ROLLBACK'.
          WRITE : 'Successful'.
        ENDIF.
        IF NOT return IS INITIAL.
          LOOP AT return.
            IF return-type = 'A' OR return-type = 'E'.
              WRITE : 'Error'.
            ENDIF.
          ENDLOOP.
        ENDIF.
        REFRESH  return.
      ENDLOOP.
    Regards
    SUrendar

  • Uploading multiple lines in a table control using ECATT

    Hi,
    I want to upload muliple lines in a table control using ECATT. When I tried to upload only the first line is getting filled.What I have to do for that. Please reply at the earliest.
    With warm regards,
    Biju K.George

    Hello ,
    To insert multiple lines into the table you have to record the transaction for one entry and loop the same step multiple times to create multiple entries in the table.
    Thanks,
    Ajay

  • What is the standard program for Material Master upload using LSMW

    Dear All
    I am trying to use the MM upload using DATMIG_INF4. I want to know what are the different standard projects that are used for Material master upload.

    Hi Amol,
    You can load the material master using direct input method  in LSMW ,details of which are as follows:
    Object               0020   Material master
    Method               0000                 
    Program name         RMDATIND             
    Program type         D   Direct input    
    Please revert back in case of any doubt.
    Cheers
    VJ

  • Using RFBIDE00 for customer master upload

    Hi all,
       Does any one used batch input program RFBIDE00 for Customer master  Upload data in to SAP.
       Could you please explain how to use it...  its urgent, appreciare if your early reply..
       I am planing to use it through Run the program from SE38..
    Thanks..

    hi good sap1,
    Batch Input - Customer Master Data (RFBIDE00)
    Description
    All new fields for customer master records can be transferred to the R/3 System also with the report RFBIDE00.
    Furthermore, the batch input can be carried out with the existing record definitions. By means of the end of record marker, the report recognizes which record structures do not yet correspond to the extended record layout and initializes the new fields with NODATA.
    It is pointed out in the batch log, which structures are yet to be maintained. This should be done as soon as possible to be able to use the new functions or fields
    Introduction
    It is now possible to pass the information concerning tax categories and withholding types (for the extended withholding functionality) and the special Argentine fields via the standard batch-input program. Please look at the standard documentation if you need further information on the program.
    Additional Fields
    The additional fields have been added to the structures BKNA1 (general information) and BKNB1 (company code data). Please use transaction SE12 to see the fields of the structures.
    Enrichments for Tax Categories
    The following table shows how to fill the interface table BKNAT to pass the tax category data:
    Field
    Description
    Value
    Input
    STYPE
    Record type
    2
    obligatory
    TBNAM
    Table name
    KNAT
    obligatory
    XDELE
    Flag: Delete entry
       optional
    TAXGR
    Tax category
       obligatory
    Enrichments for Extended Withholding Data
    The following description shows how to fill the interface table BKNBW to pass the tax category data:
    Field
    Description
    Value
    Input
    STYPE
    Record type
    2
    obligatory
    TBNAM
    Table name
    KNBW
    obligatory
    XDELE
    Flag: Delete entry
       optional
    WITHT
    Withholding type
       obligatory
    thanks
    karthik
    reward me points if usefull

  • Upload using eCATT to change fax number for all existing Vendors

    Dear All,
    Using eCATT upload, i need to change the Fax number format for all existing vendors. How to do this?
    I havent used eCATT before, please guide me in this regard
    Thanks
    RS
    Edited by: Ramapuram Saravanan on Feb 8, 2009 6:13 AM

    Hi Luis,
    Use tcode XK99 for vendor mass change, select the Fax no field. You have to take note that this changes will be only 1 fax number for all vendors.
    Else you have to use BAPI for mass change.
    regards,
    maia

  • Is there a FM to create GL account master data ?

    Instead of the BI based report RFBISA00 I would prefere to use a FM or BAPI.
    Does anybody know such a FM?
    Thank in advance

    hi Oleg / expert
    I tried to use FM GL_ACCT_MASTER_SAVE to do g/l account master mass upload, but error messag return:
    Type :E ID:FH Number 502 "Internal error: Import of table SKA1 not possible". Is there any step I miss ?
    SAP: ECC6.0
    GUI: 710 Patch Level 0
    Here is my program coding:
    loop at t_importlist into wa_importlist.
        doc_account_coa-keyy-ktopl    =  wa_importlist-ktopl.
        doc_account_coa-keyy-saknr    =  wa_importlist-saknr.
        doc_account_coa-data-ktoks    =  wa_importlist-ktoks.
        doc_account_coa-data-xbilk    =  wa_importlist-xbilk.
        doc_account_coa-action        =  'I'.
        append doc_account_coa.
        clear doc_account_coa.
        doc_account_names-keyy-ktopl  =  wa_importlist-ktopl.
        doc_account_names-keyy-saknr  =  wa_importlist-saknr.
        doc_account_names-keyy-spras  =  'E'.
        doc_account_names-data-txt20  =  wa_importlist-txt20_en.
        doc_account_names-data-txt50  =  wa_importlist-txt50_en.
        doc_account_names-action      =  'I'.
        append doc_account_names.
        clear doc_account_names.
        call function 'GL_ACCT_MASTER_SAVE'
          TABLES
            account_names  = doc_account_names
           account_ccodes = doc_account_ccodes*
            return         = doc_return
          CHANGING
            account_coa    = doc_account_coa.
        read table doc_return with key type = 'E'.
        if sy-subrc = 0.
          loop at doc_return where type = 'E'.
          endloop.
        else.
          call function 'BAPI_TRANSACTION_COMMIT'
            EXPORTING
              wait = 'X'.
          read table doc_return with key type = 'S'.
        endif.
      endloop.
    Thanks

  • GL Account Should not be used

    Dear Friends,
    For PO-4111127913, GL account 726234 was used in the PO - item details, invoice tab.
    The user now says that the GL Account should not be used untill 2010.
    What is the most simple way of blocking the GL? If any user tried to select the GL in the PO, he must not able to use it or the system should issue a warning or error message  " you cannot use this GL Account".
    Already Some POs with this GL Account 726234 has been posted. IR and FI Documents were posted. How to reverse everything from po,IR and FI Documents.
    Please suggest?
    Regards
    Sridhar
    Edited by: Sridhar M on Dec 8, 2009 1:24 AM
    Edited by: Sridhar M on Dec 8, 2009 1:25 AM

    Hi,
    Blocking an account is usually done for closing and reconciliation purposes so that no further activity can be posted to that account. The account can be unblocked when activity can resume.
    Menu Path
    From the SAP R/3 screen, select the path:
    Accounting >> Financial accounting >> General ledger >>
    (new menu) Master records >> G/L Accounts >> Individual Processing >> Centrally
    Fast Path
    At the Command Line, enter:
    /NFS00
    Block G/L Acct: Request Screen
    Key Fields (Complete or Review)
    Account number
    Enter the G/L account number to be blocked / unblocked.
    (F4) to access a matchcode.
    Company code
    Enter CUR for MIT.
    Next Step...
    (ENTER) to access the Block G/L Account Screen.
    Block G/L Account Screen
    Use this screen to block / unblock the account for different postings.
    Key Fields (Complete or Review)
    Posting block
    All company codes
    To block the account from being posted to CUR, the MIT company code, click in the box beside this field.
    Planning block
    All company codes
    To block the account from planning, click in the box beside this field. Note: To unblock the account, click in the box to deselect.
    Next Step...
    (F11) to save the blocking / unblocking changes made to the G/L account. The Block G/L Acct: Request Screen reappears with a message that the changes were made.
    Thanks,
    Rajesh.

  • Material master upload -lsmw

    Hai guys,
               I want to upload material using lsmw for material master.i am following all the steps in the lsmw. i am using the batch input method for uploading.If the sales unit is different from the unit of measure..i will be getting the conversions data like numerator and denominator fields.
    i am getting the same fields if the issue unit is also different.so i couldnt able to map it correctly with the conversion fields..this repeating fields are not captured in the recording for the target fields.
    so i couldnt able to map it.please help me to solve this problem..
    with regards,
    sathish..

    Hi,
    Please close this duplicate thread..
    Thanks,
    Naren

  • Clearing to Special Ledger Field in GL Account Master

    What are the implications of checking off this field in the account master data setup?  We are using parallel ledgers in our current implementation so this is something we need to understand when building the chart of accounts.

    Hi
    Go to transaction code - MASS and select the Object type like GL A/c's.  Select SKAT (Chart of Accounts: Description and enter the standard fields and select the "Choose Selection fields".  Here u will get the GL Master data fields and upload the data.
    Regards
    Shammi

  • Steps in ECATT

    HI,
    I am totally new to the eCATT field.
    My main concern is to upload data from external file. How do I do that? If i receive the feedback by steps how to upload, it will be really great. And also like to know the below:
    1. What are the advantages in eCATT compared to CATT?
    2. I got an error while executing test data. (SV900 this entry already exist - How can I resolve this error). I couldn't process further as I don't have an idea what to do?
    Thanks in advance for any help provided.
    Karthick

    Hello Karthick,
    1. Uploading data from external file -
    1a. For uploading data, for Web AS 6.20, recommended way is to use SCAT transaction.
    1b. You can also record the required transaction using SECATT for which data will be uploaded. And then load this data from external file to the variants. Execute this automated script for all those variants.
    2. Advantages in eCATT compared to CATT -
    2a. eCATT is enhanced successor of CATT available from Web AS 6.20 & more.
    2b. CATT won't be no longer supported by SAP so one is forced to use eCATT.
    2c - eCATT is purely functional tool. Very easy to use. No programming knowledge is mandatory for using eCATT.
    -CATT involves more of programming knowledge.
    3. The error you are getting is due to repeatability of data while execution. The transaction needs unique data for every run it seems. Correct the data and try to execute again. You can try with different sets of data for different behavior of transactions. Analysis can be done from the eCATT log. This will help in understanding of input data to be given to the automated script.
    PS If the answer helps you, do reward points to everyone responding.
    Regards

  • Is there a SAP standard way of dl/up G/L accounts master data?

    I was asked to create a download program to get the G/L account master data from one server and create an upload program to automatically create the G/L accounts.
    Download: Access SKAT, SKA1, SKB1 -> save to spreadsheet
    Upload: Batch input or maybe read up on how to do it using LSMW.
    Halfway in making my the program, it occured to me that maybe SAP has a standard way of doing this?
    Tried to search for it. Found FS15/FS16.
    Would these do it? How do they work?
    *Both source and target systems are running SAP 4.7

    <b>NO!</b> fs15-16 is for two servers
    1)fill field filename in fs15
    example '<b>0001</b>'
    2) transfer file per ftp
    from /sapmnt/XXX/global/FBIS<b>0001</b>
    to oth. server same directory and filename
    with XXX = sy-sysid
    3)and use the same file in fs16 <b>0001</b>
    Message was edited by: Andreas Mann
    Message was edited by: Andreas Mann

  • Steps for eCATT

    Hi gurus,
    We have a requirement to upload data using CATT in 4.7c version. I have never used this technique of data upload. I also want to know about the difference between CATT and eCATT. Plz send me the detail steps with screen-shots if possible.
    Plz help me....

    Chk thes links.
    /people/sapna.modi/blog/2006/04/24/ecatt-tips-of-recording-testing-links-part-viii
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/CATS/CATS.pdf
    Computer-Aided Test  Tool (CATT), which is freely available within your SAP landscape, to automate your testing activities and save your project team considerable time.
    you can leverage CATT to test end-to-end processes like order-tocash or purchase-to-pay.
    Extended CATT (eCATT), a functional testing tool that resides in SAP Web Application Server.
    Step through examples of how eCATT can be used to test data across multiple systems.
    You can integrate eCATT into SAP Solution Manager to manage your test cases from a central place.

Maybe you are looking for

  • How to have 2 different ipods on one itunes..

    For the longest time i've been the only one with an ipod in my family, so I just imported through my main music library. Now my sister has an ipod, and I need to know how to make it so we can have seperate song folders that won't sinc eachothers musi

  • Attachment Handling

    Hi, While displaying attachment from Monitor Shopping cart, an empty page "ABOUT BLANK" opens. I have seen that the docserver is activated in transaction SICF. Just another, If I execute the report RSBBPKWCC I an able to view thw attached documents t

  • Best workflow for round trip editing?

    I understand that iPhoto does not support (yet) round trip editing, i.e. a RAW file can be sent from within iPhoto to an external editor but the resulting edited file cannot be saved back directly into iPhoto but has to be temporarily stored somewher

  • Equivalent of Hierarchy SQL in Oracle

    Hi All, We have some performance issues with 'CONNECT BY PRIOR' SQL statement and trying to find an alternate SQL which gives the same output. Example: ENum Mgr Julie Andrew Julie Mark Andrew Matt Andrew Wyatt Julie Jenny Wyatt SELECT enum, mgr FROM

  • Storage system - DMS

    hi, My client has his document data on some system on a network drive. How can i add this location as one of my the storage systems for the document/s i create. Pls somebody suggest! Thanks in advance