Distinct operation using GROUP BY

I was doing some research on retrieving Duplicate records in a table.
create table x
(empid number,
empname varchar2(50)
insert into x values (1,'John');
insert into x values (2,'Reynolds');
insert into x values (3,'Harrison');
insert into x values (1,'Kate');
insert into x values (2,'Hans');
SQL> select * from x;
     EMPID EMPNAME
         1 John
         2 Reynolds
         3 Harrison
         1 Kate
         2 Hans
SQL> select empid from x group by empid;          ------ Query 1
     EMPID
         1
         2
         3        
SQL> select min(empid) from x group by empid;      ------ Query 2
MIN(EMPID)
         1
         2
         3
SQL> select * from x where empid not in
  2  (select min(empid) from x group by empid);   -------- Query 3   
no rows selectedI understand how Query 1 and Query 2 retrieves distinct values. Query 3 can't fetch duplicate values because it is equivalent to
SQL> select * from x where empid not in
  2  (select distinct(empid) from x);
no rows selectedAm i right?
From various OTN threads, i gathered that a query using ROWID should be used for retrieving duplicate rows.
Something like
select * from x where rowid not in
(select min(rowid) from x group by empid);   ------------- Query 4How come this query (Query 4) works and Query 3 doesn't?

Hi,
Y.Ramlet wrote:
I was doing some research on retrieving Duplicate records in a table.
create table x
(empid number,
empname varchar2(50)
insert into x values (1,'John');
insert into x values (2,'Reynolds');
insert into x values (3,'Harrison');
insert into x values (1,'Kate');
insert into x values (2,'Hans');
SQL> select * from x;
EMPID EMPNAME
1 John
2 Reynolds
3 Harrison
1 Kate
2 Hans
SQL> select empid from x group by empid;          ------ Query 1
EMPID
1
2
3        
SQL> select min(empid) from x group by empid;      ------ Query 2
MIN(EMPID)
1
2
3
SQL> select * from x where empid not in
2  (select min(empid) from x group by empid);   -------- Query 3   
no rows selectedI understand how Query 1 and Query 2 retrieves distinct values. Query 3 can't fetch duplicate values because it is equivalent to
SQL> select * from x where empid not in
2  (select distinct(empid) from x);
no rows selectedAm i right?Yes, you're right. Query 3 and Query 4 get the same results (or lack of results) by different ways.
From various OTN threads, i gathered that a query using ROWID should be used for retrieving duplicate rows.
Something like
select * from x where rowid not in
(select min(rowid) from x group by empid);   ------------- Query 4How come this query (Query 4) works and Query 3 doesn't?They both work; they get different results because they are doing different things.
ROWID is unique; empid is not. When you "GROUP BY empid", any group with more than one member will have ROWIDs that are not equal to MIN (ROWID) for that group.

Similar Messages

  • Question on using Distinct operator and avoiding ORA-00936 error

    I may have answered my own question, by searching the OTN forums, but I just want to confirm what I've learned.
    I'm trying to use a distinct on one of my columns, where I am pulling multiple columns, and trying to avoid duplicate entries. From most of my textbook example, when an example is using a distinct, they were only pulling one column.
    From my example below, when I try to use a distinct, I get the following error: ORA-00936: missing expression:
    select p.list_id, distinct(p.associate_id), d.first, d.last, c.street1, c.street2, c.city, c.state, c.country, c.postal_code, c.email
    from sf.profiles p, demographics d, contact_info c
    where p.entity_id = d.entity_id
    and p.entity_id = c.entity_id
    and p.list_id = 111
    and associate_id in (insert associate_id in here
    );Once I searched OTN, I saw some examples, where they had the distinct operator as the first column. So I switched it with p.list_id, and the query ran find.
    select distinct p.associate_id, p.list_id, d.first, d.last, c.street1, c.street2, c.city, c.state, c.country, c.postal_code, c.email
    from sf.profiles p, demographics d, contact_info c
    where p.entity_id = d.entity_id
    and p.entity_id = c.entity_id
    and p.list_id = 111
    and associate_id in (insert associate_id in here);So, does the distinct operator have to go first, if using multiple columns?
    thanks
    Message was edited by:
    cmmiller

    With or without parenthesis, it's a distinct clause for all columns in select statement:
    SQL> select * from tt1;
            ID T
         10203 1
         10203 2
    SQL> select distinct(id), text from tt1;
            ID T
         10203 1
         10203 2
    SQL> select id, text from tt1;
            ID T
         10203 1
         10203 2
    SQL> Nicolas.

  • Mandatory fields while using Group chart of accounts

    Hi,
    Which are the mandatory fields while maintaining GL accounts in FS00 if i am using Group chart of accounts.
    And how attached these group chart of accounts gl to the operational chart of account GL.
    raj

    Hi,
    the assignment from operational chart of accounts to group chart of accounts is done in OB13. Follow the steps in Customizing IMG FIn. Acc. (new) / Consolidation preparation (new) / General specifications / G/L and FS Charts of accounts...
    Best regards, Christian

  • KEY LOOKUP Operator using TCL

    Hi,
    I am trying to create a key lookup operator using tcl.
    OMBALTER MAPPING 'TESTMAP' ADD KEY_LOOKUP OPERATOR 'INSTITUTION_CHARACTERISTIC_DIM'\
    SET PROPERTIES (BOUND_NAME,CREATE_NO_MATCH_ROW, LOOKUP_CONDITION)VALUES
    ('INSTITUTION_CHARACTERISTIC_DIM','true','OUTGRP1.INSTITUTION_CHAR_SRCKEY
    = INGRP1.INST_CHAR_SRCKEY')
    and then adding an attribute to the INGRP
    OMBALTER MAPPING 'TESTMAP'ADD ATTRIBUTE 'LAST_ACTIVITY_DATE' OF GROUP 'INGRP1' OF OPERATOR 'INSTITUTION_CHARACTERISTIC_DIM'
    This is creating a key lookup operator by the name
    INSTITUTION_CHARACTERISTIC_DIM, and i can see the Bound Name in the
    properties window, but when i double click and open the key lookup, i
    dont see the result table under the LOOK UP tab.Because of this, the
    attributes dont get added in the OUTGRP of the key lookup.
    Am i missing some important property of a key look up?
    can some one please help me with this...
    Thanks in advance...

    Hi,
    you have to bind the lookup operator to the table:
    OMBALTER MAPPING 'MAP_LOOKUP' ADD KEY_LOOKUP OPERATOR 'MY_LOOKUP' BOUND TO TABLE '/MY_PROJECT/MY_DB/DIM_CUSTOMERS'
    OMBALTER MAPPING 'MAP_LOOKUP' MODIFY OPERATOR 'MY_LOOKUP' SET PROPERTIES (CREATE_NO_MATCH_ROW, LOOKUP_CONDITION)VALUES ('true','OUTGRP1.ID_CUSTOMER=INGRP1.ID_CUSTOMER')
    OMBALTER MAPPING 'MAP_LOOKUP' ADD ATTRIBUTE 'ID_CUSTOMER' OF GROUP 'INGRP1' OF OPERATOR 'MY_LOOKUP'Regards,
    Carsten.

  • Displaying of records unable to using GROUP BY

    Hi,
    I have a requirement where i need to display the records based upon item types:I have the records like as
    Invoice Number Item Type Amt
    23221 LI 23
    23231 SD 45
    23221 LI 11
    23221 ST 14
    I want to display as:
    Invoice Number Item Type Amt
    23221 LI 34
    23231 SD 45
    23221 ST 14
    Any help will be needful for me

    918308 wrote:
    Hi,
    I have a requirement where i need to display the records based upon item types:I have the records like as
    Invoice Number Item Type Amt
    23221 LI 23
    23231 SD 45
    23221 LI 11
    23221 ST 14
    I want to display as:
    Invoice Number Item Type Amt
    23221 LI 34
    23231 SD 45
    23221 ST 14
    Any help will be needful for meLike Karthik I wonder why you can't use GROUP BY. Using GROUP BY would be easiest. I also do not understand why when you said you can't use GROUP BY every example posted so far as used it.
    Anyway, ...
    Consider the analytic sum() function. Here is an example you can adapt to your needs - the COUNT() I am using is similar to the SUM() you need
    select distinct cd_id, count(cd_id) over (partition by cd_id)
      from m_cd_tracks
    order by 1
    CD_ID   COUNT()
    1     34
    2     32
    3     32
    4     32
    5     30The analytic COUNT() is similar to the GROUP BY COUNT() but it returns every row. DISTINCT eliminates the duplicates. The OVER () clause allows the PARTITION definition which defines the group. You can read all about the analytic functions in the online documentation.

  • DISTINCT operator performance issue

    Hi Guyz,
    I am facing a performance issue in a query which contains DISTINCT function. Following is my query:
    SELECT     /*+ ORDERED USE_NL_WITH_INDEX(c DIMENSION_KEY_PK) */
                        DISTINCT f.*,c.client_ids
    FROM FACT_TAB f, DIM_TAB c
    WHERE f.client = c.dimension_key
    FACT_TAB = Fact table with a bitmap index on client column (10,000,000 records).
    DIM_TAB = Dimension table with dimension_key as primary key (100,000 records).
    when i select only fact table columns in the above query, the query executes within a second. But when i execute the above query it takes more than 15 minutes to execute.
    How can i improve the above query. Any suggestions or tips would be helpful.
    Thanks in advance.

    Hi myers,
    you are absolutely right, there is no purpose of using DISTINCT, because i have found there are no duplicates in fact table, neither in dimension.
    BUT there is another problem after this, i am joining these two tables with another table (INLINE VIEW), which gives me duplicate data, so i need DISTINCT operator for that purpose. Time dimension is also used in this query now. Here is my new Query:
    SELECT /*+ ORDERED USE_NL_WITH_INDEX(c DIMENSION_KEY_PK) */
    DISTINCT f.*,c.client_ids
    FROM FACT_TAB f, DIM_TAB c, DIM_TIME_TAB t, (select id,start_date,end_date from tab3) tab
    WHERE f.client = c.dimension_key
    AND f.time = t.dimension_key
    AND f.tabid = tab.id
    AND t.day_start_date >= tab.start_date
    AND (t.day_start_date <= tab.end_date OR tab.end_date IS NULL)
    Thanks

  • Avoid Distinct operation

    Hi..
    How to avoid distinct operation in table view reports
    In my database data are
    id__Name__Salary
    01_aaaaa__1000
    01_aaaaa__1000
    01_aaaaa__1000
    02_aaaaa__1000
    02_aaaaa__1000
    My output
    01_aaaaa__1000
    02_aaaaa__1000
    but I need
    id__Name__Salary
    01_aaaaa__1000
    01_aaaaa__1000
    01_aaaaa__1000
    02_aaaaa__1000
    02_aaaaa__1000

    This may help, see the answer:
    Re: OBIEE using distinct
    Have you got ID in the table that is unique?
    Regards
    Goran
    http://108obiee.blogspot.com

  • Using Group Policy to Set Windows Font DPI size

    I was in need of a way to change the Windows 7 user interface to use the Font size of 100% (vs the default of 125%) for custom applications on our network.
    Many searches on the net did not provide an easy way to accomplish this via Group Policy. The font size is PER USER and not PER MACHINE.
    I found a method using Group policy preferences (GPP) to configure the Font DPI size and wanted to share it for others who might need to do the same...
    I created a new GPO for the users needing this font size and linked it to their OU. Then configured the following:
    User Configuration \ Preferences \ Registry (Right click and select NEW \ Registry Wizard)
    Configure the following DWORD key: HKEY_CURRENT_USER\Control Panel\Desktop\LogPixels
    Use the values as needed:
    00000060 (Small Font Size 100%)
    00000090 (Medium Font Size 125%)
    00000144 (Large Font Size 150%)
    I used 00000060 to set the Small Font Size of 100%. Gpupdate /force a test client machine, then logoff/logon and see the setting take effect.
    When users try to change the font size in via the control panel, the value will be overwritten the next time the group policy updates. Id even recommend preventing users from being able to change the font dpi with another GPO setting:
    User Configuration \ Policies \ Administrative Templates \ Control Panel \ Personalization \ Prohibit selection of visual style font size = Enable
    Just wanted to share this for anyone needing to change the Windows 7 default font DPI size en mass using Group Policy. We can thank Microsoft for not giving us a ADMX template for this issue!!!!
    Drumgod
    me

    User Configuration \ Policies \ Administrative Templates \ Control Panel \ Personalization \ Prohibit selection of visual
    style font size = Enable
    This policy setting states that it is supported on Windows Server 2003, Windows XP, and Windows 2000 operating
    systems only. 
    The description on this setting says that it disables the "Font size" drop-down list on the Appearance tab in Display Properties. This does not exist in Windows 7. I don't think the DPI setting you are talking about is the equivalent.
    The other setting is good to have enough. Thanks for the tip!

  • Assign a local logon script using Group Policy

    Is there a way to assign a local logon script using Group Policy? The reason I ask is that I wrote a logon/logoff script that will record the date/time, user, and computer for everyone who logs on to any machine in the domain. Right now it's set on a domain
    GPO, so it works great for domain accounts, but I'd like to extend that functionality to local accounts as well. The only way I know how to do that would be to set my script to run using the local policy. Since I don't want to manually go around to all 400+
    machines in my domain, I would rather find a simpler way of modifying the local policy. Any ideas?

    Martin, thank you for your response. That's exactly the kind of out-of-the-box answer I was looking for, unfortunately, it looks like I can only do that for Logon scripts. I don't see an option for Logoff. (Maybe the took the Logoff functionality out?
    This article says there should be a Logoff item in the GPO, but they're talking about Windows 2000 in that article.)
    Matthias, I started playing around with what you said, and I noticed that the "Scripts" key only seems to show up on my Windows 7 clients. The XP workstations don't have that key. Plus I did some testing, and I think I can do it without having
    to mess with the registry at all.
    So I think I have a workable solution at the moment. I found
    this article that talks about copying Local Polices from one computer to another. I tried manually setting the Logon/Logoff scripts in the Local policy on a fresh machine. From that reference computer I copied the Scripts folder out of the %SYSTEMROOT%\System32\GroupPolicy\User
    directory. It also created a gpt.ini file in the %SYSTEMROOT%\System32\GroupPolicy directory. The gpt.ini file contained an attribute called gPCUserExtensionNames, and one called Version. The gPCUserExtensionNames attribute specified two GUIDs, which
    I assumed to be the GUIDs that identify the Local Policy. I tried manually creating the Local policy on several different machines, with several different Operating Systems, and those GUIDs always seemed to be the same (not sure why). So I copied the gpt.ini
    file off the reference machine as well. When I placed all of the files I copied from the reference machine on to a new machine, everything seemed to work just fine (no registry modification necessary), with one caveat. It seemed to be running the script twice.
    So I went back into the gpt.ini file and deleted one of the GUIDs listed under gPCUserExtensionNames, and now the script runs just once!
    So I think this solution will work ok for me. We don't have any other Local Policies in place, so demolishing all existing Local Policies is perfectly acceptable in my case. I'm just not sure if I'm doing any damage by copying the gpt.ini file from a reference
    machine (if anyone can expand on how that works, I would appreciate the peace of mind that I'm not making things worse by doing this). So all I need now is to write a Startup script, or an SCCM package to deliver the Logon scripts and associated ini files
    to the appropriate location on all the domain PCs. Easy enough to do on my own. If anyone knows of a reason why this method is a bad idea, please post here. I'll be testing it out on a handful of PCs in the mean time.
    Hi Guys,
    Will this solution work for my case? I have a forcereboot batch script that I need to load on the local policy (logoff script through GPEDIT) however I can only load it manually. I need to do it on multiple machines (approx 5000 computers). I am having
    trouble doing it using powershell. Is there any other options to do it? 
    Will I have to use the same GUID's you mentioned on the gpt.ini file? (gPCUserExtensionNames=[{42B5FAAE-6536-11D2-AE5A-0000F87571E3}{40B66650-4972-11D1-A7CA-0000F87571E3}] since it refers to the local script and how about the version on the gpt.ini file?
    Thanks in advance.
    Dash
    https://social.technet.microsoft.com/Forums/en-US/1f636042-bcff-498d-93c0-e1aa89f80961/how-to-load-a-script-on-the-local-group-policy-on-multiple-computers?forum=mdopagpm

  • Assignment of components to operations using LSMW

    Hi
    i created routing using LSMW.
    i created all the operations using direct nput methode
    and  material to group assignmebt using batch input methode.
    but i was not able to assign my components of the BOM to my routnig operations.
    How to do this.
    which one is the best and easy way. direct or batch input methode.

    Dear,
    Now I am clear.
    You need to create different 2 BOM and with BOM items, as below,
    example - total requirement of material A is say 10.
    Semi finished Product- X BOM
    BOM item 1 - material A-qty 8
    BOM item 2 - material B-qty -5
    Finished material Y - BOM
    BOM item 1 - semifished material X-qty 10
    BOM item 2 - material C-qty 10
    BOM item 3 - material A-qty 2
    BOM item 4 - material D-qty -2
    You need to create above 2 BOM's if you want to see semifished product into inventory, if not proceed as below
    Finished material Y - BOM
    BOM item 1 - material A-qty 8 assign it to routing operation 10
    BOM item 2 - material B-qty -5 assign it to routing operation 10
    BOM item 2 - material C-qty 10 assign it to routing operation 20
    BOM item 3 - material A-qty 2 assign it to routing operation 30
    BOM item 4 - material D-qty -2 assign it to routing operation 30
    I think this is the only way you can map it.

  • Creating Routings Operations using BAPI_ROUTING_CREATE

    Hello,
    I am creating Routing operations using BAPI_ROUTING_CREATE. The parameters which I am using are:
    PROFILE
    TASK
    MAT_ALLOC
    OPERATIONS.
    The group counter and group are given internal number assignment.
    In my case for 1 material number plant combination only 1 task exist. This can be considered as Header record. For this Header record there are multiple operations. My program calls BAPI only When any combination of MATNR or WERKS changes in MAT_ALLOC. It works fine for 1 operation but fails incase of multiple operations. The error is routing material assignment does not exist. I have checked for all madatory parameters in FM documentation. The BAPI when executed independently works fine but in program it fails.File format is
    Mat. No. Plant Key Date Status Usage Operation Number Work center Control Key Description val unit.
    I am calling BAPI only when Mat no or plant changes.Unitl then I append the data in internal tables.
    Passing the data in this format every operation is given Mat No and Plant, then y it is giving error routing material assignment does not exist.
    Please help in this regard.
    Thanks
    Khushboo

    Well actually that´s almost exactly what my task is as well.
    So what i do is:
    - reading the headdata of the given routing (the one which is to be copied)
    - reading the positiondata of the given routing (the one which is to be copied)
    then calling the BAPI_ROUTING_CREATE while exporting the headdata and the positiondata to the BAPI.
    It works perfect for the routing itself, but the BAPI doesnt create any operations while it displays a sucess message and NO errormessages.

  • Error using group by expression

    hello friends,
    I use this query & used group by but oracle give error :
    ORA-00979: not a GROUP BY expression
    Select uu.ID,max(uu.module_name) as MainMenu,uu.NAME,decode(substr(param_str,4,1), 'P','ü','') as Allow,decode(substr(param_str,1,1), 'A','ü','') as Ins,decode(substr(param_str,2,1), 'E','ü','') as Edit,decode(substr(param_str,3,1), 'D','ü','') as Del from USER_MODULE uu,user1 where( user_name='SA'or user_name is null)and user1.srno=uu.srno and uu.ID=uu.ID group by uu.id,uu.name,MainMenu group by uu.id,uu.name

    Hi
    The 'param_str' in DECODE function either should be a bind variable for user input or should be a column of a table. If it is a table/view column then include it in the GROUP BY clause and the query should work.
    If you specify a GROUP BY clause in a statement, then the select list can
    contain only the following types of expressions:
    – GROUP BY expressions
    – Constants
    – Aggregate functions and the functions USER, UID, and SYSDATE
    – Expressions identical to those in the group_by_clause. If the group_by_
    clause is in a subquery, then the GROUP BY columns of the subquery must
    match the select list of the outer query. Any columns in the select list of the
    subquery that are not needed by the GROUP BY operation are ignored without
    error.
    – Expressions involving the preceding expressions that evaluate to the same
    value for all rows in a group
    In short, except for the columns in aggregate functions, all columns must be included in the GROUP BY clause.
    - Priya

  • Uninstall IE and set another web browser such as Chrome and FireFox as default using Group Policy

    Hi there,
    Please can anyone instruct me on how to uninstall IE and set another web browser such as Chrome and FireFox as default using Group Policy. Your help would be much appreciated.
    Kind regards,
    RocknRollTim
    P.S. I was redirected by a forum user off the Microsoft Community forum.

    IE can't be uninstalled.  It's part of the operating system and cannot be removed.  You can hide the icon but the engine is still on the machine and still must be updated.
    This is a topic best suited for a Group policy forum. 
    https://social.technet.microsoft.com/Forums/en
    US/home?forum=winserverGP
    Step one is to install the Chrome ADMX templates - see the link below for more detais:
    Configuring Google Chrome via Group Policy | Jack Stromberg:
    http://jackstromberg.com/2013/08/configuring-google-chrome-via-group-policy/
    Of the two browsers, my personal preference is Chrome over Firefox.  Firefox's add in model is too prone to developer insecurity.
    My blog
    Thanks Justin Gu for marking this as the proposed answer.
    Thank you,
    RocknRollTim

  • Using Groups in SharePoint from Active Directory

    Hello,
    Is it possible to use groups in SharePoint from AD?
    I have several groups in AD that I would like to use in SP. Of course SP has its own set up groups in permission (Owner, Member and Visitor). I do not want to use these groups. What I would like to do is use groups that are in my AD and assign those the
    designer, contributor, read-only..etc permission.
    For example, SP people picker finds my AD group called "Finance_Project" and assign this group with permission rights as a contributor.
    Is this doable in SharePoint. I would think since SharePoint can be authenticated with AD, you should be able to use your own AD groups.
    Any suggestions, articles and answers are greatly appreciated.
    artisticweb

    You can do this in SharePoint. are you importing the AD groups via UPA?
    Creating a SharePoint group and adding an Active Directory group to its members…this allows anyone in the Active Directory group to participate in the SharePoint group
    Mapping roles directly to Active Directory groups and not using SharePoint groups at all.
    here is couple of article which will explain your choices one over to other
    Assign permission levels in SharePoint 2013
    Using Active Directory Vs. SharePoint Groups
    http://sergeluca.wordpress.com/2013/07/06/sharepoint-2013-use-ag-groups-yes-butdont-forget-the-security-token-caching-logontokencacheexpirationwindow-and-windowstokenlifetime/
    Please remember to mark your question as answered &Vote helpful,if this solves/helps your problem. ****************************************************************************************** Thanks -WS MCITP(SharePoint 2010, 2013) Blog: http://wscheema.com/blog

  • How to write a SQL Query without using group by clause

    Hi,
    Can anyone help me to find out if there is a approach to build a SQL Query without using group by clause.
    Please site an example if is it so,
    Regards

    I hope this example could illuminate danepc on is problem.
    CREATE or replace TYPE MY_ARRAY AS TABLE OF INTEGER
    CREATE OR REPLACE FUNCTION GET_ARR return my_array
    as
         arr my_array;
    begin
         arr := my_array();
         for i in 1..10 loop
              arr.extend;
              arr(i) := i mod 7;
         end loop;
         return arr;
    end;
    select column_value
    from table(get_arr)
    order by column_value;
    select column_value,count(*) occurences
    from table(get_arr)
    group by column_value
    order by column_value;And the output should be something like this:
    SQL> CREATE or replace TYPE MY_ARRAY AS TABLE OF INTEGER
      2  /
    Tipo creato.
    SQL>
    SQL> CREATE OR REPLACE FUNCTION GET_ARR return my_array
      2  as
      3   arr my_array;
      4  begin
      5   arr := my_array();
      6   for i in 1..10 loop
      7    arr.extend;
      8    arr(i) := i mod 7;
      9   end loop;
    10   return arr;
    11  end;
    12  /
    Funzione creata.
    SQL>
    SQL>
    SQL> select column_value
      2  from table(get_arr)
      3  order by column_value;
    COLUMN_VALUE
               0
               1
               1
               2
               2
               3
               3
               4
               5
               6
    Selezionate 10 righe.
    SQL>
    SQL> select column_value,count(*) occurences
      2  from table(get_arr)
      3  group by column_value
      4  order by column_value;
    COLUMN_VALUE OCCURENCES
               0          1
               1          2
               2          2
               3          2
               4          1
               5          1
               6          1
    Selezionate 7 righe.
    SQL> Bye Alessandro

Maybe you are looking for

  • Checkboxes for multiple line items

    On my form, I query a table based on ref no and bring back muliple line items for each ref no. What I need to do is display a checkbox next to each line item. If they check the box, they can edit the line, otherwise nothing should happen. Some fields

  • Sender not find in moni..........

    hi, iam working with a senario were i cant find my sender servies in moni............senario details.......iam sending data using abap proxy to xi and receiver iam using file adapter....in IR ideveloped all DT,MT and MI....Mapping and Interface mappi

  • Re-Using Java Business Layer in Flex

    I am new to flex and particulalry looking at this to use as front end for existing Web based Java Application as front end. We have comprehensive business layer written using POJOs and DAOs and want to reuse it. I will be using remote objects to call

  • OBIEE LDAP

    Hi, I have successfully integrated OBIEE with LDAP. I have created an initialization Block called Authentication in which I am using LDAP to authenticate users. Users are able to login to Answers. However, if I create another initialization block to

  • IPhoto won't import new photos from Photo Stream.

    Hello, iPhoto won't import new taken pictures from Photo Stream. When I disable and then re-enable Photo Stream, all pictures will be imported to iPhoto. But when I take some more pictures, these won't appear in Photo Stream (until disabling/enabling