OIM-DB - Where is the right table?

Hi,
i need the table in the OIM-DB (10.2) where i can find the User Data and resource information?
WWSEC??? Which User? ORASSO...?
Please i need your help...

OIM 9.1.0.2 Schema there is no table with all of these information together. But SQL Statement should help you with those. If you need more details from users include in join USR table and desired columns.
select oiu.usr_key usrkey, orc.orc_tos_instance_key toskey,obj.obj_key objkey
from oiu , orc , ost, obj
where orc.orc_key = oiu.orc_key
and oiu.ost_key = ost.ost_key
and ost.obj_key = obj.obj_key
and obj.obj_name like 'RESOURCE%'
join this with USR to find by name ORASSO or just get usr_key of ORASSO user.
and oiu.usr_key usrkey = KEYOFUSER_ORASSO
group by oiu.usr_key, orc.orc_tos_instance_key, obj.obj_key
I hope this helps.
Thiago L Guimaraes

Similar Messages

  • Where is the right path to deploy third party DLL? "Support Files"?

    Hi, After Effetcs developers:-)
    Here is question about install path of DLL for After Effects plug-in.
    I'm developing Effects plug-in run with CUDA, so I have to deploy third party DLL to client PC.
    So where is the right path to put DLL such as cudart32_30_14.dll?
    I think it's under "Support Files", because my plug-in runs with cudart32_30_14.dll
    in "C:\Program Files\Adobe\Adobe After Effects CS4\Support Files"
    Am I right?

    well... that depends.
    when you rely on an external library, the external dll is expected to be somewhere along the path, as it appears in the command prompt.
    places like win32, and sxs folders are in that path.
    you could also put the support dll in the same folder as your plug-in. any process automatically includes it's own directory in the search path.
    if you don't want to put it in any of these pre-set locations, then you have to program the path into the dll loading function.
    if you choose to do that, you can put the support dll anywhere you like.

  • Where in the icx tables are price break and price break quantities stored?

    I am trying to build a query from the icx tables that will show me all the BPA line price breaks and quantities.
    I cannot seem to find any documentation on what is specifically is extracted from the BPA lines when an internal catalog build is performed. I am able to validate that in iP, the price breaks are being taken into consideration when I create Requisitions with various quantities, but I do not know where iP is storing this information. Perhaps the data isn't stored and is taken from the core app po_line_locations_all table at the time the requisition is being created?
    I have a BPA, line 27, that has multiple price break lines.
    select rt_item_id, price_type, contract_num, contract_line_num, allow_price_override_flag, not_to_exceed_price, value_basis
    from apps.icx_cat_item_prices
    where contract_num = 'xxxxxx' and contract_line_num = '27'
    and price_type = 'BLANKET';
    All I could find when running this query was the price break information for the first price break line, none of the other price break lines.
    If anybody knows where the documentation is that tells me exactly what is extracted from the core application BPA to the icx tables, I would be greatly appreciative. Even better, if someone already knows the answer to either 1) price break and quantity are not stored in icx tables or 2) they are stored and you have SQL that shows me how to find it, I would be so very appreciative to have this information.
    Edited by: user6287397 on Jan 24, 2009 6:40 AM

    I got the answer. :-)
    Price breaks details are not stored in any icx tables. iP retrieves the information based on the need by date entered on the requisition.
    Oracle support referred me to the Oracle® Purchasing Release 11i10 Open Interfaces and APIs.
    The java code - SourceDocHelper.java - is responsible to get the price information by calling the procedure po_price_break_grp.get_price_break (POXPRBKB.pls DefaultPricing ) For a given a Source Document (Quotation/Catalog), Quantity and Unit of Measure, this procedure derives the best price for the calling routine.
    The SQL used to get the price information that was sent to me is attached. Note that this SQL uses the need by date to get the right price in case of price break used at the distribution level.
    SELECT poll.price_override
    , round(poll.price_override * v_conversion_rate,
    l_base_curr_ext_precision )
    , poh.rate_date
    , poh.rate
    , poh.currency_code
    , poh.rate_type
    , poll.price_discount
    , poll.price_override
    , decode( poll.line_location_id,
    null, pol.unit_meas_lookup_code,
    poll.unit_meas_lookup_code)
    , poll.line_location_id -- SERVICES FPJ
    FROM po_headers_all poh -- FPI GA
    , po_lines_all pol -- FPI GA
    , po_line_locations_all poll -- FPI GA
    WHERE poh.po_header_id = p_source_document_header_id
    and poh.po_header_id = pol.po_header_id
    and pol.line_num = p_source_document_line_num
    and pol.po_line_id = poll.po_line_id
    and ( p_required_currency is null
    or poh.currency_code = p_required_currency )
    and ( p_required_rate_type is null
    or poh.rate_type = p_required_rate_type )
    and nvl(poll.unit_meas_lookup_code, nvl(p_unit_of_measure,
    pol.unit_meas_lookup_code))
    = nvl(p_unit_of_measure, pol.unit_meas_lookup_code)
    Change sysdate to l_pricing_date in order to use the Need By
    Date
    to determine the price.
    and (trunc(nvl(l_pricing_date, trunc(sysdate))) >= trunc(poll.
    start_date) -- FPJ Custom Price
    OR
    poll.start_date is null)
    and (trunc(nvl(l_pricing_date, trunc(sysdate))) <= trunc(poll.
    end_date) -- FPJ Custom Price
    OR
    poll.end_date is null)
    --Bug #2693408: added nvl clause to quantity check
    and nvl(poll.quantity, 0) <= nvl(p_in_quantity, 0)
    Determining the price based on ship-to-location and
    destination organization
    and ((poll.ship_to_location_id = v_ship_to_location_id OR poll.
    ship_to_location_id is null)
    AND
    (poll.ship_to_organization_id = p_destination_org_id OR poll.
    ship_to_organization_id is null))
    and poll.shipment_type in ('PRICE BREAK', 'QUOTATION')
    -- <2721775 START>: Make sure Quotation Price Breaks are Approved.
    AND ( -- ( poll.shipment_type IS NULL )
    ( poll.shipment_type = 'PRICE BREAK' )
    OR ( ( poll.shipment_type = 'QUOTATION' )
    AND ( ( poh.approval_required_flag <> 'Y' )
    OR ( EXISTS ( SELECT ('Price Break is Approved')
    FROM po_quotation_approvals pqa
    WHERE pqa.line_location_id = poll.line_location_id
    AND pqa.approval_type IN ('ALL
    ORDERS', 'REQUISITIONS')
    AND trunc(nvl(l_pricing_date,
    sysdate)) -- FPJ Custom Price
    BETWEEN
    trunc(nvl(start_date_active, sysdate-1))
    AND trunc(nvl(end_date
    _active, sysdate+1)))))))
    -- <2721775 END>
    order by poll.ship_to_organization_id ASC, poll.ship_to_location_id ASC,
    NVL(poll.quantity, 0) DESC,
    trunc(poll.creation_date) DESC, poll.price_override ASC; /*
    */

  • Where do the rights come from ...

    Hello, I'm running an MSSQL 2008 server with windows authentification only.
    I'm doing some cleaning in my security. I've set up some user groups in active direcory, and give them rights in sql server.
    The problem is: some user, with (apprently) no rights can still connect to databases.
    First: Do I have to create an explicit rule to forbid access to anyone ?
    Second: how do I know where the rights come from ?
    Thanks
    Alain

    Run the below query
    xp_logininfo 'Domain\user', 'all'
    This command should give you all the groups via the account has access to SQL.
    If the user has a login access then they get the minimum permissions with the public role. Apart from that they only will get access if we give specific permissions. If they are part of a group and if group has access to read/write for example and you dont
    want that to happen on specific tables then you can restrict the access.
    Regards, Ashwin Menon My Blog - http:\\sqllearnings.com

  • HT4539 I have 2 year old I-phone 4 that has never been updated. I need to download an update from my computer but can not find the right place on the I-Tunes page. Do you know where is the right place to update a phone that does not have an "update" butto

    My (old, never updated) I-phone has no "update" button in Settings and I would like to update it. I can not find the right place on I-Tunes to download the updates. Do you know where to look?

    Update your iPhone, iPad, or iPod touch - Support - Apple

  • Where is the employees table in hr 10g xe database?

    when i connect to oracle 10g express edition (xe) through an application called crystal reports, i see an hr with tables that include employees, jobs, countries etc.
    however, when i use sqlplus from my c prompt and execute the following query:
    select * from tab;
    the above tables do not show up whatsoever.
    how can i get to hr? where is it hiding?
    thank you.

    Have you executed the script that I gave you?
    You could query in hr schema using crystal reports?
    Check the owner name of the table usinf all_objects.
    SQL> desc all_objects
    Name                                      Null?    Type
    OWNER                                     NOT NULL VARCHAR2(30)
    OBJECT_NAME                               NOT NULL VARCHAR2(30)
    SUBOBJECT_NAME                                     VARCHAR2(30)
    OBJECT_ID                                 NOT NULL NUMBER
    DATA_OBJECT_ID                                     NUMBER
    OBJECT_TYPE                                        VARCHAR2(19)
    CREATED                                   NOT NULL DATE
    LAST_DDL_TIME                             NOT NULL DATE
    TIMESTAMP                                          VARCHAR2(19)
    STATUS                                             VARCHAR2(7)
    TEMPORARY                                          VARCHAR2(1)
    GENERATED                                          VARCHAR2(1)
    SECONDARY                                          VARCHAR2(1)
    SQL> Cheers
    Sarma.

  • Where is the right version of iPhoto?

    I'm using iPhoto 7.1.5 on my MacBook Pro. I want to sync my iPhone pictures via iCloud, but I got a message saying I needed a newer version of iPhoto.
    So, today I bought iPhoto version 9.2.1.  I can't install it, because I don't have version 9.0.  I must need to buy something else that I can upgrade to the latest version but I'm not sure what that is.
    What do I need to install and where do I get it?
    Thanks for your help,
    Karen

    Every time I get iPhoto version 9.something, it says I can't install it because I don't have the previous one. Where can I get the right version?
    I think I bought 9.2 at the apple store online.
    I don't understand why my question was marked "answered" - I need more information. You've been helpful, but I still need some answers.

  • Where are the right parameters for styles

    Hi there,
    after a upgrade from SPS12 to SPS15 on a java-only portal, the letters from the menue in the uwl like refresh or check connection status and all the topics in the workflowlist have big letters than before.
    Does anybody knows a hint, where I can set the right parameter for that?
    I noticed that only in webdynpro iviews.
    Best regards
    Christian

    thanks for you hint,
    but thats too easy :o)
    I know where I can change the portal theme, I´m looking for the right parameter in the theme editor :o)
    Regards
    Christian

  • Creating table types for procedures at design time: Where is the "Local Table Type" tab?

    Hello,
    I want to write a stored procedure (development perspective, repository object) and need to create a table type for the result table.I am working on HANA Studio 1.80.1 and the documentation tells me that I should open the "Local Table Types" tab. However, I do not see where this tab is.
    I get an SQLScript tab nothing else. Any hints?
    Regards,
    Andreas

    Hi ,
    Have a look on this discussion:
    Table type creation via HS repository / CDS / DDl Source
    Regards,
    Krishna Tangudu

  • Where's the right-hand scroll bar (for e-mails, facebook posts) with MavericksOSX10.9.4?

    How can I scroll down with Mavericks OSX10.9.4? The right-hand scroll bar is missing.

    Go to System Preferences > General and choose to always show it:

  • Where is the build table express vi located in the function table?

    I must be blind but I can't locate the build table express vi in lv8 or 8.5.  Someone slap be upside the head and point it out.  Thanks

    It's on the Controls palette. Were you looking on the Functions palette?
    Message Edited by Dennis Knutson on 04-23-2008 08:22 PM
    Attachments:
    Express XY Graph.PNG ‏17 KB

  • Where is the right kernel?... EHP5

    I'm doing a test upgrade from 4.7EE to ERP 6.0 EHP5 and I'm founding very frustrating the fact that I don't seem to get the right kernel DVD... I had no problems recently when I did the same with EHP4.
    The kernel is nowhere to be seem under ERP EHP5 Upgrade path in SMP, the logic send me to the NW EHP2 kernel DVD which is 720 but that doesnt work.
    Does anyone had the same problem?...
    Regards
    Juan

    Hi Juan,
    720 kernel means 702 kernel only. Also, it asks for one more kernel but it is actually SL controller DVD and its number is      51039102_14      SL CONTROLLER 720 . Please make sure that you don't get confuse between both the kernel DVD's.
    You can find kernel DVD for EHP5 under following path:
    http://service.sap.com/swdc - Installations and Upgrades - E --> SAP ERP > SAP ERP ENHANCE PACKAGE> EHP5 FOR SAP ERP 6.0--> SAP EHP2 FOR SAP NETWEAVER 7.0
    DVD no-      51039103_10      BS7i2010 UC-Kernel 7.20 Linux on x86_64 64bit  (unicode)
    51039103_9      BS7i2010 Kernel 7.20 Linux on x86_64 64bit  (non-unicode)
    Thanks
    Sunny

  • RSPLAN filter - where is the data table stored

    hi
    When rsplan planning modeller saves the filter, where could I read the value from a function module or transparent table?
    thanks.

    Hi,
    Filter is an object that describes a multidimensional segment of data from a data set. Filters are used in reporting, analysis and planning, for example, to restrict data to a certain business area, certain product groups or certain time periods. You segment data in this way so that users or user groups only have access to the data that is relevant to them or so that only certain data areas are available within an application scenario.
    Within BI Integrated Planning, filters determine the selection of data upon which a planning function is executed. A planning sequence comprises a set of planning functions. A filter is assigned to each of these functions.It holds the set of data isa n underlying table accessed by system when ever this filter is called for.
    You want to revaluate the transaction data in your InfoProviders by a factor of
    10%. However, you only want to perform the revaluation for certain groups of
    customers. To do this, you create a filter that contains the group of customers
    for which you want to revaluate data.
    Filters can be reused in planning functions and in queries.
    Integration
    You can create multiple filters for an InfoProvider. You do this using the Planning Modeler or Planning Wizard or the Query Designer. In the Planning Modeler or Planning Wizard, you can only define filters on aggregation levels.
    Hope this helps
    Cheers
    Raja

  • After running sql scripts in SQL plus, where are the results(tables) stored

    Hi ,
    I am using oracleDb10g . i have used SQL plus to create a database. I have run 2 sql scripts and constructed the tables , but i dont know where the data is stored and how to make the data into a database, so that i can use it for connection through some UI.
    for example: schema.sql, data.sql script files.
    SQL> start schema.sql
    SQL> start data.sql
    The tables are created.
    Now how can i group those table into a database and name it.(i mean i can create a database using SQL plus, but how to dump the tables into the database created). Because i want to use this database name for connecting to MS SQL, so i need the name.
    Thanks
    babu.

    when you are in Rome, sing with the romans !
    Oracle is different from SQL Server.
    Time to read some basic books.
    --> http://tahiti.oracle.com

  • Where are the right-click Finder workflows located??

    When I control+click while selecting a file, I can see in the drop-down menu More: Automator a few plug in workflows.
    But where is that folder located? I'm trying to alter one that resides and shows up there now (customized by a friend), but I can't locate it to open it up and alter it. Spotlight isn't finding it at all.
    Any idea where that folder of plug ins resides??? thanks!

    spotlight doesn't search it because system folders are excluded from searches by default. to include them, enter command+f to bring a search window, click on "Kind", scroll and click on "other". in the resulting popup select 'system files" and set to include.

