From which prgram the table TSTC is updated

Hi all ,
Can anybody know me from which program, the Table TSTC is updated where it stores all the transaction codes.
Regards,
Madhavi

Tcode for maintaining Tcodes is SE93.
Goto>SE93>System>Status>Program.
Program Name:SAPLSEUK
  include lseuktop.      " Global Data
  include lseukuxx.      " Function Modules
include lseuko01.
include lseuki01.
include lseukf01.
include lseukf00.
include lseuki00.
Navigation Transaktion
include lseuktn0.
include lseuke01.
include lseukfwm.
Regards,
Ansari.

Similar Messages

  • From which transaction the table OBEW is updated

    Hi Experts,
      From which transaction the table OBEW is updated
    Thanks,
    Nagendra

    The table OBEW gets updated thru MI21/MI22/ and MB01/MB02

  • Which are the tables updated in SRM and R/3 System for SC created?

    Hi,
    I want to know which are the tables updated in SRM system and also in R/3 system, when a Shopping Cart is created. Also how do i get the PO number for the Shopping Cart created.
    Thanks.
    Regards.
    Rahul

    Hello Rahul,
    All list of tables for eg. SC You can find in transaction BBP_PD on SRM side.
    These tables are (SRM):
    - CRMD_ORDERADM_H - for Header (Business Transactions Header)
    - BBP_PDHGP - Business Transaction Purchasing Information
    - CRMD_ORDERADM_I - for Item - Business Transaction Item
    - BBP_PDIGP - Business transaction item-Purchasing information
    - BBP_PDBEI - Backend Specific Item Data
    On R/3 side:
    EBAN - purchase requisition
    EBKN - purch. req. account assignment
    Regards,
    Marcin Gajewski
    please reward points for helpful answer

  • Give me the sql query which calculte the table size in oracle 10g ecc 6.0

    Hi expert,
    Please  give me the sql query which calculte the table size in oracle 10g ecc 6.0.
    Regards

    Orkun Gedik wrote:
    select segment_name, sum(bytes)/(1024*1024) from dba_segments where segment_name = '<TABLE_NAME>' group by segment_name;
    Hi,
    This delivers possibly wrong data in MCOD installations.
    Depending on Oracle Version and Patchlevel dba_segments does not always have the correct data,
    at any time esp. for indexes right after being rebuild parallel (Even in DB02 because it is using USER_SEGMENTS).
    Takes a day to get the data back in line (never found out, who did the correction at night, could be RSCOLL00 ?).
    Use above statement with "OWNER = " in WHERE for MCOD or connect as schema owner and use USER_SEGMENTS.
    Use with
    segment_name LIKE '<TABLE_NAME>%'
    if you like to see the related indexes as well.
    For partitioned objects, a join from dba_tables / dba_indexes to dba_tab_partitions/dba_ind_partitions to dba_segments
    might be needed, esp. for hash partitioned tables, depending on how they have been created ( partition names SYS_xxxx).
    Volker

  • Fields comming from which data base tables

    Hi Experts,
    Every extractor should fetch data from some data base table. For generic data source and LO data source I know to see but could you please tell me, how I can find for business content (ex: 0FI_GL_4) data source which field data coming from which data base table. 
    Regards
    Lokanatha.

    Hi,
      We can get from SAP help about the tables being used in each business content extractor.
    For Eg-0fi_gl_4, data coming from BKPF,BSEG tables.
    Go thru this link which tells the table for the above extractor..
    http://help.sap.com/saphelp_nw70/helpdata/en/8b/02f93abb013b0de10000000a114084/content.htm
    Hope this helps..
    Thanks & Regards,
    Pradeep

  • From which device the request come

    How can we identify, from which device the request come ie; mobile phone, browser etc

    Thanks a lot
    String accept = request.getHeader("accept");
            String user_agent = request.getHeader("user-agent");
            String accept_charset = request.getHeader("accept-charset");
            String accept_language = request.getHeader("accept-language");
            String x_wap_profile = request.getHeader("x-wap-profile");
            String profile = request.getHeader("profile");

  • Where does the data come from which powers the ship date and delivery date

    Hi All,
    Please let me know, where does the data come from which powers the ship date and delivery date?.
    Adi.

    Hi,
    DELIVERY DATE  will be maintain in the SALES DOCUMENT TYPES in VOV8 in the tab REQUESTED DELIVERY DATE/PRICING DAE/PURCHASE ORDER DATE.
    The field is PROPOSE DELIVERY DATE .
    If you check the field then the document created date will be the Requested date and will be carried from ORDER TO DELIVERY.
    If you want the delivery date other thann the CURRENT date then you have to maintain the LEAD TIME in days in the same tab.
    SHIP DATE: is the date on which you do the PGI in the delivery .
    Please check them and revert back if u need further details
    thanks,
    santosh

  • How to find which are the user exits that updating z table.

    There was a question posted by someone else which said:
    I have a z table. my requirement is to find the user exits that update the value to this table?
    but my requirement is to get only those user exits that update my z table.
    Before that question was rejected, it got 5 replies which made me think that this tip is worth sharing.
    So the steps are:
    Do a where-used list search from SE11
    Click on Search Range button at bottom
    Type UPDATE (you can also add Insert, Delete etc to select-option) to ABAP Key Words field
    Say No to the popup that asks whether to include Fields of the Table
    Result will show relevant programs with code snippets doing static Update on that custom table.

    EWK1 would be too performance heavy in this case. It scans the source code to get the result.
    You can however, download the list of programs given in where-used list, and give that as limiting condition in EWK1 or some other code scanning utility.
    Using my method, where-used list of table is taken from database tables, and then code scanning is done only on the that list, not on entire Z* programs.
    Try it yourself to notice the speed difference.

  • How to find the Table from which a Custom table is created.

    Hi Gurus,
    I have a custom table in SAP and want to figure how that has been created. How can I do that?
    Regards
    Prashant

    Hello Prashant,
    what do you mean by "how"?
    When you say custom table do you mean "Customization table" or a "Customer table" (in namespace Z... or Y...)
    Anyway, you can access SE11 transaction, view the table and then check its attributes.

  • How to find out  to find by which procedure a table column was updated

    Hi All,
    We have an attribute10 column of a table used in a DFF.
    This attribute is being updated for a specific reason in a code, but some other procedure is also updating the same column which is causing issue with the functionality. The update might be using an API or some other way.
    Can anyone help me with a query or some other way to in find out the procedures which might be updating a particular column (attibute10) of that table.
    Regards,
    Shruti

    Shruti,
    If you can replicate in non-production environment, one way is to create an update trigger on the table/column,and have the trigger do something with any environmental info you can query (select SYS_CONTEXT('USERENV','OS_USER'), etc.) and write it using utl_file or insert it into a custom table. Perhaps have the trigger enable trace, query the above and disable trace.
    -Vince

  • From which R/3 tables , we are extracting CCA data

    Hi ,
    For extracting the 'Over HeadMangment Costs' , we are using  0CO_OM_CCA_9 and 0CO_OM_CCA_6 datasources.
    Could you tell me from which tables ( R/3 tables) it is extracting the data
    Thanks
    Prasanna

    hi Prasanna,
    check this
    http://help.sap.com/saphelp_nw04s/helpdata/en/93/d90c3c99d56448e10000000a114084/frameset.htm
    go through the datasources
    COVP (COEP and COBK) COSP COST COEJ COEP T001
    http://help.sap.com/saphelp_nw04s/helpdata/en/8f/d93c00e39d5b4fb6eaa3bf16e6fb09/content.htm
    COOMCO
    http://help.sap.com/saphelp_nw04s/helpdata/en/fe/bd383fd98d1201e10000000a114084/content.htm
    hope this helps.

  • Which are the Tables included in SRM

    Hi All,
    Please help me with the following
    I have a very basic knowledge of SRM.
    Can anybody tell me which are tables included in SRM. For eg. When a shopping cart is created and approved in which all tables data relevant to that is stored.
    Then account assignment details, PO details, GR details are stored in which tables.
    Please reply
    Thanks in advance.
    Regards.

    Hi Rahul,
    i know few tables, which are listed below. i will suggest you to run sql trace with the transaction bbp_pd. use st05 to activate the sql trace, than run bbp_pd. deactivate the trace and view the trace. i am sure that you will get all the tables you needed.
    crmd_orderadm_h
    BBP_PDHGP
    BBP_PDHSB
    CRMD_LINK
    CRMD_PARTNER
    BBP_PDBGP
    PRCD_HEAD
    CRM_JEST
    Regards,
    Shastri.

  • Which is the table?

    what is the table name that displays the details of where used list of queries in workbooks. means i need names of all workbooks in which a particular query is used?
    or can u help me out in...how to know what are the queries that are used in making a particluar work book?
    " will thank u only if i get the answer which satisfies my requirement exactly!"
    neeraja

    HI Neeraja,
    Your Question in the previous thread has some replies..check and close it.
    Don post multiple threads.

  • SQL TO search for a text from one of the table in a scheme(user)

    Hi folks
    Is there any way to serch for a text from a table in a schema(user) where we dont know from which table that text belongs to .
    If yes please post me ..
    Thanks

    Try this
         SQL>  var val varchar2(5)
         SQL>  exec :val := 'as'
         PL/SQL procedure successfully completed.
         SQL>  select distinct substr (:val, 1, 11) "Searchword",
                         substr (table_name, 1, 14) "Table",
                         substr (t.column_value.getstringval (), 1, 50) "Column/Value"
                    from cols,
                         table
                            (xmlsequence
                                (dbms_xmlgen.getxmltype ('select ' || column_name
                                                         || ' from ' || table_name
                                                         || ' where upper('
                                                         || column_name
                                                         || ') like upper(''%' || :val
                                                         || '%'')'
                                                        ).extract ('ROWSET/ROW/*')
                            ) t
         --        where table_name in ('EMPLOYEES', 'JOB_HISTORY', 'DEPARTMENTS')
                order by "Table"      
         Regards
    Singh

  • Dynamically..can we find from which infoprovider the data comes..in reports

    Hi,
    We are executing a report. Fine. It is based on Multiprovider. Can we identity from which infoprovider that data belobs to?? I mean dynamically can we find out??
    Regards,
    Murthy

    My point was that your question has no clarity, forget the joke. When asked what do you mean by 'dynamically' you reply ' I think you are right....in web report....'. Honestly, do you have any clarity on what you want? Say you have a layout to define with your Chars and KFs, what do you want to see there? Right click and the KFs disaggregate in a popup? Have a free char of infoprovider to drill down to? What? Post that and then expect clear answers.
    To get an answer there has to be a question. Humor is one way of expressing frustration with vague questions.

Maybe you are looking for

  • How to get batch job o/p in PDF format and automatically saved to xyz loc

    Hi Experts, Our requirement is we want output of background job in PDF format and this PDF generated should be saved in some xyz path at OS level. Why doing this?: Business don't want hard copy o/p of some batch jobs but only want to save this output

  • Converting a 16:9 edit to 4:3?

    I've got about 70 videos I've produced for a client, which was shot and is not edited in 16:9. They have since decided they want the files to all be 4:3, which I have allowed for anyway with the title safe overlays. Even so, I've still got to convert

  • Call library function not finding DLL in directory where my LLBs are

    I am using LabVIEW 8.6.  I have a set of VIs in several LLBs.  All the LLBs are in one directory.  Most of my VIs are wrappers for the functions in one DLL.  I was told to put my DLL in the directory where the LLBs are, and supposedly this is how the

  • Creating custom folders

    I created some custom folders in my business area and they were all valid, but when I log in as a user I can not see the custom folders but the other folders are there. please can someone tell me what I am doing wrong. thank you.

  • Imported animations from SolidWorks have video noise at top

    New problem with my proof-of-concept video at work...we are intercutting short animation sequences with "live" video clips to create a sort of "how-to" video for employees. The animation sequences are rendered in SolidWorks Composer as *.AVI files, a