Array containing the inv org relationship and its ORGANIZATIONAL unit

Hello
IN Oracle which table conatins information that will let us know that a certain inventory Org belong has a certain OU. I need actually name ORGANIZATIONAL unit for an org. Inv...

Thank you...

org_organization_definitions or HR_OPERATING_UNITS

Published by: user2640391 on April 27, 2009 10:06

Tags: Oracle Applications

Similar Questions

  • the associative arrays containing the record type, cannot be used first

    I am having trouble with the declaration of an associative array containing the Types of records and iteration using FIRST and NEXT functions.
    This problem of mine is only appear when I use that types of records, the FIRST and FOLLOWING operators work very well when you use the regular NUMBER.

    Trying to get the first element of the array, I get: ORA-06550: line 22, column 40: PLS 00382: expression is of the wrong type

    See the code snippet below. Anyone know if this can be done in PL/SQL?

    -----------------------------------------------------------------------------------------
    DECLARE


    -Set the record structure that will contain information on a post
    TYPE PostRec IS (RECORD
    post_type VARCHAR2 (4) - maybe DEB/CRED
    );

    lr_charge_back_post PostRec;

    TYPE post_table IS TABLE OF PostRec NOT NULL
    INDEX BY VARCHAR2 (4);

    assoc_posts post_table;

    BEGIN


    -lr_charge_back_post.post_type: = "asd";
    assoc_posts('1').post_type: = '1';

    lr_charge_back_post: = assoc_posts.first;

    END;
    /

    Returns the index, not the file FIRST:

    SQL> declare
      2  TYPE PostRec IS RECORD (
      3  post_type VARCHAR2(4) -- Can be DEB/CRED
      4  );
      5
      6  lr_charge_back_post  varchar2(20);
      7  TYPE post_table IS TABLE OF PostRec NOT NULL
      8  INDEX BY VARCHAR2(4);
      9
     10
     11  assoc_posts post_table;
     12
     13  BEGIN
     14
     15
     16  --lr_charge_back_post.post_type := 'asd';
     17  assoc_posts('1').post_type := '1';
     18
     19  lr_charge_back_post := assoc_posts.first;
     20  dbms_output.put_line('idx='||lr_charge_back_post);
     21  END;
     22  /
    idx=1
    
    PL/SQL procedure successfully completed.
    
    SQL> declare
      2  TYPE PostRec IS RECORD (
      3  post_type VARCHAR2(4) -- Can be DEB/CRED
      4  );
      5
      6  lr_charge_back_post  varchar2(20);
      7  TYPE post_table IS TABLE OF PostRec NOT NULL
      8  INDEX BY VARCHAR2(4);
      9
     10
     11  assoc_posts post_table;
     12
     13  BEGIN
     14
     15
     16  --lr_charge_back_post.post_type := 'asd';
     17  assoc_posts('idx').post_type := '1';
     18  lr_charge_back_post := assoc_posts.first;
     19  dbms_output.put_line('idx='||lr_charge_back_post);
     20  END;
     21  /
    idx=idx
    
    PL/SQL procedure successfully completed.
    

    Max
    http://oracleitalia.WordPress.com

  • I'm unable to uninstall Windows Media Player 11, because it seems that the hidden folder $NtUninstallwmp11$ and its content have been accidentally deleted from my computer.

    I'm unable to uninstall Windows Media Player 11, because it seems that the hidden folder $NtUninstallwmp11$ and its content have been accidentally deleted from my computer by another software. I want to go back to the previous version of Windows Media Player (WMP10). Please let me know how to uninstall WMP11 or back to WMP10.

    Please note that the process mentioned in this MS article did not.
    http://support.Microsoft.com/kb/934372
    Thanks in advance.
    original title: impossible to uninstall WMP11

    Hello

    Try to restore the system to the date and time when the computer was working fine.

    Click on the link below.

    http://support.Microsoft.com/kb/306084

    If you are still experiencing a problem, I suggest you try to post in the link mentioned below.

    http://social.technet.Microsoft.com/forums/en-us/category/windowsxpitpro

  • I tried to download the After effects program and its not downloading

    I tried to download the After effects program and its not downloading

    first try to connect and then back to your desktop cc application.  If you are unable to install your programs after doing this, stilll follow solution 2 here, CC Office lists the applications as "up to date" when it is not installed.

    failure to allow you to download, uninstall cc apps, clean and reinstall by, use the CC cleaning tool to resolve installation problems. CC, CS3 - CS6

  • Is there a way to get the list of hosts and its groups of belonging to the vCenter folder level in 5.5 web vsphere client plugin development?

    Hello

    I need to get the list of all hosts and its groups of belonging to the vcenter folder level.

    1. I created a view giving the extension point: vsphere.core.folder.monitorViews.

    2. After this step, I wrote the constraint as in my class of mediator,

    var ListConstraint:Constraint =

    QuerySpecUtil.createConstraintForRelationship ( _contextObject, 'childEntity');

    I was expecting a list of all child entities such as hosts, dc, cluster... But I have only the immediate child object which is only the Datacenter as my result.

    Is it possible to get all hosts and vCenter folder level Clusters because I need the entire list to vCenter (highest level).

    Other info:

    Object file has only two properties:

    1 childEntity - list of entities

    2 childType in-kind folder ('Virtual Machine', 'Data center'...)

    Is it possible to write a constraint specifying which list of childEntities I need using childType in.

    Example: Make Me childEntities that has a 'Host' and 'Cluster' childType but childType in doesn't have these two types.

    In addition, at this level, I could see the 'Associated objects' tab which has all the information I need, such as Clusters and Cluster tab hosts and host tab respectively.

    So, I think its possible to get this list to vCenter folder level.

    I have attached a screenshot representing the need. Kindly ignore the Conventions of naming in there since I edited the example comes with the sdk program.


    Query:

    1. How can I get the host and Cluster (table of relationship) list to vCenter folder level or even at the level of the vise.global.view?

    2. once I get this list, is it possible for me to manipulate that list and send the new list to IU?

    3. is there another way to do the same thing without the help of model classes and mediator?


    Pointers to this will be very useful.

    It is not possible to obtain all hosts a folder specific vCenter from a single query Data Manager.  You need to get the list of centers of data first and then get a list of data center hosts.

    It is best to make these repeated requests to the java level and return only the list that you want to the user interface.

    You can get all the objects in the host of the system with a simple query using a constraint with targetType = 'HostSystem', but you will need to eliminate those from other vCenter servers.  See how this chassis example queries all hosts the Java later in the getHosts() method: samples/chassis-app/chassisRackVSphere-service/src/main/java/com/vmware/samples/chassisRackVSphere/ChassisRackVSphereDataAdapter.java

    Another option is to use the vSphere Web Services SDK to browse vCenter. See the vSphere management forum for help on these APIs.  See this plugin of the sample using this SDK

    samples/vsphereviews/vsphere-wssdk-provider/src/main/java/com/vmware/samples/wssdkprovider/VmDataProviderImpl.java

  • How to print a wallet containing the two 1-sided and 2 faces of forms

    I created a portfolio of 5 forms face one and only 2 sides shape.  Is there a way to turn my printer (brother MFC8960DW) duplex, when you print the form 2 sides and back to a face mode for printing the rest of the portfolio?

    Have you tried to set Document properties for your form duplex only file? File > properties > tab advanced, and then set the Duplexmode. It will set this property for just this specific PDF.

  • Array containing the details of the session log

    Hi gurus,

    Is there a table/view that contains the details of the session for applications such as V$ SESSION in the database?

    Nestor

    Please see these documents.

    Script: How to identify the user apps using the PID of the o/s for form users in 11i [ID 185762.1]
    How count the Total number of users connected to ORACLE Application [ID 295206.1]
    How to solve the problem of time-out for forms in the Oracle Applications 11i [ID 269884.1]

    Thank you
    Hussein

  • When you try to remove programs or update something, I get the error message that it cannot find the windows installation program and its usually due to installer is not properly installed.

    I was in Add or remove programs and try to delete a program and he said that he could not reach the RPC and or the installer of windows are not accessible due to the windows installer is not installed properly.

    How to re-install Windows Installer:
    http://xphelpandsupport.MVPs.org/how_do_i_reinstall_the_windows_i.htm

    Windows Installer 3.1 Redistributable (v2)
    http://www.Microsoft.com/downloads/details.aspx?FamilyID=889482fc-5f56-4a38-b838-de776fd4138c&displaylang=en

    Windows install 4.5 Redistributable
    (Latest version of Windows Installer)
    http://www.Microsoft.com/downloads/details.aspx?FamilyId=5A58B56F-60B6-4412-95B9-54D056D6F9F4&displaylang=en

    Update for Windows XP (KB958655-french)
    Install this update to resolve the issue in MSI Installer 4.5
    http://www.Microsoft.com/downloads/details.aspx?FamilyId=e0735d57-03cc-42e5-823e-60c9efe74aac & amp; amp; displaylang = in & displaylang = in

    Also:
    Common problems of Windows Installer
    http://support.Microsoft.com/?kbid=555175

    The Windows Installer CleanUp utility (Note: this link has changed the utility he did).
    http://support.Microsoft.com/kb/290301

    JS
    http://www.PAGESTART.com

    Never be afraid to ask. This forum has some of the best people in the world to help.

  • Problem for all Microsoft products that contains the functionality to search and address bar replace Outlook.

    I am facing a constant problem with IE 8, Control Panel, Windows Explorer and any other product that has an address bar. The problem is this: as soon as I finish the login sequence, so that on my desk, the content of the history of the address bar starts flashing quickly, even if I did not open IE or any other application. Once I open IE 8, control panel or any oher application that contains an address, historical content bar drop-down startup flashes quickly and blocks the page or the screen, it is impossible to execute any action/activity. Then, without making that one thing, the behavior stops for a while and the app works normally. Then it would start again.

    At the same time, when I open an email in Outlook, similar behavior takes place with search replace automatically shooting upward and find what drop-down box flashing quickly and my lock screen. I had to communicate with McAfee and had done everyhting in the perspective of the virus without result detection/removal.

    No matter what thoughs on what could cause this problem. Thanks for any help/comments/suggestions, that you can provide.

    Try updateing your graphics driver from your PC manufacturer or the manufacturer of graphics so a generic PC. Don't use winupdate for pilots

  • AppleScript - ID - CS3 or CS4 - create array containing the order sides of objects?

    Hi all

    I'm looking for ideas of how to do: create a layer for each object in the document, and then move each object on its own layer - and preserve arrangment duplex. In other words, 10 items = 10 layers, without changing the stacking order.

    So far, I have had creating unique layers and moving objects on each... ut I'm looking for in the way the more effective for it to manipulate the original stacking order.

    I guess I can begin to learn how to build a table, then re-order-the index (I understand indicates duplex) and then create layers in this order? If this is the best way, I would LIKE some guidance on how to code that. Or, is it is a more elegant solution?

    Thanks for any help!

    CS3 is ideal but can use if necessary CS4 (or CS5 if there is a deadly function)

    When you ask for a broadcast/page/document page items, the list back in the stacking order.

  • On the most recent version of Firefox Mac, on FB, left side bar, containing the names of groups and lists of friends, does not scroll.

    This is a very recent development.

    Hi don59405,
    Thank you for your question. I just tried to reproduce this and have not been able to. Questions to troubleshoot Firefox in Safe Mode This will determine if the issue is an add operation.

    Please post back and we can help ya again.

  • Pavilion Touchsmart 17-e123cl: reading a VOB file on the disc is pixelated and its so strange, but from the dvd is ok.

    Hello

    I have a laptop of 17-e123cl Pavilion Touchsmart with installed PowerDVD12.  If I play the videos from the drive VDV plays it very well, but if I copy the DVD to the hard drive and try to play there the image has a lot of large blocks and horizontal bars in the picture and the sound is messed up.  Since the HARD drive is a 1 5400 to disc it should be even faster than the DVD player, but it looks like that is the question.  Is there any other driver that I need to get things working correctly from the hard drive?  When I travel, I can't bring DVD in some countries, but the movies on the hard drive are not a problem (normally).  Same thing happens if copied to a flash drive.  Any suggestions?

    Thank you

    Rick

    Hello

    Yes, this is the problem because they are two different file systems/structures. Normally you rip the DVD to a correct video file format and view on your computer. Please try:

    http://www.winxdvd.com/DVD-Ripper/

    http://bestfreedvdripper.aolor.com/

    http://www.Instructables.com/ID/how-to-rip-DVDs-for-free-with-VLC/

    The first is very popular.

    Kind regards.

  • Retrieve the name of tables and its plsql procedure schema

    Hello

    Help me please pass my last training evaluation

    the task is:

    between the username and the password and then who will retrieve tables exist and the script for each table.

    the output should be like:

    user name: -.

    table_name1:

    table_name1 script

    table_name1 script

    table_name1 script

    table_name2:

    table_name2 script

    table_name2 script

    table_name2 script

    .

    .

    .

    and so on

    in the last of the production
    You should see the following:

    No tables for: username: table_numbers

    Please help me.

    If your boss wants to test your ability to write code and understand the dictionary of data, then you can try something like this:

    begin
        for t in (
            select table_name from user_tables order by table_name
        )
        loop
            dbms_output.put_line(t.table_name);
    
            for c in (
                select * from user_tab_columns c
                where  c.table_name = t.table_name
                order by c.column_id
            )
            loop
                dbms_output.put_line('    ' || rpad(c.column_name,31) || c.data_type);
            end loop;
            dbms_output.new_line();
        end loop;
    end;
    

    This just lists the tables and their columns. You must understand how to add more details and to make a set of create table statements.

    If it ask for user name and password there must probably be a SQL * more script (.sql file). He could use ACCEPT to invite (there are examples at the bottom of the page).

  • Script of PowerCLI to measure the number of host and its virtual machine in each cluster

    Hello

    I'm trying to create a script on regular which gives an output of the host and virtual machine into a cluster of vcenter as below counties.

    Cluster:                                                      VMHost                         VM's

    Cluster01                                                     04                                  15

    cluster02                                                      02                                  35

    Simply using a sample onliner

    Get-VMHost | Select @{N = "Cl"; {E = {Get-Cluster - VMHost $_}} name, @{N = "NumVM"; E={($_ | Get - VM). County}} | Cluster of kind, name

    any ideas? Thanks in advance

    Kind regards

    Subash.

    Try this:

    Get-Cluster | Select Name, @{N="Host Count"; E={($_ | Get-VMHost).Count}},  @{N="VM Count"; E={($_ | Get-VM).Count}}
    
  • How to start the oracle database server and its client in windows 8

    Hi all

    I am a new entry in this forum and I am a beginner with oracle database.

    I always used SQL Server as the database, and it was easy to use after installation.

    With management program configuration of SQL Server I could to start service SQL Server (SQLEXPRESS) and the database server start!

    With SQL Server management studio, I was able to launch the client application, then was to establish a connection to the server and everything worked great!

    Now, how to work with the oracle database?

    I installed the oracle server and client version 11g R2 in windows 8, but how do I start the database?... and how can I start the client application to query?

    best wishes in advance.

    PS: Sorry for my English.

    If you are on the same machine, the only service that you absolutely need to start is the database service.  In your case OracleServiceSYSDBA (hmmm... How did you find with this name?).

    For queries, you can use SQL * Plus which should also be installed.  If you want something GUI, you can use SQL Developer (you need to install separately I think).

Maybe you are looking for