Maybe you are looking for

  • I lose changes in the details when i open my photos from camera raw 7.0 to photoshop cs5, why?

    I lose changes that I made with the tools in the "Details" section, just right after I open my photos from camera raw 7.0 to photoshop cs5, why?   The changes that I made with the tools in the "Basic" section remain. 

  • How to find out the right task in 2 tasks with same task title

    Hi there, I set 3 main tasks ,A/B/C, every main task have 3 sub-tasks, (code,test, deploye),  all test jobs assign to  1 person. while our staff open his 'my assignment' in tasks , he find 3 same tasks named 'Test'.  Is there any possible that show m

  • Folders stuck open/hanging won't close

    I have been having problems lately with things that hang an example is if I open something like a folder and later try to close it it will stick or hang there until I reboot or log out and back in again . I have 2 gigs of ram and am running a e8400 d

  • I need Advice...

    I have a Gateway GT5676 and it has 4g RAM...can I increase that amount or is that about it? My problem is that I'm a gamer and despite having a pretty good system, I'm getting constant lag issues. I have a high speed modem, ATI Radeon HD4850 card, AM

  • "Open With-" option keeps resetting itself

    Hello, Every time I set the Open With... option in the Info palette so certain files open with non-default applications, the setting revert to default after I reboot. For instance, I right-click on an AVI file. Select "VLC" from the "Open with:" menu