Incompatibility for custom Report is not working properly

Hi Gurus,
Need your help to diagnose the issue here.
The problem here is as under
We have a custom report CP1 which fills a table T1 during the process (table is truncated in the begining of the procedure). This CP1 is set incompatible to itself so that table architecture will work properly.
but the problen here is the next run starts ( 2sec, 5 secs or 10 secs) prior to the actual completion of the last run.
the data is as
CONCURRENT_ REQUEST ACTUAL_START ACTUAL_COMPLETION_
PROGRAM_ID ID                DATE     DATE
138361     3033673     7/3/2012 10:31:46 AM     7/3/2012 10:57:13 AM
138361     3033671     7/3/2012 10:28:47 AM     7/3/2012 10:31:42 AM
138361     3033670     7/3/2012 10:25:22 AM     7/3/2012 10:28:48 AM
138361     3033669     7/2/2012 7:07:21 PM     7/3/2012 10:25:37 AM
138361     3033665     7/2/2012 7:05:10 PM     7/2/2012 7:07:15 PM
here as you see the req 3033670 starts @7/3/2012 10:25:22 AM whereas the req 3033669 ends at 7/3/2012 10:25:37 AM (though we have terminated the 3033669 ) similarly for 3033670 and 3033671.
the following query is giving 1 row
select * from FND_CONCURRENT_PROGRAM_SERIAL
where RUNNING_CONCURRENT_PROGRAM_ID = 138361 is
We have bounced the CM after setting the incompatibility as per the
Setting up Incompatibility Rules for Custom Reports [ID 107224.1] suggested by Hussein on this forum.
This is happening on our prod env. kindly suggest something.
We are on 12.1.1 (r12).
Thanks
-Shivdeep Singh
Edited by: user1054040 on Jul 2, 2012 10:58 PM

Hi Srini,
We have raised a SR with oracle for this it seems to be a bug in 12.1.1 release I will update the same once I got any fix or patch from oracle.
from the intial investigation it seems to be that the imcompatibility wit itself feature is not working as expected.
Also this is the latest case
CONCURRENT_
PROGRAM_ID REQUEST_ID ACTUAL_START_DATE ACTUAL_COMPLETION_DATE COMPLETION_TEXT
150364     3036174     7/3/2012 4:55:03 PM     7/3/2012 4:57:04 PM     Normal completion
150364     3036178     7/3/2012 4:55:57 PM     7/3/2012 4:57:47 PM     Normal completion
150364     3036181     7/3/2012 4:57:27 PM     7/3/2012 4:58:09 PM     Normal completion
the request id 3036178 should have been started after the completion of 3036174 ie after 7/3/2012 4:57:04 PM but it actually starts 7/3/2012 4:55:57 PM
hope this give the better understanding for the scenario here.
Thanks
-Shivdeep Singh
Edited by: user1054040 on Jul 4, 2012 11:36 PM

