Table usage: relative to folders

Hi,
If I know of a certain table, is there a fast way to query all my folders to find which folders are using that table?
Thank you,
Tim

I am also trying to get the custom folders that are using a particular table.
From all that was explained above, I figured out a way how to get the custom folders. The table eul5_segments can handle long sql statements because it puts them into four "chunks" of length 250 characters. I combined them into one string to do the search.
select t.obj_name
from eul_us.eul5_segments us,
eul_us.eul5_objs t,
(select seg_id,seg_chunk1||seg_chunk2||seg_chunk3||seg_chunk4 chunk
from eul_us.eul5_segments ) union_chunks
where us.seg_id = union_chunks.seg_id and
t.obj_id = us.seg_cuo_id and
union_chunks.chunk is not null and
instr (union_chunks.chunk,'table_name')<>0
Leah

Similar Messages

  • Std table relating planning folders to areas

    hi all,
    please can someone give me the standard table for relating all the planning folders to planning areas
    full points will be alloted
    thanks a lot
    veer

    Hi,
    Planning folders can have variables layouts and functions from different planning areas. To get all the components of a planning folder please use table UPB_PS_PROP and for variables UPB_PM_VARIABLE.
    Hope this was helpful
    thanks

  • CDG-01141 ERROR: Module Component Table Usage ...  Table usage ... requires primary key column for referential integrity

    For some strange reason when I modified a form, (commented out some code in a when-window-activated trigger) I now get the following error.
    CDG-01141 ERROR: Module Component Table Usage GR1130A.CUSTOMER.GR_CUSTOMER.GC: Table usage GR_CUSTOMER requires primary key column for referential integrity
    I am sure this is not related to my change, but do not know what may have caused this or how to fix it.
    Anyone seen this error before? been able to fix it?
    Thanks!
    Windows 7
    Oracle Database 10g Enterprise Edition Release 10.2.0.3.0
    Designer Version 6.5.95.4.8

    You know that Developer/Designer 6i is not certified for Windows 7, right? Also, your version is not the latest one, so you can try to install the latest patch set first.
    >Table usage GR_CUSTOMER requires primary key column for referential integrity
    Check if there is a PK in the table definition (not in the database, but in Designer).

  • Table usage in a module component necessary?

    hi,
    i would like to design a simply forms application. I need only two unbound text-fields (and two buttons) in a window.
    I create
    1. a module
    2. a module component
    3. four unbound items (two text; two button)
    4. I get the following generation error:
    CGEN-00041 ERROR: Module: MY_MODULE has no module components and/or table usages
    6. Ok, I create a table usage with one bound item (Rows Displayed = 1, Display = no)
    It is really necessary to create a table usage? I only need four unbound items(!!!)
    in a forms mask. The data will be not save in database, but they are important for a win_api_dialog in my application. I choose one of x tables in the base table usage window. Perhaps it is better to select the DUAL table!? Does anybody know an another solution without creating a table usage?
    best regards,
    tom rakete

    hi jflack, lennartv,
    I found a solution to generate a forms module without a table usage in the designer. After creating two unbound items I create an action item. I set the datasource type of the module component to >>none<<, because there is no table usage. Now the generation is successful.
    best regards,
    tom

  • Table usage in forms

    Hi,
    Is there a simple way to find out the tables used in a particular form (6i)?
    I have to make a list of the table usage per form (about 200 forms).
    The forms info is not stored in a database or in designer.
    Regards

    Hi,
    Is there a simple way to find out the tables used in a particular form (6i)?
    I have to make a list of the table usage per form (about 200 forms).
    The forms info is not stored in a database or in designer.
    Regards

  • Change table usage in a form

    Hello,
    I've been working on a project for a few months now, and in charge of building Forms.
    Just recently we upgraded our Designer 6.0 to Developer Suite 10g (Designer 9.0.4.5.6).
    In their infinite wisdom, the architects have chosen to rename some of the applications and following CDM-standards, all table definitions will have to be renamed also.
    As I am not keen on having to change all table usages in my forms manually, I would like to know if there is a way to do it in Designer itself.
    I know this wasn't possible in the older Designer version, so before I handled something like that in Forms Builder. But now another demand of the project is, to be able to have 100% generation for all forms, so that's not an option anymore.
    So, do I face a lot of work or can anyone give me something I can try?

    Hi,
    I'm sorry to say that maybe you have a lot of effort to pay.
    However, I think you have a tricky way that can help you solve your problem, but not considered a good solution. You can do remaping by overriding the default DML functionality of Form. In detail, you can override ON-INSERT,ON-UPDATE,ON-DELETE,ON-LOCK and ON-FETCH to replace the default SQL statements that Forms Builder automatically generates.
    In this case you just add these triggers to your changed modules, and that's all.
    Regards

  • Error for table usage of diferent tablespace

    I have a module with a table usage of other tablespace, I'm tried generate but I'm getting a error on table usage (Designer doesn't found this table)
    I don't understand, How working with objects of other tablespaces?

    Mmhh... I don't think that's what OP is looking for... I'd change your solution as follows :select a.TABLESPACE_NAME,
           a.BYTES/1024/1024 MB_total,
           b.BYTES/1024/1024 + a.AVAIL/1024/1024 MB_free,
           round(((a.BYTES-b.BYTES-a.AVAIL)/a.BYTES)*100,2) percent_used
      from (select TABLESPACE_NAME,
           sum(decode(maxbytes,0,BYTES,maxbytes)) BYTES,
           sum(decode(maxbytes,0,BYTES,maxbytes)) - sum(bytes) AVAIL
              from dba_data_files
             group by TABLESPACE_NAME) a,
           (select TABLESPACE_NAME, sum(BYTES) BYTES
              from dba_free_space
             group by TABLESPACE_NAME) b
    where a.TABLESPACE_NAME = b.TABLESPACE_NAME
    order by 4 desc;

  • Mix object tables with relational tables?

    Hallo,
    is it possible to mix object tables with relational tables in one database?
    I didn't succeed in assigning a foreign key from a relational table to an object table.
    Is this only working with column objects in relational tables?

    Hi
    is it possible to mix object tables with relational tables in one database?
    Every database contains both types of tables. So, it is basically not a problem.
    I didn't succeed in assigning a foreign key from a relational table to an object table.
    Is this only working with column objects in relational tables?It would be interesting to know how you tried... e.g. what error you get... Here an example (executed on 11.1).
    SQL> create or replace type tt as object ( n number );
      2  /
    SQL> create table ot of tt (constraint ot_pk primary key (n));
    SQL> create table rt (n number, constraint rt_ot_fk foreign key (n) references ot (n));
    SQL> insert into ot values (tt(1));
    SQL> insert into rt values (1);
    SQL> insert into rt values (2);
    insert into rt values (2)
    ERROR at line 1:
    ORA-02291: integrity constraint (OPS$CHA.RT_OT_FK) violated - parent key not foundHTH
    Chris

  • LOV on  item on 2nd level lookup table usages - Designer 6i

    In Designer 6i, creating a module:
    In a module component, I have a lookup table usage which in turn has a lookup table usage against it ...etc
    e.g
    MCO
    - Base tab 1
    - Lookup tab 1
    - Lookup tab 2
    - Lookup tab 3
    Can I have an LOV fire up from and return into display items in lookup tab 2 and 3 ????
    Currently the generator sets any item from those table which I make INSERTable, back to Display only.

    Mr Short
    unless the behaviour has been changed in 6i, its not possible.

  • Re-map table usage in Oracle9i Designer

    Hi,
    I have Web application in Designer. One of the module components has a table usage that is based on a view. After some initial testing, we determined that the view was not going to be fast enough for the application. We created a materialized view which solved our speed issue. However, our module component table usage is still referencing the original view. I tried to "copy object" on the module, which from what I've read allows the re-mapping of table usages. However, my client crashes when I click the remap button.
    I'm using Oracle9i Designer 9.0.4.4.8.
    Does anyone have any ideas, or possibly another way of accomplishing this task?
    Thanks,
    Chad

    I'm trying to understand what you have and what you are trying to do. First of all, the Web PL/SQL generator requires you to generate Table APIs (TAPIs) for every table referenced in a module component. If you created one based on a view, the only way to get it to work is to generate a TAPI on the view, which Designer doesn't do natively. I've fooled Designer into generating a view TAPI by creating a table definition that looks exactly like the view and has the same name, and generating the TAPI for that table. Even then, I have to hand-modify the resulting TAPI to remove references to ROWID, since views don't have rowids.
    I've never tried generating TAPI against a materialized view (MV) - it might work, since there really is a table to instantiate the MV, but it might require the same work around as the view.
    As for the reference in the module component definition, I think you have to delete the old table reference and create a new one. I'm not sure what you are doing with "copy object". Remapping is usually done when you are copying an object from one application system to another, and want the references to point at equivalent objects in the new application system, not the objects in the old one.

  • Table for relation between WIP and Production Order

    Dear All,
    Please provide me table having relation between Production Order Number and WIP for it.
    Regards,
    Sachin

    http://www.sap-img.com/
    Free ABAP eBook Download
    SAP MM, SD, FI, PS, PP, PM, HR, System Tables
    Regards,
    Rajesh Banka

  • How to find how/if two tables are related?

    Hello Frnds,
    If there an FM which can tell if two tables are related so that a join can be performed on them and if yes, it can tell on which field they are related?
    Regards,
    Arpit

    thanks,
    Rich, tables will be taken as input from user as parameters and hence will be dynamic. I want to use this logic for the purpose where user wud like to know, for example, which all DEL for SO are created by same user. Now in this case I want to know if there is relation between LIKP, LIPS and VBAK. But if user wants to see which all GR were created by same user who created POs, tables will be MKPF, MSEG and EKKO.
    SO what I am trying to say is tables will change as per input but I need to before before processing logic, if there any relation exsits between input table at all or not?
    Regards,
    Arpit

  • Summary & detailed table usage flags in Des6iR2

    With the coming of the Dependency Analyzer it looks as if the CRUD table usage flags of modules have disappeared in the API.
    I want the definitions via reverse engineering of the usages of embedded SQL in pro-fortran modules in the repository 6iR2.
    In the migration manual (pg 88) it looks as if the detailed usage flags can not be imported out of release 1.3.2 Des/2000.
    Has somebody a solution ???

    With the coming of the Dependency Analyzer it looks as if the CRUD table usage flags of modules have disappeared in the API.
    I want the definitions via reverse engineering of the usages of embedded SQL in pro-fortran modules in the repository 6iR2.
    In the migration manual (pg 88) it looks as if the detailed usage flags can not be imported out of release 1.3.2 Des/2000.
    Has somebody a solution ???

  • Db table details for contribution folders

    Hi,
    I need to get the contribution folders details from db for our purpose. From which table will i be able to retreive it. I need the path of contribution folder rather than collection id. Please let me know how can i acheive that.
    Thanks

    I need the contribution path like "/folder1/folder2" in this format. Please let me know if any of the ucm tables store this information.This information doesn't exist. Contribution folders are only virtual. UCM shows content as belonging to some contribution folder based on collection ID. Consider this as search result based on this collection ID criteria. Content is stored only to two real folders: vault and weblayout (with their subfolders which have no relation to virtual contribution folders structure).
    Regards,
    Boris

  • Max No. of records in a table - performance related statistics of a table

    Hi all,
    Can anybody please help me on the performance related statistics depending upon the size of the table?
    I have a question regarding the scalability and(I think so) and performance.
    My record is having 20 columns and all columns together it will come upto around 200 bytes/record.
    What is the maximum no of records that can be stored in a table?
    Currently the table is having more than 500,000 records.
    Every month, 15,000 new records are added. A new requirement came up now. If that is implemented, no. of records per month will go upto 50,000.
    It means the table is getting filled up at more than three times faster every month.
    How this will effect my application's performance - Querying / Inserts / Updates ?
    Please help me.
    thanks and regards.
    Pandu

    There is no inherent limit to the number of rows in a table, I have several tables with over 20 million rows (and many of these are over 200 bytes per record).
    The performance impact of larger tables largely depends on how you access the tables. The size of the table will not really affect Inserts. Updates and Selects will become slower as the table increases, however, the magnitude of the impact will depend on how you access the tables. If most queries/updates go after single rows using a PK, then the impact will be minimal. If most queries/updates affect large numbers of rows using unindexed columns as selection criteria, then the impact is potentially huge.
    Depending on the nature of the data, and the way it is used, you may want to investigate partioning as a way of limiting the number of rows that need to be searched for any given query/update. Even with 500,000 rows currently and 50,000 a month coming in, you probably have several months to look at it before anything drastic needs to be done.
    Just make sure that you analyze the fast changing tables frequently.
    HTH
    John

Maybe you are looking for

  • Execute immediate and dynamic sql

    Dear all; Just curious....Why do developers still use dynamic sql..and execute immediate, because I always thought dynamic sql were bads and the use of execute immediate as well... or am I missing something...

  • Why do my PC not push to My Mac,Iphone4sIpad2

    I'm finding that the I Cloud is not that easy to work with. On my MacBook I enter things an it doesn't push to my 2 PCs I enter on my IPad2 and get same problem On my PC   Icloud I found I had 7 or 10 different Calenders so I deleted some, Can't seem

  • Adding mp3s for playlist mixes that don't clutter Artist & Album views with single songs?

    Sometimes I like to just grab various mp3s on my computer & stick them in a directory for a quick mix, for a drive or get-together or whatnot. Problem is, when I add the directory to iTunes it populates my Album & Artist views with these single songs

  • Add basic authentication like .httaccess in apache.

    Hi!, ¿how can I add basic authentication to servlet or Webservice in Weblogic like .httaccess (apache) protection? Thanks!!!!

  • Distributed Destination and Recieving Messages !

    Hi !           I'm new to JMS.           I'm configuring a Weblogic Cuslter of 3 nodes with a JMS Server deployed on each node (Can't target a JMS Server to a CLUSTER). We have 4 destinations (Queue) deployed on each JMS Server.           I'm creatin