Obsolete Tables in SAP ECC 6.0

Dear All,
Please let me know the ways to find out obsolete Tables in ECC 6.0 Version.
I checked for the details in table RODIR providing the Object type and Obsolete field to 'X', but RODIR table provides me only Function module (Object type 'FUNC') Information.
Kindly input your valuable suggestions.
Thanks
Senthilkumar L

Hi,
The obsolete objects(Function Modules & Tables) can be traced by using the table RODIR in which the Object Type should be selected and Obsolete feild as 'X'.
Regards,
Madhu

Similar Messages

  • Extracting Values of a Field from a Database Table in SAP ECC System

    Hi,
    I downloaded Extracting Values of a Field from a Database Table in SAP ECC System Using MII 12.0
    senario from sdn. I'm trying to do that senario in MII 12.05. But I have problem with section 6 in page 7 (you can supply senario from sdn)
    "6- Under the loop of Repeater, use action u2018Rowu2019 to append just the string part of the WA which will display only values for field u2018Batchu2019"
    I did not find WA elemen in Output element of Repeater_0
    How can I create WA element?
    Thanks.

    Cemil,
    Set up a SAP JCo Interface action block.  Use the RFC name RFC_READ_TABLE.
    In the link editor map the table to "MARA", set RowCount to something small (20 is good sample size) and create an xml transaction property named FIELDS and copy the following into it:
    <?xml version="1.0" encoding="UTF-8"?><FIELDS>
          <item>
            <FIELDNAME>MATNR</FIELDNAME>
            <OFFSET/>
            <LENGTH/>
            <TYPE/>
            <FIELDTEXT/>
          </item>
          <item>
            <FIELDNAME>MTART</FIELDNAME>
            <OFFSET/>
            <LENGTH/>
            <TYPE/>
            <FIELDTEXT/>
          </item>
          <item>
            <FIELDNAME>BSTME</FIELDNAME>
            <OFFSET/>
            <LENGTH/>
            <TYPE/>
            <FIELDTEXT/>
          </item>
          <item>
            <FIELDNAME>XCHPF</FIELDNAME>
            <OFFSET/>
            <LENGTH/>
            <TYPE/>
            <FIELDTEXT/>
          </item>
          <item>
            <FIELDNAME>DATAB</FIELDNAME>
            <OFFSET/>
            <LENGTH/>
            <TYPE/>
            <FIELDTEXT/>
          </item>
        </FIELDS>
    Then link the Transaction.FIELDS to SAP_JCo_Interface_0.Request{/RFC_READ_TABLE/TABLES/FIELDS}.  You may run into problems with two other fields and optionally they can be removed (set link type to remove xml).  I usually remove them initially for testing.  The two fields are:
    SAP_JCo_Interface_0.Request{/RFC_READ_TABLE/INPUT/NO_DATA}
    SAP_JCo_Interface_0.Request{/RFC_READ_TABLE/INPUT/DELIMITER} (or you can set this to something like a semicolon,";" or tilda,"~".  I find it easier to caclulate position by length, but that is my own idiosyncrasy.)
    Once you get this one working, we can explore how to do filtering on the dataset.  Your output should be something like this:
    <?xml version="1.0" encoding="utf-8"?>
    <RFC_READ_TABLE>
      <INPUT>
        <DELIMITER />
        <NO_DATA />
        <QUERY_TABLE>MARA</QUERY_TABLE>
        <ROWCOUNT>20</ROWCOUNT>
        <ROWSKIPS>0</ROWSKIPS>
      </INPUT>
      <TABLES>
        <DATA>
          <item>
            <WA>000000000000000023ROH 00000000</WA>
          </item>
          <item>
            <WA>000000000000000038HALB 00000000</WA>
          </item>
          <item>
            <WA>000000000000000043HAWA 00000000</WA>
          </item>
          <item>
            <WA>000000000000000058HIBE 00000000</WA>
          </item>
          <item>
            <WA>000000000000000059HIBE 00000000</WA>
          </item>
          <item>
            <WA>000000000000000068FHMI 00000000</WA>
          </item>
          <item>
            <WA>000000000000000078DIEN 00000000</WA>
          </item>
          <item>
            <WA>000000000000000088FERT 00000000</WA>
          </item>
          <item>
            <WA>000000000000000089FERT 00000000</WA>
          </item>
          <item>
            <WA>000000000000000098HALB 00000000</WA>
          </item>
          <item>
            <WA>000000000000000170NLAG 00000000</WA>
          </item>
          <item>
            <WA>000000000000000178NLAG 00000000</WA>
          </item>
          <item>
            <WA>000000000000000188NLAG 00000000</WA>
          </item>
          <item>
            <WA>000000000000000288HALB 00000000</WA>
          </item>
          <item>
            <WA>000000000000000358HAWA 00000000</WA>
          </item>
          <item>
            <WA>000000000000000359HAWA 00000000</WA>
          </item>
          <item>
            <WA>000000000000000521HAWA 00000000</WA>
          </item>
          <item>
            <WA>000000000000000578FERT 00000000</WA>
          </item>
          <item>
            <WA>000000000000000597HAWA 00000000</WA>
          </item>
          <item>
            <WA>000000000000000598VERP 00000000</WA>
          </item>
        </DATA>
        <FIELDS>
          <item>
            <FIELDNAME>MATNR</FIELDNAME>
            <OFFSET>000000</OFFSET>
            <LENGTH>000018</LENGTH>
            <TYPE>C</TYPE>
            <FIELDTEXT>Material Number</FIELDTEXT>
          </item>
          <item>
            <FIELDNAME>MTART</FIELDNAME>
            <OFFSET>000018</OFFSET>
            <LENGTH>000004</LENGTH>
            <TYPE>C</TYPE>
            <FIELDTEXT>Material Type</FIELDTEXT>
          </item>
          <item>
            <FIELDNAME>BSTME</FIELDNAME>
            <OFFSET>000022</OFFSET>
            <LENGTH>000003</LENGTH>
            <TYPE>C</TYPE>
            <FIELDTEXT>Purchase Order Unit of Measure</FIELDTEXT>
          </item>
          <item>
            <FIELDNAME>XCHPF</FIELDNAME>
            <OFFSET>000025</OFFSET>
            <LENGTH>000001</LENGTH>
            <TYPE>C</TYPE>
            <FIELDTEXT>Batch management requirement indicator</FIELDTEXT>
          </item>
          <item>
            <FIELDNAME>DATAB</FIELDNAME>
            <OFFSET>000026</OFFSET>
            <LENGTH>000008</LENGTH>
            <TYPE>D</TYPE>
            <FIELDTEXT>Valid-From Date</FIELDTEXT>
          </item>
        </FIELDS>
        <OPTIONS />
      </TABLES>
    </RFC_READ_TABLE>
    Add a repeater sourced on:
    SAP_JCo_Interface_0.Response{/RFC_READ_TABLE/TABLES/DATA/item}
    Link your repeater output to a tracer with this:
    Repeater_0.Output{/item/WA}
    What you will see in each tracer message is a single line of data with all the fields contents concatenated together.  You can look up what each field in the string represents by the length of the field as returned in the Response segment of the RFC_READ_TABLE rfc.  Then you can parse out the data you are interested in.
    Give this a try and let me know how you succeeded.
    By the way, I could not find the scenario you referred to.  Can you post a link?
    Regards,
    Mike
    Edited by: Michael Appleby on Jan 12, 2009 5:16 PM

  • Syncing UST10S and UST12 tables in SAP ECC 6.0

    Hi there,
    I am currently experiencing some discrepancies between the UST10S table containing authorizations assigned to profiles to the table UST12.
    I have heard that UST tables in SAP have been known to get out of sync and become inaccurate, and there is a way to sync them to the USR tables. Is there such a method for ECC 6.0?

    Start transaction SUIM_OLD. Wait about 5 to 60 seconds.Then the tables are synced. Then you can use SUIM.
    Inconsistencies should however seldom occur anymore.
    Cheers,
    Julius

  • Mapping a BW query to a Z table in SAP ECC

    Hi BW Gurus,
    I have requirement as below and i have a solution but i want to know other alternatives for the same.. so please let me know the alternatives.
    A BI query would be created from an existing APO BI cube.
    A Z program would be created in SAP
    A Z table would be created in SAP.
    The Z program would map the fields in BI cube vis-a-hopthe fields in Z table.
    The Z program would execute the BI query through an RFC connection, pull the data and store the data in the Z table using the mapping done previously.
    This execution would be an adhoc one - not a periodical job.
    Though I have specified about executing the query through RFC option, we are open to any possible suggestion. All we need is to bring the data in the APO BI cube to the SAP Z table.
    Please let me know for any other possible alternatives.
    Thanks,
    Shailaja

    Hi Shailaja
    Just a thought on this issue..Its quite simple no need to write huge lines of ABAP program.
    Step 1:You can create an APD in RSANWB take the query as input and target as Direct access DSO for it and in the mapping take the fields & filter the fields through filter option in APD which ever you required /recomended in your R/3 table.
    Step 2: Create an OHB(openhub/infospoke) which will transfer this data to your R/3 table.
    Step3: all the step 1 & step 2 process together place it in a process chain. And in start process add Even as triggering media.
    Step4: trigger the cross system event through "BP_RAISE_EVENT" FM which means develop a program in such way that the moment when the user trigger the program in R/3  it will automatically trigger the event in BW system and perform the step1 & step 2.
    Challenges in this are 1)if you need delta data then you have to implement badi in info spoke level.
    In your case this challenge is not necessary as you specified itz an adhoc run..
    Hope its clear a little..!
    Thanks
    K M R
    "Impossible Means I M Possible"
    Winners Don't Do Different things,They Do things Differently...!.
    >
    Shailaja Badda wrote:
    > Hi BW Gurus,
    > I have requirement as below and i have a solution but i want to know other alternatives for the same.. so please let me know the alternatives.
    >
    > A BI query would be created from an existing APO BI cube.
    > A Z program would be created in SAP
    > A Z table would be created in SAP.
    > The Z program would map the fields in BI cube vis-a-hopthe fields in Z table.
    > The Z program would execute the BI query through an RFC connection, pull the data and store the data in the Z table using the mapping done previously.
    > This execution would be an adhoc one - not a periodical job.
    >  
    > Though I have specified about executing the query through RFC option, we are open to any possible suggestion. All we need is to bring the data in the APO BI cube to the SAP Z table.
    >  
    > Please let me know for any other possible alternatives.
    >
    > Thanks,
    > Shailaja

  • Could u please answer my question for filling the setup tables in SAP ECC purchasing the following error encountered..

    Enter rate  / USD rate type M for 00.00.0000 in the system settings
    Message no. SG105
    Diagnosis
    For the conversion of an amount into another currency, an entry is missing in the currency conversion table.
    Procedure
    Add the missing entry in the currency conversion table.
    Execute function
    You can then continue to process the commercial transaction

    Hi karim,
    While posting thread here, please use proper headline instead of general sentence.
    Issue: seems like some exchange rates issue at ecc side.
    Seek your FI or functional team to maintain proper USD exchange rates/rate type For M.
    Later you can try to fill set up tables.
    Once FI team done exchange rates at ecc side, do transfer global setting to bw side.
    Thanks

  • Tables in SAP

    Hi
    can anybody know exactly no of tables in SAP ECC 6.0 . whats is their application?
    kaustubh

    Hi Kaustubh,
    here are some fact about SAP AG (AS PER 2003 ANNUAL REPORT) :-
    3rd - SAP is the 3rd largest software company in the world
    30,000 - Total number of people employed by SAP
    5,400 - Number of programmers employed by SAP
    $7.024 billion - FY03 Revenue
    $1.077 million - FY03 Net Income
    12,000 - Number of companies using SAP
    79,800 - Number of SAP installations
    12,000,000 - Number of people using SAP
    120,000,000 - Total number of people in the 12,000 companies who are using SAP
    28 - Number of languages supported by SAP
    46 - Number of country-specific versions of SAP
    22 - Number of industry-specific versions of SAP
    1,000 - Number of pre-defined best practices contained in the SAP system
    10,000 - Number of tables requiring configuration in a full SAP implementation
    55,000 - Number of SAP experienced consultants worldwide
    28 - Number of years ago SAP was started
    5 - Number of people who started SAP

  • 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

  • Potcode table report in SAP ECC 6.0

    Hi,
    we just upgrade our R3 systeem to SAP ECC 6.0 and with this new SAP ECC we can not find the old report for our postcode table check. In previous system, we use the following report to update our postcode table :
    - RSADRLSM01
    - RSADRLSM02
    - RSADRNL_POSTCODE
    With SAP ECC 6.0 the latest report (RSADRNL_POSTCODE) in not available and because of that we can not update our postcode table.
    Anyone experience the same problem?
    Best regards,
    Audrey N. Tamara

    hi,
    I checked this on the systems available to me and the mentioned report RSADRNL_POSTCODE is not available in any release 4.63 and higher, i.e. it isn't available in ECC 600 either.
    the NL part suggests to me that this is part of a (Netherlands) country specific extension of any industry solution or it is simply a custom report in SAP's namespace.
    So, check if your system's country specific add-ons are in place already or open a customer message to SAP with respect to your country version.
    regards,
    anton

  • Table T156X in SAP ECC 6.0

    Hi,
    I am working on table T156X in SAP 4.6c version.
    It is having 11 fields including MANDT field.
    I have received an OSS note where in I have to upload some data into the table.
    The document shows an additional field in the table. The fields as shown in the OSS notes are as follows:
    MANDT BWART WERTU MENGU SOBKZ KZBEW KZVBR BUSTW OIHACCDTN CNT02 KOMOK XPKON.
    Here the field OIHACCDTN is additional. It is not present in the table T156X in 4.6c version.
    I wanted to know whether the field is present in SAP ECC 6.0 version of table T156X.
    regards,
    Gaurav.

    hi Gourav,
    yes, this field is present in Ecc 6.0
    MANDT     MANDT     CLNT     3     0     Client
    BWART     BWART     CHAR     3     0     Movement Type (Inventory Management)
    WERTU     WERTU     CHAR     1     0     Value Update in Material Master Record
    MENGU     MENGU     CHAR     1     0     Quantity Updating in Material Master Record
    SOBKZ     SOBKZ     CHAR     1     0     Special Stock Indicator
    KZBEW     KZBEW     CHAR     1     0     Movement Indicator
    KZVBR     KZVBR     CHAR     1     0     Consumption Posting
    BUSTW     BUSTW     CHAR     4     0     Posting string for values
    OIHACCDTN     OIH_ACCDTN     CHAR     2     0     Excise duty account determination
    CNT02     MB_BUSTW_CNT     NUMC     3     0     Consecutive Counter: Posting String for Values (Inv. Mgmt)
    KOMOK     KOMOK     CHAR     3     0     Account Modification
    XPKON     XPKON     CHAR     1     0     Check account assignment
    regards,
    Sachin

  • Extract Tables/views into ECC 5.0 SAP system from Non-SAP system

    Hi,
    I am looking for some inputs on how to set up the following scenario of extracting data stored in tables/views in a non-sap external system into my SAP ECC 5.0 SAP database.
    Currently we are using a middleware between SAP and the external system to fetch data. I would like to get rid of the middleware and set up a scenario to call this non-sap external system and pull data stored in views into our SAP system directly. Is that possible in SAP version 5.0? If yes let me know the steps to be performed... do I need to set up XI ?

    maybe you can access sap data using some connector such as java or .net connector.

  • Replacing SAP ECC COPA Table

    Hi,
    we have implemented the SAP Best Practices for BI V4.31 (note 1475029).
    One of the dashboards is Profit and Loss. It uses a couple of CR reports for data extraction for the SAP ECC.
    In the report is a connection to a COPA table CE11102. In our environment this table is CE11000.
    In CR / Database export I can change the name of the COPA Table from CE11102 to CE11000 but CR doesn't recognize our COPA table.
    Please advice.
    Regards,
    Wiebe

    Dear Ingo,
    so you would like to replace one table of the delivered All in One report with a table from your system ?
    Yes I have implemented almost all the CR reports and Xcelcius dashboards.
    But...
    When I update the database connection for the CR reports with a CO-PA table and other tables (like MARA, T023T and TVKOT) all the tables will connect to our environment exept the CO-PA table.
    Please advice.
    kind regards,
    Wiebe Bartelink
    ps. this is for Profit and Loss CR report 'Actual data.rpt'
    Edited by: Wiebe Bartelink on Feb 29, 2012 4:45 PM

  • SAP Crystal Report 2013 SP03 - Connection error with SAP ECC tables, clusters

    Hi,
    I'm trying to connect SAP Crystal Report 2013 with SAP ECC but I'm getting below error. I've read some where that We need to install SAP integration kit but SAP BI 4.1 it comes default, also had to install the ABAP cystal report transport - How to do Install this on SAP side -
    and on the ECC side we had to develop Crystal Authorization - how to develop this?
    Can someone screenshot of these steps and please suggest if something else can be done.

    Hi Pawan,
    Search for the error and you should see many threads for this issue.
    Anyway, this is what I found:
    logon failed. you do not have the necessary rights to design reports
    Crystal Reports 2008 and BW - Installation and Configuration - Business Intelligence (BusinessObjects) - SCN Wiki
    The wiki should have answers to all your questions regarding Transports, Authorization et al.
    -Abhilash

  • Difference between SAP 4.7EE and SAP ECC 6.0 in terms of ABAP

    Hi all,
      I would like to know the differences between the SAP-4.7EE and SAP ECC 6.0 in terms of ABAP?
    can any body Please Help me?

    Hi Vijay,
    In terms of ABAP some function modules are obsolete in 4.7.
    e.g WS_UPLOAD, WS_DOWNLOAD etc.
    You can find the list of obsolete FMs in the table RODIR.
    These need to be replaced in the ECC System.
    Also ECC is very strict in case of EPC Errors. You need to check the EPC and remove the call function interface errors where it says SLIN observes catching of a runtime error. These might work with no issues in 4.7 but will shortdump in ECC.
    If you are doing to a unicode conversion also. you need to check the transaction UCCHECK for unicode errors.
    You also need to replace obsolete statements like >< and => , =< etc.
    Please let me know if you need any further info on this.
    Thanks,
    Sai

  • Technical differences between SAP Enterprise and SAP ECC 6.0

    Hi,
    Can anyone plz tell me what will change technically after the upgrade from SAP Enterprise to SAP ECC 6.0, in respect to reports, module pool programming and other technical logics?
    Thx,
    KK

    Difference b/t ABAP4.7  and ECC6.0.
    Difference between R/3 4.7, ECC5 & ECC6 anyone?
    http://help.sap.com/saphelp_nw2004s/helpdata/en/5b/8c3842bb58f83ae10000000a1550b0/frameset.htm
    http://service.sap.com/releasenotes
    /people/thomas.jung3/blog/2005/05/15/abap-46c-to-640-delta-training
    Re: R/3 Enterprise v mySAP ERP 2003 v ECC 5.0 v mySAP ERP 2004
    http://service.sap.com/~form/sapnet?_SHORTKEY=01100035870000497320&_SCENARIO=01100035870000000112&_OBJECT=011000358700000810532004E
    http://help.sap.com/saphelp_nw2004s/helpdata/en/5b/8c3842bb58f83ae10000000a1550b0/frameset.htm
    http://service.sap.com/releasenotes
    See this weblog:
    /people/thomas.jung3/blog/2005/05/15/abap-46c-to-640-delta-training
    Re: R/3 Enterprise v mySAP ERP 2003 v ECC 5.0 v mySAP ERP 2004
    http://service.sap.com/~form/sapnet?_SHORTKEY=01100035870000497320&_SCENARIO=01100035870000000112&_OBJECT=011000358700000810532004E
    http://help.sap.com/saphelp_erp2005/helpdata/en/43/68805bb88f297ee10000000a422035/frameset.htm
    A similar post
    /message/1783778#1783778 [original link is broken]
    You can go through the Release Notes for each of the versions after 4.6B (4.6C, 4.7 , ECC 5.0 & ECC 6.0)
    http://help.sap.com/saphelp_erp2005/helpdata/en/43/688055b88f297ee10000000a422035/content.htm
    For 4.7 SAP R/3 http://help.sap.com/saphelp_47x200/helpdata/en/12/9d78d6d8f74043a32e82be87e433b7/content.htm
    Release Notes on SAP Web Application Server 6.30
    http://help.sap.com/saphelp_47x200/helpdata/en/2b/64fc3e9d3b6927e10000000a114084/content.htm
    http://solutionbrowser.erp.sap.fmpmedia.com/
    http://solutionbrowser.erp.sap.fmpmedia.com/
    http://service.sap.com/instguides
    http://service.sap.com/erp
    http://www.stonewayinc.com/clients/sap/bestoftour/presentations/SAP_BOT_2_Furlan_IBM.ppt
    From the ABAP perspective, few differences are.
    The WS_* function modules used in 4.6c has become obsolete from 4.7C. All the WS_* FMs have been replaced by GUI_* FMs.
    (ii) Concept of Unicode is introduced.
    (iii) Few tables have been modified in ECC6.0.
    Tables TVARV & TTREX have been replaced by TVARVC & TTREXN respectively.
    (iv) we have enhancement points and enhancement sections along with enhancemnts and BADI'S . and we can write the part of code in those points.
    For functional differences please check out the following link:
    http://solutionbrowser.erp.sap.fmpmedia.com/
    ECC->enterprise central component.ECC 6.0 is the advanced version.if we consider in technical point of view then i can give u one example.
    In the new version we have enhancement points and enhancement sections along with enhancemnts and BADI'S.SAP has provided these ,so that without going for access keys we can write our code in the enhancement points along with Standard SAP code.So now SAP has provided more user friendly environment.Also a new DEBUGGER also arrived with the new version.Now we can see more things in the new er version of DEBUGGER.
    Reward points for useful Answers
    Thanks
    Murali Poli

  • Obsolete tables in ECC6.0

    Hi All,
    Please let us know the list of obsolete tables in ECC6.0 (after an upgrade from 4.6c).
    We already have TVARV & BP000 in our list.
    Thanks & Regards
    Anjali

    Hi Anjali,
    Check below thread:
    Obsolete Keywords from SAP version 4.6C to ECC 6.0
    Thanks
    Sunny

Maybe you are looking for

  • How to Hide page in interactive form

    Hello All, I have developed the Interactive form for one of the HR process. Form is pread across the three pages. My requirment is to hide the second page based on some condition. I have tried JAVA script to hide the page using below syntax but its n

  • Albums in library have duplicated songs.  How do I remove duplicated songs?

    The albums in my library now have duplicated songs.  I do not want to sync my itunes form my computer to the IPod classis but do not want duplicated songs.  Is there a way to do this without having to manually delete the duplicated songs?

  • For loop interrupt

    Attached please find my test vi(i use while loop instead of for loop,cause my labview version is 8.2, which don't have interrupt condition item in for loop. ) i wanted to stop the vi while the vi was running, such as i pressed the stop button when i

  • Different query plans for same query on same DB

    Hi, HP-Ux Oracle Database 10.2.0.4 We are experiencing a strange issue. One of our night batch process is taking invariably more time to execute. The process does not consume time at 1 particular query. Everyday we find a new query taking more time t

  • BOM Group number field

    Hi, We are using LSMW for Routing data upload. The "Group" field in the CA01 screen is giving a problem. The Group number, (which is generated internally) which was used for uploading the previous record is remaining in the field while uploading the