Registering db objects (tables , views , e.t.c)

Hi,
Having connected with a Developer Responsibility , i see a submenu of "Database" which contains the menu entries "Tables" , "Views" , "Sequences"...
When these functions are used....????In order to define/register custom tables,views,sequences with the Application Object Libraries....???
If yes , is it required to ...and under which circumstances...???
Somebody developed some custom form modules/reports using custom db objects which have not been registered...!!!
Note: I use EBS 11.5.10.2
Thanks , a lot
Sim

Registration is not necessary in order for your custom developments to work. However, if You are planning on using certain standard functionality (i.e. flexfields, attachments) on your custom objects, you'll need to register some of the information.

Similar Messages

  • How to get the List of Database Objects (Table/View) for a given APEX Page.

    Hi,
    I have an application and that consist of pages like page1,2,3,.....
    *1.* I want a report which can give me the list of all the Pages1,2,3,....
    I am using the following query to acheive this.... THIS IS FINE..
    select a.workspace, a.owner, a.application_name, b.page_id, b.page_name
      from apex_applications a,
           apex_application_pages b
    where a.workspace = b.workspace
       and a.application_id = b.application_id*2. Now, I want for each individual page*, the list all the database objects (tables/views), which that page is using.
    I am using ALL_DEPENDENCIES , but I am not getting the result.
    So, want to know if there any view/table, where I can get the Application Pages & there database object list...
    Thanks,
    Deepak

    Hari,
    Thanks for the response.
    The view APEX_APPLICATION_PAGE_DB_ITEMS will only give me the table name related to any Page Items defined to that page..It will not give me all the database objects..
    suppose we have a Page, having a report based on multiple tables and there is no Page items defined on that page, we will not have any value in this ....DB_ITEMS table. same thing if we have define some PL|SQL(using some table/view) in a Process, that will not be populated in .....DB_ITEMS table. I want some thing like all the database objects (table/views/function/procedure/.....) for a particular Page ID.
    Thanks,
    Deepak

  • Database objects Tables, Views, Indexes not expand in Connections navigator

    In SQL Developer tool when I clicked on any database object: Tables, Views, Indexes, Packages, Procedures, Functions, and Triggers none of them expands in Connections navigator so I am not able to see all tables, Views, Indexes in this schema objects.
    Please advise
    Thanks a lot
    Vincent

    If the user you're connecting with is not the owner of the objects, you can access them through the Other Users node.
    Hope that helps,
    K.

  • Is there any software which displays all form objects - tables, views, etc?

    Dear friends,
    I need to know if we have some software product which opens an Oracle form and shows all objects (tables, views, procedures, functions, and so on) accessed by it.
    For each form, this software should show all operations made in each table - that is, whether form creates, updates, reads or deletes data in each table accessed by the form.
    If there's any software which makes such analysis, please let me know. I'd rather be downloading free software, but a trial version or a paid one can be considered as well.
    Best regards,
    Franklin

    Hello all,
    sorry, I don't know whether my 1st message was clear, so I am trying to rewrite it.
    I'm thinking about a software which creates a database objects list report; this report shows all database objects being accessed by the form - for example, it can list all tables being accessed by the form, showing a CRUD (Create, Read, Update and Delete) for each accessed table, or list all packages being executed by the same form, and so on. For example:
    Form: CLI0001.FMB
    Package -> Operation
    PCK_ACCOUNTS -> E (Execute; but that's a suggestion, we can have 'R' instead)
    Table -> Operation
    ACCOUNTS -> CR (Create + Read)
    PAYMENTS -> D (Delete)
    Sequence -> Operation
    SEQ_ACCOUNTS -> R (Read)
    View -> Operation
    VW_CLIENTES -> R (Read)
    If there's any software which can do it, please let me know. Thanks in advance.
    Best regards,
    Franklin
    Edited by: franklinbrasil on 15/10/2008 19:26

  • Do I need to be owner of database in order to see its objects(tables,view)?

    Hi there,
    I am connecting to Vision instance using the JDeveloper Database connection. The username/password I am using to connect is NOT the owner of the database. I can connect to database fine with no error but I can not see any database object like tables, triggers. Do I need to use the database owners username/password to connect to database so I can see the database objects like tables and views?
    Thanks.

    By default, the Connection Navigator shows you the objects that belong to the connected user. If you have access to objects owned by another user, you can add that user's objects to the navigator tree.
    1. Go to the connection navigator.
    2. Select the connection that you want to use.
    3. On top of the navigator panel is an icon that looks like a funnel - this is the filter schemas icon. Click it.
    4. This should open a dialog box with a shuttle. Available Schemas are on the left Displayed Schemas are on the right. You will see that only your current schema is on the right. Select the schema of the owner of the objects you want to see from the available schemas on the left and shuttle it to the right.
    5. Click the OK button.
    You should now have the objects owned by this schema available in the navigator.

  • What is the Table/View name for getting the Database Object Dependencies

    I am running the Database Object Dependencies report to get the reference of Database Object and their respective Application Component.
    Applications xxxx -> Application Reports -> Shared Components -> Database Object Dependencies -> Compute Dependencies
    I want to develop a report for the same purpose, Just want to know what is the APEX Tables / Views they are using to run this report, so that I can use the same Tables to create my own report.
    Thanks,
    Deepak

    Hi Andy,
    when I am using the following query...I am not getting any result...
    select name, type, owner
    from all_dependencies
    where referenced_owner = 'APEX_030200'
    and referenced_name = 'WWV_FLOW_PATCHES'
    AND OWNER= 'XXXXXXX' --- (addeed this to the where clause)
    I modified the query.....I am getting the result.....
    select name, type, owner
    from all_dependencies
    AND OWNER= 'XXXXXXX'
    - But I am not getting which database object(table/view) is using which Application Page/Component like we have in Database Object Dependencies.
    - Also what is this REFERENCE OWNER & REFERENCE_NAME ----
    referenced_owner = 'APEX_030200'
    and referenced_name = 'WWV_FLOW_PATCHES'
    I am little bit confused, Can you pl expalin me in details......
    Thanks,
    Deepak

  • What are the tables/view used to Compute Dependecies Report

    Hi,
    what are the tables/views we have in APEX, which is used to create the Compute Dependecies Report
    Home -> Application xxxxx > Application Reports > Shared Components > Database Object Dependencies
    thanks,
    Deepak

    Hi Scott,
    thanks for the quick response.
    So my question is then...
    I want to create a APEX Report which will give me the following information.
    1. Application and all the Pages associated with it, which I am getting from apex_applications and
    apex_application_pages. This is OK
    2. List of all the Database Objects (Table/View) which the individual page is using, I mean relation between Page ID and database object. HOW to get that???.....(I want for each individual page, the list all the database objects (tables/views), which that page is using)
    Thanks,
    Deepak

  • What are the tables & Views related to  Authorization Schemes

    Hi,
    I want to export all the Authorization Schemes into csv or excel.
    Thanks,
    Raj

    Hi Scott,
    thanks for the quick response.
    So my question is then...
    I want to create a APEX Report which will give me the following information.
    1. Application and all the Pages associated with it, which I am getting from apex_applications and
    apex_application_pages. This is OK
    2. List of all the Database Objects (Table/View) which the individual page is using, I mean relation between Page ID and database object. HOW to get that???.....(I want for each individual page, the list all the database objects (tables/views), which that page is using)
    Thanks,
    Deepak

  • Inserting data into relational views of object tables

    I hope someone could help me to solve the following problem:
    I would like to design an object-relational database in O8i. Unfortunatly the client-software (GIS) can only understand relational data (except the object type 'geometry'). So I created relational views on my object tables. But now it is not possible to insert data in those views. Do I have to create triggers on those views for inserting data ???
    Nevertheless: Updating data in views makes no problems.
    Thank you for reading this and I look foreward to hearing from you soon.
    Christian Heil

    Hi Mohammed,
    I guess following is your requirement
    List1 tile is attached to "BOList1". On button press you wanted the data to be persisted to Business object "BOList1History"
    I assume that you have created "BOLIst1History" properly by associating a write Bdoc etc etc.
    Write a method in Business object "BOList" called ZUpdateHistory. This new method should contain code for creating an instance of "BOLIST1History" and fill the property values as per your requirement. Call this method from the Button press event as follows
    anchor.bo.ZUpdateHistory
    Hope this helps
    Regards
    Ganesh Datta

  • Listing tables/views/objects

    Hi all,
    The database I am working employs schemas to restrict accesses. When I use metadata to describe some objects (thought to be views), they turns out to be synonyms instead of being a table/view! As a result, using:
    conn->getMetaData("object", MetaData::PTYPE_TABLE) fails.
    However, using apps like toad/navigator, they are able to list the views/tables accessible in the schema. How do I use the metadata class to list objects like schemas and views?

    I doubt navigator uses OCCI either. The most straightforward way is simply query the metadata directly from the catalog. ALL_VIEWS (for example) probably has the mtadata you want for any view (or USER_VIEWS for a connected user).
    SQL> desc all_views
    Name Null? Type
    OWNER NOT NULL VARCHAR2(30)
    VIEW_NAME NOT NULL VARCHAR2(30)
    TEXT_LENGTH NUMBER
    TEXT LONG
    TYPE_TEXT_LENGTH NUMBER
    TYPE_TEXT VARCHAR2(4000)
    OID_TEXT_LENGTH NUMBER
    OID_TEXT VARCHAR2(4000)
    VIEW_TYPE_OWNER VARCHAR2(30)
    VIEW_TYPE VARCHAR2(30)
    SUPERVIEW_NAME VARCHAR2(30)
    SQL>

  • Are there seeded tables/views of DBI dimension objects in Oracle EBS?

    Hi!
    I wish to create custom Existing Source dimension objects but wish first to see exactly what is the table's structure (columns, width, data type). Are there seeded tables/views available in Oracle EBS?
    Thanks.

    Try https://etrm.oracle.com - search for "DBI"

  • How to differentiate ddic objects like table,view,structure,...etc?

    Hi,
    Experts,
    How to identify uniquely ddic objects like table,view,structure,...etc?
    Thank u,
    Shabeer Ahmed.

    Hi...
    Check the table field DD02L-TABCLASS.  .
    Here you get know about the ddic objects type

  • Can double tap action override table view tap functionality?

    So I have a table view object in my view...if you select a row, it executes the "didSelectRowAtIndexPath" method in my code.
    I would like the user to have the ability to double-tap (in quick succession) a row however, and register a different type of action. Is this possible to do without overriding the existing "didSelectRowAtIndexPath"...or will I need to write my own single-tap/double-tap logic using onTouchesBegin and then forget about using the whole "didSelectRowAtIndexPath" functionality?
    The main issue, is I don't want to have to lose the benefit of the single-tap and knowing the indexPath value...but when I do a double tap, it won't really matter where I'm at...

    Here's the best info I've found on this topic so far: [http://idevkit.com/forums/general-sdk/43-custom-uitableview-double-tap.html]. It looks like the author has read Handling Single and Multiple Tap Gestures in the +iPhone Application Programming Guide+ and has overcome most of the problems, but I haven't tried any of that code myself yet.

  • How can I create a Table View in Cocoa Applescript?

    This is my last resort. I've searched for days and only found tutorials for iPhone and Cocoa, and I have no idea where to start. I'm looking for a way to create a Table View, and fill it with a few cells that call a handler when clicked. I've looked through the Xcode help, the Apple documentation, and countless tutorials, and I don't know what to do. I'm sure what I'm asking is possible, because usually what is possible in Cocoa is possible in Cocoa-Applescript.
    Perhaps something like:
    myTableView's addCell_OfType_WithHandler("This is a text cell", text, "myHandler:")
    I would appretiate any responses and brief descriptions on the matter.

    You did not answer my first question, which was not an idle question. I'll answer here, but if cross-chatter appears in a different thread I'll ignore it. You'll have to keep track of the mess yourself.
    Apple_For_The_Win wrote:
    At this point, I've dragged a Table View onto my window, in Xcode. I've connected it to the value "myTableView", and that's where I need help. I'm specifically trying to add cells into the table view.
    I'll assume that 'connected it to the value "myTableView"' means that you've control-dragged in XCode from the table view in Main Menu.xib to a property in your applescript app delegate called myTableView. If that's not the case, please correct me.
    I prefer to use an array controller for this, so please drag an array controller object into main menu.nib. once you've done that, do the following:
    open the applescript app delegate and add a new property called "tableController"
    select the table view in the object list (you may need to open some disclosure triangles to reach it). and add appropriate (an) column name(s). you can hide column titles later if you like, but having named columns makes life easier.
    select the array controller in the object list
    rename the array controller "table data"
    open the attributes inspector, and then add the column name(s) as key(s) in the object controller area
    open the bindings inspector, and where it says "controller content", open the disclosure arrow and bind the content to the App Delegate object on the model key path self.tableController
    select the table view in the object list again, then go down a level and select each column in turn
    for each column, open the bindings inspector, and where it says "value", open the disclosure arrow and bind the content to the Table Data object with the controller key arrangedObjects model key path being the name of the column (which is the name of the key in the controller as well)
    back in the applescript app delegate, add code like the following:
      -- create a list of records, where each record represents a row and the column name is the record key
      set myData to {{column_1_name:"hello"}}
      -- convert it to an NSArray and add it to the controller content. don't forget the *my* keyword, or it won't work
      set my tableController to NSArray's arrayWithArray:myData
      -- may or may not be needed
      myTableView's reloadData()
    That should populate the table with simple text. if you want something more complicated (like buttons or links) then create the more complicated elements separately and add them to the data.

  • How to select a row in a single-select table view?

    Hello folks,
    I have a table view with a 'details' button. When a row is selected and 'details' is pressed, the table view disappears and a form view is displayed (like the toggle button in PCUI). I have implemented this using a navigation link. When I press 'cancel' in the form view, another navigation link takes the user back to the table view.
    My problem is, when the table view reappears, there is no row selected (the row that was selected previously, is de-selected). How do I make sure that the row remains selected?
    I tried using the collection_wrapper->mark() method in the inbound plug of the table view, but it works only for multi-select table.

    Hi Masood,
    Thanks for your reply.
    I had already tried using MARK ( iv_index = lv_index ), but it did not work because the first statement in the MARK method is
      check ME->MULTI_SELECT = ABAP_TRUE.
    Mine is a single-select table. So, using the MARK of the iterator object, with either the IV_BO or the IV_INDEX parameter also does not work. Is there any other way for a table with single row selection?
    Thanks!!!
    Rohan.

Maybe you are looking for

  • Purchase order - multiple address

    Hi We have a plant in Canada for which we are procuring materials from vendors. In the PO we send to the vendors, we have to mention the ship to address as the Freight forwarders address in the US border and the final destination in Canada. What is t

  • Run Admin Server with multiple Managed Servers each using different userid?

    We currently run separate WebLogic domain instances for each business application in a Unix environment. Each one is created using a unix userid unique to that application and which owns all the files and is used to run the process when that particul

  • Shared members issue

    Hi to all, I've a Problem with the shared members in a excel spreadsheet. I need to see all members in a specific dimension (shared members included). using members selection dialog box, i'm using the view method "by generation name" and the output o

  • Purchased a Tv show..but cant watch it.

    Im new to Mac, and so far its great. however... while using I tunes, i purchased a tv show (kyle XY), only a single episode. For some reason... I have the file in my tvshow/i tunes music/i tunes/ music . but i can't watch it... Everytime i click on i

  • ML Mail, Exchange vs. IMAP/SMTP?

    I'm setting up for a new mail service, the provider listed Exchange (MAPI) and IMAP+SMTP servers.  I didn't really want Exchange, what I wanted was IMAP with SSL.  However, Mail's auto config set me up with the Exchange service, via OWA. Which setup