Need Information on database tables in OIM Schema

Hi All,
Is there any document/link where can I get all the information on all OIM Schema database tables like obj, orf and so forth information?
Regards,
Sunny

Hi,
Also, you can perform the queries below to get the table names and the name of each field when using the OIM's api. Change the OIMDBUSER value for your OIM's schema name. You'll notice some tables do not have comments, for example, the resource and process form tables (starts with UD). For the ""UD_*" tables, you can get the SDK_DESCRIPTION
<h3>Getting the table names WITHOUT UD_ descriptions</h3>
*SELECT* t.owner, t.table_name, tc.comments <br>
*FROM* all_tables t, all_tab_comments tc <br>
*WHERE* t.owner = 'OIMDBUSER' *AND* tc.table_name = t.table_name
*ORDER BY* t.table_name
<h3>Getting the table names WITH UD_ descriptions</h3>
*SELECT* t.owner, t.table_name, NVL(tc.comments, NVL(sdk.sdk_form_description, 'No Comments')) comments <br>
*FROM* <br>
   all_tables t<br>
    *LEFT OUTER JOIN* sdk *ON* t.table_name = sdk.sdk_name, <br>
   all_tab_comments tc <br>
*WHERE* t.owner = 'OIMDBUSER' *AND* tc.table_name = t.table_name
*ORDER BY* t.table_name
<h3>Getting the column names for OIM API</h3>
*SELECT* lku_field, lku_type_string_key <br>
*FROM* lku <br>
*WHERE* lku_type = 'f' <br>
*ORDER BY* lku_field
Renato

