Joining DB VIEW and Command result in cartesian product

hello,
My SQL query is joining a DB view and a Command(=ad hoc query).
Nonetheless from the results it appears that CR didn't join the views correctly, it returns a cartesian product.
Any idea what the issue could be, I'm using very simple queries.
Thanks in advance

#1  make sure you are linking everything together properly in the "Links" tab of the Database Expert
#2  In my experience, it's just a bad idea to join SQL commands and other tables.  I had poor performance issues in my case.  (It prevents server side filtering and grouping)  My suggestion is to write out the entire thing in the command.  If you are pulling from multiple database, write a separate command for each database and link them.

Similar Messages

  • Query resulting in cartesian product-plz help

    select count(distinct e.hiredate),count(distinct b.hiredate) from scott.emp e, scott.emp b where e.hiredate<to_date('01-DEC-80','DD-MON-YY') and b.hiredate<to_date('23-JUN-81','DD-MON-YY')

    Hi,
    When I query it individually its giving me as below and its correct.
    SQL> select count(hiredate) from scott.emp where hiredate<'01-DEC-81';
    COUNT(HIREDATE)
    9
    SQL> select count(hiredate) from scott.emp where hiredate<'23-JUN-81';
    COUNT(HIREDATE)
    6
    Now I want these two merged in same query and it should give me the same result
    SQL> select count(distinct e.hiredate),count(distinct b.hiredate) from scott.emp
    e, scott.emp b where e.hiredate<'01-DEC-80' and b.hiredate<'23-JUN-81';
    COUNT(DISTINCTE.HIREDATE) COUNT(DISTINCTB.HIREDATE)
    0 0
    But its giving me either cartesian product or the result above.
    I have already used logical operator AND .

  • How to set default view and commands

    I have Acrobat Standard 9, and I wish to set the default for opening files to a full page view with one-page-at-a-time scrolling.  I routinely open many PDF files and have to scroll through the entire document.
    I managed to get the full page view to work, but not the full page scrolling .  Currently, when I open the document, the mouse wheel scrolls the document continuously several lines at a time.  What I want is for the mouse wheel to scroll the document one full page at a time (page up/page down).  I can manually set this by selecting the "Full Page" button on the tool bar (the one with the four arrows), however this is another step I have to perform each time I open a document.
    Is there any way to set the full-page scroll by default?

    Thank you for your help with this.
    Although I can not fix the default view, changing the document properties at least allows me to regulate how it opens the next time.  (Almost as good).
    If anyone from Adobe reads this, a tip for the next version: Please include a setting that would include a forced default view.

  • Attribute handling in Sun Java Directory Proxy Server join data views

    Hi all,
    I've configured a join data view and want to get rid of the duplicated attributes that show up in the search results since they are present in the primary and the secondary data view. The documentation says that this behaviour is configurable to return only the values of the primary data view but I can't find any information how to do it.
    Can anybody shed some light on this?
    Thanks and regards
    Geli

    Hi,
    If an attribute is present on both sides and if you want to consider the value(s) from one side only, use the viewable-attr or non-viewable-attr property at the data view level. You can specify which attribute(s) are /are not exposed by that data view (policy for read and write may differ).
    For more details, have a look at [http://docs.sun.com/app/docs/doc/819-0986/non-viewable-attr-5dpconf?l=ko&a=view|http://docs.sun.com/app/docs/doc/819-0986/non-viewable-attr-5dpconf?l=ko&a=view]

  • What is a cartesian product why we need it and where we need it

    Hi,
    One of my interview they asked this question
    Can any one please tell detail about it.
    Thanks
    Kalpana

    >
    what is a cartesian product
    >
    A cartesian join is when you do not specify any join condition between tables.
    So for two tables A and B the result is that every row of table B is appended to every row of table A.
    If there are 10 rows in Table A and 20 rows in Table b there will be 200 rows in the result set and each row will contain every column from table A and every column from table b unless you specify specific columns.
    See Cartesian Products in the SQL Language doc
    http://docs.oracle.com/cd/B28359_01/server.111/b28286/queries006.htm
    >
    Cartesian Products
    If two tables in a join query have no join condition, then Oracle Database returns their Cartesian product. Oracle combines each row of one table with each row of the other. A Cartesian product always generates many rows and is rarely useful. For example, the Cartesian product of two tables, each with 100 rows, has 10,000 rows. Always include a join condition unless you specifically need a Cartesian product. If a query joins three or more tables and you do not specify a join condition for a specific pair, then the optimizer may choose a join order that avoids producing an intermediate Cartesian product.
    >
    As for when? In earlier versions of Oracle I would use a cartesian join when creating report ready data tables and there needed to be data for every report period. One example is writing a Crystal Report (now business objects) to report sales for 2011 and you want the report to have a section for each month even if there was no data for that month.
    Then we would use a cartesian join on a date table that had 12 records (one for each month) with totals of zero. This would make sure that there was at lease one summary record for each month so that every month would show up on the report even if we only had data for March.

  • Urgent plz help me out about cartesian product

    plz...its urgent,can anyone help in the following query where iam getting cartesian product,so how to get result without cartesian product
    this is the query
    SELECT DISTINCT MIS.segment1 "ITEM CODE",
    MIS.DESCRIPTION "DESCRIP"
    ,MIS.Primary_uom_code "UOM",
    MTL.LOT_NUMBER "LOT NUMBER"
    ,A.PARTY_NUMBER "CUSTOMER NUMBER",
    A.PARTY_NAME "CUSTOMER NAME",
    (A.ADDRESS1||A.ADDRESS2||A.ADDRESS3||A.ADDRESS4) "SHIP TO",
    B.DELIVERY_DETAIL_ID "DO NO",B.SHIPPED_QUANTITY "SHIPPED QUANTITY"
    ,C.ULTIMATE_DROPOFF_DATE "ISSUED DATE"
    ,D.ORDER_NUMBER "SALES ORDER NUMBER"
    ,E.LINE_NUMBER "SALES ORDER LINE"
    FROM MTL_SYSTEM_ITEMS MIS
    ,MTL_TRANSACTION_LOT_NUMBERS MTL
    ,HZ_PARTIES A,
    WSH_DELIVERY_DETAILS B,
    WSH_NEW_DELIVERIES C,
    OE_ORDER_HEADERS_ALL D,
    OE_ORDER_LINES_ALL E
    WHERE MIS.INVENTORY_ITEM_ID=MTL.INVENTORY_ITEM_ID
    AND B.INVENTORY_ITEM_ID=MIS.INVENTORY_ITEM_ID
    AND A.PARTY_ID=B.CUSTOMER_ID
    AND B.DELIVERY_DETAIL_ID=C.DELIVERY_ID
    AND MIS.INVENTORY_ITEM_ID=E.INVENTORY_ITEM_ID
    AND D.HEADER_ID=E.HEADER_ID

    A lot of times when I get duplicate results, I'll do a select * and see why. Often one of those tables will have a sequenced value that could repeat several times for a combination of values.
    If thats the case, you may need to add something like:
    ...and a.id = (select min(id)
                     from b
                    where a.col = b.col)

  • Getting cartesian product

    can anyone help in the following query where iam getting cartesian product,so how to get result without cartesian product
    this is the query
    SELECT DISTINCT MIS.segment1 "ITEM CODE",
    MIS.DESCRIPTION "DESCRIP"
    ,MIS.Primary_uom_code "UOM",
    MTL.LOT_NUMBER "LOT NUMBER"
    ,A.PARTY_NUMBER "CUSTOMER NUMBER",
    A.PARTY_NAME "CUSTOMER NAME",
    (A.ADDRESS1||A.ADDRESS2||A.ADDRESS3||A.ADDRESS4) "SHIP TO",
    B.DELIVERY_DETAIL_ID "DO NO",B.SHIPPED_QUANTITY "SHIPPED QUANTITY"
    ,C.ULTIMATE_DROPOFF_DATE "ISSUED DATE"
    ,D.ORDER_NUMBER "SALES ORDER NUMBER"
    ,E.LINE_NUMBER "SALES ORDER LINE"
    FROM MTL_SYSTEM_ITEMS MIS
    ,MTL_TRANSACTION_LOT_NUMBERS MTL
         ,HZ_PARTIES A,
         WSH_DELIVERY_DETAILS B,
         WSH_NEW_DELIVERIES C,
         OE_ORDER_HEADERS_ALL D,
         OE_ORDER_LINES_ALL E
    WHERE MIS.INVENTORY_ITEM_ID=MTL.INVENTORY_ITEM_ID
    AND B.INVENTORY_ITEM_ID=MIS.INVENTORY_ITEM_ID
    AND A.PARTY_ID=B.CUSTOMER_ID
    AND B.DELIVERY_DETAIL_ID=C.DELIVERY_ID
    AND MIS.INVENTORY_ITEM_ID=E.INVENTORY_ITEM_ID
    AND D.HEADER_ID=E.HEADER_ID

    SELECT DISTINCT MIS.segment1 "ITEM CODE",
                    MIS.DESCRIPTION "DESCRIP"
                    ,MIS.Primary_uom_code "UOM",
                    MTL.LOT_NUMBER "LOT NUMBER"
                    ,A.PARTY_NUMBER "CUSTOMER NUMBER",
                    A.PARTY_NAME "CUSTOMER NAME",
                    (A.ADDRESS1||A.ADDRESS2||A.ADDRESS3||A.ADDRESS4) "SHIP TO",
                    B.DELIVERY_DETAIL_ID "DO NO",B.SHIPPED_QUANTITY "SHIPPED QUANTITY"
                    ,C.ULTIMATE_DROPOFF_DATE "ISSUED DATE"
                    ,D.ORDER_NUMBER "SALES ORDER NUMBER"
                    ,E.LINE_NUMBER "SALES ORDER LINE"
      FROM          MTL_SYSTEM_ITEMS             MIS,
                    MTL_TRANSACTION_LOT_NUMBERS  MTL,
                    HZ_PARTIES                   A,
                    WSH_DELIVERY_DETAILS         B,
                    WSH_NEW_DELIVERIES           C,
                    OE_ORDER_HEADERS_ALL         D,
                    OE_ORDER_LINES_ALL           E
    WHERE          MIS.INVENTORY_ITEM_ID = MTL.INVENTORY_ITEM_ID
       AND          MIS.INVENTORY_ITEM_ID = E.INVENTORY_ITEM_ID
       AND          B.INVENTORY_ITEM_ID   = MIS.INVENTORY_ITEM_ID
       AND          A.PARTY_ID            = B.CUSTOMER_ID
       AND          B.DELIVERY_DETAIL_ID  = C.DELIVERY_ID
    AND C........ = D. .......
       AND          D.HEADER_ID           = E.HEADER_ID
    ;I am not sure but I guess a relationship (in bold) is missing.
    HTH
    Ghulam

  • How to join two lists and display the results in datasheet view.?

    hello,
    i have two lists that i would like to join, i know a method that has been described  in the link below
    http://www.codeproject.com/Articles/194252/How-to-Link-Two-Lists-and-Create-a-Combined-Ciew-i
    however, here the data view is only limited to 30 rows and my resultant list is huge. I would like to know if there is a possibility to view the resultant list in a data sheet view ?

    I don't believe you can use the OOTB Datasheet view when joining lists. However, you should be able to increase your limit from 30 items to as many as you need (that doesn't trip the threshold set in Central Admin).
    Dimitri Ayrapetov (MCSE: SharePoint)

  • Resulting in Cartesian Join

    Hi friends,
    I need to restrict the report according to the user who logs in to the application. But only for the ADMIN user i need to show all the records except with the status which is not in "CREATED', i need to show all the records to the admin with other status other than the 'CREATED" status.
    For that i tried with the below query
    select
    '' "Null",
    "REQUEST_ID",
    "REQUEST_TYPE_NAME",
    "REQUEST_NUMBER",
    "REQUEST_CLASS_NAME",
    "REQUEST_STATUS_NAME",
    "REQUEST_DATE"
    from XXHY_AMS_REQ_DET_V , apps.fnd_user xx
    where /*request_number like nvl(:P1_REQUEST_NUMBER,'%')
    and
    REQUEST_STATUS_CODE like nvl(:P1_REQUEST_STATUS,'%')
    and
    lower(REQUEST_DATE) LIKE NVL(lower(:P1_REQUEST_DATE), '%')
    and */requestor_person_id = xx.employee_id or
    lower(xx.user_name) = lower(:APP_USER) or
    exists (select 1 from apps.per_all_people_f papf,
         apps.per_all_assignments_f paaf,
         apps.per_all_people_f supf,
         apps.pqh_roles rls,
         apps.per_people_extra_info pei,
         apps.fnd_user a, XXHY_AMS_REQ_DET_V b
    where  papf.person_id = paaf.person_id and pei.person_id = paaf.person_id
    and nvl(paaf.supervisor_id, papf.person_id) = supf.person_id
    and sysdate between papf.effective_start_date and papf.effective_end_date
    and sysdate between paaf.effective_start_date and paaf.effective_end_date
    and sysdate between supf.effective_start_date and supf.effective_end_date
    and  a.employee_id = papf.person_id
    and lower(a.user_name) = lower(:APP_USER)
    and information_type = 'PQH_ROLE_USERS' and paaf.person_id = b.requestor_person_id and lower(b.request_status_code) not in ('created')
    and rls.role_id = to_number (pei.pei_information3)
    and rls.role_id = to_number (pei.pei_information3) and rls.role_name like 'XXHW_AMS_ADMIN')
    order by 1
    In the above query i used the keyword :APP_USER which identifies the user who logs in APEX.
    Also i have a role named XXHW_AMS_ADMIN, which identifies the user under the admin category.
    So, according to my query, if the user is not in the admin category  means, it has to show only the records raised by him. If the user is in the admin category means then it has to show all the records of all the users other than the status which is not in 'CREATED'.
    But my above query is resulting in cartesian join, if i check with the admin username.
    But it fetches the correct result if i checked with the user who is not in the admin category.
    I dont know why the cartesian join is occuring if i check with the admin user.
    Suppose if i tried to run the query separately which is beneath the EXIST condition* for checking the admin user means, then it is recognizing the admin. But i dont know why it is not working in my above query.*
    select 1 from apps.per_all_people_f papf,
         apps.per_all_assignments_f paaf,
         apps.per_all_people_f supf,
         apps.pqh_roles rls,
         apps.per_people_extra_info pei,
         apps.fnd_user a, XXHY_AMS_REQ_DET_V b
    where  papf.person_id = paaf.person_id and pei.person_id = paaf.person_id
    and nvl(paaf.supervisor_id, papf.person_id) = supf.person_id
    and sysdate between papf.effective_start_date and papf.effective_end_date
    and sysdate between paaf.effective_start_date and paaf.effective_end_date
    and sysdate between supf.effective_start_date and supf.effective_end_date
    and  a.employee_id = papf.person_id
    and lower(a.user_name) = lower(:APP_USER)
    and information_type = 'PQH_ROLE_USERS' and paaf.person_id = b.requestor_person_id and lower(b.request_status_code) not in ('created')
    and rls.role_id = to_number (pei.pei_information3)
    and rls.role_id = to_number (pei.pei_information3) and rls.role_name like 'XXHW_AMS_ADMIN')
    order by 1what might be wrong in my query.
    Brgds,
    Mini

    I was using SQL Developer so i used colon.
    For Sql plus I changed it to & and it is working as expected
    SQL> with t_user as
            select 1 as person_id, 'P1' as user_name from dual union all
            select 2,'P2' from dual union all
            select 3,'P3' from dual union all
            select 4,'P4' from dual union all
            select -1,'ADMIN' from dual
    t_req_data as
            select 1 as person_id, 'created' as request_status_code, sysdate-1 as some_data from dual union all
            select 1 , 'updated' , sysdate-0.5 from dual union all
            select 2 , 'deleted' , sysdate from dual union all
            select -1 , 'created' , sysdate from dual union all
            select -1 , 'updated' , sysdate from dual union all
            select -1 , 'created' , sysdate - 21 from dual union all
            select -1 , 'updated' , sysdate - 21 from dual union all
            select 2 , 'deleted' , sysdate from dual
    SELECT
        tu.person_id,
        tu.user_name,
        trq.request_status_code,
        trq.some_data
    FROM
        t_user tu,
        t_req_data trq
    WHERE
        tu.person_id = trq.person_id
    AND
                &in_user             = 'ADMIN'
            AND request_status_code != 'created'
         OR
                  &in_user != 'ADMIN'
            AND &in_user  = user_name
    Enter value for in_user: 'ADMIN'
    old  33:             &in_user             = 'ADMIN'
    new  33:             'ADMIN'             = 'ADMIN'
    Enter value for in_user: 'ADMIN'
    old  38:             &in_user != 'ADMIN'
    new  38:             'ADMIN' != 'ADMIN'
    Enter value for in_user: 'ADMIN'
    old  39:         AND &in_user  = user_name
    new  39:         AND 'ADMIN'  = user_name
    PERSON_ID USER_ REQUEST SOME_DATA
             1 P1    updated 13-DEC-2011 22:14:32
             2 P2    deleted 14-DEC-2011 10:14:32
            -1 ADMIN updated 14-DEC-2011 10:14:32
            -1 ADMIN updated 23-NOV-2011 10:14:32
             2 P2    deleted 14-DEC-2011 10:14:32
    SQL>

  • Cairngorm View Helper - Command resuability and tight coupling with view

    I am new to Cairngorm framework. Currently we are converting
    our project to Cairngorm framework. I have some very basic doubts
    regarding the framework. Basically I am a java/J2ee
    programmer and got very good experience in struts framework
    and other J2EE design patterns.
    I have some doubts and needs advice from the community .
    My very first doubt is regarding the ViewLocator pattern used
    in the Cairngorm framework to access
    the view from Command class. At a very high level my
    understanding about command pattern is that command object
    shouldn't know anything about the caller. Command should execute a
    the business logic and update the model.
    But if we use the ViewLocator pattern the command object
    should know about it's caller class and the method name of the
    view/viewhelper class which should be executed after the command
    logic. In this scenario we will not be able to reuse the command
    class and a very tight coupling is established between the command
    and view.
    I have read from flex and cairngorm related blogs about an
    'Observer' and 'ChangerWatcher' patterns which seems to be right
    approach for me rather than using the ViewLocator. But as far as I
    know these are not part of the framework.
    I would like to know what is the recommended approach from
    the cairngorm framework team for executing View related logic after
    firing the Cairngorm event.
    If we use the ViewLocator pattern, there is no reusability as
    far as the command is concerned and also a very tight coupling is
    happening with the command and view.
    Is this the right approach..?
    Please advice..

    Hi, the view Locator has very issues that we have to have in mind, y most of the  problems are similar when we are using the Drag Manager , when we are using modules and load this view dynamically.
    The solution is simple and you told it. Binding by Watchers in the model Locator and checking the model locator variables when we load a module.
    In the view that we want to change we can add a Change Watcher linking a model locator variable to a function in the view, we change the model in de command and automatically change the value in the view.
    There are 2 ways to do the same concept, but is good only when the call to a cairngorm only affects the view that its calling it and known more has to know, so in theory you don’t need to change the model to impact the view.
    First is adding a Iresponder in to the event by Get Set so in the view, when you create a event for cairngorm and have to pass through the event an IResponder  (mx.rpc.IResponder). When you are in the command in the result or fault you can do event.responder.result = event or event.responder.fault = event and this well go directly into the view result o fault. So you don’t have to pass through the model. (Responder is your get set in the Event of private var _responder:IResponder)
    The other way is the same but using UM cairngorm that has CallBacks. And it’s pretty much the same but the event and all the cairngorm has callbacks and notifyCaller.
    Well I hope I said something useful.
    I did a UM cairngorm diagram in English http://www.developyourdream.net/tutoriales/tutoriales_flex_avanzados/cairngorm_universal_m ind/Cairngorm.swf
    Sorry me English and if somebody talks Spanish you can go check my blog http://www.developyourdream.net/ 

  • View and join Table

    Hi,
      what is the differnce between view and join table

    Hi,
    There are 4 types of views in SAP.
    Database View - To club more than one table
    Projection View - To hide fields in one table
    Maintenance View - To maintain database records in table
    Help View - To provide help for a fields (Same functionality as Search help. This is outdated)
    View are improves performance in the following aspects
    1. If you want to use more than two table in 'JOIN' condition better to use Views . It will improves performance of a program
    2. If you want to use mutiple FOR ALL ENTRIES clause, better to club all SELECT statement in a view.
    Note:
    1.Views does not contain data in it. It fetches data from the database only depending on the condition ...
    2.Views are part of data dictionary. They are a window to view the data in database
    3.views can be used to give security to data. users can be allowed to view only basic data only
    For More Info,go thru this Threads,
    join
    Views vs Inner Join
    Regards,
    Padmam.

  • I have recently transferred data from my old Mac to my new one. The result was good, but I have 2 users now, whose data I want to merge into 1 single user, so to avoid having to switch from one user to the other to view and use certain files. How to do it

    I have recently transferred data from my old Mac to my new one. The result was good, but I have 2 users now, whose data I want to merge into 1 single user, so to avoid having to switch from one user to the other to view and use certain files. How to do it?

    Here's an easy way:
    Pick the user that you want to eliminate (making sure that the remaining user has administrator privileges) and move all of the data that you want to keep into the Shared folder. Reboot or log out and login to the user you want to keep. Copy all the data from the Shared folder into your account - placing it neatly in folders (Documents, Music, Movies, etc.).
    Once the data is moved, log into the account you want to delete just once more to make certain that you've grabbed all the data you want to keep. Log out and log back into your admin account and go to System Preferences>Users & Groups and delete the 'old' user.
    That should do it.
    Clinton

  • How to restore views and procedures after drop user command?

    How to restore views and procedures after drop user command?
    We have 817 EE on NT and one developer created a lot of procedures, functions and vews. DB was not backuped and archived and export has not been done - our fault and we understand it. Sorry for this.
    Ok, now the story: another developer dropped this db user and we lost everything: procedures, functions and vews. The new user with trhe same name was created and new schema was imported in this user, but all old objects are lost. We don't have export and backup and archive log files.
    Question: may we can restore this lost stuff from some other sources. We are looking for lost codes, not data. May be we can use redo logs or shared pool or any other things. Any idea will be appreciated.
    Thanks.
    Victor
    [email protected]

    The switch has occurred after user was dropped, the data has been overwritten and there is be no way to use redo log files.
    I would like to explore another opportunity. Is possible to use Shared Pool or any Data Dictionary internal information to restore texts of the lost SQL and PL/SQL scripts executed in this DB before user was dropped? Not too many scripts are executed in this DB and the lost ones may still be in stack. I remember that Shared Pool (cash) should keep last executed scripts in order to improve performance. They probably are kept in some special format. Can we restore these scripts? Of course they also might be pushed out by Import that had been done after user was dropped.
    Thanks for your help,
    Victor

  • The Full Screen icon does not appear in Firefox 16.0.2 on Mac OS 10.6.8, and command+shift+F does not close the full screen view.

    I accidentally entered full screen view and was unable to exit. The Firefox Help article at https://support.mozilla.org/en-US/kb/how-make-firefox-and-websites-go-full-screen?esab=a&s=full+screen+mac&r=0&as=s says I should see a Full Screen View icon in the upper right-hand corner of the Firefox window. That icon not there. I cannot find it. It does not appear in either the full screen or non-full screen views.
    Further, the Help article's advice to exit full screen view by using the keyboard sequence command+shift+F does not work. I had to unplug my iMac and reboot. Firefox then opened in non-full screen view.
    Ideally, hitting the Escape key would cause Firefox to exit full screen view.

    I forgot one detail. This happened while I was having trouble seeing the mouse cursor (I use Apple's Magic Mouse). It had disappeared briefly. I had to drag the cursor out of the Firefox Window for it to reappear. I accidentally entered full screen view while the cursor was not visible.

  • Can we write a join on a view and a table

    Hi all,
    can we write a join on a view and a table. i got the requirement from my functional people about the following one
    Select CAUFV-AFUNR, CAUFV-AUART, AFVC-VORNR, CAUFV-FTRMI, CRHD-ARBPL
    into <ProOrd>, <OrdTyp>, <Opt>, <RelDat>, <WorCen>
    from CAUFV, AFVC, CRHD
    where CAUFV-WERKS = plant in selection screen
    and CAUFV-AFUNR = production order in selection screen
    and CAUFV-AUART = production order type in selection screen
    and CAUFV-FTRMI = range of release date in selection screen
    and CAUFV-AUFPL = AFVC-AUFPL
    and AFVC-ARBID = CRHD-OBJID
    and CRHD-OBJTY = ‘A’
    here CAUFV is a view and CRHD and AFVC are transperent tables.
    please tell me any feasible solution for this..
    Thanks  in Advance..

    Hi
    Refer these links:
    <u>http://help.sap.com/saphelp_nw04/helpdata/en/cf/21ec84446011d189700000e8322d00/content.htm</u>
    <u>http://www.sap-img.com/abap/what-is-the-different-types-and-usage-of-views.htm</u>
    <u>http://www.karakas-online.de/forum/viewtopic.php?t=730</u>
    Thanks
    Vasudha
    Message was edited by:
            Vasudha L

Maybe you are looking for

  • Can't find photo's when trying to sync ipad to itunes

    can't find photo's when sycing ipad to itunes

  • IPhoto hanging and crashing

    Ever since I updated to iPhoto 08 this morning practically nothing works as it's supposed to. When I start iPhoto, the normal iPhoto window comes up showing my photos. I can scroll through them and even zoom around but as soon as I click anything iPh

  • Partition on internal drive not appearing on desktop

    This is a funny one. I have a 200 GB, data-only partition on my internal drive. The other partition has an unused OSX on it (I boot from FW). A few days ago, when I was playing around trying to write-protect this particular disk, I set all the parama

  • How to allow modification of Country key in standard ESS "Adress" Iview ?

    Dear all, In the standard ESS Personal Information Iview and especially "Adress" Iview, the COUNTRY drop down list can't be modified, modification is deactivated, Country drop down list isn't accessible. But I need to let people select their country

  • Re: Can't Open Managed Accounts in System Prefs

    As the Administrator, I discovered today, after upgrading to Leopard, that I'm unable to open the managed accounts on the computer, even after putting in my password. Previously, with Tiger as our OS, neither managed accounts had passwords. Also both