Processing Hierarchy

I have data like below:
Resource_id           Manager_id                  FTE
100                                                1
101                       100                      1
102                       100                      1
103                       100                      1
104                       101                      1
105                       101                      1
106                       104                      1
create table emp_test (resource_id, manager_id, fte) as
select 100, null,1 from dual union all
select 101, 100,1 from dual union all
select 102, 100,1 from dual union all
select 103, 100,1 from dual union all
select 104, 101,1 from dual union all
select 105, 101,1 from dual union all
select 106, 104,1 from dual;I need summarized output like
Resource_id           Resource_id1            Resource_id2           sum(FTE)
100                      101                          104                       2
100                      101                          105                       1
and
Resource_id           Resource_id1            sum(FTE)
100                      101                          4
100                      102                          1
100                      103                          1How to achieve this in SQL?
Regards,
Parag Chaudhari
Edited by: Parag Chaudhari on Jun 4, 2010 1:21 AM
Edited by: Parag Chaudhari on Jun 4, 2010 1:52 AM

Hi,
Thanks for including the CREATE TABLE AS statement; that's very helpful.
Here's one thing you can do:
VARIABLE  levels_to_show     NUMBER
EXEC  :levels_to_show := 3;
WITH     got_tree     AS
     SELECT     REPLACE ( SYS_CONNECT_BY_PATH ( CASE
                                   WHEN  LEVEL <= :levels_to_show
                                   THEN  TO_CHAR (resource_id, '999999')
                              END
                               , '~'
               , '~'
               )     AS path
     ,     fte
     ,     LEVEL          AS lvl
     FROM     emp_test
     START WITH     manager_id     IS NULL
     CONNECT BY     manager_id     = PRIOR resource_id
SELECT       path
,       SUM (fte)     AS total_fte
FROM       got_tree
WHERE       lvl     >= :levels_to_show
GROUP BY  path
ORDER BY  path
;Output:
PATH                            TOTAL_FTE
    100    101    105                   1
    100    101    104                   2If we set :levels_to_show := 2, then the output is:
PATH                            TOTAL_FTE
    100    101                          4
    100    102                          1
    100    103                          1As you can see, this doesn't actually produce separate columns for resource_id, resource_id1, resource_id2, ...
Instead, all the values (however many there may be) are concatenatd into one big string, but formatted so that they appear as different columns.
If you sant, you could add a "header" row to the output that actually had those titles:
PATH                            TOTAL_FTE
resource_id  resource_id1
        100           101               4
        100           102               1
        100           103               1Or, using dynamic SQL, you could split the path column into separate columns.
This assumes you know of some sub-string (I used '~' above) that never appears in resource_id. (If resource_id is a NUMBER, this is no problem.)

Similar Messages

  • SAP SD Process Hierarchy

    Hi all,
    Can any one please paste here SD Process Hierarchy as in tcode SE43 as my IDES is not working. Please respond.
    Best Regards,
    AI.

    -

  • ARIS Process Hierarchy

    We have been using ARIS for process modeling. When ARIS was first installed 3 years ago the IDS consultant suggestd that we go with a 4 level process hierarchy, as follows:
    Level 1 Process Group (VACD)
    Level 2 Scenario (EPC)
    Level 3 Process (EPC column display)
    Level 4 Process step (FAD)
    Ann Rosenberg's modeling handbook (http://wiki.sdn.sap.com/wiki/display/ModHandbook/Process+Hierarchy) suggests a 6 level hierarchy as best practice. There are a few things I find confusing about this hierarchy. For example,
    - Why are FAD diagrams not used in level 6 diagrams?
    - How do business scenarios fit it and how are they similar to / different from process variants?
    - How can chunks of processes be reused if each process variant drills down to its own EPC? The way we have it set up in the 4 level hierarchy above, each scenario is a sequence of processes, so processes can be reused. For example, scenario A is defined as process 1 > 2>3, whereas process B is defined as process 1 --> 3. In the handbook example, it looks like each process variant is a single VACD function, which to me implies the underlying EPC has to cover everything in that variant.
    I am also concerned whether our 4 hierarchy would work as well when synchronizing to Solman. We haven't been doing the synchronization yet, but likely will in the near future. The IDS consultant told us it would work when it was installed.
    If anyone has used the hierarchy in Ann's handbook could you point me to some examples and let me know how well iit's working? Also can you see any major deficiencies with the 4 level hierarchy that would compel us to switch to the handbook structure?
    Thanks in advance.

    Hi
    In our company we have a process oriented hierarchy and End to End processes.
    Process oriented hierarchy
    Level 0 - Global process map (VACD in ARIS, not in SOLMAN)   "Company map"
    Level 1 - Main Scenarios (VACD in ARIS, Dummy scenario in SOLMAN) "Purchasing"
    Level 2 - Scenario (VACD in ARIS, Scenario in SOLMAN) "Direct purchasing"
    Level 3 - Process (EPC in ARIS, Process in SOLMAN)  "Create Purchase order"
    Level 4 - Process step (Function with a FAD iin ARIS, process step in SOLMAN) "create P.O. output"
    Level 5 - Guidelines/rules EPC or FAD in ARIS, not in SOLMAN)
    Level 3 can have different variants and can be reused in different end to end scenarios.
    Level 2,3 and 4 is synchr. with SOLMAN.
    So far this is working well in supply chain and sales processes. We ancitipate some challenges (more levels/details) when we come to the finance processes.

  • Process hierarchy in the worklist

    Hi
    I have studied the Bea's documentation and I don't seem to find any answers to my question about process hierarchies in the worklist. My problem is that user's would like to have their "main processes" shown in the worklist and by clicking the process instance it would show active subprocesses belonging to that specific instance. For example I would have "oversight" process ongoing and number of inquery processes belonging to that specific instance going on. I would like to see first the "oversight" processes only and by clicking the "oversight" process see the inquery processes belonging to it.
    I hope you got the grip what I was meaning here... ;)
    Is there this kind functionality "out of the box" ?
    Thanks

    Thanks for your Reply. Infact I am aware that free characterstics will come into effect when your drill down. When i use a variable on hierarchy and  place the info object at  rows,Query is working fine and when we kwwp the same info object in free characterstic the report is displaying no applicable data found. Ideally the  info object restricted by a variable and kept in free characterstic section will come into effect when we drill down only.
    I do not have clue why the report is running in unique way.

  • BPM 11g Process Hierarchy?

    Hi,
    In the BPA Suite I can define a process hierachy by assigning a BPMN process diagram to a function like a subprocess.
    (How) can I do this in the BPM Suite 11g?

    I believe you have to use the Send/Receive tasks now in order to call a reusable subprocess in BPM 11g. This requires the sub process to be message based where as the Call activity allowed non message based processes.

  • Best practice to pass a value into a sub-process

    Hi
    I'm new to Oracle workflow and have the following problem/question.
    I have three identical subprocesses (one for each category) which should run in parallel, and I need to know for which category I'm running inside the activities of these subprocesses.
    Of course I would like to define the subprocess only once an reuse it for the other two parallel paths.
    What's the best way of doing this and how should I pass the category into the subprocess.
    I can think of the following
    - use an item attribute to pass the CATEGORY
    - use a process attribute to pass the CATEGORY into the subprocess
    - use the <process_name> of WF_ENGINE.GET_ACTIVITY_LABEL (each subprocess having a different process_name)
    Is there a better way of doing this ?
    Thanks
    Guido

    Unfortunately there is a limitation that Oracle Workflow does not support using a subprocess activity multiple times within a process hierarchy.
    See http://download-west.oracle.com/docs/cd/B10501_01/workflow.920/a95265/defcom36.htm#pact
    You could create one subprocess and then make copies with different names, and include logic in the main process to transition to the appropriate one.

  • PAPI: Get processId of subflow process from Activity list of parent process

    Using PAPI or PAPI-WS how can I get the processId of the related process of a subflow activity?
    Specifically, I want to get the processId of all the subflow processes of a parent process provided I only have the parent process ID.
    For example, lets say my project has three processes with the following ID's:
    MainID1
    SubflowID1
    SubflowID2
    Assume my main process is MainID1 and that is only made up of two activities:
    1) a subflow activity that has SubflowID1 as the related process.
    2) a subflow activity that has SubflowID2 as the related process
    So in my case I need to get back "SubflowID1" and "SubflowID2" provided that initially I only know the ID of the main process MainID1.
    With PAPI/PAPI-WS I can get the list of activities of a process. So I can get back a list of two activities of type "SUBFLOW" for MainID1. However the activity object only gives me the ID of the activity itself and of the activity's parent process. It doesn't contain the ID of the subflow related process. Is there a way to do this?
    Please let me know if this needs further explanation. I know it's somewhat convoluted. Thanks!

    So you need a way to traverse through a process hierarchy even though instances may not be in the process? Sounds like you've created some type of recursive process topology and want to find related activities in the sub-process structure even though instances are not in the structure. If so, I've never seen a use case for this and so I wouldn't know how to do it. FindInstanceByFilter is your closest thing you have. But not having instances in the sub-processes to get information about the process hierarchy prohibits this. Perhaps you can plant tracer instances that you can normally filter out from normal work-flow. When you need to obtain a process hierarchy then you just look for these tracers.
    Interesting problem. Sorry I don't have a good answer.
    Edited by: Mark Peterson on Feb 18, 2010 6:08 AM

  • Tabular model: First deployment to server takes 120 min to process, subsequent ProcessFull 15 min?

    I have noticed this several times now and I do not understand it.
    I have a model with ~45 million rows in the largest table and the first time I deploy to the server and then execute a ProcessFull (via script) it takes over two hours to complete.
    *Note when I deploy from BIDS I have it set as Processing Option: Do Not Process.  So it doesn't process until I explicitly call it.
    However, the next day (or could be later same day) I kick off the same ProcessFull and it finishes in 15 minutes.
    So it appears the FIRST time it is deployed (as in the model did not exist historically, prior to deployment there was no tabular database called "MyTestModel" on the server) it takes an extremely long time.
    Subsequent ProcessFulls are very quick.
    Why is that?  Has anyone else encountered that?
    When I watch the progress of the process full script I see it finishes retrieving all the data in a relatively decent amount of time, for example the 45 million row table:
    Finished processing the 'BigTableWith45MillionRows' table.
    So I know it has completed all its data retrieval operations.
    Then it moves onto:
    Processing of the 'Model' cube has started.
    Processing of the 'ACCOUNT' measure group has started.
    and many more various measure groups
    later I get:
    Finished processing the 'ACCOUNT' measure group.
    Finished processing the 'Model' cube.
    It moves onto to it's "CALCULATE;" statements at that point with "CREATE MEMBER CURRENTCUBE.Measures".... and so forth.
    It would be most helpful if I could see which ones it had started but not yet stopped (it appears to "Started processing the 'random' hierarcy" or calculated column, or whatever and then a few lines later it will say "Finished" but other
    than looking through them all by hand and matching up every Started with Finished trying to find one with OUT a "Finished" I have no way of knowing which are still processing.
    It would be helpful to know "item X takes 2 hours to finish processing"
    It tends to take the longest amount of time in the processing hierarchy and calculated column phase.

    The default events in profiler are fine. You will likely focus on Progress Report End. How are you running ProcessFull? An XMLA script or from right-clicking on the database or from right clicking on a table and selecting all tables?
    http://artisconsulting.com/Blogs/GregGalloway
    Right click on database, go to process, select process full and then script (single database not each table).
    <
    Processxmlns="http://schemas.microsoft.com/analysisservices/2003/engine">
      <
    Type>ProcessFull</Type>
      <
    Object>
        <
    DatabaseID>MyDatabaseName</DatabaseID>
      </
    Object>
    </
    Process>
    I finished a full process yesterday and captured the info.
    The biggest for CPUTime (I noticed duration would be long but no CPU time, it seemed like it would flag things as having started but due to dependencies they just sat and waited?)
    was my larger hierarchy: Progress Report End, for CPU time of 11925840ms or 3.3 hours.  Duration was 11927999ms.
    After that was my 45 million row table at CPU time 715296 and duration of 860773 or 14 minutes.
    It is interesting because a normal ProcessFull is ~15 minutes, so it seems that the hierarchy rebuild is what is "killing me" on these.
    A variety of Object Created events had high durations but NULL CPU time, seems like those were dependant on earlier events maybe??
    Regardless, my big hierarchy was the longest at the 3.3 hours.
    It has 173,000 unique rows in the hierarchy (again like Account primary, secondary, though 6 or so levels deep, 1.2.3.4.5.6 etc...)

  • Where was this process launched from?

    A few days ago I installed some printer drivers for a Brother copy/print/scan multi function machine. The installer installed a bunch of files in /Library/Printers/Brother as expected but three files stand out...
    Under /Library/Printers/Brother/Utility/Server are the following:
    - LOGINserver
    - NETserver
    - USBserver
    These three applications are launched at startup and for the life of me I cannot find where they are getting launched from. Activity Monitor shows that the process hierarchy is as follows:
    - launchd
    --- LOGINserver
    --- WindowServer
    ------ USBserver
    ------ NETserver
    So clearly launchd is lauching the three programs, but I simply cannot find which config file is responsible for this. The man page on launchd states that it looks for config files in the following places:
    - ~/Library/LaunchAgents
    - /Library/LaunchAgents
    - /Library/LaunchDaemons
    - /System/Library/LaunchAgents
    - /System/Library/LaunchDaemons
    I can find no reference in those locations for any of the three Brother utilities.
    Likewise, the command "sudo launchctl list" doesn't appear to reveal anything related to those applications either.
    No other Brother related apps are running (like a control panel, or preference center.)
    So I'm stumped as to where else to look.
    Any help would be appreciated as I'd like to understand where launchd is getting the command to launch these three programs.
    (This is on a MBP Core Duo running 10.4.8)
    Thank you,
    Kenny

    Kenny --
    Check your HD>System Preferences>Your Account>Login items.
    If the Brother is there, it is automatically being launched at start up.

  • MDG-F 7.0 Processing of Multiple Objects

    Hello all,
    Under the "Processing of Multiple Objects", there are a few of function listed below I don't quite understand. What each of the funciton really do?
    Create Hierarchy Change Request for Cost Center Group
    Process Hierarchy for Cost Center Group
    (I believe these are a pair of function i need to do both)
    Other pair is called
    Create mass chagne request for cost center group hierarchy
    Process Cost Center Group Hierarchy
    Thanks,
    LUO

    Hi Luo,
    Under Processing of multiple object--> Create hierarchy change request for cost center group include all the 3 entity types, i.e. CCTR, CCTRG,CCTRH. This is a standard change request type "CCGHP1". Here you can specify the object for all the entity types and also perform the collective processing. Here you will only need one change request to do all the activities. Can create the entries and hierarchy structure within this
    For the CR type "CCGHP1"  assign the workflow steps(submission/activation/revision).
    3 different change request: the other way of it was creating first cost center, then in another change request cost center group and hierarchy in another one. Any way you will need 1 more change request of type CCGHP1(Create hierarchy change request for cost center group) if you want to process the entity together to create hierarchy.
    Regards,
    Reema

  • Business Process Structure

    I am trying to find out which kind of terms are being used for the different levels of the process hierarchy.
    Level 0 =
    Level 1 =
    etc
    Thanks in advance
    Holger

    Dear Prakash,
    In solution manager till EHP1 it is not possible to meet what is ur requirement but you can do the following as an alternative
    Project
    Master Data
    Organization Structure
    Business Scenario Std Selected from BPR e.g Service Desk 
    Business Process std
    Business Process Step Std
    Business Scenario Non Std Directly entered the name of scenario in Structure tab e.g any Zscenario
    Business Process Non std ( you need to add here the process for zscenario)
    Business Process Step Non Std  ( you need to add here the process step for z*)
    But if you very specific to go with 4 main nodes as you said then you need to modify the standard with ABAP Developement and there is no alternative.
    Hope it clarifies.
    Regards
    Prakhar

  • Opendirectoryd and notifyd are consuming 20% of my cpu. How do I find the source of this problem and kill it? Any help is greatly appreciated.

    Is there a way to identify what is causing opendirectoryd and notifyd to chew up my cpu? I've searched around in console but I'm not entirely sure what to be looking for.

    Dan Bargen wrote:
    That's right, after restarts, "quit process" and "force quit process" in Activity monitor, and further restarts, this ReportCrash process listed under my user account just won't stop. It hogs anywhere from 4-95% of my CPU, normally at the top of this range, and shows no sign of finishing.
    Here's the process hierarchy:
    original process: ReportCrash username
    parent process: launchd (88) username
    parent process: launchd (1) username
    parent process: kernel task (0) root (0)
    This last parent process done by root is using up an average 3% of my CPU by itself.
    I'm not a UNIX guru, and can barely work in a terminal window, so please don't ask me anything to technical. Just please, please send some help my way.
    I've recently had network issues and some other nagging process hogs that run in the background, no matter what I do (see thread: http://discussions.apple.com/thread.jspa?threadID=2123765&tstart=0 ), so could this possibly be an extension of that problem. I don't know if a mac "genius" at the store is smart enough to take this on, so I'll appeal to the more informed people out there.
    This is a wild guess, but I wonder if something on your computer isn't crashing repeatedly.
    I'd launch the Console utility and look in system.log for odd messages around the time(s) you're having those problems.

  • What do "w/" and "w/o" stand for in the following paragragh?

    What do "w/" and "w/o" stand for in the following paragragh?
    [root@fedora ~]#ps --help
    ********* simple selection ********* ********* selection by list *********
    -A all processes -C by command name
    -N negate selection -G by real group ID (supports names)
    -a all w/ tty except session leaders -U by real user ID (supports names)
    -d all except session leaders -g by session OR by effective group name
    -e all processes -p by process ID
    T all processes on this terminal -s processes in the sessions given
    a all w/ tty, including other users -t by tty
    g OBSOLETE -- DO NOT USE -u by effective user ID (supports names)
    r only running processes U processes for specified users
    x processes w/o controlling ttys t by tty
    *********** output format ********** *********** long options ***********
    -o,o user-defined -f full Group User pid cols --ppid
    -j,j job control s signal group user sid rows --info
    -O,O preloaded -o v virtual memory cumulative format --deselect
    -l,l long u user-oriented sort tty forest version
    -F extra full X registers heading no-heading --context
    ********* misc options *********
    -V,V show version L list format codes f ASCII art forest
    -m,m,-L,-T,H threads S children in sum -y change -l format
    -M,Z security data c true command name -c scheduling class
    -w,w wide output n numeric WCHAN,UID -H process hierarchy
    [root@fedora ~]#

    w/ = with
    w/o = without
    these abbreviations are in common usage in the English language and frequently encountered in legal and technical documents
    When you run into strange abbreviations or acronyms, you could turn to the internet and check on http://acronyms.thefreedictionary.com/ for possible translations

  • How to Lock an entire Project in Solution Manager ?

    I am trying to lock our project baseline in Solution Manager.   I have locked at the highest structure node, but have noticed that there are lock options on each business process and/or process step and they are 'unlocked' even though I locked the highest level node in the business process hierarchy.      Surely I don't have to individually lock each one.   Any suggestions?

    Hi
    goto solar_project_admin tcode
    choose your project and goto change mode
    goto scope tab Chosse the tick Edit Structure
    if you also want to lock maintenance of admin tab etc then you can choose the second tick also
    this will disable changes in solar01 for project hierarchy creation.
    Hope it resolves ur query
    regards
    prakhar

  • Can I create a BI Beans compliant cube using OWB?

    Can I create a cube that I can browse using BI beans through OWB 9.0.4 or are there additional steps that I need to take using other tools such as Enterprise manager?
    Are there any known incompatibilities between OWB 9.0.4 and BI beans 9.03.1.?
    I will also pose this question in the BI Beans forum.
    Thanks for any replies.
    Cor

    Hi,
    I am trying to build an Analytic workspace using OWB (9.0.4.8) Transfer Brigde and I got the similar error.
    None of the view/mv sqls are generated and the analytic workspace was not created either.
    FYI.
    **! Transfer logging started at Wed May 14 18:07:41 EDT 2003 !**
    OWB Bridge processed arguments
    Default local= en_US
    Exporting project:OM_SAMPLE
    initializing project:OM_SAMPLE
    Initializing module :WH
    Exporting cube:SALES
    Exporting dimension:CHANNELS
    Exporting dimension:COUNTRIES
    Exporting dimension:CUSTOMERS
    Exporting dimension:PRODUCTS
    Exporting mappings
    Exporting table:CHANNELS
    Exporting table:COUNTRIES
    Exporting table:CUSTOMERS
    Exporting table:PRODUCTS
    Exporting table:SALES
    Exporting datatypes
    Exporting project OM_SAMPLE complete.
    setting parameter: olapimp.deploytoaw = Y
    setting parameter: olapimp.awname = OWBTARDEMO
    setting parameter: olapimp.awobjprefix = OWBTAR_
    setting parameter: olapimp.awuser =
    setting parameter: olapimp.createviews = Y
    setting parameter: olapimp.viewprefix = OWBTAR_
    setting parameter: olapimp.viewaccesstype = OLAP
    setting parameter: olapimp.creatematviews = Y
    setting parameter: olapimp.viewscriptdir = /opt/oracle
    setting parameter: olapimp.deploy = N
    setting parameter: olapimp.username = OLAPSYS
    setting parameter: olapimp.password = manager
    setting parameter: olapimp.host = 10.215.79.139
    setting parameter: olapimp.port = 1521
    setting parameter: olapimp.sid = INDEXDB
    setting parameter: olapimp.inputfilename = C:\TEMP\bridges\null-nullMy_Metadata_Transfer1052950061353.XMI
    setting parameter: olapimp.outputfilename = C:\Panneer\owbtardemo.sql
    Loading Metadata
    Loading XMI input file
    processing dim: CHANNELS
    processing level: CHANNELin dimension CHANNELS
    processing level attribute use: CHL_ID in level CHANNEL for level attribute ID
    processing level attribute : ID in level CHANNEL
    processing level attribute use: CHL_LLABEL in level CHANNEL for level attribute LLABEL
    processing level attribute : LLABEL in level CHANNEL
    processing level attribute use: CHL_SLABEL in level CHANNEL for level attribute SLABEL
    processing level attribute : SLABEL in level CHANNEL
    processing level: CLASSin dimension CHANNELS
    processing level attribute use: CLS_ID in level CLASS for level attribute ID
    processing level attribute : ID in level CLASS
    processing level attribute use: CLS_LLABEL in level CLASS for level attribute LLABEL
    processing level attribute : LLABEL in level CLASS
    processing level attribute use: CLS_SLABEL in level CLASS for level attribute SLABEL
    processing level attribute : SLABEL in level CLASS
    processing hierarchy: CHANNEL_HIERARCHY in dimension CHANNELS
    processing dim: COUNTRIES
    processing level: REGIONin dimension COUNTRIES
    processing level attribute use: RGN_ID in level REGION for level attribute ID
    processing level attribute : ID in level REGION
    processing level attribute use: RGN_LLABEL in level REGION for level attribute LLABEL
    processing level attribute : LLABEL in level REGION
    processing level attribute use: RGN_SLABEL in level REGION for level attribute SLABEL
    processing level attribute : SLABEL in level REGION
    processing level: COUNTRYin dimension COUNTRIES
    processing level attribute use: CTY_ID in level COUNTRY for level attribute ID
    processing level attribute : ID in level COUNTRY
    processing level attribute use: CTY_LLABEL in level COUNTRY for level attribute LLABEL
    processing level attribute : LLABEL in level COUNTRY
    processing level attribute use: CTY_SLABEL in level COUNTRY for level attribute SLABEL
    processing level attribute : SLABEL in level COUNTRY
    processing hierarchy: COUNTRY_HIERARCHY in dimension COUNTRIES
    processing dim: CUSTOMERS
    processing level: CUSTOMERin dimension CUSTOMERS
    processing level attribute use: CTR_CREDIT_LIMIT in level CUSTOMER for level attribute CREDIT_LIMIT
    processing level attribute : CREDIT_LIMIT in level CUSTOMER
    processing level attribute use: CTR_EMAIL in level CUSTOMER for level attribute EMAIL
    processing level attribute : EMAIL in level CUSTOMER
    processing level attribute use: CTR_ID in level CUSTOMER for level attribute ID
    processing level attribute : ID in level CUSTOMER
    processing level attribute use: CTR_NAME in level CUSTOMER for level attribute NAME
    processing level attribute : NAME in level CUSTOMER
    processing dim: PRODUCTS
    processing level: PRODUCTin dimension PRODUCTS
    processing level attribute use: PDT_DESCRIPTION in level PRODUCT for level attribute DESCRIPTION
    processing level attribute : DESCRIPTION in level PRODUCT
    processing level attribute use: PDT_ID in level PRODUCT for level attribute ID
    processing level attribute : ID in level PRODUCT
    processing level attribute use: PDT_LIST_PRICE in level PRODUCT for level attribute LIST_PRICE
    processing level attribute : LIST_PRICE in level PRODUCT
    processing level attribute use: PDT_MIN_PRICE in level PRODUCT for level attribute MIN_PRICE
    processing level attribute : MIN_PRICE in level PRODUCT
    processing level attribute use: PDT_NAME in level PRODUCT for level attribute NAME
    processing level attribute : NAME in level PRODUCT
    processing level: CATEGORYin dimension PRODUCTS
    processing level attribute use: CTY_ID in level CATEGORY for level attribute ID
    processing level attribute : ID in level CATEGORY
    processing level attribute use: CTY_LLABEL in level CATEGORY for level attribute LLABEL
    processing level attribute : LLABEL in level CATEGORY
    processing level attribute use: CTY_SLABEL in level CATEGORY for level attribute SLABEL
    processing level attribute : SLABEL in level CATEGORY
    processing hierarchy: PRODUCT_HIERARCHY in dimension PRODUCTS
    processing cube: SALES
    processing classification type is := Warehouse Builder Business Area
    processing catalog name := SALESCOLLECTION ,and description is := null
    processing catalog entry element name := SALES
    processing Cube
    processing catalog entity cube := SALES
    processing measure := COSTS , in a cube := SALES
    processing measure := SALES , in a cube := SALES
    processing catalog entry element name := CHANNELS
    processing catalog entry element name := COUNTRIES
    processing catalog entry element name := CUSTOMERS
    processing catalog entry element name := PRODUCTS
    processing catalog entry element name := CHANNELS
    Class Name CHANNELS is TableImpl@405ffd not supported
    processing catalog entry element name := COUNTRIES
    Class Name COUNTRIES is TableImpl@5e1b8a not supported
    processing catalog entry element name := CUSTOMERS
    Class Name CUSTOMERS is TableImpl@6232b5 not supported
    processing catalog entry element name := PRODUCTS
    Class Name PRODUCTS is TableImpl@6f144c not supported
    processing catalog entry element name := SALES
    Class Name SALES is TableImpl@14013 not supported
    processing classification type is := Dimensional Attribute Descriptor
    Classification type Dimensional Attribute Descriptor is not supported
    closing output file
    closing log stream
    **! Transfer process 2 of 2 completed with status = 0 !**
    **! Transfer logging stopped at Wed May 14 18:07:47 EDT 2003 !**
    But when I ran the "select * from dba_registry" everything seems to be valid.
    CATALOG     Oracle9i Catalog Views     9.2.0.2.0     VALID     24-APR-2003 09:39:24     SYS     SYS     DBMS_REGISTRY_SYS.VALIDATE_CATALOG
    CATPROC     Oracle9i Packages and Types     9.2.0.2.0     VALID     24-APR-2003 09:39:24     SYS     SYS     DBMS_REGISTRY_SYS.VALIDATE_CATPROC
    OWM     Oracle Workspace Manager     9.2.0.1.0     VALID     24-APR-2003 09:39:27     SYS     WMSYS     OWM_VALIDATE
    JAVAVM     JServer JAVA Virtual Machine     9.2.0.2.0     VALID     23-APR-2003 22:19:09     SYS     SYS     [NULL]
    XML     Oracle XDK for Java     9.2.0.2.0     VALID     24-APR-2003 09:39:32     SYS     SYS     XMLVALIDATE
    CATJAVA     Oracle9i Java Packages     9.2.0.2.0     VALID     24-APR-2003 09:39:32     SYS     SYS     DBMS_REGISTRY_SYS.VALIDATE_CATJAVA
    ORDIM     Oracle interMedia     9.2.0.2.0     LOADED     23-APR-2003 23:16:42     SYS     SYS     [NULL]
    SDO     Spatial     9.2.0.2.0     LOADED     23-APR-2003 23:17:06     SYS     MDSYS     [NULL]
    CONTEXT     Oracle Text     9.2.0.2.0     VALID     23-APR-2003 23:17:26     SYS     SYS     [NULL]
    XDB     Oracle XML Database     9.2.0.2.0     VALID     24-APR-2003 09:39:39     SYS     XDB     DBMS_REGXDB.VALIDATEXDB
    WK     Oracle Ultra Search     9.2.0.2.0     VALID     24-APR-2003 09:39:42     SYS     WKSYS     WK_UTIL.VALID
    OLS     Oracle Label Security     9.2.0.2.0     VALID     24-APR-2003 09:39:43     SYS     LBACSYS     LBAC_UTL.VALIDATE
    ODM     Oracle Data Mining     9.2.0.1.0     LOADED     12-MAY-2002 17:59:03     SYS     ODM     [NULL]
    APS     OLAP Analytic Workspace     9.2.0.2.0     LOADED     23-APR-2003 22:49:51     SYS     SYS     [NULL]
    XOQ     Oracle OLAP API     9.2.0.2.0     LOADED     23-APR-2003 22:51:49     SYS     SYS     [NULL]
    AMD     OLAP Catalog     9.2.0.2.0     VALID     02-MAY-2003 15:00:13     SYS     OLAPSYS     CWM2_OLAP_INSTALLER.VALIDATE_CWM2_INSTALL
    Your help is appreciated!
    Thanks
    Panneer

Maybe you are looking for

  • SAP TMKSVR error

    Hi all, I will be installing SAP Solution Manager 7 to V5R4 iSeries server but upon installation of TMKSVR, it's giving an error  in phase CHECKING INSTANCE "An error ocured during installation (send TMKMessage:" could not send message, no connection

  • Issue in Multiple Payment Method - in  "F110 Parameters"

    Prob : Wehn I enter more than one payment method in Parameters in F110 only the 1st Payment method entered is saved. The other payment method gets deleted automatically. Following is already done : 1. All the payment methods entered in F110 Parameter

  • Video quality is questionable

    I've recently reinstalled windows on a new hard drive as well as reinstalled Itunes and imported my libraries from my secondary drive. The video quality in ALL of my videos seems a bit questionable. It's a darker hue (maybe a bit of blue) and not as

  • Does Encore CS4 has Autosave function  like Premiere Pro

    I don't seem to find about it. Recently I had a project that suddenly lost it's menu and so was replaced by a template. It was fidly an busy so I would love to get it back without redoing it. (Butons, links and all) Thank you for your time MM PS I ju

  • I NEED TO REINSTALL 8.1 BUT CANT USE PROGRAM ON COMPUTER IT ASK FOR MEDIA I DONT HAVE

    NEED TO DO COMPLETE RESTALL FROM INTERNET I HAVE NO MEDIAWIPE EVERTHING