How to find PSA table(/BIC/B00*) exist or not in Process chain?

Hi Experts,
Actually we are planning to delete the PSA data, for some of the PSA tables already created the process chains for clean up. for some off the tables we are developing new process chains. Now we I got the PSA Table name(/BIC/B00*) list from production. Now I want to know weather this PSA Table already exists in any of the process chain or not. Checking of the each PSA Table with all the process chains is taking much time, can I have any better option to find the process chains conatsins PSA table or not.
Thanks in Advance,
Shivaram

There are some list of tables provided in the following thread:
process chain tables and tcodes
hope it helps.
rgs,
Parth.

Similar Messages

  • How to check PSA Table Structure ?

    Hi Friends,
       Can you pls any one tell me how to find out PSA Table and how to check PSA Table Structure? .Thanks in advance.
    Regards,
    CS

    Hi Sri,
    Goto RSA1 trans> select your DS> right clcik> Manage> you will get a Pop-up with all the PSA requests--> on the top Left you can see the PSA name(Technical name) in the form PSA/BIC/BXXXXXX
    PSA & DS structue will be same. Goto RSO2 transaction> Enter your DS name> double click on the extract structure. It will take you to the Extract structure.
    (Or) if you know the extract structure name, directly goto Se11 trans & enter the technical name of Extract structure & Display.
    Take the screenshot & send it to your TL.
    Regards,
    Pavan

  • How to find Obsolete Tables?

    Hi!
      Can Anybody tell me how to find Obsolete tables in a ABAP System (like in 4.7B,6.0 etc)?
      Or if u have list of obsolete tables in any version,please send me.
    -Aruna

    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.
    Reward Points If helpful
    Regards
    Vasanth

  • How to find the tables of datasource

    Hi
    can anyone tell me how to find the tables from where the datasource is extracting data?
    I have a datasource 0CO_PC_ACT_02 which i thought was extracting data from MBEW, but my MBEW table has only around 1000 records but while scheduling the data load of infopackage my PSA shows more than 4000 records.
    How does this happen?
    Thanx in advance
    Sujai

    Hi,
    yes it is mainly MBEW as well as MBEWH (history of MBEW); in adition you have some article ledger data (table ckmlhd) from which some records could be added; MARV as well...
    You can check in function module KKBW_XBEW_BW_GET_DATA_IS1 all the details.
    hope this helps...
    Olivier.

  • HOW TO  FIND OUT TABLE DESCRIPTION FROM JDBC?

    HOW WILL FIND OUT TABLE DESCRIPTION FROM JDBC?

    Have a look at ResultSetMetaData
    getColumnCount()
    getColumnName(int)
    getColumnTypeName(int)
    getColumnDisplaySize(int)
    ***Annie***

  • How to find out table name for the field in the webUI

    Hi.
    I am in CRM2007.
    So i go to the transaction code    BSP_WD_CMPWB
    In that i provide the component name as CRM_UI_FRAME.
    I press the Test button.
    So, it opend the WebUI.
    I want how to find out table of the particular input field?
    I mean from which table the data is retrived how to find out?
    When i enter some thing in the input field how to find out in which table that data is stored?
    By pressing F2 on the input field it opend View and Component Name.
    I want find out table of that particular field. How to find it?
    If anybody know about this explain it with Screen shorts if possible.
    Thank You.
    Krishna. B.

    hi
    goto tx genil_model_browser. Suppose you want to find fields reated to your order header eg sold to name. In component set write all and press F8. Then goto access object and in access object click on node BTAdminH. Click on attribute structure. Here you will find structure and attributes. If you click relationship then you will see all the relationship wrt btadminh. open any r/s that you require. and click on other object and attribute. You will get to know the structure.
    Best regards
    Pankaj kumar

  • How to find the tables in OM

    Hi All,
    How to find the tables in Oracle order mangement and what are the links of the tables in oracle OM
    Thanks & Regards
    srikkanth.M

    How to find the tables in Oracle order mangement and what are the links of the tables in oracle OMeTRM
    http://etrm.oracle.com
    Thanks,
    Hussein

  • How does one add tables to an existing universe using COM designer SDK.

    Morning All
    How does one add tables to an existing universe using COM designer SDK. I have tried:
    objUniverse.Tables.Add (strTable_Name)
    but get "Cannot create Table" error.
    Any ideas?
    Thanks in advance.
    Anita

    Hi Anita,
    -Use the Add method to add classes and objects to an existing universe using a VB 6 application.
    Adding a Class
    Definition: Function Add(Name As String) As Class
    Syntax: NameOfClassesVariable.Add
    Adding an Object Instance
    Definition:  Function Add(Name As String, [ClassName As String]) As Object
    Syntax: NameOfObjectsVariable.Add(name, [class])
    - name is the name of the object.
    - class is the name of the class containing the object. This parameter should be used in cases where more than one objects exist with the same name.
    Sample Visual Basic 6 Code
    Dim DesApp As Designer.Application
    'MODIFY AND EXPORT CLASSES AND OBJECTS OF AN EXISTING UNIVERSE
    Sub modify_and_export_universe()
    Dim DesUnv As Designer.Universe
    Dim DesCls As Designer.Class
    Dim DesObj As Designer.Object
    Dim DesDBCol As Designer.DBColumn
    Dim DBColName As String
    Set DesApp = New Designer.Application
    'Login to designer
    Call DesApp.LogonDialog
    'Make sure to log on with your administrator profile
    'e.g : "hostname","username", "password","Enterprise"
    'Make Designer application visible
    DesApp.Visible = True
    'This line disable warning messages from Designer
    DesApp.Interactive = False
    'to Open  locally  the universe you want to modify
    'Set DesUnv = DesApp.Universes.Open("club_uni")
    'Use OpenFromEnterprise method (Universes Class) to import a universe from the repository and opens it
    Set DesUnv = DesApp.Universes.OpenFromEnterprise("Universes", "club_uni", False)
    'Add a valid connection which already exists
    DesUnv.Connection = "club"
    'open the universe
    'Call DesApp.Universes.Open("club_universe")
    'Add the table Account and refresh the view in the main window
    Set DesTab = DesUnv.DBTables.Item("Customer").Insert
    DesUnv.ArrangeTables
    'Add a class
    Set DesCls = DesUnv.Classes.Add("Class MyCustomer")
    'Looping through all the fields of the DB Table Account
    For Each DesDBCol In DesUnv.DBTables.Item("Customer").DBColumns
    'Store name of the column
        DBColName = DesDBCol.Name 
         'Add an object to the class
        Set DesObj = DesCls.Objects.Add("Obj " & DBColName)
         'Affect a field to the object
        DesObj.Select = "Customer" & "." & DBColName
    Next
    'Save the existing universe with the same name club_uni or you can change
    DesUnv.SaveAs "club_uni"
    MsgBox "Universe created and saved Class MyCustomer has been added!!"
    'Close the universe
    UnvFullName = DesUnv.FullName
    MsgBox "The UniverseFilePath is " & UnvFullName
    'Close the universe
    DesUnv.Close
    'This line disable warning messages from Designer
    DesApp.Interactive = False
    'Export the universe to the CMS DB (to the last universe folder)
    'Make sure you save the universe before exporting it
    Call DesApp.Universes.Export("Universes", UnvFullName)
    MsgBox "This document has been exported successfully !!"
    'Close designer
    DesApp.Quit
    Set DesApp = Nothing
    End Sub
    Hope this helps.
    Regards,
    Deepti Bajpai

  • How to find full tables hierarchy in schema

    Hi,
    How to find the table hierarchy list from oracle schema by using Reference Key constraint?
    In my schema I am having many tables, approximate 4000 and from there I needs to get a single list which should be based in the Foriegn key based (Parent tables should be first then child tables)
    Regards
    Anee

    You can start with this
    select A.table_name children,
             B.TAble_name Father
    from DBA_CONSTRAINTS A,
            DBA_CONSTRAINTS B
    WHERE A.CONSTRAINT_TYPE = 'R'
         And B.Constraint_name = a.r_Constraint_name

  • How to find the tables corresponding to a particular field in datasource.

    Hi Experts,
    There are lot of extra fields in the structure like MCEKKN as compared with the table EKKN. The data in these fields are coming from some other table.
    So can u tell me how to find these tables corresponding to these fields?
    Let me be more clear..
    I want to know that the data in the datasource like 2LIS_02_ACC are coming from lot of tables.
    How can I find those tables corresponding to each field in the extraction structure.
    I have tried with ST05...as well as by filling setup tables in debbugging mode..but I am still in lot of confusion.
    Please try to help me....U will get good points in response.
    Thanx.
    Vinod.

    Hi Vinod,
    Why are you trying to enhance the extractor because the steps you are following is tio enhance the structure
    <i><b>like transferd one of the field from pool to selection criteria</b></i>
    If you want to see only the fields of the extractor and from which table it is coming you just have to see the pool only.
    There in the lef you have the fields which are already present  in the extractor and in the right you have the avaialbale fields present.
    Also in the two selection pools if you will see carefully you will find in each selection pool
    "Table name" and then the "field name" and then description of the field data type and length.
    Like in case of 2lIS_13_VDITM you will find all the fields coming from VBRK and VBRP and VBUK.
    Just check it you will get an idea.
    In this way you can find that which field in the extractor is coming from which of fields of the table.
    I think this is what you want to know.
    If not clear then do reply
    Thanks

  • How to find which table is not being used ?

    Hi,
    I am in need of releasing space from the common schema we have. i have been permitted to drop the tables which has not been used for the last three months.
    Can anyone please suggest how to find the tables that has not been used for a given amount of time.
    Thanks and Regards.
    Rajib

    i have been permitted to drop the tables which has not been used for the last three months.Can I just chip in an observation on this premise? It's not unusual for systems to have processes that run quarterly or even annually. You need to be very careful about dropping "unused" tables - you might just kill your organisations end of year reporting system.
    Is buying more disk space really not an option?
    Cheers, APC

  • How to find an table for storing the employee salary

    hi,
           how to find an table for storing employee salary .. In which table those details are stored .. Please reply me.
    regards,
    kumar

    Hi,
    You can see the basic salary details from table -pa0008.If you can see the payroll data,then its not stored in transparent table.its in cluster.For viewing that,you can see through transaction code - pc_payresult.
    Regards,
    Manoj.

  • How to find the tables

    Could any one tell me how to find the tables for this Datasource 0GLACCEXT_T011_HIER and theExtract structure is  ROHIEROS.But I did'nt see any fields on it.
    In the Extract structure there is only one fields is OLTPSOURCE.
    Could any one explain me how  this hierarchy data get populated into BW. Its very urgent
    Thanks in advance
    Taj

    http://help.sap.com/saphelp_bw33/helpdata/en/64/032de5ff014c4c86bc15272216a5e2/frameset.htm
    table RFDT.. check the link
    and also http://help.sap.com/saphelp_erp2005vp/helpdata/en/af/6837bb0e954b7ab47aca5d9fce1101/frameset.htm
    null

  • How to find Related Tables for the Tcode given.

    How to find Related Tables for the Tcode given. (master data)
    Thanks in advance.

    Hi Sridhar,
    Welcome to SDN.
    The tables for a given transaction can be seen in the transaction SE80.
    First goto SE93.
    Give ur Tcode and find the program name.
    Now goto SE80. select program in the first dropdown and give the program name in the second box. U can find the list of tables used.
    One more way is : use ST05.
    and One more is using FM 'get_tables'
    Thanks,
    Shailaja
    Edited by: Shailaja on Jul 11, 2008 12:33 PM

  • How to find Target tables in informatica

    Hi Guys,
    Could you please tell me the How to find target tables in OBIEE from OBIEE Repository
    Please any one reply me.
    Thanks,
    Siva
    Edited by: 912736 on Mar 20, 2012 7:12 PM

    Hi
    Open Repository:
    1- On Presentation Layer: Navigate to Subject Area which you want to trace Target Table.
    2- Right Click on desire Measure /Object
    3- List will appear and select 'Query for Physical Table' or 'Query fro Physical Column'.
    4- Window will appear and it will show you list of relevant Physical Tables.
    5- Select one of table and press Go button.
    Your target Tables are in Data warehouse not infromatica, Informatica is Responsible to Design & run your Workflows and other activities.
    However to trace Target table from Informatica (Workflow);
    If you want to trace Target Table than in Informatica you have 2 options.
    1- Openfirst you need to know Workflow, open workflow right click and in property you will see Query and from query you will know target table.
    2- open workflow from Workflow you will Know Mapping and open mapping than you will know Mapplet and from Mapplet you will know target table.
    Open Client >>PowerCenter and Open Mapllet, you will see Target
    Regards
    Edited by: Sher Ullah Baig on Mar 22, 2012 5:21 PM

Maybe you are looking for

  • HD TV Shows do not show up on the Apple TV.

    HD TV Shows do not show up on my Apple TV, check for software updates and system is up to date. Is there an update to upgrade the Apple TV to play the HD TV Shows?

  • I need to present on 2 screens from my iPad mini.

    I did it from my iPad 1 but now only 1 screen will populate with mini. I'm using same cables as before with an adapter for the 30pin. Any suggestions?

  • Server Database not working

    Hi, My application is working fine in my local system.Inserting ,updating gettting data from database. But when i moved all tables and stored procedures from my database to another database in another server .I can only inserting data into database b

  • Stock not posted to Inspection stock

    Hi, 1. The inspection type 04 - Goods receipt from production is maintained in material master. 2. The Inspection plan is maintained But the stock is directly posted to Unrestricted stock. When I check Goods receipt tab in process order, the stock ty

  • Where do I find the exercise files

    I am trying to learn Edge Animate. It is telling me to open the pin.an file in Chapter 3? Where are these lessons located?