Similar Messages

  • Report navigation not working properly for the union report

    i have a report which is union and i need to navigate to another report(detailed).the filters are not carried out to the detailed report .Please suggest me on how to get the filters ar e correctly applied on detailed report.I have prompted the fileds in the detailed report.

    Hi,
    Please refer to the below thread.
    Re: OBIEE-UNION Request navigate is not working (Parameter value is not passed)
    Hope it helps!
    Thansk

  • Custom barcode component not working properly

    package jpicedt.graphic.view;
    import jpicedt.graphic.model.*; // all elements + drawing
    import jpicedt.graphic.PECanvas;
    import jpicedt.graphic.PicPoint;
    import jpicedt.graphic.PicVector;
    import jpicedt.graphic.PEToolKit;
    import jpicedt.graphic.event.PEMouseEvent;
    import jpicedt.graphic.event.DrawingEvent;
    import jpicedt.graphic.jbarcodebean.*;
    import java.awt.*;
    import java.awt.font.*;
    import java.awt.image.*;
    import java.awt.geom.*;
    import java.util.*;
    import java.awt.image.BufferedImage;
    public class BarcodeView extends AbstractView {
         private PicPoint ptUL = new PicPoint(); // buffer
         private PicPoint ptLR = new PicPoint(); // buffer
    private Barcode barcode = null;
    protected TextLayout textLayout;
    protected AffineTransform tl2ModelTr=new AffineTransform();
         * construct a new View for the given PicGroup
         public BarcodeView(Element e){
              super(e);
              changedUpdate(null);
         * Give notification from the model that a change occured for an element this view is responsible
         * for rendering. This implementation update the view's bounds from the element's bounding box,
         * delegating highlighter's bounds to the current Highlighter delegate..
         public void changedUpdate(DrawingEvent.EventType eventType){
              Rectangle2D oldClip = bounds;
              // update bounds
              bounds = element.getBoundingBox(null); // => null if branchElement is empty !
              if (highlighter!=null) {
                   double s = 1.0;
                   PECanvas canvas = getContainer();
                   if (canvas != null) s=canvas.getScaleFactor();
                   highlighter.changedUpdate(eventType,s);
                   if (bounds!=null) bounds.add(highlighter.getBounds());
              // if event == ADD/REMOVE/REPLACE child, don't bother, just repaint it all :
              if (eventType==null || eventType != DrawingEvent.EventType.GEOMETRY_CHANGE) repaint(null);
              else {
                   if (oldClip!=null) {
                        if (bounds!=null) oldClip.add(bounds);
                        repaint(oldClip);
                   else {
                        if (bounds!=null) repaint(bounds);
                        // else branchElement was empty, and is still empty : do nothing
         * Render the View for the graphic element to the given graphic context. This called "paint"
         * on each child's view if its bounds rectangle intersects the clip.
         * @param allocation the current graphic clip
         public void paint(Graphics2D g, Rectangle2D a){
              if (!a.intersects(getBounds())) return;
              Element be = (Element)element;
    Barcode bar=(Barcode)be;
    //bar.getBarcode()
    //new JBarcodeBean(bar.getBarcode(), new Code39());
    //System.out.println("in Barcodeview paint bar.getBarcode()=========="+bar.getBarcode());
    System.out.println("in Barcodeview paint Graphics2D=========="+g);
              System.out.println("in Barcodeview paint element=========="+be);
              //for(Iterator it=be.children(); it.hasNext();){
    View v = be.getView();
    System.out.println("in Barcodeview paint view=========="+v);
    //for(Iterator it=be.children(); it.hasNext();){
         //          View v = ((Element)it.next()).getView();
         //          if (v!=null) v.paint(g,a);
              AffineTransform oldAT = g.getTransform();
                   // paint text in black
                   g.setPaint(Color.black);
                   // from now on, we work in Y-direct (<0) coordinates to avoid inextricable problems with font being mirrored...
                   //g.transform(oldAT); // also include rotation
    try{
    barcode=BarcodeFactory.create3of9("123456789012",true) ;
    barcode.setBarHeight(100);
    barcode.setBarWidth(100);
    barcode.draw(g, 600,600);
    }catch(BarcodeException bex){System.out.println("create barcode error:\n"+bex.toString());}
         * @return a HitInfo corresponding to the given click-point in model-coordinate.
         public HitInfo hitTest(PEMouseEvent e){
    System.out.println("at barcodeview hitText");
              PicPoint ptClick = e.getPicPoint();
              // test hit on children, highlighted or not, from top to bottom :
              BranchElement be = (BranchElement)element;
    System.out.println("barcodeview hitText BrancheElement be="+be);
              for(int i = be.getChildCount()-1; i>=0; i--){
                   Element o = be.getChildAt(i);
                   if (o.getView().hitTest(e,false)!=null) return new HitInfo.BarcodeComposite(be, i, e);
              return null;
    } // BarcodeView

    So whats the question??? What is it supposed to do if it works properly
    And by the way please put the code tags around your code (see Formatting help link on the page);

  • Stopping Customer Report doens not work

    Hi All,
    I implemented my customer report, which deletes versions of documents which has the same content (comparing the hashcodes).
    For traversing a folder hierarchy I used the HierarchyWalker-API.
    Now my problem:
    How can I stop my report? - I cannot find a method for stopping within the IReport interface.
    Many thanks for helping me
    Bye Steve

    Hi epexpert,
    thanks for your reply.
    Only two questions:
    (1) What do you mean with "confuse the reporting framework"?
    (2) In the SAP Reports you can stop the reports manally, why shouldnt this work with the custom reports?
    Many thanks
    Steve

  • Application deployment and reporting does not work properly

    Hello
    I have a network and i management that with sccm 2012 cu2
    Just have a problem with sccm
    Sccm dosenot show corect data for collection or reporting such as all windows sevens
    However self service portal doesnot work properly and for install program wants administrator privilage for users
    Sql is 2008r2 cu6

    What is displayed and where? What was expected?
    Torsten Meringer | http://www.mssccmfaq.de

  • Run Web Layout in Reports Developer not working properly

    I created a simple tabular report on hr.employees. It runs fine for the "Run Paper Layout" button. When I click "Run Web Layout" I get an IE browser window with the following:
    404 Not Found
    OracleJSP: java.io.FileNotFoundException:
    Set the init-param debug_mode to "true" to see the complete exception message.
    I do not know where to 'Set the init-param debug_mode to "true"'
    I'm using windows XP
    My "home" for the 10g Developer Suite is I:\DevSuite10g
    My "home" for the 10g Rel2 database is I:\oracle\product\10.2.0\
    I can navigate to http://mycomputer:8890/reports/rwservlet and see the
    "OracleAS Reports Services - Servlet Command Help" webpage
    I'm not using Oracle Application Server software.
    Please Advise........Mark

    Sure, here is the note.
    Subject:  Running JSP Report in Builder returns: Error: 404 Not Found Oraclejsp: Java.Io.Filenotfoundexception
      Doc ID:  372624.1 Type:  PROBLEM
      Modified Date :  07-JUN-2006 Status:  MODERATED
    In this Document
      Symptoms
      Cause
      Solution
    This document is being delivered to you via Oracle Support's Rapid Visibility (RaV) process, and therefore has not been subject to an independent technical review.
    Applies to: Oracle Reports Developer - Version: 10.1.2.0.2
    This problem can occur on any platform.
    Symptomso The loss of functionality
    Cannot test jsp using Run to Web Layout button.
    o The sequence of events
    Open a report in builder.
    Click on Run to Web Layout.
    Browser shows 404 error.
    o The significance of loss
    Cannot test reports in builder.
    o Include specific error messages (error number with syntax)
    404 Not Found
    OracleJSP: java.io.FileNotFoundException:
    Set the initialization parameter in debug_mode to "true" to query the complete exception message.</HT
    o What IS working
    Paper layout reports work.
    CauseA space in the name caused the URL call for the jsp not to be valid.
    When the URL is generated, the space is treated as the need for a new parameter.
    EXAMPLE
    JSP name: 'my test.jsp'
    Builds the following URL:
    http://server:3000%2Fmy+test000203332.jsp?frombuilder=yes&validatetag=yes&JSPRUN=Yes
    While the following name without a space produces a good URL
    JSP name: 'myname.jsp'
    http://server:3000%2Fmyname000203332.jsp?frombuilder=yes&validatetag=yes&JSPRUN=Yes
    Note that the '+' is not in the good URL.
    SolutionTo implement the solution, please execute the following steps:
    1. Rename you report from my test.jsp' (with space) to 'mytest.jsp' (no space)

  • Report Navigation not working properly

    I have a scenario where in i need to provide navigation on a column so that when clicked it should get the detail report corresponding to the value I click on.
    Lets say, I have a static filter abc in the detail report as well as summary report.
    When I run the detail report individually on a dashboard page, I am able to see the filter abc in the filter list below the report.
    But when I navigate from the summary report, this filter is missing in the filter list as well as in the physical query.
    As a result of this the records which have to be filtered on this filter "abc" are not getting filtered.
    Can you please help in this.
    Thanks,
    Swetha

    David, I think that will show the user No Results when navigating from the summary report unless he clicks 'abc'.
    To the OP, I think you should have 1 filter, unprotected, set to 'abc'. That way when you go to the report directly, it is filtered to 'abc'. But if you navigate to it from the summary report, you it will get filtered to whatever you clicked, 'abc', 'xyz', etc.
    If that isn't working, I would check your column formula in the summary report and the target report and make sure they are the same.

  • AddFilter for an AND filter not working properly with my XML

    I am following the examples from the Multiple Filters Sample pages to build a page that will filter some data based upon grade levels.
    http://indianawea.org/resources/outreachtest.asp
    This page is calling the XML file located here:
    http://indianawea.org/datasets/resourcesXML.asp
    You will notice some weird things right away if you do a simple filter for K-3 Grade Levels. It will find some of the K-3 but not all of them. In addition, when I add another filter (7-8) it doesnt seem to be additive at all but doing an OR filter. The K3 and 7-8 together should only have two results (World Monitoring Day and Survival Guide).
    I wonder if it has to do with my XML file struture.The grade levels are stored in a comma delimited string in the database and I pull them out, put them in an array and then loop through the array, creating XML markers for them. This was patterned after the donut example on the Spry page. I am not sure I am doing that correctly because the tags have the same names.
    Any help on this is greatly appreciated. And yes, I am working on this on Easter afternoon!
    Jon

    Thanks for the response Gramps.
    http://indianawea.org/datasets/resourcesXML.asp
    That is my XML. I have added IDs to the keywordBreakout and gradeLevelBreakout
    Looking at this code by Adobe, my XML seems to be in form now with theirs.
    http://labs.adobe.com/technologies/spry/data/donuts.xml
    In that example they are using there filter to search all toppings if I see that correct, and they have multiple topping nodes with ids. I am trying the same thing. Even with the ID's I am not getting accurate filters.
    I have a data field in the database that contains the gradeLevels. It is called gradeLevels in the XML. I thought I would need to parse that out and put them in their own nodes, each grade level at a time, so that the filter can accurate find one when checked. Same for keywords. I could leave them in there comma demlinited list and do a contains instead of an = search with the SPRY filter but I feel that wouldnt be as accurate in case there are keywords that are close in names. I guess I am stumped as to what my next move might be. I'd love some more help gramps!
    Jon
    NOTE: Even trying this to the gradeLevel node not broken out yields poor results
    function ffK3(ds, row, index){ return (row.gradeLevel.match("K-3")) ? row : null; }. It is like it is ignoring certain nodes. The Water Source Book's gradeLevels don't come up in any filter.

  • "Save for Web" dialog window not working properly

    Hello,
    I've been dealing with a bug since Illustrator CC that is very frustrating when I try to output my slices through Save For Web. When trying to click on the slices I've defined in order to name them—the click—does not happen where my mouse pointer is. The click registers somewhere else in the artboard.
    Click screen shot for animated gif:

    As Zeno said, all down to the slice selection. Save for Web will recognize the last active slice for the main document and when that is the case, only that slice is active by default for saving. So either override in the dialog or un-select all slices before saving.
    Mylenium

  • Adobe Photoshop Elements 12: dropdown boxes for tools not working properly in Win 8.1

    Elements 12 system requirements are indicated up to Windows 8.  Does that mean it should also work on any Windows 8 upgrades, more specifically 8.1?  The drop-down boxes for the tools are not working properly in the program.  I've installed it, uninstalled it, and installed it again with the same results.  It worked fine on my old computer with Vista.

    Yes PSE12 will work on 8.1
    If problems persist try re-setting the prefs.
    Go to: Edit >> Preferences >> General (Photoshop Elements menu on Mac)
    Click the button Reset Preferences on next Launch

  • New Release QuickVPN client 1.4.0.5 for windows 7 does not work????

    New release of QuickVPN client version  1.4.0.5  for windows 7 is not working properly.
    We can not connect; instead we receive this message:
    "Remote Gateway is not responding, do you want to wait?"
    Dear Cisco,,,,
    Your release is not complete; please correct issue and advise after it has been tested.
    Rgds, EM

    Hi, first disable this POLSTORE.DLL again in your QuickVPN-Folder. Then start in this folder IPSEC.MSC and than IPSEC.EXE. You should get from IPSEC.EXE  the error above. If not, than any other problem you have. Follow all the hints here in this thread.
    If you get the same error above, than enable this POLSTORE.DLL again and start the IPSEC.EXE. You get the full info what has been gone. And within the IPSEC-Window for Local Computer you may find this FREESWAN-setting.
    B.t.w. before I went this way I did export and import the IPSEC-settings from the XP-machine, as it was hinted some posts earlyer. But the way I have gone, works also with manualy deleting the FREESWAN config. With the IPSEC.EXE it will new generated in any case.
    When you start via QuickVPN you may monitor also what happens within this IPSEC for Local Computer. Press F5 to keep it aktual.
    From time to time the connection gets only succeeded after the second and more times. I have a very slow UMTS Internet-Access.
    Juergen
    Adding: These effects, getting not connected, first and during the VPN-Tunnel exists, has not changed since the top-first Version of Quick-VPN.
    Dear customer, be patient, don't care about these stupid messages, click again or when the connection allready has succeeded through the VPN-tunnel do what you did like to do.
    ...... and again, with which configuration-scenario do the guys at Cisco test and develop .....
    Fortunately, I never was a Cisco partner, only a poor user ;)

  • HT2693 haw do i get a refund for an app that do not work properly (t3 magazine no sound when play the articals)

    haw do i get a refund for an app that do not work properly.
    i tryed all the troublesooting and still not working properly 
    the app is T3 magazine ther is no sound when playing the articles on the player
    thenks

    FOR ASSISTANCE WITH ORDERS - iTUNES STORE CUSTOMER SERVICE
    For assistance with billing questions or other order inquiries, please refer to our online support page by clicking here: http://www.apple.com/support/itunes/store/. If you cannot find the answers you are seeking in our robust knowledge base, you can contact us by visiting the following URL http://www.apple.com/support/itunes/store/, clicking on the appropriate Customer Service topic, then using the contact button or email form at the bottom of the page. Responses to emails will be provided as soon as possible.
    Phone: 800-275-2273 How to reach a live person: Press 0 four times
    Hours of Operation: Mon-Fri: 9am-5pm ET
    Email: [email protected]
    How to report an issue with Your iTunes Store purchase
    http://support.apple.com/kb/HT1933
    iTunes Purchase Problems: How to Report a Problem to iTunes Support
    http://tinyurl.com/7tscpa7
    How to Get a Refund from the App Store
    http://gizmodo.com/5886683/how-to-get-a-refund-from-the-app-store
    Getting Refunds for your iTunes Store Purchases
    http://www.labnol.org/software/itunes-app-store-refunds/13838/
    Canceling a Digital Subscription
    http://gadgetwise.blogs.nytimes.com/2011/10/14/qa-canceling-a-digital-subscripti on/
     Cheers, Tom

  • Windows reports that the "USB-IF xHCI USB Host Controller" device is not working properly.

    I have been receiving the following error and instructions to fix it for a long time now, prior to updating to Windows 8.1:
    A device is not working properly
    Windows reports that the "USB-IF xHCI USB Host Controller" device is not working properly.
     Recommended solution to the problemUse Windows Update to check whether new device drivers are available. Proceed as follows:
    Open Device Manager
    Search in the device manager for the device whose driver you would like to update and double-click on the device name. You may first have to enable the "Show hidden devices" entry in the "View" menu.
    Switch to the Driver tab, click Update driver and follow the instructions
    When I follow the instructions and try to update the driver, I am told "The best driver software for your device is already installed."
    How do I update the driver to stop receiving the error?  
    This question was solved.
    View Solution.

    I have solved the initial problem.    
    I found the solution on the Forum at http://h10025.www1.hp.com/ewfrf/wc/document?docname=c03926756&tmp_task=solveCategory&cc=us&dlc=en&la...

  • Export Button not working properly in custom OAF page.

    Hi,
    I have a custom page with a table region is there. There is an export button which exports the rows in an excel sheet.
    But it is not working properly, as all the rows are not getting extracted.
    Properties set for the export button::
    Export all rows :: False
    Any sugestion is highly appreciated.
    Regards,
    Arindam.

    Hi Arindam,
    Refer below links.
    Mukul's Oracle Technology Blog: Implementing Export Button Functionality Programatically
    http://dilipoaf.blogspot.in/2013/02/export-selected-rows-data-functionality.html
    Thanks,
    Dilip

  • HT2693 How do you contact Apple by email to report one of their pre-installed iPad Apps (ie Calender) is not working properly?

    How do you contact Apple by email to report one of their pre-installed iPad Apps (ie Calender) is not working properly?
    On trying to open month of March 2013 the pre-installed calendar just shuts down and closes.  Have tried restarting iPad but this didn't help and because its a pre-installed App am unable to re-install it.   Is this a universal problem or just affecting me?  Tried searching for support in both App Store and on Apple site and can't see how to report this.

    Feedback
    http://www.apple.com/feedback

Maybe you are looking for

  • Messages app - how to disable on another computer

    I logged in temporarily on another computer, not related to my home office. When I log into my Mac from home, I get a message that "computer xyz" (computer where I was working over the last week) was associated to my Messages account. Is there any wa

  • RFC lookup Vs Database lookup

    Dear experts, When it comes to PI mappings which one is resource or time intensive between RFC lookup Vs Database lookup where the table is hosted in PI itself.  I really looking for this comparision in PI 7.1.  If anybody looked to compare the pros

  • I need help to solve the following problem

    EMPLOYEES with coulmns employee_id number, first_name varchar2(50), last_name varchar2(50), salary number, deptno number, manager number, date_of_join date, date_of_birth date. DEPARTMENT with columns deptno number, dept_name varchar2(100),location v

  • Internal sound card suddenly not recognized (laptop and desktop)

    Both systems run Arch. A week or so ago, my laptop decided to forget that it had an internal sound card... the bluetooth headset and usb sound card still seem to work just fine... but the built in card has disappeared from the system completely.  Thi

  • Captivate 4 Slidelet Issue

    I am creating a Captivate 4 training presentation and I use rollover slidelets on the main menu. There are four classes and each one is represented by an image that is 60% transparent. The 4 hotspots for the 4 rollovers are placed above these four im