Similar Messages

  • What privilege is needed to browse all tables in a schema

    I used SQLPlus to login to DB. When I clicked "table" in the left side window, no tables is shown. What privilege is needed to browse all tables in a schema?
    Thanks.

    SQL*Plus is a command-line interface. There is no side window to click on. Perhaps you're talking about SQL Programmer? Or are you talking about some other tool?
    What user are you logging in as? What user owns the objects? Do you just want to see that the tables exist? Or do you want to be able to see the data as well?
    Justin

  • Need information about Internal Tables

    Hi Every one!
    I Need some information about Internal tables. Pls help be above the same.
    Thanks & with Regards,
    Chandra.

    Hi..,
    <b>
    Internal tables </b>
    Internal tables provide a means of taking data from a fixed structure and storing it in working memory in ABAP. The data is stored line by line in memory, and each line has the same structure. In ABAP, internal tables fulfill the function of arrays. Since they are dynamic data objects, they save the programmer the task of dynamic memory management in his or her programs. You should use internal tables whenever you want to process a dataset with a fixed structure within a program. A particularly important use for internal tables is for storing and formatting data from a database table within a program. They are also a good way of including very complicated data structures in an ABAP program.
    Like all elements in the ABAP type concept, internal tables can exist both as data types and as data objects A data type is the abstract description of an internal table, either in a program or centrally in the ABAP Dictionary, that you use to create a concrete data object. The data type is also an attribute of an existing data object.
    <b>Internal Tables as Data Types</b>
    Internal tables and structures are the two structured data types in ABAP. The data type of an internal table is fully specified by its line type, key, and table type.
    <b>Line type</b>
    The line type of an internal table can be any data type. The data type of an internal table is normally a structure. Each component of the structure is a column in the internal table. However, the line type may also be elementary or another internal table.
    <b>Key</b>
    The key identifies table rows. There are two kinds of key for internal tables - the standard key and a user-defined key. You can specify whether the key should be UNIQUE or NON-UNIQUE. Internal tables with a unique key cannot contain duplicate entries. The uniqueness depends on the table access method.
    If a table has a structured line type, its default key consists of all of its non-numerical columns that are not references or themselves internal tables. If a table has an elementary line type, the default key is the entire line. The default key of an internal table whose line type is an internal table, the default key is empty.
    The user-defined key can contain any columns of the internal table that are not references or themselves internal tables. Internal tables with a user-defined key are called key tables. When you define the key, the sequence of the key fields is significant. You should remember this, for example, if you intend to sort the table according to the key.
    <b>
    Table type</b>
    The table type determines how ABAP will access individual table entries. Internal tables can be divided into three types:
    <u>Standard tables</u> have an internal linear index. From a particular size upwards, the indexes of internal tables are administered as trees. In this case, the index administration overhead increases in logarithmic and not linear relation to the number of lines. The system can access records either by using the table index or the key. The response time for key access is proportional to the number of entries in the table. The key of a standard table is always non-unique. You cannot specify a unique key. This means that standard tables can always be filled very quickly, since the system does not have to check whether there are already existing entries.
    <u>
    Sorted tables</u> are always saved sorted by the key. They also have an internal index. The system can access records either by using the table index or the key. The response time for key access is logarithmically proportional 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. When you define the table, you must specify whether the key is to be unique or not. Standard tables and sorted tables are known generically as index tables.
    <u>
    Hashed tables</u> have no linear index. You can only access a hashed table using its key. The response time is independent of the number of table entries, and is constant, since the system access the table entries using a hash algorithm. The key of a hashed table must be unique. When you define the table, you must specify the key as UNIQUE.
    <b>
    Generic Internal Tables</b>
    Unlike other local data types in programs, you do not have to specify the data type of an internal table fully. Instead, you can specify a generic construction, that is, the key or key and line type of an internal table data type may remain unspecified. You can use generic internal tables to specify the types of field symbols and the interface parameters of procedures . You cannot use them to declare data objects.
    <b>Internal Tables as Dynamic Data Objects</b>
    Data objects that are defined either with the data type of an internal table, or directly as an internal table, are always fully defined in respect of their line type, key and access method. However, the number of lines is not fixed. Thus internal tables are dynamic data objects, since they can contain any number of lines of a particular type. The only restriction on the number of lines an internal table may contain are the limits of your system installation. The maximum memory that can be occupied by an internal table (including its internal administration) is 2 gigabytes. A more realistic figure is up to 500 megabytes. An additional restriction for hashed tables is that they may not contain more than 2 million entries. The line types of internal tables can be any ABAP data types - elementary, structured, or internal tables. The individual lines of an internal table are called table lines or table entries. Each component of a structured line is called a column in the internal table.
    <b>
    Choosing a Table Type</b>
    The table type (and particularly the access method) that you will use depends on how the typical internal table operations will be most frequently executed.
    <b>
    Standard tables</b>
    This is the most appropriate type if you are going to address the individual table entries using the index. Index access is the quickest possible access. You should fill a standard table by appending lines (ABAP APPEND statement), and read, modify and delete entries by specifying the index (INDEX option with the relevant ABAP command). The access time for a standard table increases in a linear relationship with the number of table entries. If you need key access, standard tables are particularly useful if you can fill and process the table in separate steps. For example, you could fill the table by appending entries, and then sort it. If you use the binary search option with key access, the response time is logarithmically proportional to the number of table entries.
    <b>Sorted tables</b>
    This is the most appropriate type if you need a table which is sorted as you fill it. You fill sorted tables using the INSERT statement. Entries are inserted according to the sort sequence defined through the table key. Any illegal entries are recognized as soon as you try to add them to the table. The response time for key access is logarithmically proportional to the number of table entries, since the system always uses a binary search. Sorted tables are particularly useful for partially sequential processing in a LOOP if you specify the beginning of the table key in the WHERE condition.
    <b>
    Hashed tables</b>
    This is the most appropriate type for any table where the main operation is key access. You cannot access a hashed table using its index. The response time for key access remains constant, regardless of the number of table entries. Like database tables, hashed tables always have a unique key. Hashed tables are useful if you want to construct and use an internal table which resembles a database table or for processing large amounts of data.
    regards,
    sai ramesh

  • Synchronize database table in same schema

    Hi Guys,
    wish to all. here is the problem we have the three tables. like A, B and C. we need synchronize the table A and B in same schema. table B fetch the record from C. (ie need to create database link B and C) table A used for application. any one throw some balls related for this issue.
    Thanks in Advance
    Ruby

    Let me see if I'm getting well
    You have table B which is feed by remote DB table C
    Then you need to insert all those table A records NOT included in B
    and
    then Insert all records on table B NOT included in A
    ...that is what I understand as 'sync'
    If above is correct then you should use the SQL MINUS statement, with the above suggestion of bulk insert (insert into... select * from ...).
    Luck

  • APEX  How do I create a Form based on a Database Table from other schema

    My APEX schema is WISEXP. I have a database table that resides in WISDW schema on the same database. I want to create Tabular form based on this table.
    I am not able to create a FORM based on the table from WISDW schema. I am able to create a FORM based on SQL though from this table in WISDW schema - but it does not do any action on Update/Insert rows.
    Appropriate Synonyms and grants are created. Is there a limitation or am I missing something? Please advise.
    thanks
    Rupen

    If Rupen is using 2.2 or 2.2.1, it is likely he is running into the bug described here: Re: Workspace to Schema Assignments
    In that case, it may be a necessary and sufficient workaround to assign the foreign schema to the workspace.
    Scott
    Message was edited by:
    sspadafo

  • Persist XML Data to Database Table - Generic XML Schema

    Hi,
    I would like to represent data in XML format and persist to any database tables.
    The ideal xml is like:
    <TABLE NAME="TABLE1">
    <TABLEDEF><COLUMN NAME="COLUMN1"/><COLUMN NAME="COLUMN2"/></TABLEDEF>
    <ROW><COLUMN VALUE="value1"/><COLUMN VALUE="value2"/></ROW>
    <ROW><COLUMN VALUE="value11"/><COLUMN VALUE="value22"/></ROW>
    </TABLE>     
    <TABLE NAME="TABLE2">
    </TABLE>     
    The XML could then be parsed, and saved to database with JDBC by manually composing the statement strings.
    To reduce the coding effort (xml parsing, JDBC connection, etc), are there any open source projects available to achieve the above purpose? The popular O/R mapping tools like Hibernate, Castor, etc, can't handle this scanario because they require the knowledge of the tables on the server side in order to create the mapping files in advance.
    Thanks for the help!

    Hi,
    I would like to represent data in XML format and persist to any database tables.
    The ideal xml is like:
    <TABLE NAME="TABLE1">
    <TABLEDEF><COLUMN NAME="COLUMN1"/><COLUMN NAME="COLUMN2"/></TABLEDEF>
    <ROW><COLUMN VALUE="value1"/><COLUMN VALUE="value2"/></ROW>
    <ROW><COLUMN VALUE="value11"/><COLUMN VALUE="value22"/></ROW>
    </TABLE>     
    <TABLE NAME="TABLE2">
    </TABLE>     
    The XML could then be parsed, and saved to database with JDBC by manually composing the statement strings.
    To reduce the coding effort (xml parsing, JDBC connection, etc), are there any open source projects available to achieve the above purpose? The popular O/R mapping tools like Hibernate, Castor, etc, can't handle this scanario because they require the knowledge of the tables on the server side in order to create the mapping files in advance.
    Thanks for the help!

  • Gather the "System status component information" via database table

    Hello!
    Which SAP/maxdb-table contains the "System status component information" data ?
    (i.e all components installed in the Abap-part).
    What does a sql statement (via dbmcli) look like to extract this information from that table?
    Version of the ABAP AS is NW2004s, maxdb is on 7.6.01.12
    Regards,
    Fredrik
    Message was edited by:
            Fredrik  Rosengren
    Message was edited by:
            Fredrik  Rosengren

    Hello Frederik,
    I think you mean table CVERS.
    dbmcli -d xxx -u xxx,xxx sql_execute select * from cvers
    Something like that.
    Regards, Michael

  • Need information on OAM 11gR2 protecting OIM 11gR2

    Hi All,
    I need to implement a solution wherein I have to protect OIM 11gR2 application using OAM 11g2.
    So in this case the identity store for OIM is the normal Oracle database and we have used the generic LDAP connector to provision the users to a LDAP directory which is the identity store for OAM.
    I have gone through the OIM integration with OAM and it talks about a lot of steps involving extension of the identity store for both OIM and OAM,(Integrating Access Manager and Oracle Identity Manager - 11g Release 2 (11.1.2))
    In my case I don't need the features like centralized password management functionality...we only want to protect the OIM application.
    So is it possible to enable SSO without
    1)Externalizing the identity store of OIM to the LDAP directory which is the identity store for OAM,and hence not running the LDAP sync utility
    Also can you please guide me to a document that specifies the steps.
    Thanks

    Hi Thiago,
    Thanks for your replies.
    Yes, I followed certification matrix and tried to install 11.1.1.6 only on wlserver 10.3.6.
    Can you please eloborate on the below points? Or If there are any urls for detailed steps, please provide them.
    -What you have to do:
    +2.1-On Application Server Navigator you can create types of connection:+
    +2.2-Integrated WLS option+
    +2.3-Standalone WLS option+
    +2.4-This first option you can install a local standalone WLS 10.3.6 server on your environment, then create a separate "integrated WLS" connection to the standalone server.+
    +2.5-Then go to your Application's properties through the Application menu -> Application Properties -> Run -> Bind to Integration Application Server option you can the brand new option created WLS server connection to work with your application.+
    +3.0- Don't forget that you need to install the ADF Runtimes for the server to be able to work with ADF applications+

  • Need information: Rev Recgn tables

    Dear All,
    Iam a functional consultant learning revenue recognition.
    Can you pls throw some light on the tables VBREVK,VBREVR,VBREVE in basic terms?
    Which process loads data into which tables etc.
    What do these tables contain basically?
    Thanks,
    nsp
    Edited by: nsp nsp on Oct 28, 2009 9:24 AM

    VBREVR - Shows the documents with the amount of Revenue that need to be recognized.
    VBREVK - Shows for each item the Revenue amt recognized and the amount that is yet to be recognised.
    VBREVE -  It shows the documents at detailed levels splitting the revenue amount into buckets of different period. The BUDAT field will be filled with the date when the revenue is recognized, for the deferred revenue amount it would be empty.
    The first 2 tables doesn't have the amount split into periods, but the VBREVE table does.
    Here are some notes ..
    820417
    782758 
    1256525
    779365/1172799  - Best Practice Guide
    1166848 - RR Customizing Settings
    Hope this helps..
    Let me know if you need any more details.
    Regards,
    Aj.

  • How to customize Database Tables Application Connector to OIM

    Hi,
    Anybody know whether is it possible to customize Database Tables Connector that it could be used to make reconciliation to any table in OIM schema (not only to USR table, that is default)?
    I have reviewed config xml files but did not found any entry that could be used to achieve this.
    Thanks in advance,
    Maciej.
    Edited by: maciej.mac on Oct 12, 2009 11:58 PM

    Hi,
    The custom DB App table connector is used to reconcile identities or account information from the target tables. So when you create a GTC connector this process will create all OIM objects for you (Resource Object, Process, Recon rules etc).
    You need to look into deploymenmt document for 'GTC DBApp Tables Connector'. look into the following link for section : "3 Creating the Connector".
    Link : [http://download.oracle.com/docs/cd/E11223_01/doc.910/e11194/create.htm#CIABIJCH]
    Remember as not to create this as connector for 'trusted mode'. This connector will replicate all the tables from the target to OIM and reconcile data what you want to these tables. But this data will behave as a 'Account for the User', so you need to make sure that you have some unique matching attribute at the target tables as well to link this account to OIM user.
    I recommend you to go thorugh the deployment doc and see what is created in OIM. This will make it more explicit.

  • Do I need to deploy Public Synonym in Target Schema?

    Hi,
    I need to develop and deploy a mapping. I need to use source table in source schema but a Public Synonym for a terget table. This destination table for the public synonym is not target_schema where mapping is to be deployed. Do I still need to deploy the public synonym into my target schema where mapping is or not? I was 3wandering since its a public synonym and the actual destination table is already in database I may not have to deploy this synonym. Thanks for the help in advance..

    OWB does not currently directly support public synonyms. You will have to deal with these synonyms outside OWB and if you use the synonym from a mapping you can trick OWB to use it by creating and using a dummy table in the mapping.
    Regards:
    Igor

  • Text value Search in all tables of a schema

    Hi,
    I have a schema and a lot of tables.
    Now i want to search a given value in all tables and all columns.
    Actully for e.g I have a value 'http://192.168.1.15:8080://....'
    which is to be replaced by 'http://10.15.1.16:8080://.....'
    I need information of all table name and all their respective columns having this value.
    Is their any tool, or sql script which can scan.
    I am using 10g
    Thanks
    Message was edited by:
    [email protected]

    Hi,
    it's quite easy to write a plsql-prog using dynamic sql (if tthe value you've just to
    search varchar cols). I've never heard about a tool for search and replace within a whole schema.
    Torsten

  • How to load SAP R/3 tables into a schema in SAP HANA Cloud Platform

    Hello, everyone.
    First of all, my apologies for any basic mistakes, I'm new here, so there's a lot of stuff I don't know yet.
    I need to upload some tables to a schema in my HANA trial account to test some algorithms and see if the kind of application I want to build is possible, but I don't know the best way to do this.
    To my understanding, using the Cloud Connector would merely make my tables visible to my application in the cloud, but it would not actually upload them (or rather, I'm sure there's a way to upload them using it, but I suspect there are far simpler methods out there).
    I think one of the simplest possible methods would be to create the schema, open a tunnel using the console client, and to import the tables to the schema via the HANA Studio. Maybe, if that doesn't work, a CMIS repository could be used (although I'm somewhat skeptical, as I think something like this it's not its intended use). Or maybe there's another possibility I'm not seeing. Either way, I would love to hear some answers that could shed some light on this.
    Also, as I mentioned earlier I'm only using a trial account for this, I don't know if there's any limitation that could prevent me from doing this. I'd also like to hear your opinion on this matter.
    Thank you.

    BUDAT is the technical name for Posting Date field. This field is used many DB Tables/ Strucutres. Using where used option you can find the required tables.
    I suggest you to look at BSEG table for Finace Document postings by Posting Date.

  • Creating a DB view in OIM schema

    For one of my requirement I am asked to create a Database view in OIM schema.
    Now since I cannot share the password for OIM schema, one user will also be required to create in DB having read access on DB view.
    What would be impact of this in IDM application?
    Will there be any impact of creating a user and Database OIM Schema? OIM version is 9.1.0.2.
    Thanks,
    MS

    You mean this?
    select products.name, sum(suppliers.quantity)
      from products, suppliers
      where products.name = suppliers.product
      group by products.name-Arun

  • Modify database table from internal table

    Hi All,
    I need to update database table from internal table which is having around 30000 records.
    I am using MODIFY tabname FROM TABLE int_tabname...
    Using this statement, I can modify the databse records very well. But user has some additional requirement.
    He wants that the table should be modified from the internal table and after modification we should have the erroneous records to be displayed if any.
    e.g. if 1500 records out of 30000 are erroneous then only 28500 records should be updated and 1500 records should be displayed as erroneous records so that the user can correct them and use them again for executing the program.
    Is there any FM which imports the database table name and internal table, modifies the database and exports an internal tanle with erroneous records?
    Any help will be appriciated,
    Regards,
    Neha

    Hi
    modifying datbase table useing internal table
    <b>advises</b> before updating this datbase table plz lock that table to avoid incosistency
    write the logic for modifying
    Modify the database table as per new dunning procedure
      MODIFY fkkvkp FROM TABLE lt_fkkvkp   .
    and finally unlock the table
    <b>example</b>
    *To lock table for further operations
      constants: lc_tabname TYPE  rstable-tabname  VALUE 'FKKVKP'  . "FKKVKP
      CALL FUNCTION 'ENQUEUE_E_TABLE'
        EXPORTING
          tabname        = lc_tabname
        EXCEPTIONS
          foreign_lock   = 1
          system_failure = 2
          OTHERS         = 3.
      IF sy-subrc EQ 0.
      To fetch all the contract accounts for customers of the segment
      Households/SME.
        PERFORM fetch_contract_accounts using lc_tabname .
      ENDIF.                    " IF sy-subrc EQ 0.
    *wrote the logic
    Modify the database table as per new dunning procedure from internal table
      MODIFY fkkvkp FROM TABLE lt_fkkvkp   .
    *unlock the tbale
      CALL FUNCTION 'DEQUEUE_E_TABLE'
       EXPORTING
         TABNAME   =  uc_tabname .
    <b>Reward if usefull</b>

