Tables in ECC/BW

Hi
I need to know how many tables are included in a standard ECC installation and also a BW system. What I mean is that ECC and BW will has no add on or extra functionallity. Ragards. Oliver Arevalo

Hi Sat
thanks for your answer.
Sorry if I insist; but i need an estimation of the numbre of tables that usually; any ECC system has at the end of an installation
I hope you can help me
Regards
Oliver

Similar Messages

  • How to update a Z-table in ECC for the data coming from CRM

    Hi Experts,
    I need to store the industry code and description from customer master from CRM into a Z-table in ECC.I have checked the BDOC segments is already there in CRM.This Z-table has to be updated each time when the user save the customer master.This Z-table will be non editable in ECC.
    Thanks in advance.
    Regards,
    Sumit

    Hello,
    Do you synchronize CRM business partner with ECC business partner?
    Because in standard industry code & description are replicated between both objects... so I don't really understand what you try to do.
    Anyway, if you would like to save some information in a Z table each time a business partner gets replicated into ECC, you can register a function module in table COM_BUPA_CALL_FU on ECC to do the job.
    Kind regards,
    Nicolas Busson.

  • Code To Update the Table in ECC from Webdynpro

    Hi All,
    I want to know, the table is dispalyed in the webdynpro browser when we calls the Adaptive RFC Model.
    after i want to add one more row in the webdynpro and just clicking on add button the row will be updated in the ECC server(backend) for that how can i write the coding,  regarding this issue can you please help me.
    ThanX All,

    Hi Sriram,
              Assuming you have a table filled with records by adding one by one, If you want to update a table in SAP ECC, follow these steps..   i think already you are triggering the action for the button in view(for table updation) to method in controller or created a custom controller and mapped the model node.
    1.  Initialize the main model node and bind the model node with the intialised object like
         Zbapi_MainModelNode_Input input = new Zbapi_MainModelNode_Input();
                           wdContext.nodeZbapi_MainModelNode_Input ().bind(input);     
    2.  Now loop the table node and set the values with corresponding class in the generated model (from webdynpro explorer) and initialize like
            IPrivateControllerName.ITableElement myTab = null;     
           for ( int i = 0; i < wdContext.nodeTable().size();i++)
                         myTab = this.wdContext.nodeTable().getTableElementAt(i);
         Bapi_structname name = new Bapi_structname();     
                        name.setFieldName1(myTab.getFieldName1);
                        name.setFieldName2(myTab.getFieldName2);
                        input.addT_Bapi_(name);
    Finally execute the BAPI..
       wdContext.currentZbapi_MainModelNode_Input tElement().modelObject().execute();
    Hope this solves your issue - Update the Table in ECC from Webdynpro.
    Regards,
    Manjunath
    Edited by: Manjunath Subramani on Nov 20, 2009 4:26 PM
    Edited by: Manjunath Subramani on Nov 20, 2009 4:27 PM

  • Replacement tables in ECC 6.0

    Hi All,
    What are the replacement tables in ECC 6.0 for the following 4.6 c tables.
    ADRCMAT
    ADRCMX
    ADRCWO
    AUCTIONBIDDER
    AUCTIONBIDDERDET
    AUCTIONCATEGORY
    AUCTIONCATEMAP
    AUCTIONITEMS
    AUCTIONITEMSMAP
    AUCTIONITEMSMAPO
    AUCTIONITEMSOLD
    AUCTIONPAYMENT
    BC430PERS
    BDNODE
    BKORA
    BPOBREL_LO
    CCCEXITCHK
    CCCFINI
    CCCHECK
    CCOBJS
    CCRFCTABS
    CCSTAT
    CSDIALOG
    CSDIALOGS
    CSDIALOGT
    CSDLGITM
    CSDLGITMCP
    CSDLGITMT
    CSDLGSCR
    CSDLGSCRCP
    CSDLGSCRT
    CSMBK_QUA
    CSOBJECT
    CSOBJECTCP
    CSOBJECTT
    CTRLCOMP
    Regards,
    Sudheer.

    Hi
    FAGLFLEXT and FAGLFLEXA are the two important tables updated for New GL functionality in ECC 6.0.
    Hope this might be of some help to you.
    Good Luck
    Hari

  • How to replicate a customized condition table from ECC to CRM

    Dear All,
    We have created a new condition table in ECC, using a new set of key fields to define sales district specific product price. This table is in ECC only and we would like to replicate it to CRM. Could you please let me know how we can do that? What replication object should we use?
    Thanks in advance!
    Erinn

    Hi,
    Use DNL_CUST_CNDALL, this would create the database table in CRM. Also you might need to run other loads corresponding to your scenario like DNL_CUST_CND_PR, DNL_CUST_PRC  etc
    Regards
    Prasenjit

  • Reg: Parameter Value in CRMPAROLTP table in ECC 6.0

    Hi,
    While trying to build a middle ware for CRM 5.0 and ECC 6.0 we came across CRMPAROLTP table in ECC 6.0. In this we need to maintain Parameter Name and Parmaeter value. If the Parameter name is CRM_RELEASE wht will be the parameter value for CRM Version 5.0?
    Regards

    Hi Veerendra,
    Parameter value is 500.
    Regards
    Nadh.

  • Different Chnage management Tables in ECC and relation

    Dear BW/ECC experts..
    I wish to find out if you have any document or link to read on the change management tables in ECC in relation to BW.
    Like JEST/JCDS tables gives Changes to USER/SYSTEM status change....
    JEST
    JCDS
    CDHDR
    CDPOS
    AENR
    AEOI
    I know this may not be directly relavant for BI/BW but some of you might have already gone thru this process.
    Thank you in advance.

    Hi,,,,,,, you Can refer the below links
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/f0002c1c-f07c-2c10-3c93-b053715529b4?quicklink=index&overridelayout=true
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/00f47333-a50e-2e10-a7bf-d0ab463da382?quicklink=index&overridelayout=true

  • Read Tables from ECC without BAPI

    Hi All,
    I have a requirement that I want to read the table in ECC from CRM without making use of BAPI FM's. Is it possible?
    Thanks
    Srinivas.k

    Hi Srinivas,
    Sounds Crazy a bit, but you can use RFC_READ_TABLE FM to meet the requirement.
    Options: you give the WHERE conditions
    Fields: you give the selectable fields
    Rest all parameters are self explanatory in that.
    Hope it helps.
    Regards
    Sidd

  • Replication Z-Tables from ECC to CRM

    We have a client with some Z-Tables in ECC and we need to replicate this tables in CRM,  anybody have any information about this.
    Thanks in advanced
    Sebas

    Hi Sebas,
    The following link shows the replication from CRM to ECC. The same can be followed for replication from ECC to CRM.
    Replication of Z table from CRM to R/3 - No mBDoc Created
    You can also try this
    1. Create the Ztables both in ECC and CRM
    2. create customizing adapter objects in R3AC3.
    3. copy the stanadard FM 'CRM_BUPA_MAP_ADREREG_CI' to custom FM and write source code. load object in R3AS.
    4. create a variant and shedule the based on requirement
    Thanks and regards,
    Madhukar Reddy

  • How to update the Z table in ECC using CRM standard fields

    Hi Experts,
    I need to store the industry code from customer master from CRM into a Z-table in ECC.I have checked the BDOC segments is already there in CRM.This Z-table has to be updated each time when the user save the customer master.This Z-table will be non editable in ECC.
    Thanks in advance.
    Regards,
    Sumit
    Edited by: Schourasia on Oct 21, 2009 6:55 PM

    Hello,
    Do you synchronize CRM business partner with ECC business partner?
    Because in standard industry code & description are replicated between both objects... so I don't really understand what you try to do.
    Anyway, if you would like to save some information in a Z table each time a business partner gets replicated into ECC, you can register a function module in table COM_BUPA_CALL_FU on ECC to do the job.
    Kind regards,
    Nicolas Busson.

  • List of tables in ECC 6.0

    Can anyone guide me for the procedure to extract the list of all tables (PP,MM,FICO &SD) from ECC 6.0 to excel or provide the link for the same.
    Thanks
    Edited by: sapsarang on Jun 24, 2009 12:33 PM

    Hi,
    You can use table DD02VV, in this table all the table names are stored.
    Regards,
    prabu

  • Regarding the SAP big tables in ECC 6.0

    Hi,
    We are having SAP ECC 6.0 running on Oracle 10.2g database. Please can anyone of you give fine details on the big tables as below. What are they? Where are they being used? Do they need to be so big? Can we clean them up?
    Table          Size
    TST03          220 GB
    COEP          125 GB
    SOFFCONT1      92 GB
    GLPCA          31 GB
    EDI40          18GB
    Thanks,
    Narendra

    Hello Narendra,
    TST03 merits special attention, certainly if it is the largest table in your database. TST03 contains the contents of spool requests and it often happens that at some time in the past there was a huge number of spool data in the system causing TST03 to inflate enormously. Even if this spool data was cleaned up later Oracle will not shrink the table automatically. It is perfectly possible that you have a 220 GB table containing virtually nothing.
    There are a lot of fancy scripts and procedures around to find out how much data is actually in the table, but personally I often use a quick-and-dirty check based on the current statistics.
    sqlplus /
    select (num_rows * avg_row_len)/(1024*1024) "MB IN USE" from dba_tables where table_name = 'TST03';
    This will produce a (rough) estimate of the amount of space actually taken up by rows in the table. If this is very far below 220 GB then the table is overinflated and you do best to reorganize it online with BRSPACE.
    As to the other tables: there are procedures for prevention, archiving and/or deletion for all of them. The best advice was given in an earlier response to your post, namely to use the SAP Database Management Guide.
    Regards,
    Mark

  • List of Obsolete Tables in ECC 6.0 - Very Urgent

    We are planning to upgrade from 4.6c to ECC 6.0. Heard that there are many standard objects obsolete in ECC 6.0. Can anyone give me the List of Obsolete Tables and also the standard objects in ECC 6.0 with their updated tables and obejcts. This is required very urgently.

    Dear,
    You may have an overview wirth Solution Browser  tool (at the solution point of view) in order to compare functionality between your current system and the ERP 2005.
    at:
    http://solutionbrowser.erp.sap.fmpmedia.com/
    You can get the detailed release information from the following link.  
    http://service.sap.com/releasenotes.             
    A release note is a brief explanation of new features or changes to the system since the last software release. A release note typically describes a new function or an existing function that has been enhanced or changed.
    I hope this helps.
    Lucio Rodrigues
    SAP Active Global Support

  • How to convert Tables in ECC to Tables in 4.6C

    Friends,
       I have a unique requirement where I need to copy the smartform from ECC to 4.6C. Everything seems to beokay except filling the table. I have a table in Main window with 2 line types. first one has only one cell (header) and 2nd one has 3 cells with item data. for each of the cell I have some abap code ( program lines node) and one text element. so when I write define them I see all of them under Table node in a messy format. even I am not able to see which program line code is related to which text element and CELL.
       Can anyone advice me how to define in order to place the data in relevent cells ?
    Thank you so much for your time in going thru this.
    Cheers
    Reddy

    Hi Reddy,
    No problem, these setting can be a bit tricky.
    For your text elements, the first element in the row you need to check the 'New line' box and specify your line type, this will put the text in the first cell of that line.  For each other element in the row only check 'new cell', this will put each element into a new cell working across the row.  The 'Skip cells' field should only be filled if you want to leave a cell in the row blank and fill the next one.
    Regards,
    Nick

  • Adding Business Area to S928 Table on ECC

    Hi,
    I have a requirement where i have to add the field Business Area (GSBER) to the standard ECC table S928 and populate it for every sales document. I know how to add it but dont know how to populate the field, can someone guide me through the process of how to go about this
    Thanks
    Rashmi.

    Hi,
    you said that you know how to add the field. Now, After the field GSBER (Data Element GSBER) is added in extractor, goto CMOD and copy the below code. GSBER data, for given VBLNR which is coming from Extractor along with MATNR, will be maintained VBAP table. Hence here is your full code.
    *&  Include           ZXRSAU01
    CASE i_datasource.
      WHEN <Data Source Name>.
    Local Types
        TYPES : BEGIN OF lty_vbap,
                 vbeln TYPE vbeln_va,
                 matnr TYPE matnr,
                 gsber TYPE gsber,
                END OF lty_vbap.
    Local Internal Table
        DATA : lit_vbap TYPE TABLE OF lty_vbap,
               lit_dp   TYPE TABLE OF <Extractor Name>.
    Local Field symbols
        FIELD-SYMBOLS : <lfs_dp>   TYPE <Extractor Name>,
                        <lfs_vbap> TYPE lty_vbap.
        CHECK c_t_data[] IS NOT INITIAL.
        lit_dp[] = c_t_data[].
        SELECT vbeln
               matnr
               gsber
          INTO TABLE lit_vbap
          FROM vbap
           FOR ALL ENTRIES IN lit_dp
         WHERE vbeln = lit_dp-vbeln AND
               matnr = lit_dp-matnr.
        IF sy-subrc = 0.
          SORT lit_vbap BY vbeln matnr.
          LOOP AT lit_dp ASSIGNING <lfs_dp>
                             WHERE vbeln IS NOT INITIAL.
            READ TABLE lit_vbap ASSIGNING <lfs_vbap>
            WITH KEY vbeln = <lfs_dp>-vbeln
                     matnr = <lfs_dp>-matnr
            BINARY SEARCH.
            IF sy-subrc = 0.
              <lfs_dp>-gsber = <lfs_vbap>-gsber.
            ENDIF.
          ENDLOOP.
        ENDIF.
        REFRESH : c_t_data[].
        c_t_data[] = lit_dp[].
        REFRESH : lit_dp[].
      WHEN OTHERS.
    Do Nothing
    ENDCASE.
    Thanks,
    Saru

