OIM 9.x is showing multiple requests for unique request under pending appro

Hi OIM Guru,
We are using oim 9.x and seeing multilple entries for single request id under pending approval page.
Support request id is 100 and once you go to pending approval page :-
you will be able to multiple entries for request id 100. (Hope i am clear enough on this front.)
any idea on this front ?
What could be the possible reason for it?

What is the BP that you are using? there is a bug related of this issue. Please update your OIM to latest BP and let me know.
I hope this helps,
Thiago Leoncio

Similar Messages

  • How to show multiple values for Unique records in Report

    Here's my question/problem:
    I've joined two tables, one table (TBL1) contains an object id (OBJ_ID) that repeats and the other table (TBL2) contains a date (DT), object type id (OBJ_TYP_ID), and object type description (OBJ_TYP_DES). The tables are joined by an inventory id (INV_ID).
    The OBJ_ID repeats and has a Date value for each record. I want to report an unique OBJ_ID and show each Date for a particular OBJ_ID in multiple Columns.
    An example of the current resultset looks like this:
    OBJ_ID OBJ_TYP_ID OBJ_TYP_DES DATE
    1 1 TYPE1 4/1/2009
    2 1 TYPE1 4/1/2009
    3 1 TYPE1 4/10/2009
    1 2 TYPE2 5/3/2009
    3 1 TYPE1 3/30/2005
    4 1 TYPE1 4/1/2009
    5 1 TYPE1 4/1/2009
    5 2 TYPE2 5/1/2009
    1 1 TYPE1 4/3/2007
    1 1 TYPE1 3/30/2005
    I want to express the resultset like this:
    OBJ_ID OBJ_TYP_ID OBJ_TYPE_DES DATE1 DATE2 DATE3
    1 1 TYPE1 4/1/2009 4/3/2007 3/30/2005
    1 2 TYPE2 5/3/2009
    2 1 TYPE1 4/1/2009
    3 1 TYPE1 4/10/2009 3/30/2005
    4 1 TYPE1 4/1/2009
    5 1 TYPE1 4/1/2009
    5 2 TYPE2 5/1/2009
    What technique is best to use to do this? I know I could create another table and populate the rows/columns by reading data from this query, but is there a better way?

    Hi,
    cclemmons wrote:
    I want to express the resultset like this:
    OBJ_ID OBJ_TYP_ID OBJ_TYPE_DES DATE1 DATE2 DATE3
    1 1 TYPE1 4/1/2009 4/3/2007 3/30/2005
    1 2 TYPE2 5/3/2009
    2 1 TYPE1 4/1/2009
    3 1 TYPE1 4/10/2009 3/30/2005
    4 1 TYPE1 4/1/2009
    5 1 TYPE1 4/1/2009
    5 2 TYPE2 5/1/2009
    What technique is best to use to do this? I know I could create another table and populate the rows/columns by reading data from this query, but is there a better way?Absolutely! You seem to have an instictive feeling that creating a separate table just for a query is inefficient. You instinct is 100% correct. Maybe in Oracle 7 there was a reason to do that, but today you can query results of other queries as if they were tables, so temporary tables like you describe are very rarely necessary, let alone convenient.
    What you want to do is pivot the date columns. Here's one way
    WITH     original_query     AS
         SELECT  obj_id
         ,     obj_typ_id
         ,     obj_typ_des
         ,     dt          -- date is not a good column name
         FROM     ...          -- the rest of your original query goes here
    ,     got_rnum     AS
         SELECT     oq.*
         ,     ROW_NUMBER () OVER ( PARTITION BY  obj_id
                                   ,                    obj_typ_id
                             ,             obj_typ_des
                             ORDER BY        dt     DESC
                           )         AS rnum
         FROM    original_query        oq
    SELECT       obj_id
    ,       obj_typ_id
    ,       obj_typ_des
    ,       MAX (CASE WHEN rnum = 1 THEN dt END)     AS dt1
    ,       MAX (CASE WHEN rnum = 2 THEN dt END)     AS dt2
    ,       MAX (CASE WHEN rnum = 3 THEN dt END)     AS dt3
    ,       MAX (CASE WHEN rnum = 4 THEN dt END)     AS dt4
    ,       MAX (CASE WHEN rnum = 5 THEN dt END)     AS dt5
    FROM       got_rnum
    GROUP BY  obj_id
    ,       obj_typ_id
    ,       obj_typ_des
    ;As you can see, this adds two layers of queries on top of your original query. One of those layers is probably not needed; depending on what you're doing in your original main query, you can probably compute rnum there, and omit the got_rnum sub-query.
    Also, depending on the relationship of obj_id, obj_typ_id and obj_typ_des, some of what I posted above may not be needed but including it won't really hurt.
    If you want to know more about this technique, search for "pivot" or "rows to columns". A <tt>SELECT ... PIVOT ...</tt> keyword was introduced in Oracle 11, but most of what you'll find when you search for "pivot" doesn't assume you have Oracle 11 (nor does the query above require Oracle 11).
    This assumes you know an upper limit (5 in the example above) of dts that can appear in any line of output.
    See [this thread|http://forums.oracle.com/forums/thread.jspa?messageID=3527823&#3527823] for a discussion of some alternatives.

  • How to show multiple messages for a single exception

    hi
    Please consider this example application created using JDeveloper 11.1.1.3.0
    at http://www.consideringred.com/files/oracle/2010/MultipleMessagesExceptionApp-v0.01.zip
    It has a class extending DCErrorHandlerImpl configured as ErrorHandlerClass in DataBindings.cpx .
    Running the page and entering a value starting with "err" will result in an exception being thrown and multiple messages shown.
    See the screencast at http://screencast.com/t/zOmEOzP4jmQ
    To get multiple messages for a single exception the MyDCErrorHandler class is implemented like
    public class MyDCErrorHandler
      extends DCErrorHandlerImpl
      public MyDCErrorHandler()
        super(true);
      @Override
      public void reportException(DCBindingContainer pDCBindingContainer,
        Exception pException)
        if (pException instanceof JboException)
          Throwable vCause = pException.getCause();
          if (vCause instanceof MyMultiMessageException)
            reportMyMultiMessageException(pDCBindingContainer,
              (MyMultiMessageException)vCause);
            return;
        super.reportException(pDCBindingContainer, pException);
      public void reportMyMultiMessageException(DCBindingContainer pDCBindingContainer,
        MyMultiMessageException pException)
        String vMessage = pException.getMessage();
        reportException(pDCBindingContainer, new Exception(vMessage));
        List<String> vMessages = pException.getMessages();
        for (String vOneMessage : vMessages)
          reportException(pDCBindingContainer, new Exception(vOneMessage));
    }I wonder if calling reportException() multiple times is really the way to go here?
    question:
    - (q1) What would be the preferred use of the DCErrorHandlerImpl API to show multiple messages for a single exception?
    many thanks
    Jan Vervecken

    fyi
    Looks like using MultipleMessagesExceptionApp-v0.01.zip in JDeveloper 11.1.1.2.0 (11.1.1.2.36.55.36) results in a different behaviour compared to when used in JDeveloper 11.1.1.3.0 (11.1.1.3.37.56.60)
    see http://www.consideringred.com/files/oracle/img/2010/MultipleMessages-111130versus111120.png
    When using JDeveloper 11.1.1.2.0 each exception seems to result in two messages where there is only one message (as intended/expected) per exception when using JDeveloper 11.1.1.3.0 .
    (Could be somehow related to the question in forum thread "multiple callbacks to DCErrorHandlerImpl".)
    But, question (q1) remains and is still about JDeveloper 11.1.1.3.0 .
    regards
    Jan

  • Itunes shows multiple listings for the same files (songs), help ???

    dunno why, but Itunes is showing mulitple listing for my file (songs), is there a way to clean this up instead of going through the list one by one to get rid of the extra listing...?? thank you in advance...

    It looks like you have duplicate entries in the library (two entries pointing to the same song file), but you could also have duplicate files.
    Add the 'Date Added' column to the library (View Options, Command-J) and sort on 'Date Added'.
    If many songs show the same recent 'Date Added' and you didn't actually add them that day, those ones obviously are the duplicates.
    Compare a few of those entries with their duplicate ones.
    Do they point to the same file? If so, delete the last added ones, but choose 'Keep Files'.
    If they point to different files, delete the last added ones and choose 'Move to Trash'
    If the above does not help, you might find a useful script at www.dougscripts.com/itunes
    Search for "duplicate" to find the appropriate scripts.
    You will still have to remove the entries manually though.
    Hope this helps.
    M
    17' iMac 800 MHz, 768 MB RAM, 200 GB HD, DL burner   Mac OS X (10.4.8)   iTunes 7.0.2

  • Track changes showing multiple entries for a single change?

    Hi there .. I'm using Pages '09 v4.1 to edit MS Word '97 documents. I've been using the 'track changes' feature to work on chapters in a book and have done so with no problems so far (about 6 chapters so far in separate files). I went to start the next chapter and noticed that when I make a single change such as highlighting a word and making it italic, the tracking bubbles will show up as individual entries for every letter instead of for a single word. The really annoying thing is that it's not consistent .. some whole-word changes show up as a single entry, while some show as a few entries but don't necessarily correspond to how many letters are in the word being changed. When I try deleting specific tracking bubbles to see which part of the word they correspond to, it varies. For example, if I put the word "similar" in italics on page one, paragraph one, it shows up as 2 entries. When I delete the last entry, "imilar" will go back to standard font, while "s" stays italic until I delete the other entry. It's as though the words in the document are being recognized based on something other than the obvious, and certain letters are being grouped together in the program's brain, while others are separate.
    It's not isolated to italics, btw. If I reformat the entire document to be left-aligned instead of center-aligned, it will show lots of separate tracking bubbles in various places through the document, rather than showing one bubble for my single change.
    I've tried duplicating and saving a new version of the document, as well as creating a new doc and pasting everything into that and saving as a new doc, though I wasn't sure if this would carry over the problem .. It did.
    It's not the end of the world as far as finishing this job, but it's pretty annoying and will be worse for the person who ultimately verifies the changes I've made. Any help is greatly appreciated.

    TekWarrior wrote:
    I'm part of the end user computing and we are in the process of making a consolidated tnsnames.ora file as part of our migration from Windows XP to 7.
    The following two entries are to the same host, but are named different and use different ports, we can't locate the original programmer that set it up.
    I need to know if this would cause conflicts or not?
    PYRPROD.WORLD =
      (DESCRIPTION =
        (ADDRESS_LIST =
          (ADDRESS = (PROTOCOL = TCP)(Host = [same hostname])(Port = 1521))
        (CONNECT_DATA =
          (SID = pyrp1)
    PYRP1 =
      (DESCRIPTION =
        (ADDRESS_LIST =
          (ADDRESS = (PROTOCOL = TCP)(HOST = [same hostname])(PORT = 1526))
        (CONNECT_DATA =
          (SERVICE_NAME = pyrp1)
    TekWarrior wrote:
    I'm part of the end user computing and we are in the process of making a consolidated tnsnames.ora file as part of our migration from Windows XP to 7.
    The following two entries are to the same host, but are named different and use different ports, we can't locate the original programmer that set it up.
    I need to know if this would cause conflicts or not?
    PYRPROD.WORLD =
      (DESCRIPTION =
        (ADDRESS_LIST =
          (ADDRESS = (PROTOCOL = TCP)(Host = [same hostname])(Port = 1521))
        (CONNECT_DATA =
          (SID = pyrp1)
    PYRP1 =
      (DESCRIPTION =
        (ADDRESS_LIST =
          (ADDRESS = (PROTOCOL = TCP)(HOST = [same hostname])(PORT = 1526))
        (CONNECT_DATA =
          (SERVICE_NAME = pyrp1)
    It  won't cause any problem.

  • List View Showing Multiple Entries for Certain Records

    I've been updating my large mp3 library with album art in order to make the list view more useful and fun to look at. With just a handful of records however I've noticed that they're getting split into multiple entries. For instance, Album X shows up twice, with one entry displaying only song 1 and the other entry displaying the rest of the songs.
    I've looked hard at the tags but I don't see any difference. All the records in question were ripped using iTunes so they're not coming from different sources either.
    Any thoughts would be hugely appreciated! Cheers.

    Thanks again; I tried the solution this morning and it fixes the problem. I've marked the thread as such. Unfortunately it's a lot of fiddly updating, but hey, it's better than no workaround at all.

  • BPS Web Interface don't show multiple documents for each cell

    Hi gurus,
    I have an issue... we are trying use text documents from BPS on the WEB interface. Everything works fine, I can input text documents on each cell on the web, and from Query as well.
    I saved several other documents from the query for the very same cell, and I can see these other documents from BPS itself or from the Query by clicking on the title... but on BPS WEB interface, it shows only the last text document saved.
    Is there anything wrong on the configuration, or is it possible for the WEB interface to show the titles so that the user can choose which document he wants to open?
    Thanks in advance,
    Chen

    Hi Luke,
    did you check whether the document attributes are generated for your Characteristics?
    AWB -> Documents -> Administration -> Generated Properties
    There is also a SAP Note 431126, which you might want to consult.
    Regards,
    Eric

  • Mail Activity shows multiple sends for 1 send

    Just a curious little bug. When I send one email, the Mail Activity panel at lower left shows anywhere from 2 to 6 emails being sent. It should show 1. Has anyone else seen this?

    Try not to worry to much about that. Remember, depending on the type of network connection you have, the email client, and the size of the file, the email will not always be sent in one heap.. instead the mail program and the email host and he various servers it may go through to get the infomation to where it needs to it will chunk the infomation into multiple packets, and it will go through multiple servers before it gets to its destination. I would sugest syncronyzing your accuonts, and f you need to rebuild your inbox. But try not to worry about that to much that it shows seveal times in your activity monitor.

  • HP does not show any drivers for my P1006 under windows 10

    My Laserjet P1006 will not work now that I am using windows 10. HP does not show that they have new drivers for my P1006. Will HP be coming out with new drivers.

    Hi,Drivers should beocme available for Windows 10, as you may find listed below:http://support.hp.com/us-en/document/c04658195 In the meantime connect the printer and try following the HP Printer Install Wizard, it may detect a compatible driver for yoru printer:http://h20180.www2.hp.com/apps/Nav?h_pagetype=s-926&h_lang=en&h_client=s-h-e016-1&h_keyword=dg-PIW If that fails you may also try installing the Windows 8.1 drivers, there are good chances those will work on Windows 10:http://ftp.hp.com/pub/softlib/software12/COL21058/bi-55362-7/ljP1000_P1500-HB-pnp-win64-en.exe Regards,Shlomi

  • Showing text comment for every selection under dropdownbox

    We retrieve key, value data for a dropdown box from a BI query. Based on the selection under drop down box, we want to display a comment next to it. How can this be achieved in VC without making any further calls to BI? Thanks, MD
    Edited by: Maulin Doshi on Dec 2, 2009 1:24 PM

    Hi,
    This is possible if the no.of values for that dropdown are limited.
    one of the ways you can do this is to have text fields  beside the dropdown  where you can have comment for each value in the dropdown and write the visibility condition for each of the text fields based on the value in the dropdown.
    hope this helps,
    Regards,
    Rk.

  • VSOM 7.5 login fields for user/pass not showing up anymore for some users under internet explorer

    Team,
    some of my users are experiencing the issue that our russian friend had:
    https://supportforums.cisco.com/discussion/12304681/vsom-751-does-not-started-ie11
    However we are running the english interface and had no issues for a while (not sure for how long as the users infrequently use the system)
    When navigating to the login screen there are no fields for the user to enter their credentials in internet explorer. Tried IE 8 - IE 11. Played with compatibility mode and safe sites etc... without success.
    Firefox works without issues and so does chrome for the login.
    Anyone run into this issue in the past couple of weeks?

    Yeah it is working now, it may have been a reboot Thanks!

  • PO Values showing multiple time in Report

    Hello Expert,
    We had one report called PO Status report it is fetching data from ME23N from ECC,when i am checking the report in BW the report PO showing multiple values for different different invoices which should not be the case it should be same,please help me to fix the issue.can i change something in reporting level
    Thanks and Regards,
    Jyoti

    Hello All,
    Thanks for the reply i had cheked by putting PO number and Invoice number next to next in the report but the total amount of the value is coming more than the line items in the Purchase order in ECC.I would like to give example of the issue like for X PO there are 3 line items and 5 invoices the total sum of the line items for the PO is for ex 3000 with  5 invoices.Expected results in BW is the sum of the line items=(PO Amount),but in report it is taking the invoices value and PO value for each invoices and adding all the invoices PO amount as in our case 15000 which is incorrect.Please help
    Thanks and Regards,
    Jyoti

  • Not able to generate multiple lines for headers in report

    Hi,
    I am new to BI publisher and not able to generate multiple lines for headers. Please help me to resolve.
    I am using RTF template, data source as PS Query and XML file (system generated from the data source)
    When I am using system generated 'First XML' file, I am getting output in the follwoing format.
    TEAM_MEMBER, PROJECT_ID, NAME, START_DT
    e.g.
    EMP1 , 71000, Sample, 01-Jan-2010
    EMP1 , 72000, Sample, 01-Feb-2010
    EMP1 , 73000, Sample, 01-March-2010
    But I want the report to be generate with multiple projects for one employee like below format , for that I used 'Second XML' file but I am getting blank report.
    In short if there is one to many case, how to show in reports??? Please correct if I am going wrong.
    TEAM_MEMBER
    PROJECT_ID, NAME, START_DT
    PROJECT_ID, NAME, START_DT
    PROJECT_ID, NAME, START_DT
    e.g.
    EMP1
    71000, Sample, 01-Jan-2010
    72000, Sample, 01-Feb-2010
    73000, Sample, 01-March-2010
    **********First XML**************System generated XML ****************************
    <?xml version="1.0"?>
    <query numrows="2" queryname="SY_EMP_PROJECT" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="">
    <row rownumber="1">
    <TEAM_MEMBER>TEAM_MEMBER </TEAM_MEMBER>
    <PROJECT_ID>PROJECT_ID samp</PROJECT_ID>
    <NAME>NAME sample data</NAME>
    <START_DT>2010-08-25</START_DT>
    </row>
    <row rownumber="2">
    <TEAM_MEMBER>TEAM_MEMBER</TEAM_MEMBER>
    <PROJECT_ID>PROJECT_ID samp</PROJECT_ID>
    <NAME>NAME sample data</NAME>
    <START_DT>2010-08-25</START_DT>
    </row>
    </query>
    **********Second XML**************Manually created XML and using to show multiple projects for one employee****************
    <?xml version="1.0"?>
    <TEST numrows="2" queryname="SY_EMP_PROJECT" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="">
    <TEAM_MEMBER rownumber="1">
    <TEAM_MEMBER>1</TEAM_MEMBER>
    <EMPLOYEE_NAME>SAMPLE</EMPLOYEE_NAME>
    <PROJECT>
    <PROJECT_ID>1111</PROJECT_ID>
         <PROJECT_DESCR>SAMPLE</PROJECT_DESCR>
    <START_DATE>01012010</START_DATE>
    </PROJECT>
    <PROJECT>
    <PROJECT_ID>1112</PROJECT_ID>
         <PROJECT_DESCR>SAMPLE</PROJECT_DESCR>
    <START_DATE>01022010</START_DATE>
    </PROJECT>
    </TEAM_MEMBER>
    <TEAM_MEMBER rownumber="2">
    <TEAM_MEMBER>2</TEAM_MEMBER>
    <EMPLOYEE_NAME>SAMPLEC</EMPLOYEE_NAME>
    <PROJECT>
    <PROJECT_ID>1111</PROJECT_ID>
         <PROJECT_DESCR>SAMPLE</PROJECT_DESCR>
    <START_DATE>01012010</START_DATE>
    </PROJECT>
    <PROJECT>
    <PROJECT_ID>1112</PROJECT_ID>
         <PROJECT_DESCR>SAMPLE</PROJECT_DESCR>
    <START_DATE>01022010</START_DATE>
    </PROJECT>
    </TEAM_MEMBER>
    </TEST>
    Edited by: ganeshtw on Aug 25, 2010 12:14 AM

    Hi,
    With your first xml you can print like
    EMP1
    71000, Sample, 01-Jan-2010
    72000, Sample, 01-Feb-2010
    73000, Sample, 01-March-2010While creating the RTF template you can use the Group by option.
    <?for-each-group:ROW;./columnname> then print the column name
    <?columnname?>
    --Then your table format
    71000, Sample, 01-Jan-2010
    72000, Sample, 01-Feb-2010
    73000, Sample, 01-March-2010
    <?end for-each-group?>
    Thanks.

  • AssignedTo showing multiple times on report

    I was tasked with creating some reports from Service Manager using the cubes.  My boss wanted a report that showed all active tickets, showing from high to low the analyst, then the category, then the user.  
    I used the following Fields:
    IncidentStatusValue in the Column Label
    IncidentDimCount in the Values
    AssignedToUserDim.DisplayName, IncidentClassificationValue, and AffectedUserDim.DisplayName in the Row Labels.
    The report looks exactly as I want it to.  
    The problem is that the data is wrong on several levels.
    Issue 1:  It shows multiple entries for the AssignedToUserDim.DisplayName 
    I changed the names, but if I click on the number 1 next to Joe User(Affected User) for either Analyst1 or 2 a tab open with IR48005.  Basically the two analyst both show an active ticket assigned to them, when only one of them should.
    Issue 2: The Grand Total that is calculated by the PivotTable is incorrect.  I copy and paste the same numbers into the cells next to the PivotTable and the total is something completely different. 
    The weird thing about this also is that when I did this 20 minutes ago before writing this post, the Autocalc showed 130.  
    The first issue is more important than the second issue.  It is not just this report and I have tried using many different values only to get the same duplication.  Its almost like the DataWarehouse is not actually deleting the previous AssignedTo
    user.  The history in the actual ticket shows that it should be, but the reports show something different.  
    This then throws off every report I try to make.  I made one for totals tickets per analyst and I noticed that I got credit for closed tickets that I had previously reassigned, as did the person who the ticket was reassigned to.  
    Can anyone offer any suggestions?
    Thanks.
    Matt 

    Unfortunately no. But I think I found a pattern in regards to this: it seems the current assigned to user is always the one listed the last.
    I guess this is because the stored procedure behind the AssignedToUserDim doesn't filter if the relationship is still active. This is quite easy to "reproduce" via PowerShell.
    Lets say you have an IR with ID IR1234 which has been re-assigned multiple times.
    If you run this small query now in PowerShell you'll see that all the AssignedToUser relationships still exists, but only one of them has the property "IsDeleted" set to False.
    Import-Module SMlets
    $IRO = Get-SCSMObject -Class (Get-SCSMClass System.WorkItem.Incident$) -Filter "Id -eq IR1234"
    Get-SCSMRelationshipObject -BySource $IRO | where {$_.RelationshipID -eq "15e577a3-6bf9-6713-4eac-ba5a5b7c4722"}
    So, in the DB those AssignedToUser relationships (actually it applies to all relationships) won't be "overwritten" or the old one deleted as soon as you re-assign an incident for example. Instead, new relationshipobjects will be generated and the old ones
    changes the "IsDeleted" attribute to True.
    Perhaps it would be possible to create a new Dim for the Data Warehouse, re-use the stored procedure for the AssignedToUserDim and modify it slightly to filter only for the active AssignedToUser relationship. Then you could use your newly created dim to
    display the current Assigned To User. I haven't tested this though, probably it's more complex than I assume :)
    Cheers
    Alex

  • Mail Inbox Showing Multiple Entries Lately

    As of Jan 7 my Mail inbox on my MacBook Pro began showing multiple lines for each email received. At first it was five or so repeats, and now, evey time Mail refreshes it multiplies the earlier repeats such that the oldest ones going back to Jan 7 are repeated 100 times, and more recent are repeated less.  Odd thing is that mail proior ot Jan 7 still appears as a single inbox item.  Its like all mail since Jan 7 is multiplied each time i refresh.
    On my iPhone, the mail inbox is acting normally.
    Any ideas on how to solve?
    Thanks.

    I trashed all of my incoming email since Jan 7th, and these come back upon refreshing.  First as two lines, then when it refreshes again, it comes as four lines for each, then eight, etc.
    Mail previous to Jan 7th is OK and is not multiplied.

Maybe you are looking for

  • Setting browser.cache.check_doc_frequency = 0 doesn't work

    Setting the value of property browser.cache.check_doc_frequency to 0 has no effect. After restarting my browser all items still coming from the local cache. btw. if I set the value to 1, it works as described [http://kb.mozillazine.org/Browser.cache.

  • Can't install apps or reinstall air

    I use twhirl, which is an air based app. The old version works fine. I went to upgrade and get error #0. I tried to uninstall and got same error. At this point I thought it may be Air itself. I tried to reinstall over my current install and it says t

  • DotNet developer trying to make sence of iPhone development tools..

    Is there any useful links or tutorials for a newbie iphone developer from DotNet world ? I have been trying for the past one week to set a title to a tableView that i drag n dropped thru the interface builder. I learned the connection procedure and i

  • Feature Request - Fonts to Curves

    Apart from the UI issues of Acrobat DC, one feature I would like to see added is a button that converts fonts to curves. The watermark / flattener preview method is unacceptable and clunky in 2015.

  • SCOM Port Monitoring

    Hi, Can anyone please let me know how to monitor UDP ports in SCOM 2012 R2.SCOM monitors TCP ports (TCP Port template) but not sure on UDP Ports. Regards, Bharath