Want To Know The Name OF Company Table

In Administration -> Choose Company, It gives me the list of all Company Name,Database Name,Version etc .
I Want to know the Table Name which has all information about company name and all.
Regards

The db version is stored in table CINF (Version). Others information gave you members already. If you want have list of all dbs on the server like in login screen, you should use select from information schemas as
select * from information_schema.tables where table_name = 'CINF'
and youll receive all databases, where the CINF table is, then create tmp table (dbname, company, version fields) and in cursor go through all results from select * from information_schema.tables where table_name = 'CINF'
make insert into this tmp table. At the end make select from this tmp table.

Similar Messages

  • I want to know the name icloud account

    I want to know the name icloud account
    <Personal Information Edited by Host>

    Hi,
    As Rich Mentione there is no BAPI for Schedule Agreeement.
    You can Try : ME_UPDATE_AGREEMENT_PO  -Update Pur Document
                  ME_READ_OUTLINE_AGREEMENT_DISP --Read outline agreement item (From Agreement no and item no)
    Lanka

  • I want to know the name of bapi for schedule agreement

    hi,
    please give me the name of bapi for schedule agreement (mm module) .
    ok bye
    sreenu.

    Hi,
    As Rich Mentione there is no BAPI for Schedule Agreeement.
    You can Try : ME_UPDATE_AGREEMENT_PO  -Update Pur Document
                  ME_READ_OUTLINE_AGREEMENT_DISP --Read outline agreement item (From Agreement no and item no)
    Lanka

  • Want to know the name of jsp quicker way

    I have a struts application.
    all the url i find comes with .do extension in the address bar whatever you work upon.
    so, it becomes very difficult for me to understand which jsp it is in my project especially whenevr there are large number of jsp's.
    though i have the struts-config.xml . however, i dont like to search for to find the name of the jsp from it from a given .do url.
    is there any straightforward tricks/tips which could tell me whats the name of the jsp in a quicker way ?

    though i have the struts-config.xml . however, i dont
    like to search for to find the name of the jsp from
    it from a given .do url.That's how Struts works. Too bad you don't like it...
    >
    is there any straightforward tricks/tips which could
    tell me whats the name of the jsp in a quicker way ?Nope. The mappings / navigation rules are in struts-config.xml , which provides one of the benefits of Struts, i.e. loose coupling , so that changes can be made without touching Java code.

  • I want to know the name of motherboard for dv1345ea because i want to replace it with anther one

    my p/n: ef036ea
    its out of warrnty

    thnnx 4 replaying
    i dont know how to get the model of motherboard
    i got this
    http://h20141.www2.hp.com/Hpparts/SearchProduct.aspx?mscssid=604F2E30CE534611AE03E598A746C56B&Search...
    and
    http://h20141.www2.hp.com/Hpparts/SearchProduct.aspx?mscssid=604F2E30CE534611AE03E598A746C56B&Search...
    can u help me to get the modul of my motherboard ?

  • I want to know the table name and field name of this description

    i want to know the table name and field names of this description
    supplieriddomain

    Hi SV,
    Try this:
    1) Go to SE15 (Repository info system)
    2) Expand ABAP Dictionary
    3) Expand Fields
    4) Click on Table Fields
    5) Enter the field name you want to search in field name or use wild cards with keywords in short decription field (like supplier ) and Execute.
    OR
    If it's a screen field, do a F1 on the field and click on Technical information on the help window popped up from Menu..this will tell you the field name along with structure or table name.
    Hope this helps you.
    Regards,
    Vivek

  • I want to know the table name and field names of this descriptions

    i want to know the table name and field names of this descriptions
    FPAApprover.UniqueName,FPAApprover.PasswordAdapter

    Hi Ramana,
    Go to the system table DD03T , use the table contents..
    In the field ' DDTEXT ' , give your keywords...
    for ex : say Unique name... as  UniqueName* in field DDTEXT
    Execute.. u will find the entries....
    May be ur problem will be solved...
    Thank u...
    Reward if useful and close the thread..
    Rajiv

  • I want to know the top 10-20 Store procedures used in the table.

    Hello All, 
    There are total 3500+ Store procedures created in the server. So,  I want to know the top 10-20 Store procedures used in the table. Like which store procedures are important and what are they, is there any code to find them? 
    I think the question might be very silly, but i don't know which store procedure to look at it. 
    Please help me on this issue.
    Thanks.
    Thanks, Shyam.

    By what? CPU? Memory? Execution count?
    Glenn Berry wrote this
    -- HIGH CPU ************
          -- Get Top 100 executed SP's ordered by execution count
          SELECT TOP 100 qt.text AS 'SP Name', qs.execution_count AS 'Execution Count',  
          qs.execution_count/DATEDIFF(Second, qs.creation_time, GetDate()) AS 'Calls/Second',
          qs.total_worker_time/qs.execution_count AS 'AvgWorkerTime',
          qs.total_worker_time AS 'TotalWorkerTime',
          qs.total_elapsed_time/qs.execution_count AS 'AvgElapsedTime',
          qs.max_logical_reads, qs.max_logical_writes, qs.total_physical_reads, 
          DATEDIFF(Minute, qs.creation_time, GetDate()) AS 'Age in Cache'
          FROM sys.dm_exec_query_stats AS qs
          CROSS APPLY sys.dm_exec_sql_text(qs.sql_handle) AS qt
          WHERE qt.dbid = db_id() -- Filter by current database
          ORDER BY qs.execution_count DESC
          -- HIGH CPU *************
          -- Get Top 20 executed SP's ordered by total worker time (CPU pressure)
          SELECT TOP 20 qt.text AS 'SP Name', qs.total_worker_time AS 'TotalWorkerTime', 
          qs.total_worker_time/qs.execution_count AS 'AvgWorkerTime',
          qs.execution_count AS 'Execution Count', 
          ISNULL(qs.execution_count/DATEDIFF(Second, qs.creation_time, GetDate()), 0) AS 'Calls/Second',
          ISNULL(qs.total_elapsed_time/qs.execution_count, 0) AS 'AvgElapsedTime', 
          qs.max_logical_reads, qs.max_logical_writes, 
          DATEDIFF(Minute, qs.creation_time, GetDate()) AS 'Age in Cache'
          FROM sys.dm_exec_query_stats AS qs
          CROSS APPLY sys.dm_exec_sql_text(qs.sql_handle) AS qt
          WHERE qt.dbid = db_id() -- Filter by current database
          ORDER BY qs.total_worker_time DESC
    Best Regards,Uri Dimant SQL Server MVP,
    http://sqlblog.com/blogs/uri_dimant/
    MS SQL optimization: MS SQL Development and Optimization
    MS SQL Consulting:
    Large scale of database and data cleansing
    Remote DBA Services:
    Improves MS SQL Database Performance
    SQL Server Integration Services:
    Business Intelligence

  • Want to know the tables of a particualr transaction code

    Hi,
    whatz the technique of knowing the tables of a particular transaction code.
    I have got a tcode - va01.
    Want to know the tables of this transaction code.
    How...?

    Hi,
    If you want know about transaction code table details
    1. Enter Tcode 'ST05' (SQL Trace on), You can find how many tables are involved in the tcode
    2. Goto SE93, enter VA01 and find the program name, Go to object browse (se80) and enter program name and find out how many tables are invloved (Another way go to search- Give search term 'Tables' -> there u can find the tables involved.
    Regards
    Bhupal Reddy

  • Anyone know the name of the company that the Mac Protector

    Anyone know the name of the fraudulent company (or companies) that malware Mac Protector or Mac Defender used to charge suckers like me for "protection" against a virus-infected Mac?

    I have seen a lot of criticism of Apple over this, and at the risk of being seen to be biased, I think their unrushed, deliberate approach made sense.  After all, the user had to actually let the software into their computer and provide a password authorizing that action.  And then they had to provide a credit card number to an unknown and unverified entity that claimed to be solving a problem.
    One of the big issues is that most users do all their web browsing using an account with Admin authorization.  That is a REALLY bad idea.  Not only does it make it easier for malware to create havoc, it makes it easy for the user of the computer to do damage to the system inadvertently.  Look at the number of people posting messages like "I have lost all my apps, where did they go!"
    I hope you use a "Standard" account for your daily Mac usage!!

  • Hi I want to know the difference between the type of internal tables.

    I know the types of internal table but i dont know the difference between them can any one explain me in simple sentence.

    Hi,
    <b>Standard Internal Tables</b>
    Standard tables have a linear index. You can access them using either the index or the key. If you use the key, the response time is in linear relationship to the number of table entries. The key of a standard table is always non-unique, and you may not include any specification for the uniqueness in the table definition.
    This table type is particularly appropriate if you want to address individual table entries using the index. This is the quickest way to access table entries. To fill a standard table, append lines using the (APPEND) statement. You should read, modify and delete lines by referring to the index (INDEX option with the relevant ABAP command). The response time for accessing a standard table is in linear relation to the number of table entries. If you need to use key access, standard tables are appropriate if you can fill and process the table in separate steps. For example, you can fill a standard table by appending records and then sort it. If you then use key access with the binary search option (BINARY), the response time is in logarithmic relation to
    the number of table entries.
    <b>Sorted Internal Tables</b>
    Sorted tables are always saved correctly sorted by key. They also have a linear key, and, like standard tables, you can access them using either the table index or the key. When you use the key, the response time is in logarithmic relationship to the number of table entries, since the system uses a binary search. The key of a sorted table can be either unique, or non-unique, and you must specify either UNIQUE or NON-UNIQUE in the table definition. Standard tables and sorted tables both belong to the generic group index tables.
    This table type is particularly suitable if you want the table to be sorted while you are still adding entries to it. You fill the table using the (INSERT) statement, according to the sort sequence defined in the table key. Table entries that do not fit are recognised before they are inserted. The response time for access using the key is in logarithmic relation to the number of
    table entries, since the system automatically uses a binary search. Sorted tables are appropriate for partially sequential processing in a LOOP, as long as the WHERE condition contains the beginning of the table key.
    <b>Hashed Internal Tables</b>
    Hashes tables have no internal linear index. You can only access hashed tables by specifying the key. The response time is constant, regardless of the number of table entries, since the search uses a hash algorithm. The key of a hashed table must be unique, and you must specify UNIQUE in the table definition.
    This table type is particularly suitable if you want mainly to use key access for table entries. You cannot access hashed tables using the index. When you use key access, the response time remains constant, regardless of the number of table entries. As with database tables, the key of a hashed table is always unique. Hashed tables are therefore a useful way of constructing and
    using internal tables that are similar to database tables.

  • I need to  know the name of the database table and the fields in that table

    hi,
    i need to I need to  know the name of the database table and the fields in that table for the following fields of the front end .
    1) incident details.
    2) ownership details
    3) injury type
    4) % of investigation completed withen 7 days.
    5) count of incident type
    6) cost of workers compensation claim.
    7) injury resulting from for workers compensation claim
    8) investigation free text.
    9) investigation contribution factors.
    10) investigation root cause.
    11) investigation root cause free text
    12) employee risk assesment
    13) protential infrigment notice issued
    14) actual infrigment notice issued.
    15) actual infrigment notice reference number.
    16)vehicle damaged text.
    18) when the incident occured.
    thanks and regards,
    pronoy .

    Hello,
    Check CCIHT* under se16 and search for relevant information
    Thanks
    Jayakumar

  • Tables r occupying around 12GB.i want to know the space occupied by indexes

    Tables r occupying around 12GB.i want to know the space occupied by indexes.
    Is there any relation between data tablespace and index tablespace.??

    well, in _segments you have all the segments, just filter on the type (index) and SUM that. That's what I would do anyway.                                                                                                                                                                                                                                                       

  • Get the names of all tables

    First I want to tell you: I'm a amateur concerning Java Programming.
    My task is to write a java program - using JCO -, which retrieves the names of all tables (a user can access).
    Can anybody help me, please?

    Hi Michael,
    i can't help you because i don't know anything about JCO!
    It's simply funny and i'm happy to see a "known face" here!
    Perhaps this will help you:
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sapportals.km.docs/documents/a1-8-4/tips and tricks for sap java connector client programming.pdf
    And don't be so decent...you're not so bad in Java at all
    Greetings
    Florian

  • Want to know the coding  of  trigger

    hi,
    i have created a 'Push Button' and the name of the button is APPROVE, which means that higher authority of the company can use this button and after approving that form the user can see the information.
    The problem is this i can't understand the coding of the APPROVE 'Push Button'.
    Plzz help me, it's realy urgent.

    hi,
    iknow the to create trgger but i just want to know the coding of that trriger .
    ( have created a 'Push Button' and the name of the button is APPROVE, which means that higher authority of the company can use this button and after approving that form the user can see the information.
    The problem is this i can't understand the coding of the APPROVE 'Push Button'.)

Maybe you are looking for

  • ICloud Photo Library Beta Resolution of Video/Photo

    My understanding was that photos that were uploaded from my iOS device to iCloud Photo Library would be stored in iCloud at their original resolution. So far this does not appear to be the case as a video I shot with the back camera on my iPhone 5 (1

  • How to use counter to test High frequency ?Any tutorial ? Thanks!

    thanks

  • Pc suite goes not connected

    hi. I have 6131 and pc suite. all was working nice but lately i have to authenticate phone and "get connected" each time i wanna use BT . before it was always online. i have set the BT option working all time in my cell. what could be the prblm?

  • Command Key Not Working

    My Command (CMD) keys are not working on my iMac. It doesn't matter what application I am using and I've tried different keyboards with the same result. I checked my startup items and nothing is there. Login as different user, same problem. Potential

  • Filmstrip view of photos - images

    Does anyone know how to display a filmstrip view of photos or images in a SAP GUI similar to the standard XP functionality ? [http://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/windows_view_filmstrip.mspx?mfr=true] I fores