Maybe you are looking for

  • ITunes Match step 3 freezing!!!

    Every time I get to the third step of iTunes match it freezes on the first upload. It does not give me any error messages but simply says waiting. What is wrong? I have waited for hours and nothing has happened.

  • Total Newb Deep in the Water.. please help ah friend Out!!

    greetings everyone, i am jumping ship from a windows 2003 server and going to apple. This is the configuration i am going to have to set up... Fiber Switch connecting an xserve,metadata controller,and another x server for a backup metadata controller

  • Leopard and 1. Ghz G5?

    Here are the specs on my G5: Machine Name: Power Mac G5 Machine Model: PowerMac9,1 CPU Type: PowerPC G5 (3.0) Number Of CPUs: 1 CPU Speed: 1.8 GHz L2 Cache (per CPU): 512 KB Memory: 2.25 GB Bus Speed: 600 MHz Boot ROM Version: 5.2.2f1 Can I install L

  • Chirping noises

    Hey everyone, So here's another problem that's related to the fan. The fan is emitting this high pitch noise, a noise that birds or mice would make. I think the bearings in the fan are going. I know this because I opened up my Mini, pulled out the fa

  • Why doesn't iPhoto 08 back up photo book?

    When I go to Share>Burn to burn a folder that has an album, slideshow, and photo book, the photo book does not get backed up. In previous iPhoto 06 version, it was possible to burn the photo book. Any ideas? Thanks