Maybe you are looking for

  • Video Solution

    I got an Xserve G5 from a friend but it has a ATI-VGA video card which means it can only be connected to a VGA monitor, I was wondering if there's a way to hook it up to my 20" Apple Cinema Display (new model), maybe an adapter or something like that

  • Editor freezes after selecting tool.

    I am using PSE 12 on a Macbook Air.  I have a RAW file.  I select "Open Image" so that I can use the non-RAW tools.  When I open the Editor, I can use the mouse freely to select a tool.  I select Dodge.  The mouse cursor changes from the arrow tip to

  • Where is the render queue in Cinema 4D Lite? My menu doesn't show it

    I'm having a problem rendering a short animation from Cinema 4D. I began the project in a computer lab, where there's the obvious Render Queue setting under the Render menu drop-down. My problem is I'm now working at home with my CC downloaded versio

  • What websites need to be unblocked in order to use the Creative Cloud and Assets behind a firewall?

    The business I work for just installed a new firewall and now Creative Cloud and it's assets are not working.  What do I need to have them unblock

  • My gmail in the email app doesn't support thai e-mails. how can i fix this?

    I currently own an ipad 2 and am loving it! However, when I go to check my g-mail through the e-mail app, i get a funky script like: ÑáĶ áæØé It's only for emails sent from thailand in thai font. why is this happening and how can i fix it? Please hel