Targetting an instance of a mc

hello
With AS2 I u sed to do  createEmptyMovieClip("name"+i, ..... ) to create multiple instances of an mc. I ocuuld then target these individual instances
I am trying to do a similar thing in AS3 but am stuck.
I can create movieclips (easy!) thus;
var linkHolder:MovieClip = new MovieClip();
var linkText:TextField = new TextField();
and then add a reference thus:
linkHolder.ref=i
I can then get the "i" value when I roll over the link with a listener
However, I want to target back to the link when I roll over it so I can change its formatting. How do I get at the moveclip/textfield that I just rolled over?
I have tried various versions of:
function overHandler(event:MouseEvent):void {
  all sorts of things go here so I can target the link I just rolled over - but none work!;
Would really appreciate any pointers
Thanks
Edward

Thanks for reply - am getting closer but still not there.
I can trace (event.currentTarge) and it says object MovieClip and I can manipulate that clip. Now I want to get at the text that is inside the movieclip. I thought that would be...
event.currentTarget.textHolder.defaultTextFormat=mTitle_fmt;
but it generates the error shown below - any more ideas please?
E
function createVideoLinks():void{
for (var i:int=0; i<externalXML.videoClip.length();i++){
//build the arrays of link text and link destination
trace (108+i*20);
vidText=externalXML.videoClip.vTitle;
vidLink=externalXML.videoClip.@vurl;
var linkHolder:MovieClip = new MovieClip();
var linkText:TextField = new TextField();
linkText.defaultTextFormat=lInact_fmt;
linkText.embedFonts=true;
linkText.antiAliasType=AntiAliasType.ADVANCED;
linkText.text=vidText+;
linkText.height=19; linkText.autoSize=TextFieldAutoSize.LEFT;
linkHolder.addChild(linkText);
addChild(linkHolder);
linkHolder.x=1; linkHolder.y=(108+i*21);
linkHolder.buttonMode=true; //appears to give me back the correct cursor for links
linkHolder.ref=i;
//linkHolder.id=i;
linkHolder.mouseChildren = false;
linkHolder.addEventListener(MouseEvent.CLICK, clickHandler);
linkHolder.addEventListener(MouseEvent.MOUSE_OVER, overHandler);
function overHandler(event:MouseEvent):void {
event.currentTarget.textHolder.defaultTextFormat=mTitle_fmt;
I get this error code
TypeError: Error #1010: A term is undefined and has no properties.
at index001_fla::MainTimeline/overHandler()

Similar Messages

  • Targeting dynamic instance

    Hello, just a quick levels issue (maybe) or me being out of
    me depth as usual - quick summary, Im creating several movieclips
    on the fly and adding external images to them. These mcs then
    become moveable and I want the user to drag them into a preference
    dropbox "Good","Not Sure" etc.. which are other movieclips -
    because the user can drag several mcs into any one dropbox I'll
    need a routine to scale and position the selected mcs - because of
    this my approach thus far has been to remove the mcs from the main
    timeline and add them to the dropbox with the same name and image
    etc. and give that dropbox a function to scale and postion (have'nt
    thought of that one yet...) I am adding and removing the mc with
    this function
    function isindropbox(mc:MovieClip){ //mc is the name of the
    mc to add
    for(var z in dropboxArry) {
    if ((eval(dropboxArry[z])).hitTest(_xmouse, _ymouse, false))
    { //checks if mouse is released in dropbox
    var pic_mcchosen:MovieClipLoader = new MovieClipLoader();
    pic_mcchosen.loadClip("images/"+mc._name+".jpg",
    (eval(dropboxArry[z])).createEmptyMovieClip(mc._name+"A",
    this.getNextHighestDepth()));
    deleteThis = eval(mc._name);
    removeMovieClip(_root.deleteThis);
    all this works fine and I can see the mc in this scenario
    "MarsA" being generated in the selected dropbox, but I can't within
    the same function reference it i.e.
    trace(this.holder_ins1["MarsA"]._width); // or
    trace(_root.holder_ins1["MarsA"]._width);// returns 0
    yet if I have a button on the stage elsewhere calling this:
    tempbutt_mc.onPress = function () {
    trace(_root.holder_ins1["MarsA"]._width);
    } // returns the correct width
    does a dynamically created instance not get registered with a
    player until the function that made it finishes??
    Thanks in advance

    MikeLB,
    > I'm creating the mc on a mousedown/event/function and
    > then scaling the mc on a mousemove as follows
    > mouseListener.onMouseDown = function() {
    > var mc:MovieClip = _root.attachMovie("my etc...
    > isdrawing = true;
    > }
    Aha.
    > and then:-
    > mouseListener.onMouseMove = function() {
    > if (isDrawing) {
    > mc._xscale = etc
    Okay, this is a scope issue. In your onMouseDown event,
    you've assigned
    a function literal that declares a variable mc. That variable
    is scoped to
    the function only, as is the case any time you declare a
    variable inside a
    function. As soon as the function completes execution, the
    variable is
    gone. That's why the onMouseMove-assigned function isn't able
    to see it.
    Declare the variable outside the scope of either function
    first, then it
    will be available to both.
    var mc:MovieClip;
    var isDrawing:Boolean;
    mouseListener.onMouseDown = function() {
    mc = _root.attachMovie(//etc.);
    isDrawing = true;
    mouseListener.onMouseMove = function() {
    if (isDrawing) { // etc.
    David Stiller
    Adobe Community Expert
    Dev blog,
    http://www.quip.net/blog/
    "Luck is the residue of good design."

  • EM console error java.lang.exception no such target ?

    My database oracle 10g EM console getting error message java.lang.exception no such target.
    How to solve this error ?

    Hi,
    I have the same problem, and when looking for the sysman/log files I found the following erros reported:
    [oracle@dbserver log]$ tail emdb.nohup
    10/09/08 12:59:19 ## 1. newPage = /database/instance/sitemap/sitemap
    10/09/08 12:59:19 ## 2. newPage = /database/instance/sitemap/sitemap
    10/09/08 12:59:23 ## oracle.sysman.db.adm.inst.SitemapController: event="doLoad"
    10/09/08 12:59:23 ## 1. newPage = /database/instance/sitemap/health
    10/09/08 12:59:23 ## oracle.sysman.db.adm.inst.SitemapController: event="doLoad"
    10/09/08 12:59:23 ## 1. newPage = /database/instance/sitemap/health
    10/09/08 12:59:23 ## 2. newPage = /database/instance/sitemap/health
    10/09/08 12:59:28 ## oracle.sysman.db.adm.inst.SitemapController: event="doLoad"
    10/09/08 12:59:28 ## 1. newPage = /database/instance/sitemap/sitemap
    10/09/08 12:59:28 ## 2. newPage = /database/instance/sitemap/sitemap
    [oracle@dbserver log]$
    [oracle@dbserver log]$
    [oracle@dbserver log]$ tail emoms.log
    2010-09-08 12:51:31,094 [Orion Launcher] ERROR app.ContextInitializer contextInitialized.272 - Integration Class not found: oracle.tip.oem.central.instance.ProcessConnectInstanceIntg
    2010-09-08 12:51:31,097 [Orion Launcher] ERROR app.ContextInitializer contextInitialized.272 - Integration Class not found: oracle.webdb.admin.em.PortalIntegration
    2010-09-08 12:51:31,099 [Orion Launcher] ERROR app.ContextInitializer contextInitialized.272 - Integration Class not found: oracle.webdb.admin.em.SSOIntegration
    2010-09-08 12:51:31,101 [Orion Launcher] ERROR app.ContextInitializer contextInitialized.272 - Integration Class not found: oracle.reports.em.RepIntg
    2010-09-08 12:51:31,102 [Orion Launcher] ERROR app.ContextInitializer contextInitialized.272 - Integration Class not found: oracle.sysman.ocs.mntr.target.OcsEmailIntegration
    2010-09-08 12:51:31,135 [Orion Launcher] ERROR app.ContextInitializer contextInitialized.272 - Integration Class not found: oracle.sysman.ocs.mntr.target.OcsOidIntegration
    2010-09-08 12:51:31,137 [Orion Launcher] ERROR app.ContextInitializer contextInitialized.272 - Integration Class not found: oracle.sysman.ocs.mntr.target.OcsOvfIntegration
    2010-09-08 12:51:31,139 [Orion Launcher] ERROR app.ContextInitializer contextInitialized.272 - Integration Class not found: oracle.sysman.ocs.mntr.target.OcsWebconfIntegration
    2010-09-08 12:51:31,141 [Orion Launcher] ERROR app.ContextInitializer contextInitialized.272 - Integration Class not found: oracle.sysman.ocs.mntr.target.OcsWirelessIntg
    2010-09-08 12:51:31,143 [Orion Launcher] ERROR app.ContextInitializer contextInitialized.272 - Integration Class not found: oracle.sysman.ocs.mntr.target.OcsCalGrpIntegration
    [oracle@dbserver log]$
    [oracle@dbserver log]$
    [oracle@dbserver log]$ tail emoms.trc
    2010-09-08 12:51:31,094 [Orion Launcher] ERROR app.ContextInitializer contextInitialized.272 - Integration Class not found: oracle.tip.oem.central.instance.ProcessConnectInstanceIntg
    2010-09-08 12:51:31,097 [Orion Launcher] ERROR app.ContextInitializer contextInitialized.272 - Integration Class not found: oracle.webdb.admin.em.PortalIntegration
    2010-09-08 12:51:31,099 [Orion Launcher] ERROR app.ContextInitializer contextInitialized.272 - Integration Class not found: oracle.webdb.admin.em.SSOIntegration
    2010-09-08 12:51:31,101 [Orion Launcher] ERROR app.ContextInitializer contextInitialized.272 - Integration Class not found: oracle.reports.em.RepIntg
    2010-09-08 12:51:31,102 [Orion Launcher] ERROR app.ContextInitializer contextInitialized.272 - Integration Class not found: oracle.sysman.ocs.mntr.target.OcsEmailIntegration
    2010-09-08 12:51:31,135 [Orion Launcher] ERROR app.ContextInitializer contextInitialized.272 - Integration Class not found: oracle.sysman.ocs.mntr.target.OcsOidIntegration
    2010-09-08 12:51:31,137 [Orion Launcher] ERROR app.ContextInitializer contextInitialized.272 - Integration Class not found: oracle.sysman.ocs.mntr.target.OcsOvfIntegration
    2010-09-08 12:51:31,139 [Orion Launcher] ERROR app.ContextInitializer contextInitialized.272 - Integration Class not found: oracle.sysman.ocs.mntr.target.OcsWebconfIntegration
    2010-09-08 12:51:31,141 [Orion Launcher] ERROR app.ContextInitializer contextInitialized.272 - Integration Class not found: oracle.sysman.ocs.mntr.target.OcsWirelessIntg
    2010-09-08 12:51:31,143 [Orion Launcher] ERROR app.ContextInitializer contextInitialized.272 - Integration Class not found: oracle.sysman.ocs.mntr.target.OcsCalGrpIntegration
    [oracle@dbserver log]$
    [oracle@dbserver log]$
    [oracle@dbserver log]$
    [oracle@dbserver log]$ tail emagent.trc
    2010-09-08 12:49:32 Thread-47082384 ERROR pingManager: nmepm_pingReposURL: Error in request response. code = 400. text =
    2010-09-08 12:49:35 Thread-126417808 ERROR : (nmedmtm.c,626):Memory 0x0 encountered, expect struct_id=10502
    2010-09-08 12:49:35 Thread-126417808 ERROR emSDK.xml: ParseError: File=file:/oracle/product/102/db_1/SERVER_ORACLE_SID/sysman/emd/collection/oracle_database_ORACLE_SID.xml, Line=2, Msg=<CollectionItem> Target NAME=ORACLE_SID does not exist
    2010-09-08 12:49:35 Thread-126417808 WARN collector: putTgtColl aborted - null type or name
    2010-09-08 12:49:35 Thread-126417808 ERROR recvlets: Failed to remove target ORACLE_SID oracle_database (key BA9A34B2AFFFC3FA92AB311F36350213) from hashtable for recvlet tnmevr
    2010-09-08 12:49:35 Thread-126417808 ERROR recvlets: Failed to remove target ORACLE_SID oracle_database (key BA9A34B2AFFFC3FA92AB311F36350213) from hashtable for recvlet AQMetrics
    2010-09-08 12:49:35 Thread-126417808 WARN upload: Upload manager has no Failure script: disabled
    2010-09-08 12:49:35 Thread-40782736 ERROR upload: Error in uploadXMLFiles. Trying again in 123.00 seconds.
    2010-09-08 12:50:32 Thread-40782736 ERROR pingManager: nmepm_pingReposURL: Error in request response. code = 400. text =
    2010-09-08 12:51:02 Thread-40782736 ERROR pingManager: nmepm_pingReposURL: Error in request response. code = 400. text =
    [oracle@dbserver log]$
    [oracle@dbserver log]$
    [oracle@dbserver log]$
    [oracle@dbserver log]$ tail emagent.log
    2010-09-08 11:35:15 Thread-58100624 target {ORACLE_SID, oracle_database} is broken: cannot compute dynamic properties in time. (00155)
    2010-09-08 11:35:15 Thread-58100624 ParseError: File=file:/oracle/product/102/db_1/SERVER_ORACLE_SID/sysman/emd/collection/oracle_database_ORACLE_SID.xml, Line=2, Msg=<CollectionItem> Target NAME=ORACLE_SID does not exist (01006)
    2010-09-08 11:37:57 Thread-46816144 ParseError: File=file:/oracle/product/102/db_1/SERVER_ORACLE_SID/sysman/emd/collection/oracle_database_ORACLE_SID.xml, Line=2, Msg=<CollectionItem> Target NAME=ORACLE_SID does not exist (01006)
    2010-09-08 12:43:52 Thread-3336784 EMAgent normal shutdown (00703)
    2010-09-08 12:45:32 Thread-8911408 Starting Agent 10.1.0.6.0 from /oracle/product/102/db_1 (00701)
    2010-09-08 12:47:02 Thread-8911408 target {ORACLE_SID, oracle_database} is broken: cannot compute dynamic properties in time. (00155)
    2010-09-08 12:47:02 Thread-8911408 ParseError: File=file:/oracle/product/102/db_1/SERVER_ORACLE_SID/sysman/emd/collection/oracle_database_ORACLE_SID.xml, Line=2, Msg=<CollectionItem> Target NAME=ORACLE_SID does not exist (01006)
    2010-09-08 12:47:02 Thread-8911408 fatal error parsing /oracle/product/102/db_1/SERVER_ORACLE_SID/sysman/emd/collection/oracle_database_ORACLE_SID.xml, will be ignored (00405)
    2010-09-08 12:47:02 Thread-8911408 EMAgent started successfully (00702)
    2010-09-08 12:49:35 Thread-126417808 ParseError: File=file:/oracle/product/102/db_1/SERVER_ORACLE_SID/sysman/emd/collection/oracle_database_ORACLE_SID.xml, Line=2, Msg=<CollectionItem> Target NAME=ORACLE_SID does not exist (01006)
    And when looking for this error on ML : "target {ORACLE_SID, oracle_database} is broken: cannot compute dynamic properties in time. (00155)"
    I found this document: "Target {database instance, oracle_database} is broken: cannot compute dynamic properties in time [ID 739993.1]"
    Which said:
    1. Stop the dbconsole
    ./emctl stop dbconsole
    2. Have a back up of the emd.properties file which is in <ORACLE_HOME>/Hostname_SID/sysman/config
    Increase the value of
    dynamicPropsComputeTimeout=60
    to
    dynamicPropsComputeTimeout=120
    3. Start the dbconsole
    ./emctl start dbconsole
    I follow the instructions and the problem was solved.
    post results
    Regards

  • EM Error : java.lang.Exception: No Such Target

    Hi All
    I have 10 databses in the server and getting this error only for the one database " java.lang.Exception: No Such Target "
    When i stop dbconsole and start it again then the problem will solve but the within a day or two again the same message is appearing.
    What would be the best solution for this?

    Hi,
    I have the same problem, and when looking for the sysman/log files I found the following erros reported:
    [oracle@dbserver log]$ tail emdb.nohup
    10/09/08 12:59:19 ## 1. newPage = /database/instance/sitemap/sitemap
    10/09/08 12:59:19 ## 2. newPage = /database/instance/sitemap/sitemap
    10/09/08 12:59:23 ## oracle.sysman.db.adm.inst.SitemapController: event="doLoad"
    10/09/08 12:59:23 ## 1. newPage = /database/instance/sitemap/health
    10/09/08 12:59:23 ## oracle.sysman.db.adm.inst.SitemapController: event="doLoad"
    10/09/08 12:59:23 ## 1. newPage = /database/instance/sitemap/health
    10/09/08 12:59:23 ## 2. newPage = /database/instance/sitemap/health
    10/09/08 12:59:28 ## oracle.sysman.db.adm.inst.SitemapController: event="doLoad"
    10/09/08 12:59:28 ## 1. newPage = /database/instance/sitemap/sitemap
    10/09/08 12:59:28 ## 2. newPage = /database/instance/sitemap/sitemap
    [oracle@dbserver log]$
    [oracle@dbserver log]$
    [oracle@dbserver log]$ tail emoms.log
    2010-09-08 12:51:31,094 [Orion Launcher] ERROR app.ContextInitializer contextInitialized.272 - Integration Class not found: oracle.tip.oem.central.instance.ProcessConnectInstanceIntg
    2010-09-08 12:51:31,097 [Orion Launcher] ERROR app.ContextInitializer contextInitialized.272 - Integration Class not found: oracle.webdb.admin.em.PortalIntegration
    2010-09-08 12:51:31,099 [Orion Launcher] ERROR app.ContextInitializer contextInitialized.272 - Integration Class not found: oracle.webdb.admin.em.SSOIntegration
    2010-09-08 12:51:31,101 [Orion Launcher] ERROR app.ContextInitializer contextInitialized.272 - Integration Class not found: oracle.reports.em.RepIntg
    2010-09-08 12:51:31,102 [Orion Launcher] ERROR app.ContextInitializer contextInitialized.272 - Integration Class not found: oracle.sysman.ocs.mntr.target.OcsEmailIntegration
    2010-09-08 12:51:31,135 [Orion Launcher] ERROR app.ContextInitializer contextInitialized.272 - Integration Class not found: oracle.sysman.ocs.mntr.target.OcsOidIntegration
    2010-09-08 12:51:31,137 [Orion Launcher] ERROR app.ContextInitializer contextInitialized.272 - Integration Class not found: oracle.sysman.ocs.mntr.target.OcsOvfIntegration
    2010-09-08 12:51:31,139 [Orion Launcher] ERROR app.ContextInitializer contextInitialized.272 - Integration Class not found: oracle.sysman.ocs.mntr.target.OcsWebconfIntegration
    2010-09-08 12:51:31,141 [Orion Launcher] ERROR app.ContextInitializer contextInitialized.272 - Integration Class not found: oracle.sysman.ocs.mntr.target.OcsWirelessIntg
    2010-09-08 12:51:31,143 [Orion Launcher] ERROR app.ContextInitializer contextInitialized.272 - Integration Class not found: oracle.sysman.ocs.mntr.target.OcsCalGrpIntegration
    [oracle@dbserver log]$
    [oracle@dbserver log]$
    [oracle@dbserver log]$ tail emoms.trc
    2010-09-08 12:51:31,094 [Orion Launcher] ERROR app.ContextInitializer contextInitialized.272 - Integration Class not found: oracle.tip.oem.central.instance.ProcessConnectInstanceIntg
    2010-09-08 12:51:31,097 [Orion Launcher] ERROR app.ContextInitializer contextInitialized.272 - Integration Class not found: oracle.webdb.admin.em.PortalIntegration
    2010-09-08 12:51:31,099 [Orion Launcher] ERROR app.ContextInitializer contextInitialized.272 - Integration Class not found: oracle.webdb.admin.em.SSOIntegration
    2010-09-08 12:51:31,101 [Orion Launcher] ERROR app.ContextInitializer contextInitialized.272 - Integration Class not found: oracle.reports.em.RepIntg
    2010-09-08 12:51:31,102 [Orion Launcher] ERROR app.ContextInitializer contextInitialized.272 - Integration Class not found: oracle.sysman.ocs.mntr.target.OcsEmailIntegration
    2010-09-08 12:51:31,135 [Orion Launcher] ERROR app.ContextInitializer contextInitialized.272 - Integration Class not found: oracle.sysman.ocs.mntr.target.OcsOidIntegration
    2010-09-08 12:51:31,137 [Orion Launcher] ERROR app.ContextInitializer contextInitialized.272 - Integration Class not found: oracle.sysman.ocs.mntr.target.OcsOvfIntegration
    2010-09-08 12:51:31,139 [Orion Launcher] ERROR app.ContextInitializer contextInitialized.272 - Integration Class not found: oracle.sysman.ocs.mntr.target.OcsWebconfIntegration
    2010-09-08 12:51:31,141 [Orion Launcher] ERROR app.ContextInitializer contextInitialized.272 - Integration Class not found: oracle.sysman.ocs.mntr.target.OcsWirelessIntg
    2010-09-08 12:51:31,143 [Orion Launcher] ERROR app.ContextInitializer contextInitialized.272 - Integration Class not found: oracle.sysman.ocs.mntr.target.OcsCalGrpIntegration
    [oracle@dbserver log]$
    [oracle@dbserver log]$
    [oracle@dbserver log]$
    [oracle@dbserver log]$ tail emagent.trc
    2010-09-08 12:49:32 Thread-47082384 ERROR pingManager: nmepm_pingReposURL: Error in request response. code = 400. text =
    2010-09-08 12:49:35 Thread-126417808 ERROR : (nmedmtm.c,626):Memory 0x0 encountered, expect struct_id=10502
    2010-09-08 12:49:35 Thread-126417808 ERROR emSDK.xml: ParseError: File=file:/oracle/product/102/db_1/SERVER_ORACLE_SID/sysman/emd/collection/oracle_database_ORACLE_SID.xml, Line=2, Msg=<CollectionItem> Target NAME=ORACLE_SID does not exist
    2010-09-08 12:49:35 Thread-126417808 WARN collector: putTgtColl aborted - null type or name
    2010-09-08 12:49:35 Thread-126417808 ERROR recvlets: Failed to remove target ORACLE_SID oracle_database (key BA9A34B2AFFFC3FA92AB311F36350213) from hashtable for recvlet tnmevr
    2010-09-08 12:49:35 Thread-126417808 ERROR recvlets: Failed to remove target ORACLE_SID oracle_database (key BA9A34B2AFFFC3FA92AB311F36350213) from hashtable for recvlet AQMetrics
    2010-09-08 12:49:35 Thread-126417808 WARN upload: Upload manager has no Failure script: disabled
    2010-09-08 12:49:35 Thread-40782736 ERROR upload: Error in uploadXMLFiles. Trying again in 123.00 seconds.
    2010-09-08 12:50:32 Thread-40782736 ERROR pingManager: nmepm_pingReposURL: Error in request response. code = 400. text =
    2010-09-08 12:51:02 Thread-40782736 ERROR pingManager: nmepm_pingReposURL: Error in request response. code = 400. text =
    [oracle@dbserver log]$
    [oracle@dbserver log]$
    [oracle@dbserver log]$
    [oracle@dbserver log]$ tail emagent.log
    2010-09-08 11:35:15 Thread-58100624 target {ORACLE_SID, oracle_database} is broken: cannot compute dynamic properties in time. (00155)
    2010-09-08 11:35:15 Thread-58100624 ParseError: File=file:/oracle/product/102/db_1/SERVER_ORACLE_SID/sysman/emd/collection/oracle_database_ORACLE_SID.xml, Line=2, Msg=<CollectionItem> Target NAME=ORACLE_SID does not exist (01006)
    2010-09-08 11:37:57 Thread-46816144 ParseError: File=file:/oracle/product/102/db_1/SERVER_ORACLE_SID/sysman/emd/collection/oracle_database_ORACLE_SID.xml, Line=2, Msg=<CollectionItem> Target NAME=ORACLE_SID does not exist (01006)
    2010-09-08 12:43:52 Thread-3336784 EMAgent normal shutdown (00703)
    2010-09-08 12:45:32 Thread-8911408 Starting Agent 10.1.0.6.0 from /oracle/product/102/db_1 (00701)
    2010-09-08 12:47:02 Thread-8911408 target {ORACLE_SID, oracle_database} is broken: cannot compute dynamic properties in time. (00155)
    2010-09-08 12:47:02 Thread-8911408 ParseError: File=file:/oracle/product/102/db_1/SERVER_ORACLE_SID/sysman/emd/collection/oracle_database_ORACLE_SID.xml, Line=2, Msg=<CollectionItem> Target NAME=ORACLE_SID does not exist (01006)
    2010-09-08 12:47:02 Thread-8911408 fatal error parsing /oracle/product/102/db_1/SERVER_ORACLE_SID/sysman/emd/collection/oracle_database_ORACLE_SID.xml, will be ignored (00405)
    2010-09-08 12:47:02 Thread-8911408 EMAgent started successfully (00702)
    2010-09-08 12:49:35 Thread-126417808 ParseError: File=file:/oracle/product/102/db_1/SERVER_ORACLE_SID/sysman/emd/collection/oracle_database_ORACLE_SID.xml, Line=2, Msg=<CollectionItem> Target NAME=ORACLE_SID does not exist (01006)
    And when looking for this error on ML : "target {ORACLE_SID, oracle_database} is broken: cannot compute dynamic properties in time. (00155)"
    I found this document: "Target {database instance, oracle_database} is broken: cannot compute dynamic properties in time [ID 739993.1]"
    Which said:
    1. Stop the dbconsole
    ./emctl stop dbconsole
    2. Have a back up of the emd.properties file which is in <ORACLE_HOME>/Hostname_SID/sysman/config
    Increase the value of
    dynamicPropsComputeTimeout=60
    to
    dynamicPropsComputeTimeout=120
    3. Start the dbconsole
    ./emctl start dbconsole
    I follow the instructions and the problem was solved.
    post results
    Regards

  • Single source Multiple Target Messages

    Hi All,
    I have one Source DataType and 3 TargetDataTypes
    I did Mappping and IterfaceMapping successfully while Iam going to Activate the Objects, the follwoing error is showing. Help me to this run successfully,
    Error is
    Activation of the change list canceled Check result for Interface Mapping Micro_IM | http://MicrosoftDifferentMapping.com:  A multi-mapping with multiple source or target interface instances is only recommended with asynchronous interfaces, since only a mapping of this type can be used in the process editor. Message Interface Micro_OB_MI | http://MicrosoftDifferentMapping.com are not asynchronous abstract interfaces  A multi-mapping with multiple source or target interface instances is only recommended with asynchronous interfaces, since only a mapping of this type can be used in the process editor. Message Interface Micro_IB1_MI | http://MicrosoftDifferentMapping.com, Message Interface Micro_IB2_MI | http://MicrosoftDifferentMapping.com, Message Interface Micro_IB3_MI | http://MicrosoftDi
    Thanks & Regards,
    Ashok.

    Hi,
    What is the SP that you are using. If it is XI 3.0 and SP less than 14 then it is not possible. You need to use Abstract interface.
    And why do you need Multimapping in the first place. You can do a simple mapping and in the receiver determination you can add more Business Server/System. Each Service/System you will have seprate IB interface and a separate Interface mapping.
    Hope this solves your problem.
    Thanks,
    Prakash

  • Cp6 + AS3 swf : "target == stage" not working

    Hello,
    I've done a SWF where I want to reset stage when clicking outside objects.
    The SWF alone works perfectly but does not inside Captivate.
    I did a simplified version :
    mc.visible = false;
    stage.addEventListener(MouseEvent.CLICK, clickOutside, false, 0, true);
    function clickOutside(e:MouseEvent):void
              if (e.target == stage)
                        mc.visible = true;
    The line :   if (e.target == stage)
    does not work anymore.
    Does importing SWF in Cp adds another level (stage is Cp scene, the SWF parent) ?
    Thanks.

    The captivate slide is the object capturing the event. Why don't you use an invisible button or transparent movieclip to capture the event? Then check if e.target.name == instance name.

  • HR Execution plan failing because target table needs to be extended?

    I'm going a fresh install of OBIEE 10.1.3.4.1 with Dac Build AN 10.1.3.4.1.20090415.0146. This is first one so is it common to have this issue or is something else going on that I just can't see? Should I just enable auto extend on this one table or could there be corruption causing this error?
    Thanks
    In DAC I can validate Informatic and physical servers all connect and are OK and iunder execute, I've ran analyze repository tables and it reporting OK, ran create repository report and no errors or mission objects reports. When I run Execution plan for Human Resources - Oracle R1211 - Flexfield, it failed 5 of the 6 phases wherne 3 are stopped (never ran) and two failed (SDE_ORA_Flx_EBSSegDataTmpLoad, SDE_ORA_Flx_EBSValidationTableDataTmpLoad).
    When I review the logs on the unix server under the /u02/BIAPPS_SUITE/INFR/server/infa_shared/SessLogs/ORA_R1211.DATAWAREHOUSE.SDE_ORAR1211_Adaptor.SDE_ORA_Flx_EBSSegDataTmpLoad.log, I see that it is failing because it has a problem with the target table W_ORA_FLX_EBS_SEG_DATA_TMP
    READER_1_1_1> RR_4049 SQL Query issued to database : (Fri May 28 23:04:22 2010)
    READER_1_1_1> RR_4050 First row returned from database to reader : (Fri May 28 23:04:22 2010)
    WRITER_1_*_1> WRT_8167 Start loading table [W_ORA_FLX_EBS_SEG_DATA_TMP] at: Fri May 28 23:04:21 2010
    WRITER_1_*_1> CMN_1761 Timestamp Event: [Fri May 28 23:04:22 2010]
    WRITER_1_*_1> WRT_8229 Database errors occurred:
    **************ORA-01652: unable to extend temp segment by 128 in tablespace BIA_DW_TBS*
    When I review the ORA_R1211.DATAWAREHOUSE.SDE_ORAR1211_Adaptor.SDE_ORA_Flx_EBSValidationTableDataTmpLoad.log i found the following errors:
    INSERT INTO
    W_ORA_FLX_EBS_VALID_TAB_TMP(FLEX_VALUE_SET_ID,APPLICATION_TABLE_NAME,VALUE_COLUMN_NAME,ID_COLUMN_NAME,VALUE_SET_WHERE_CLAUSE, DATASOURCE_NUM_ID,VALUE_SET_SQL) VALUES ( ?, ?, ?, ?, ?, ?, ?) WRITER_1_*_1> WRT_8020
    ************ No column marked as primary key for table[W_ORA_FLX_EBS_VALID_TAB_TMP]. UPDATEs Not Supported.
    WRITER_1_*_1> WRT_8270 Target connection group #1 consists of target(s) [W_ORA_FLX_EBS_VALID_TAB_TMP]
    WRITER_1_*_1> WRT_8003 Writer initialization complete.
    READER_1_1_1> BLKR_16007 Reader run started.
    WRITER_1_*_1> WRT_8005 Writer run started.
    WRITER_1_*_1> WRT_8158 And then again the can't extend error WRT_8036 Target: W_ORA_FLX_EBS_VALID_TAB_TMP (Instance Name: [W_ORA_FLX_EBS_VALID_TAB_TMP])
    WRT_8038 Inserted rows - Requested: 10080 Applied: 10080 Rejected: 0 Affected: 10080
    READER_1_1_1> BLKR_16019 Read [13892] rows, read [0] error rows for source table [FND_FLEX_VALIDATION_TABLES]
    instance name [FND_FLEX_VALIDATION_TABLES]
    READER_1_1_1> BLKR_16008 Reader run completed.
    WRITER_1_*_1> CMN_1761 Timestamp Event: [Fri May 28 23:04:21 2010]
    WRITER_1_*_1> WRT_8229 Database errors occurred:
    ***** ORA-01652: unable to extend temp segment by 128 in tablespace BIA_DW_TBS

    Worked with DBA and though source tables were not huge, we extended manually and proccess completed once we re-ran.
    Thanks all.

  • DBACOCKPIT DB administration of NW AS Java instances

    Hi all,
    I am trying to configure my DBACOCKPIT which is running on the Solution Manager, to administer 2 SAP NW AS JAVA systems running in my Landscape.
    So far I have managed to  establish the DB connection which are tested successfully.
    However when I for example try to run a DB13 through the COCKPIT for the 2 Java DBs  I get the error:
    SXPG_COMMAND_EXECUTE failed for BRCONNECT - Reason: program_start_error: For More Information, See SYS
    I then check in SM59 the automatically created RFCs for the 2 systems. Of course they are failing and to my understanding this is happening because no SAP gateway is running on a NW Java Stack. The entries in the RFCs are empty and even if I try to give the hostname of the target system (I leave gateway service empty) the error is referring to the local location of Gateway, the maching hosting the solution manager.
    As far as I can consider, I need to install SAP Gateway instances on the target Java Instances. Is this correct?
    Is there any other alternative to achieve the functionality of the RFCs?
    Kind Regards,
    Loukas

    Thanks a lot Juan for the reply. So I guess it is rather obvious that I should install the standalone SAP gateway.
    Kind Regards,
    Loukas

  • Monitoring Targets That Were Monitored by the Central Agent

    I had to reinstall the central agent (oms agent) and i would like migrate all targets of the old agent to the new one as described in the documentation:
    http://docs.oracle.com/cd/E24628_01/upgrade.121/e22625/upgrading_10205_111_PS1_agents.htm
    Whereas the documentation link refers to 12.1 migration the page is about the 111 ps1 agents and the process described to achieve the migration does not correspond to the new 12.1 interface.
    So I would like to know how to relocate the oms targets to the new central agent as descibed in the approach 1 fo the documentation. I attempted to follow the approach number 2 as well but the discovery mechanism does not allow to discover all targets as the services types targets for instance.
    thanks in advance for your help.

    Can you post a link?
    Did you try to bypass or clear the cache?
    Firefox > Preferences > Advanced > Network > Offline Storage (Cache): "Clear Now"
    You can reload the page and bypass the cache with:
    * Press and hold Shift and left-click the Reload button.
    * Press Ctrl + F5 or press Shift + Ctrl + R (Windows,Linux)
    * Press Shift + Cmd + R (MAC)
    See [[Keyboard shortcuts]] and [[Mouse shortcuts]]

  • Centralized ASCP Instance

    Gurus,
    We have a 11.5.10 CU2 (9208-RAC/PCP) instance running SCM_PF.J
    Management is planning to implement APS/Demand Planning. I have worked in distributed environments where we have a source ERP instance and a target ASCP instance and do a data pull via DB link and run collection/memory based planner programs.
    However, management wants to consider the idea of running both in a single environment/instance since its theoretically possible.
    -- Can someone share your views on the gotchas of this setup?
    -- I am aware that the planner programs are resource intensive. Is there a benchmark of the hardware capacity needed for this setup?
    -- Is Express server extinct now or do we still need it ?
    -- What are the extra patches that we need for this implementation.Any general docs/papers concentrating on the architecture ?
    -- Any special considerations for RAC ?
    Regards,
    Arun

    Since you have PCP, you have everything you need for RAC'd ASCP. Just create a Standard Manager 1 and Standard Manager 2, and use include/exclude to force the ASCP processes onto one node:
    RAC Configuration Setup For Running MRP Planning, APS Planning, and Data Collection Processes
    http://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=279156.1
    Advanced Planning and Scheduling (APS) Implementation Notes & White Papers
    http://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=280052.1
    Express server has been obsoleted in 11.5.10. Oracle Demand Planning uses the OLAP engine in 9i or higher databases. Oracle will charge you additional licenses fees for database OLAP if you use Oracle Demand Planning, even though you already purchased Oracle Demand Planning licenses. You can however implement Oracle Demantra Demand Planning which does not use the OLAP engine. There was a one for one license swap from Oracle Demand Planning to Oracle Demantra Demand Planning, but I would check with your Account Representative to make sure.
    Demantra, OracleAS 10.1.3 and the E-Business Suite
    http://blogs.oracle.com/schan/2007/05/22#a1585
    Oracle Unveils Demantra 7.1.1
    http://www.oracle.com/corporate/press/2007_jun/demantra.7.html?rssid=rss_ocom_pr
    EBS-Demantra Integration Installation Overview and Diagram
    http://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=434991.1
    Oracle Demantra Installation for Release 7.1.1
    http://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=428495.1
    About Oracle Demantra Supply Chain Planning for Release 7.1.1
    http://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=416107.1
    Oracle Demantra V7.1 Demand Management Documentation Library
    http://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=421343.1
    A Centralized ASCP/DP instance is simpler in a non-RAC environment. I have a RAC customer that recently switched from Centralized RAC 11.5.10.2 to decentralized with the planning instance on HP-UX 64-bit and the source instance on 64-bit Linux. This enabled them to move away from PCP since they were on ATG.H RUP 4 and could use Queues in stead of Pipes for transaction manager communication via the Concurrent:TM Transport Type profile option:
    FAQ: PO Document Approval Manager / Real Application Cluster (RAC) Frequently Asked Questions
    http://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=419609.1

  • Setting username and passward  in Instance properties in OEM

    In OEM,
    While developing instance propery in Target definition instance , I can able to enter the password and hostname using below XML code but i don't know how to get that code in .pl file and verify it .Please help me someone to solve this issue.
    <InstanceProperties>
    <InstanceProperty NAME="Password" CREDENTIAL="FALSE" OPTIONAL="FALSE >
    <Display>
    <Label NLSID="Password">Password</Label>
    </Display>
    </InstanceProperty>
    <InstanceProperty NAME="Hostname" CREDENTIAL="FALSE" OPTIONAL="FALSE">
    <Display>
    <Label NLSID="Hostname">HOstname</Label>
    </Display>
    </InstanceProperty>
    </InstanceProperties>

    Hi,
    View the following URL
    [http://technology.amis.nl/blog/2851/using-database-table-for-authentication-in-adf-applications|AMIS.NL]

  • Error while deploying the SAR file to EM Console.... MDS-01330: Failed to l

    Hi Team,
    We configured the HUDSON Tool with BPEL Projects. When I am trying to deploy the BPEL Projects to the SOA SERVER. I am getting an error associated with MDS. We never used MDS for storing teh metaData But still we are getting an error.
    10:35:42 deploy:
    10:35:42 [input] skipping input as property serverURL has already been set.
    10:35:42 [input] skipping input as property sarLocation has already been set.
    10:35:42 [deployComposite] setting user / password ..., user = weblogic
    10:35:42 [deployComposite] Processing sar = D: \ Programs \ hudson \ jobs \ P6.1_XYZ \ workspace \ XYZ/deploy/sca_XYZ_rev1.17.jar
    10:35:42 [deployComposite] Adding sar file - D: \ Programs \ hudson \ jobs \ P6.1_XYZ \ workspace \ XYZ \ deploy \ sca_XYZ_rev1.17.jar
    10:35:42 [deployComposite] Creating HTTP connection to host: 10.246.161.147, port: 8020
    10:35:44 [deployComposite] Received HTTP response from the server, response code = 500
    10:35:44 [deployComposite] ----> response code = 500, error: Error during deployment: Error occured when creating target MDS instance.: Oracle.mds.config.MDSConfigurationException: MDS-01330: Failed to load the configuration document MDS
    10:35:44 [deployComposite] MDS-01329: Unable to load the element "persistence-config"
    10:35:44 [deployComposite] MDS-01370: The configuration for use MetadataStore store metadata \ "soa-infra-store \" is invalid.
    10:35:44 [deployComposite] MDS-00922: Unable to create snapshot of heading ConnetionManager "oracle.mds.internal.persistence.db.JNDIConnectionManagerImpl".
    10:35:44 [deployComposite] weblogic.common.resourcepool.ResourceDisabledException: Pool mds-soa is Suspended, cannot allocate resources to applications ..
    10:35:44 [deployComposite]: MDS-01330: Failed to load configuration document MDS
    10:35:44 [deployComposite] MDS-01329: Unable to load the element "persistence-config"
    10:35:44 [deployComposite] MDS-01370: The configuration for use MetadataStore store metadata \ "soa-infra-store \" is invalid.
    10:35:44 [deployComposite] MDS-00922: Unable to create snapshot of heading ConnetionManager "oracle.mds.internal.persistence.db.JNDIConnectionManagerImpl".
    10:35:44 [deployComposite] weblogic.common.resourcepool.ResourceDisabledException: Pool mds-soa is Suspended, cannot allocate resources to applications ..
    10:35:44 [deployComposite].
    10:35:44
    10:35:44 BUILD FAILED
    10:35:44 D: \ Programs \ hudson \ jobs \ P6.1_XYZ \ workspace \ XYZ \ build.xml: 44: The following error occurred while executing this line:
    10:35:44 D: \ Oracle \ 11gR1ps1 \ jdeveloper \ bin \ ant-sca-deploy.xml: 132: Error during deployment: Error occured when creating target MDS instance.: Oracle.mds.config.MDSConfigurationException: MDS-01330 : Failed to load configuration document MDS
    10:35:44 MDS-01329: Unable to load the element "persistence-config"
    10:35:44 MDS-01370: The configuration for use MetadataStore store metadata \ "soa-infra-store \" is invalid.
    10:35:44 MDS-00922: Unable to create snapshot of heading ConnetionManager "oracle.mds.internal.persistence.db.JNDIConnectionManagerImpl".
    10:35:44 weblogic.common.resourcepool.ResourceDisabledException: Pool mds-soa is Suspended, cannot allocate resources to applications ..
    10:35:44: MDS-01330: Failed to load configuration document MDS
    10:35:44 MDS-01329: Unable to load the element "persistence-config"
    10:35:44 MDS-01370: The configuration for use MetadataStore store metadata \ "soa-infra-store \" is invalid.
    10:35:44 MDS-00922: Unable to create snapshot of heading ConnetionManager "oracle.mds.internal.persistence.db.JNDIConnectionManagerImpl".
    10:35:44 weblogic.common.resourcepool.ResourceDisabledException: Pool mds-soa is Suspended, cannot allocate resources to applications ..
    This is not pertaining to a single Project and this was happening with all BPEL Process.
    Please help us since it was blocking us to either delete a SAR file from EM Console as well as Deploy the SAR file to the EM Console.
    Thanks,
    Venugopal Raja

    weblogic.common.resourcepool.ResourceDisabledException: Pool mds-soa is Suspended, cannot allocate resources to applications ..Check server logs to find out why mds-soa is suspended. Make sure that datasource mds-soa is up and running on SOA servrs before deploying an application.
    Regards,
    Anuj

  • Error While running the ETL Load in DAC (BI Financial Analytics)

    Hi All,
    I have Installed and Configured BI Applictions 7.9.5 and Informatic8.1.1. For the first time when we run the ETL Load in DAC it has failed.for us every Test Connection was sucess.and getting the error message as below.
    The log file which I pasted below is from the path
    /u01/app/oracle/product/Informatica/PowerCenter8.1.1/server/infa_shared
    /SessLogs
    SDE_ORAR12_Adaptor.SDE_ORA_GL_AP_LinkageInformation_Extract_Full.log
    DIRECTOR> VAR_27028 Use override value [DataWarehouse] for session parameter:[$DBConnection_OLAP].
    DIRECTOR> VAR_27028 Use override value [ORA_R12] for session parameter:[$DBConnection_OLTP].
    DIRECTOR> VAR_27028 Use override value [9] for mapping parameter:[$$DATASOURCE_NUM_ID].
    DIRECTOR> VAR_27028 Use override value ['Y'] for mapping parameter:[$$FILTER_BY_LEDGER_ID].
    DIRECTOR> VAR_27028 Use override value ['N'] for mapping parameter:[$$FILTER_BY_LEDGER_TYPE].
    DIRECTOR> VAR_27028 Use override value [04/02/2007] for mapping parameter:[$$INITIAL_EXTRACT_DATE].
    DIRECTOR> VAR_27028 Use override value [] for mapping parameter:[$$LAST_EXTRACT_DATE].
    DIRECTOR> VAR_27028 Use override value [1] for mapping parameter:[$$LEDGER_ID_LIST].
    DIRECTOR> VAR_27028 Use override value ['NONE'] for mapping parameter:[$$LEDGER_TYPE_LIST].
    DIRECTOR> TM_6014 Initializing session [SDE_ORA_GL_AP_LinkageInformation_Extract_Full] at [Thu Feb 12 12:49:33 2009]
    DIRECTOR> TM_6683 Repository Name: [DEV_Oracle_BI_DW_Rep]
    DIRECTOR> TM_6684 Server Name: [DEV_Oracle_BI_DW_Rep_Integration_Service]
    DIRECTOR> TM_6686 Folder: [SDE_ORAR12_Adaptor]
    DIRECTOR> TM_6685 Workflow: [SDE_ORA_GL_AP_LinkageInformation_Extract_Full]
    DIRECTOR> TM_6101 Mapping name: SDE_ORA_GL_AP_LinkageInformation_Extract [version 1]
    DIRECTOR> TM_6827 [u01/app/oracle/product/Informatica/PowerCenter8.1.1/server/infa_shared/Storage] will be used as storage directory for session [SDE_ORA_GL_AP_LinkageInformation_Extract_Full].
    DIRECTOR> CMN_1805 Recovery cache will be deleted when running in normal mode.
    DIRECTOR> CMN_1802 Session recovery cache initialization is complete.
    DIRECTOR> TM_6708 Using configuration property [SiebelUnicodeDB,apps@devr12 bawdev@devbi]
    DIRECTOR> TM_6703 Session [SDE_ORA_GL_AP_LinkageInformation_Extract_Full] is run by 64-bit Integration Service [node01_oratestbi], version [8.1.1 SP4], build [0817].
    MANAGER> PETL_24058 Running Partition Group [1].
    MANAGER> PETL_24000 Parallel Pipeline Engine initializing.
    MANAGER> PETL_24001 Parallel Pipeline Engine running.
    MANAGER> PETL_24003 Initializing session run.
    MAPPING> CMN_1569 Server Mode: [ASCII]
    MAPPING> CMN_1570 Server Code page: [ISO 8859-1 Western European]
    MAPPING> TM_6151 Session Sort Order: [Binary]
    MAPPING> TM_6156 Using LOW precision decimal arithmetic
    MAPPING> TM_6180 Deadlock retry logic will not be implemented.
    MAPPING> TM_6307 DTM Error Log Disabled.
    MAPPING> TE_7022 TShmWriter: Initialized
    MAPPING> TE_7004 Transformation Parse Warning; transformation continues...
    MAPPING> TE_7004 Transformation Parse Warning; transformation continues...
    MAPPING> TE_7004 Transformation Parse Warning; transformation continues...
    MAPPING> TE_7004 Transformation Parse Warning; transformation continues...
    MAPPING> TE_7004 Transformation Parse Warning; transformation continues...
    MAPPING> TE_7004 Transformation Parse Warning; transformation continues...
    MAPPING> TM_6007 DTM initialized successfully for session [SDE_ORA_GL_AP_LinkageInformation_Extract_Full]
    DIRECTOR> PETL_24033 All DTM Connection Info: [<NONE>].
    MANAGER> PETL_24004 Starting pre-session tasks. : (Thu Feb 12 12:49:34 2009)
    MANAGER> PETL_24027 Pre-session task completed successfully. : (Thu Feb 12 12:49:34 2009)
    DIRECTOR> PETL_24006 Starting data movement.
    MAPPING> TM_6660 Total Buffer Pool size is 12582912 bytes and Block size is 128000 bytes.
    READER_1_1_1> DBG_21438 Reader: Source is [devr12.tessco.com], user [apps]
    READER_1_1_1> BLKR_16003 Initialization completed successfully.
    WRITER_1_*_1> WRT_8146 Writer: Target is database [DEVBI], user [bawdev], bulk mode [ON]
    WRITER_1_*_1> WRT_8106 Warning! Bulk Mode session - recovery is not guaranteed.
    WRITER_1_*_1> WRT_8124 Target Table W_GL_LINKAGE_INFORMATION_GS :SQL INSERT statement:
    INSERT INTO W_GL_LINKAGE_INFORMATION_GS(SOURCE_DISTRIBUTION_ID,JOURNAL_LINE_INTEGRATION_ID,LEDGER_ID,LEDGER_TYPE,DISTRIBUTION_SOURCE,JE_BATCH_NAME,JE_HEADER_NAME,JE_LINE_NUM,POSTED_ON_DT,SLA_TRX_INTEGRATION_ID,DATASOURCE_NUM_ID) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
    WRITER_1_*_1> WRT_8270 Target connection group #1 consists of target(s) [W_GL_LINKAGE_INFORMATION_GS]
    WRITER_1_*_1> WRT_8003 Writer initialization complete.
    READER_1_1_1> BLKR_16007 Reader run started.
    WRITER_1_*_1> WRT_8005 Writer run started.
    WRITER_1_*_1> WRT_8158
    *****START LOAD SESSION*****
    Load Start Time: Thu Feb 12 12:49:34 2009
    Target tables:
    W_GL_LINKAGE_INFORMATION_GS
    READER_1_1_1> RR_4029 SQ Instance [SQ_XLA_AE_LINES] User specified SQL Query [SELECT
    DLINK.SOURCE_DISTRIBUTION_ID_NUM_1 DISTRIBUTION_ID,
    DLINK.SOURCE_DISTRIBUTION_TYPE SOURCE_TABLE,
    DLINK.ACCOUNTING_LINE_CODE LINE_CODE,
          AELINE.ACCOUNTING_CLASS_CODE,
    GLIMPREF.JE_HEADER_ID JE_HEADER_ID,
    GLIMPREF.JE_LINE_NUM JE_LINE_NUM,
    AELINE.AE_HEADER_ID AE_HEADER_ID,
    AELINE.AE_LINE_NUM AE_LINE_NUM,
    T.LEDGER_ID LEDGER_ID,
    T.LEDGER_CATEGORY_CODE LEDGER_TYPE,
        JBATCH.NAME BATCH_NAME,
       JHEADER.NAME HEADER_NAME,
          PER.END_DATE
    FROM XLA_DISTRIBUTION_LINKS DLINK
       , GL_IMPORT_REFERENCES        GLIMPREF
       , XLA_AE_LINES                              AELINE
       , GL_JE_HEADERS                         JHEADER
       , GL_JE_BATCHES                         JBATCH
       , GL_LEDGERS                                 T
       , GL_PERIODS   PER
    WHERE DLINK.SOURCE_DISTRIBUTION_TYPE IN
             (  'AP_INV_DIST', 'AP_PMT_DIST'
              , 'AP_PREPAY')
    AND DLINK.APPLICATION_ID = 200
    AND AELINE.APPLICATION_ID = 200
    AND AELINE.GL_SL_LINK_TABLE = GLIMPREF.GL_SL_LINK_TABLE
    AND AELINE.GL_SL_LINK_ID         = GLIMPREF.GL_SL_LINK_ID
    AND AELINE.AE_HEADER_ID         = DLINK.AE_HEADER_ID        
    AND AELINE.AE_LINE_NUM           = DLINK.AE_LINE_NUM
    AND GLIMPREF.JE_HEADER_ID   = JHEADER.JE_HEADER_ID
    AND JHEADER.JE_BATCH_ID       = JBATCH.JE_BATCH_ID
    AND JHEADER.LEDGER_ID                   = T.LEDGER_ID
    AND JHEADER.STATUS                         = 'P'
    AND T.PERIOD_SET_NAME = PER.PERIOD_SET_NAME
    AND JHEADER.PERIOD_NAME = PER.PERIOD_NAME
    AND JHEADER.CREATION_DATE >=
              TO_DATE('04/02/2007 00:00:00'
                    , 'MM/DD/YYYY HH24:MI:SS' )
    AND DECODE('Y', 'Y', T.LEDGER_ID, 1) IN (1)
    AND DECODE('N', 'Y', T.LEDGER_CATEGORY_CODE, 'NONE') IN ('NONE')]
    READER_1_1_1> RR_4049 SQL Query issued to database : (Thu Feb 12 12:49:34 2009)
    READER_1_1_1> CMN_1761 Timestamp Event: [Thu Feb 12 12:49:34 2009]
    READER_1_1_1> RR_4035 SQL Error [
    ORA-01114: IO error writing block to file 513 (block # 328465)
    ORA-27072: File I/O error
    Linux-x86_64 Error: 28: No space left on device
    Additional information: 4
    Additional information: 328465
    Additional information: -1
    ORA-01114: IO error writing block to file 513 (block # 328465)
    ORA-27072: File I/O error
    Linux-x86_64 Error: 28: No space left on device
    Additional information: 4
    Additional information: 328465
    Additional information: -1
    Database driver error...
    Function Name : Execute
    SQL Stmt : SELECT
    DLINK.SOURCE_DISTRIBUTION_ID_NUM_1 DISTRIBUTION_ID,
    DLINK.SOURCE_DISTRIBUTION_TYPE SOURCE_TABLE,
    DLINK.ACCOUNTING_LINE_CODE LINE_CODE,
    AELINE.ACCOUNTING_CLASS_CODE,
    GLIMPREF.JE_HEADER_ID JE_HEADER_ID,
    GLIMPREF.JE_LINE_NUM JE_LINE_NUM,
    AELINE.AE_HEADER_ID AE_HEADER_ID,
    AELINE.AE_LINE_NUM AE_LINE_NUM,
    T.LEDGER_ID LEDGER_ID,
    T.LEDGER_CATEGORY_CODE LEDGER_TYPE,
    JBATCH.NAME BATCH_NAME,
    JHEADER.NAME HEADER_NAME,
    PER.END_DATE
    FROM XLA_DISTRIBUTION_LINKS DLINK
    , GL_IMPORT_REFERENCES GLIMPREF
    , XLA_AE_LINES AELINE
    , GL_JE_HEADERS JHEADER
    , GL_JE_BATCHES JBATCH
    , GL_LEDGERS T
    , GL_PERIODS PER
    WHERE DLINK.SOURCE_DISTRIBUTION_TYPE IN
    ( 'AP_INV_DIST', 'AP_PMT_DIST'
    , 'AP_PREPAY')
    AND DLINK.APPLICATION_ID = 200
    AND AELINE.APPLICATION_ID = 200
    AND AELINE.GL_SL_LINK_TABLE = GLIMPREF.GL_SL_LINK_TABLE
    AND AELINE.GL_SL_LINK_ID = GLIMPREF.GL_SL_LINK_ID
    AND AELINE.AE_HEADER_ID = DLINK.AE_HEADER_ID
    AND AELINE.AE_LINE_NUM = DLINK.AE_LINE_NUM
    AND GLIMPREF.JE_HEADER_ID = JHEADER.JE_HEADER_ID
    AND JHEADER.JE_BATCH_ID = JBATCH.JE_BATCH_ID
    AND JHEADER.LEDGER_ID = T.LEDGER_ID
    AND JHEADER.STATUS = 'P'
    AND T.PERIOD_SET_NAME = PER.PERIOD_SET_NAME
    AND JHEADER.PERIOD_NAME = PER.PERIOD_NAME
    AND JHEADER.CREATION_DATE >=
    TO_DATE('04/02/2007 00:00:00'
    , 'MM/DD/YYYY HH24:MI:SS' )
    AND DECODE('Y', 'Y', T.LEDGER_ID, 1) IN (1)
    AND DECODE('N', 'Y', T.LEDGER_CATEGORY_CODE, 'NONE') IN ('NONE')
    Oracle Fatal Error
    Database driver error...
    Function Name : Execute
    SQL Stmt : SELECT
    DLINK.SOURCE_DISTRIBUTION_ID_NUM_1 DISTRIBUTION_ID,
    DLINK.SOURCE_DISTRIBUTION_TYPE SOURCE_TABLE,
    DLINK.ACCOUNTING_LINE_CODE LINE_CODE,
    AELINE.ACCOUNTING_CLASS_CODE,
    GLIMPREF.JE_HEADER_ID JE_HEADER_ID,
    GLIMPREF.JE_LINE_NUM JE_LINE_NUM,
    AELINE.AE_HEADER_ID AE_HEADER_ID,
    AELINE.AE_LINE_NUM AE_LINE_NUM,
    T.LEDGER_ID LEDGER_ID,
    T.LEDGER_CATEGORY_CODE LEDGER_TYPE,
    JBATCH.NAME BATCH_NAME,
    JHEADER.NAME HEADER_NAME,
    PER.END_DATE
    FROM XLA_DISTRIBUTION_LINKS DLINK
    , GL_IMPORT_REFERENCES GLIMPREF
    , XLA_AE_LINES AELINE
    , GL_JE_HEADERS JHEADER
    , GL_JE_BATCHES JBATCH
    , GL_LEDGERS T
    , GL_PERIODS PER
    WHERE DLINK.SOURCE_DISTRIBUTION_TYPE IN
    ( 'AP_INV_DIST', 'AP_PMT_DIST'
    , 'AP_PREPAY')
    AND DLINK.APPLICATION_ID = 200
    AND AELINE.APPLICATION_ID = 200
    AND AELINE.GL_SL_LINK_TABLE = GLIMPREF.GL_SL_LINK_TABLE
    AND AELINE.GL_SL_LINK_ID = GLIMPREF.GL_SL_LINK_ID
    AND AELINE.AE_HEADER_ID = DLINK.AE_HEADER_ID
    AND AELINE.AE_LINE_NUM = DLINK.AE_LINE_NUM
    AND GLIMPREF.JE_HEADER_ID = JHEADER.JE_HEADER_ID
    AND JHEADER.JE_BATCH_ID = JBATCH.JE_BATCH_ID
    AND JHEADER.LEDGER_ID = T.LEDGER_ID
    AND JHEADER.STATUS = 'P'
    AND T.PERIOD_SET_NAME = PER.PERIOD_SET_NAME
    AND JHEADER.PERIOD_NAME = PER.PERIOD_NAME
    AND JHEADER.CREATION_DATE >=
    TO_DATE('04/02/2007 00:00:00'
    , 'MM/DD/YYYY HH24:MI:SS' )
    AND DECODE('Y', 'Y', T.LEDGER_ID, 1) IN (1)
    AND DECODE('N', 'Y', T.LEDGER_CATEGORY_CODE, 'NONE') IN ('NONE')
    Oracle Fatal Error].
    READER_1_1_1> CMN_1761 Timestamp Event: [Thu Feb 12 12:49:34 2009]
    READER_1_1_1> BLKR_16004 ERROR: Prepare failed.
    WRITER_1_*_1> WRT_8333 Rolling back all the targets due to fatal session error.
    WRITER_1_*_1> WRT_8325 Final rollback executed for the target [W_GL_LINKAGE_INFORMATION_GS] at end of load
    WRITER_1_*_1> WRT_8035 Load complete time: Thu Feb 12 12:49:34 2009
    LOAD SUMMARY
    ============
    WRT_8036 Target: W_GL_LINKAGE_INFORMATION_GS (Instance Name: [W_GL_LINKAGE_INFORMATION_GS])
    WRT_8044 No data loaded for this target
    WRITER_1__1> WRT_8043 ****END LOAD SESSION*****
    MANAGER> PETL_24031
    ***** RUN INFO FOR TGT LOAD ORDER GROUP [1], CONCURRENT SET [1] *****
    Thread [READER_1_1_1] created for [the read stage] of partition point [SQ_XLA_AE_LINES] has completed: Total Run Time = [0.673295] secs, Total Idle Time = [0.000000] secs, Busy Percentage = [100.000000].
    Thread [TRANSF_1_1_1] created for [the transformation stage] of partition point [SQ_XLA_AE_LINES] has completed. The total run time was insufficient for any meaningful statistics.
    Thread [WRITER_1_*_1] created for [the write stage] of partition point [W_GL_LINKAGE_INFORMATION_GS] has completed. The total run time was insufficient for any meaningful statistics.
    MANAGER> PETL_24005 Starting post-session tasks. : (Thu Feb 12 12:49:35 2009)
    MANAGER> PETL_24029 Post-session task completed successfully. : (Thu Feb 12 12:49:35 2009)
    MAPPING> TM_6018 Session [SDE_ORA_GL_AP_LinkageInformation_Extract_Full] run completed with [0] row transformation errors.
    MANAGER> PETL_24002 Parallel Pipeline Engine finished.
    DIRECTOR> PETL_24013 Session run completed with failure.
    DIRECTOR> TM_6022
    SESSION LOAD SUMMARY
    ================================================
    DIRECTOR> TM_6252 Source Load Summary.
    DIRECTOR> CMN_1740 Table: [SQ_XLA_AE_LINES] (Instance Name: [SQ_XLA_AE_LINES])
         Output Rows [0], Affected Rows [0], Applied Rows [0], Rejected Rows [0]
    DIRECTOR> TM_6253 Target Load Summary.
    DIRECTOR> CMN_1740 Table: [W_GL_LINKAGE_INFORMATION_GS] (Instance Name: [W_GL_LINKAGE_INFORMATION_GS])
         Output Rows [0], Affected Rows [0], Applied Rows [0], Rejected Rows [0]
    DIRECTOR> TM_6023
    ===================================================
    DIRECTOR> TM_6020 Session [SDE_ORA_GL_AP_LinkageInformation_Extract_Full] completed at [Thu Feb 12 12:49:36 2009]
    Thanks in Advance,
    Prashanth
    Edited by: user10719430 on Feb 11, 2009 7:33 AM
    Edited by: user10719430 on Feb 12, 2009 11:31 AM

    Need to increase temp tablespace.

  • Error in SDE_ORA_AbsenceEvent_Full workflow

    I am getting a task failure on the SDE_ORA_AbsenceEvent task when running the Human Resource - Oracle R1212 execution plan from DAC. I have copied and pasted the session log below. The error I see within it is an 'ORA-01846: not a valid day of the week' error. The offending SQL is within the session log below. I am running the Human Resources - Oracle R1212 execution plan out of the box in order to detect any failures before beginning any configuration work. The Informatica workflow that fails is in the SDE_ORAR1212_Adaptor folder and is named SDE_ORA_AbsenceEvent_Full. The workflow log shows error on the 3rd from last and the last lines of the log.
    Please help because I cannot find much about this in the blogosphere except for performance issues with this workflow because of a certain API call within the offending SQL.
    Thanks and the session log now follows:
    DIRECTOR> VAR_27028 Use override value [DataWarehouse] for session parameter:[$DBConnection_OLAP].
    DIRECTOR> VAR_27028 Use override value [ORA_R1212] for session parameter:[$DBConnection_OLTP].
    DIRECTOR> VAR_27028 Use override value [ORA_R1212.DATAWAREHOUSE.SDE_ORAR1212_Adaptor.SDE_ORA_AbsenceEvent_Full.log] for session parameter:[$PMSessionLogFile].
    DIRECTOR> VAR_27028 Use override value [27] for mapping parameter:[$$DATASOURCE_NUM_ID].
    DIRECTOR> VAR_27028 Use override value [TO_DATE('1980-01-01 00:00:00', 'YYYY-MM-D HH24:MI:SS')] for mapping parameter:[mplt_BC_ORA_AbsenceEvent.$$HR_ABSNC_EXTRACT_DATE].
    DIRECTOR> VAR_27028 Use override value [] for mapping parameter:[mplt_BC_ORA_AbsenceEvent.$$LAST_EXTRACT_DATE].
    DIRECTOR> VAR_27028 Use override value [DEFAULT] for mapping parameter:[$$TENANT_ID].
    DIRECTOR> TM_6014 Initializing session [SDE_ORA_AbsenceEvent_Full] at [Tue Nov 16 09:01:17 2010].
    DIRECTOR> TM_6683 Repository Name: [p2]
    DIRECTOR> TM_6684 Server Name: [ip2]
    DIRECTOR> TM_6686 Folder: [SDE_ORAR1212_Adaptor]
    DIRECTOR> TM_6685 Workflow: [SDE_ORA_AbsenceEvent_Full] Run Instance Name: [] Run Id: [979]
    DIRECTOR> TM_6101 Mapping name: SDE_ORA_AbsenceEvent [version 1].
    DIRECTOR> TM_6963 Pre 85 Timestamp Compatibility is Enabled
    DIRECTOR> TM_6964 Date format for the Session is [MM/DD/YYYY HH24:MI:SS]
    DIRECTOR> TM_6827 [mnt/disk07/informatica/server/infa_shared/Storage] will be used as storage directory for session [SDE_ORA_AbsenceEvent_Full].
    DIRECTOR> CMN_1802 Session recovery cache initialization is complete.
    DIRECTOR> TM_6703 Session [SDE_ORA_AbsenceEvent_Full] is run by 64-bit Integration Service [node01_tstrdobiap168], version [8.6.1 HotFix11], build [0504].
    MANAGER> PETL_24058 Running Partition Group [1].
    MANAGER> PETL_24000 Parallel Pipeline Engine initializing.
    MANAGER> PETL_24001 Parallel Pipeline Engine running.
    MANAGER> PETL_24003 Initializing session run.
    MAPPING> CMN_1569 Server Mode: [UNICODE]
    MAPPING> CMN_1570 Server Code page: [UTF-8 encoding of Unicode]
    MAPPING> TM_6151 The session sort order is [Binary].
    MAPPING> TM_6185 Warning. Code page validation is disabled in this session.
    MAPPING> TM_6156 Using low precision processing.
    MAPPING> TM_6180 Deadlock retry logic will not be implemented.
    MAPPING> TM_6307 DTM error log disabled.
    MAPPING> TE_7022 TShmWriter: Initialized
    MAPPING> TM_6007 DTM initialized successfully for session [SDE_ORA_AbsenceEvent_Full]
    DIRECTOR> PETL_24033 All DTM Connection Info: [<NONE>].
    MANAGER> PETL_24004 Starting pre-session tasks. : (Tue Nov 16 09:01:17 2010)
    MANAGER> PETL_24027 Pre-session task completed successfully. : (Tue Nov 16 09:01:17 2010)
    DIRECTOR> PETL_24006 Starting data movement.
    MAPPING> TM_6660 Total Buffer Pool size is 32000000 bytes and Block size is 128000 bytes.
    LKPDP_1> DBG_21693 mplt_SA_ORA_AbsenceEvent.Lkp_Absence_Status{{SRT}}: Cache size for partition [1] = [19922944]
    LKPDP_1> SORT_40419 For Transformation [mplt_SA_ORA_AbsenceEvent.Lkp_Absence_Status{{SRT}}], memory used is [19922944] bytes and row size is 300 bytes.
    LKPDP_1> TE_7212 Increasing [Index Cache] size for transformation [mplt_SA_ORA_AbsenceEvent.Lkp_Absence_Status] from [1048576] to [1050000].
    READER_1_1_1> DBG_21438 Reader: Source is [aebts02], user [apps]
    READER_1_1_1> BLKR_16051 Source database connection [ORA_R1212] code page: [UTF-8 encoding of Unicode]
    READER_1_1_1> BLKR_16003 Initialization completed successfully.
    WRITER_1_*_1> WRT_8147 Writer: Target is database [orcl], user [edw], bulk mode [OFF]
    WRITER_1_*_1> WRT_8221 Target database connection [DataWarehouse] code page: [UTF-8 encoding of Unicode]
    WRITER_1_*_1> WRT_8124 Target Table W_ABSENCE_EVENT_DS :SQL INSERT statement:
    INSERT INTO W_ABSENCE_EVENT_DS(ABSENCE_BEGIN_DT,ABSENCE_END_DT,ABSENCE_BEGIN_TM,ABSENCE_END_TM,ORIGINAL_BEGIN_DT,NOTIFIED_DT,APPROVED_DT,ABSENCE_REASON_CODE,ABSENCE_TYPE_CODE,ABSENCE_CATEGORY_CODE,APPROVAL_STATUS,STATUS_CODE,STATUS_NAME,PAID_UNPAID_CODE,DAYS_DURATION,HOURS_DURATION,DAY_DURATION_START,HOURS_DURATION_START,DAY_DURATION_MID,HOURS_DURATION_MID,DAY_DURATION_END,HOURS_DURATION_END,DAYS_NOTIFIED,ABSENCE_TYPE_RSN_ID,ABSENCE_STATUS_ID,CREATED_BY_ID,EMPLOYEE_ID,ASSIGNMENT_INTEGRATION_ID,CHANGED_BY_ID,CREATED_ON_DT,CHANGED_ON_DT,AUX1_CHANGED_ON_DT,AUX2_CHANGED_ON_DT,AUX3_CHANGED_ON_DT,AUX4_CHANGED_ON_DT,DELETE_FLG,DATASOURCE_NUM_ID,INTEGRATION_ID,TENANT_ID,X_CUSTOM) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
    WRITER_1_*_1> WRT_8124 Target Table W_ABSENCE_EVENT_DS :SQL DELETE statement:
    DELETE FROM W_ABSENCE_EVENT_DS WHERE DATASOURCE_NUM_ID = ? AND INTEGRATION_ID = ?
    WRITER_1_*_1> WRT_8270 Target connection group #1 consists of target(s) [W_ABSENCE_EVENT_DS]
    WRITER_1_*_1> WRT_8003 Writer initialization complete.
    READER_1_1_1> BLKR_16007 Reader run started.
    READER_1_1_1> RR_4029 SQ Instance [mplt_BC_ORA_AbsenceEvent.SQ_PER_ABSENCE_ATTENDANCES] User specified SQL Query [SELECT
    /*+ use_hash(per_absence_attendances per_all_assignments_f
    per_absence_attendance_types per_abs_attendance_reasons )*/
    tab.absence_attendance_id absence_attendance_id
    ,tab.date_start absence_begin_dt
    ,NVL(tab.date_end, to_date('31-DEC-4712','DD-MON-YYYY')) absence_end_dt
    ,to_date(to_char(tab.date_start, 'YYYYMMDD ') || NVL(tab.time_start,'00:00'), 'YYYYMMDD HH24:MI') absence_begin_tm
    ,to_date(to_char(tab.date_end, 'YYYYMMDD ') || NVL(tab.time_end,'00:00'), 'YYYYMMDD HH24:MI') absence_end_tm
    ,tab.date_start original_begin_dt
    ,tab.date_notification notified_dt
    ,to_date(null) approved_dt
    ,tab.name absence_reason_code
    ,tab.absence_attendance_type_id absence_attendance_type_id
    ,tab.absence_category absence_category_code
    ,tab.approval_status approval_status
    ,null status_code
    ,null paid_unpaid_code
    ,to_char(tab.absence_attendance_type_id) || '~' || NVL(tab.name,'Unspecified') absence_type_rsn_id
    ,'Unspecified' absence_status_id
    ,tab.person_id employee_id
    ,CASE when tab.date_start > TRUNC(sysdate) then 0
    WHEN tab.days_duration IS NOT NULL
    THEN tab.days_duration
    WHEN tab.utl_hours_in_day > 0
    THEN tab.hours_duration / tab.utl_hours_in_day
    END days_duration
    ,CASE when tab.date_start > TRUNC(sysdate) then 0
    WHEN tab.hours_duration IS NOT NULL
    THEN tab.hours_duration
    ELSE tab.days_duration * tab.utl_hours_in_day
    END hours_duration
    ,CASE when tab.date_start > TRUNC(sysdate) then 0
    WHEN tab.days_duration IS NOT NULL
    THEN tab.days_duration / tab.no_days
    WHEN tab.utl_hours_in_day > 0
    THEN (tab.hours_duration / tab.utl_hours_in_day )/ tab.no_days
    END day_duration_start
    ,CASE when tab.date_start > TRUNC(sysdate) then 0
    WHEN tab.hours_duration IS NOT NULL
    THEN tab.hours_duration / tab.no_days
    ELSE (tab.days_duration * tab.utl_hours_in_day)/ tab.no_days
    END hours_duration_start
    ,CASE when tab.date_start > TRUNC(sysdate) then 0
    WHEN tab.days_duration IS NOT NULL
    THEN tab.days_duration / tab.no_days
    WHEN tab.utl_hours_in_day > 0
    THEN (tab.hours_duration / tab.utl_hours_in_day )/ tab.no_days
    END day_duration_mid
    ,CASE when tab.date_start > TRUNC(sysdate) then 0
    WHEN tab.hours_duration IS NOT NULL
    THEN tab.hours_duration / tab.no_days
    ELSE (tab.days_duration * tab.utl_hours_in_day)/ tab.no_days
    END hours_duration_mid
    ,CASE when tab.date_start > TRUNC(sysdate) then 0
    WHEN tab.days_duration IS NOT NULL
    THEN tab.days_duration / tab.no_days
    WHEN tab.utl_hours_in_day > 0
    THEN (tab.hours_duration / tab.utl_hours_in_day )/ tab.no_days
    END day_duration_end
    ,CASE when tab.date_start > TRUNC(sysdate) then 0
    WHEN tab.hours_duration IS NOT NULL
    THEN tab.hours_duration / tab.no_days
    ELSE (tab.days_duration * tab.utl_hours_in_day)/ tab.no_days
    END hours_duration_end
    ,CASE WHEN tab.date_notification < tab.date_start
    THEN tab.date_start - tab.date_notification
    ELSE 0
    END days_notified
    ,tab.assignment_id assignment_integration_id
    FROM
    (SELECT
    paa.absence_attendance_id
    ,paa.date_start
    ,NVL(paa.date_end, to_date('31-DEC-4712','DD-MON-YYYY'))
    date_end
    ,CASE when paa.date_start > TRUNC(sysdate) then 0
    WHEN paa.date_start <= NVL(paa.date_end, trunc(sysdate))
    THEN NVL(paa.date_end, trunc(sysdate)) - paa.date_start + 1
    ELSE to_number(null)
    END no_days
    ,paa.date_notification
    ,paa.person_id
    ,pat.absence_category
    ,par.name
    ,paa.absence_attendance_type_id
    ,paa.abs_attendance_reason_id
    ,paa.time_start
    ,paa.time_end
    ,paa.approval_status
    ,asg.assignment_id
    ,CASE WHEN paa.absence_days IS NOT NULL
    THEN paa.absence_days
    WHEN paa.absence_hours IS NOT NULL OR
    (paa.date_start = paa.date_end AND
    paa.time_start IS NOT NULL AND
    paa.time_end IS NOT NULL)
    THEN to_number(null)
    WHEN paa.date_start < paa.date_end
    THEN paa.date_end - paa.date_start + 1
    when paa.absence_days is null and paa.absence_hours is null
    then nvl(paa.date_end,trunc(sysdate))-paa.date_start + 1
    END days_duration
    ,CASE WHEN paa.absence_hours IS NOT NULL OR
    (paa.date_start = paa.date_end AND
    paa.time_start IS NOT NULL AND
    paa.time_end IS NOT NULL)
    THEN NVL(paa.absence_hours, 24 * (to_date(NVL(paa.time_end,'00:00') , 'HH24:MI') -
    to_date(NVL(paa.time_start,'00:00'), 'HH24:MI')))
    END hours_duration
    , case when paa.date_start > TRUNC(sysdate) then 0
    else hri_bpl_utilization.convert_days_to_hours
    (asg.assignment_id, asg.business_group_id, paa.date_start, TRUNC(sysdate), 1)
    end utl_hours_in_day
    FROM
    per_absence_attendances paa
    ,per_absence_attendance_types pat
    ,per_abs_attendance_reasons par
    ,per_all_assignments_f asg
    WHERE paa.absence_attendance_type_id = pat.absence_attendance_type_id
    AND paa.abs_attendance_reason_id = par.abs_attendance_reason_id (+)
    AND paa.person_id = asg.person_id
    AND asg.primary_flag = 'Y'
    AND asg.assignment_type IN ('E','C')
    AND paa.date_start BETWEEN asg.effective_start_date
    AND asg.effective_end_date
    AND paa.date_start IS NOT NULL
    AND NVL(paa.date_end, to_date('31-DEC-4712','DD-MON-YYYY')) >= TO_DATE('1980-01-01 00:00:00', 'YYYY-MM-D HH24:MI:SS') ) tab]
    READER_1_1_1> RR_4049 SQL Query issued to database : (Tue Nov 16 09:01:18 2010)
    WRITER_1_*_1> WRT_8005 Writer run started.
    WRITER_1_*_1> WRT_8158
    *****START LOAD SESSION*****
    Load Start Time: Tue Nov 16 09:01:18 2010
    Target tables:
    W_ABSENCE_EVENT_DS
    READER_1_1_1> CMN_1761 Timestamp Event: [Tue Nov 16 09:01:18 2010]
    READER_1_1_1> RR_4035 SQL Error [
    ORA-01846: not a valid day of the week
    Database driver error...
    Function Name : Execute
    SQL Stmt : SELECT
    /*+ use_hash(per_absence_attendances per_all_assignments_f
    per_absence_attendance_types per_abs_attendance_reasons )*/
    tab.absence_attendance_id absence_attendance_id
    ,tab.date_start absence_begin_dt
    ,NVL(tab.date_end, to_date('31-DEC-4712','DD-MON-YYYY')) absence_end_dt
    ,to_date(to_char(tab.date_start, 'YYYYMMDD ') || NVL(tab.time_start,'00:00'), 'YYYYMMDD HH24:MI') absence_begin_tm
    ,to_date(to_char(tab.date_end, 'YYYYMMDD ') || NVL(tab.time_end,'00:00'), 'YYYYMMDD HH24:MI') absence_end_tm
    ,tab.date_start original_begin_dt
    ,tab.date_notification notified_dt
    ,to_date(null) approved_dt
    ,tab.name absence_reason_code
    ,tab.absence_attendance_type_id absence_attendance_type_id
    ,tab.absence_category absence_category_code
    ,tab.approval_status approval_status
    ,null status_code
    ,null paid_unpaid_code
    ,to_char(tab.absence_attendance_type_id) || '~' || NVL(tab.name,'Unspecified') absence_type_rsn_id
    ,'Unspecified' absence_status_id
    ,tab.person_id employee_id
    ,CASE when tab.date_start > TRUNC(sysdate) then 0
    WHEN tab.days_duration IS NOT NULL
    THEN tab.days_duration
    WHEN tab.utl_hours_in_day > 0
    THEN tab.hours_duration / tab.utl_hours_in_day
    END days_duration
    ,CASE when tab.date_start > TRUNC(sysdate) then 0
    WHEN tab.hours_duration IS NOT NULL
    THEN tab.hours_duration
    ELSE tab.days_duration * tab.utl_hours_in_day
    END hours_duration
    ,CASE when tab.date_start > TRUNC(sysdate) then 0
    WHEN tab.days_duration IS NOT NULL
    THEN tab.days_duration / tab.no_days
    WHEN tab.utl_hours_in_day > 0
    THEN (tab.hours_duration / tab.utl_hours_in_day )/ tab.no_days
    END day_duration_start
    ,CASE when tab.date_start > TRUNC(sysdate) then 0
    WHEN tab.hours_duration IS NOT NULL
    THEN tab.hours_duration / tab.no_days
    ELSE (tab.days_duration * tab.utl_hours_in_day)/ tab.no_days
    END hours_duration_start
    ,CASE when tab.date_start > TRUNC(sysdate) then 0
    WHEN tab.days_duration IS NOT NULL
    THEN tab.days_duration / tab.no_days
    WHEN tab.utl_hours_in_day > 0
    THEN (tab.hours_duration / tab.utl_hours_in_day )/ tab.no_days
    END day_duration_mid
    ,CASE when tab.date_start > TRUNC(sysdate) then 0
    WHEN tab.hours_duration IS NOT NULL
    THEN tab.hours_duration / tab.no_days
    ELSE (tab.days_duration * tab.utl_hours_in_day)/ tab.no_days
    END hours_duration_mid
    ,CASE when tab.date_start > TRUNC(sysdate) then 0
    WHEN tab.days_duration IS NOT NULL
    THEN tab.days_duration / tab.no_days
    WHEN tab.utl_hours_in_day > 0
    THEN (tab.hours_duration / tab.utl_hours_in_day )/ tab.no_days
    END day_duration_end
    ,CASE when tab.date_start > TRUNC(sysdate) then 0
    WHEN tab.hours_duration IS NOT NULL
    THEN tab.hours_duration / tab.no_days
    ELSE (tab.days_duration * tab.utl_hours_in_day)/ tab.no_days
    END hours_duration_end
    ,CASE WHEN tab.date_notification < tab.date_start
    THEN tab.date_start - tab.date_notification
    ELSE 0
    END days_notified
    ,tab.assignment_id assignment_integration_id
    FROM
    (SELECT
    paa.absence_attendance_id
    ,paa.date_start
    ,NVL(paa.date_end, to_date('31-DEC-4712','DD-MON-YYYY'))
    date_end
    ,CASE when paa.date_start > TRUNC(sysdate) then 0
    WHEN paa.date_start <= NVL(paa.date_end, trunc(sysdate))
    THEN NVL(paa.date_end, trunc(sysdate)) - paa.date_start + 1
    ELSE to_number(null)
    END no_days
    ,paa.date_notification
    ,paa.person_id
    ,pat.absence_category
    ,par.name
    ,paa.absence_attendance_type_id
    ,paa.abs_attendance_reason_id
    ,paa.time_start
    ,paa.time_end
    ,paa.approval_status
    ,asg.assignment_id
    ,CASE WHEN paa.absence_days IS NOT NULL
    THEN paa.absence_days
    WHEN paa.absence_hours IS NOT NULL OR
    (paa.date_start = paa.date_end AND
    paa.time_start IS NOT NULL AND
    paa.time_end IS NOT NULL)
    THEN to_number(null)
    WHEN paa.date_start < paa.date_end
    THEN paa.date_end - paa.date_start + 1
    when paa.absence_days is null and paa.absence_hours is null
    then nvl(paa.date_end,trunc(sysdate))-paa.date_start + 1
    END days_duration
    ,CASE WHEN paa.absence_hours IS NOT NULL OR
    (paa.date_start = paa.date_end AND
    paa.time_start IS NOT NULL AND
    paa.time_end IS NOT NULL)
    THEN NVL(paa.absence_hours, 24 * (to_date(NVL(paa.time_end,'00:00') , 'HH24:MI') -
    to_date(NVL(paa.time_start,'00:00'), 'HH24:MI')))
    END hours_duration
    , case when paa.date_start > TRUNC(sysdate) then 0
    else hri_bpl_utilization.convert_days_to_hours
    (asg.assignment_id, asg.business_group_id, paa.date_start, TRUNC(sysdate), 1)
    end utl_hours_in_day
    FROM
    per_absence_attendances paa
    ,per_absence_attendance_types pat
    ,per_abs_attendance_reasons par
    ,per_all_assignments_f asg
    WHERE paa.absence_attendance_type_id = pat.absence_attendance_type_id
    AND paa.abs_attendance_reason_id = par.abs_attendance_reason_id (+)
    AND paa.person_id = asg.person_id
    AND asg.primary_flag = 'Y'
    AND asg.assignment_type IN ('E','C')
    AND paa.date_start BETWEEN asg.effective_start_date
    AND asg.effective_end_date
    AND paa.date_start IS NOT NULL
    AND NVL(paa.date_end, to_date('31-DEC-4712','DD-MON-YYYY')) >= TO_DATE('1980-01-01 00:00:00', 'YYYY-MM-D HH24:MI:SS') ) tab
    Database driver error...
    Function Name : Execute
    SQL Stmt : SELECT
    /*+ use_hash(per_absence_attendances per_all_assignments_f
    per_absence_attendance_types per_abs_attendance_reasons )*/
    tab.absence_attendance_id absence_attendance_id
    ,tab.date_start absence_begin_dt
    ,NVL(tab.date_end, to_date('31-DEC-4712','DD-MON-YYYY')) absence_end_dt
    ,to_date(to_char(tab.date_start, 'YYYYMMDD ') || NVL(tab.time_start,'00:00'), 'YYYYMMDD HH24:MI') absence_begin_tm
    ,to_date(to_char(tab.date_end, 'YYYYMMDD ') || NVL(tab.time_end,'00:00'), 'YYYYMMDD HH24:MI') absence_end_tm
    ,tab.date_start original_begin_dt
    ,tab.date_notification notified_dt
    ,to_date(null) approved_dt
    ,tab.name absence_reason_code
    ,tab.absence_attendance_type_id absence_attendance_type_id
    ,tab.absence_category absence_category_code
    ,tab.approval_status approval_status
    ,null status_code
    ,null paid_unpaid_code
    ,to_char(tab.absence_attendance_type_id) || '~' || NVL(tab.name,'Unspecified') absence_type_rsn_id
    ,'Unspecified' absence_status_id
    ,tab.person_id employee_id
    ,CASE when tab.date_start > TRUNC(sysdate) then 0
    WHEN tab.days_duration IS NOT NULL
    THEN tab.days_duration
    WHEN tab.utl_hours_in_day > 0
    THEN tab.hours_duration / tab.utl_hours_in_day
    END days_duration
    ,CASE when tab.date_start > TRUNC(sysdate) then 0
    WHEN tab.hours_duration IS NOT NULL
    THEN tab.hours_duration
    ELSE tab.days_duration * tab.utl_hours_in_day
    END hours_duration
    ,CASE when tab.date_start > TRUNC(sysdate) then 0
    WHEN tab.days_duration IS NOT NULL
    THEN tab.days_duration / tab.no_days
    WHEN tab.utl_hours_in_day > 0
    THEN (tab.hours_duration / tab.utl_hours_in_day )/ tab.no_days
    END day_duration_start
    ,CASE when tab.date_start > TRUNC(sysdate) then 0
    WHEN tab.hours_duration IS NOT NULL
    THEN tab.hours_duration / tab.no_days
    ELSE (tab.days_duration * tab.utl_hours_in_day)/ tab.no_days
    END hours_duration_start
    ,CASE when tab.date_start > TRUNC(sysdate) then 0
    WHEN tab.days_duration IS NOT NULL
    THEN tab.days_duration / tab.no_days
    WHEN tab.utl_hours_in_day > 0
    THEN (tab.hours_duration / tab.utl_hours_in_day )/ tab.no_days
    END day_duration_mid
    ,CASE when tab.date_start > TRUNC(sysdate) then 0
    WHEN tab.hours_duration IS NOT NULL
    THEN tab.hours_duration / tab.no_days
    ELSE (tab.days_duration * tab.utl_hours_in_day)/ tab.no_days
    END hours_duration_mid
    ,CASE when tab.date_start > TRUNC(sysdate) then 0
    WHEN tab.days_duration IS NOT NULL
    THEN tab.days_duration / tab.no_days
    WHEN tab.utl_hours_in_day > 0
    THEN (tab.hours_duration / tab.utl_hours_in_day )/ tab.no_days
    END day_duration_end
    ,CASE when tab.date_start > TRUNC(sysdate) then 0
    WHEN tab.hours_duration IS NOT NULL
    THEN tab.hours_duration / tab.no_days
    ELSE (tab.days_duration * tab.utl_hours_in_day)/ tab.no_days
    END hours_duration_end
    ,CASE WHEN tab.date_notification < tab.date_start
    THEN tab.date_start - tab.date_notification
    ELSE 0
    END days_notified
    ,tab.assignment_id assignment_integration_id
    FROM
    (SELECT
    paa.absence_attendance_id
    ,paa.date_start
    ,NVL(paa.date_end, to_date('31-DEC-4712','DD-MON-YYYY'))
    date_end
    ,CASE when paa.date_start > TRUNC(sysdate) then 0
    WHEN paa.date_start <= NVL(paa.date_end, trunc(sysdate))
    THEN NVL(paa.date_end, trunc(sysdate)) - paa.date_start + 1
    ELSE to_number(null)
    END no_days
    ,paa.date_notification
    ,paa.person_id
    ,pat.absence_category
    ,par.name
    ,paa.absence_attendance_type_id
    ,paa.abs_attendance_reason_id
    ,paa.time_start
    ,paa.time_end
    ,paa.approval_status
    ,asg.assignment_id
    ,CASE WHEN paa.absence_days IS NOT NULL
    THEN paa.absence_days
    WHEN paa.absence_hours IS NOT NULL OR
    (paa.date_start = paa.date_end AND
    paa.time_start IS NOT NULL AND
    paa.time_end IS NOT NULL)
    THEN to_number(null)
    WHEN paa.date_start < paa.date_end
    THEN paa.date_end - paa.date_start + 1
    when paa.absence_days is null and paa.absence_hours is null
    then nvl(paa.date_end,trunc(sysdate))-paa.date_start + 1
    END days_duration
    ,CASE WHEN paa.absence_hours IS NOT NULL OR
    (paa.date_start = paa.date_end AND
    paa.time_start IS NOT NULL AND
    paa.time_end IS NOT NULL)
    THEN NVL(paa.absence_hours, 24 * (to_date(NVL(paa.time_end,'00:00') , 'HH24:MI') -
    to_date(NVL(paa.time_start,'00:00'), 'HH24:MI')))
    END hours_duration
    , case when paa.date_start > TRUNC(sysdate) then 0
    else hri_bpl_utilization.convert_days_to_hours
    (asg.assignment_id, asg.business_group_id, paa.date_start, TRUNC(sysdate), 1)
    end utl_hours_in_day
    FROM
    per_absence_attendances paa
    ,per_absence_attendance_types pat
    ,per_abs_attendance_reasons par
    ,per_all_assignments_f asg
    WHERE paa.absence_attendance_type_id = pat.absence_attendance_type_id
    AND paa.abs_attendance_reason_id = par.abs_attendance_reason_id (+)
    AND paa.person_id = asg.person_id
    AND asg.primary_flag = 'Y'
    AND asg.assignment_type IN ('E','C')
    AND paa.date_start BETWEEN asg.effective_start_date
    AND asg.effective_end_date
    AND paa.date_start IS NOT NULL
    AND NVL(paa.date_end, to_date('31-DEC-4712','DD-MON-YYYY')) >= TO_DATE('1980-01-01 00:00:00', 'YYYY-MM-D HH24:MI:SS') ) tab].
    READER_1_1_1> CMN_1761 Timestamp Event: [Tue Nov 16 09:01:18 2010]
    READER_1_1_1> BLKR_16004 ERROR: Prepare failed.
    WRITER_1_*_1> WRT_8333 Rolling back all the targets due to fatal session error.
    WRITER_1_*_1> WRT_8325 Final rollback executed for the target [W_ABSENCE_EVENT_DS] at end of load
    WRITER_1_*_1> WRT_8035 Load complete time: Tue Nov 16 09:01:18 2010
    LOAD SUMMARY
    ============
    WRT_8036 Target: W_ABSENCE_EVENT_DS (Instance Name: [W_ABSENCE_EVENT_DS])
    WRT_8044 No data loaded for this target
    WRITER_1__1> WRT_8043 ****END LOAD SESSION*****
    MANAGER> PETL_24031
    ***** RUN INFO FOR TGT LOAD ORDER GROUP [1], CONCURRENT SET [1] *****
    Thread [READER_1_1_1] created for [the read stage] of partition point [mplt_BC_ORA_AbsenceEvent.SQ_PER_ABSENCE_ATTENDANCES] has completed. The total run time was insufficient for any meaningful statistics.
    Thread [TRANSF_1_1_1] created for [the transformation stage] of partition point [mplt_BC_ORA_AbsenceEvent.SQ_PER_ABSENCE_ATTENDANCES] has completed. The total run time was insufficient for any meaningful statistics.
    Thread [WRITER_1_*_1] created for [the write stage] of partition point [W_ABSENCE_EVENT_DS] has completed. The total run time was insufficient for any meaningful statistics.
    MAPPING> CMN_1793 The index cache size that would hold [0] rows in the lookup table for [mplt_SA_ORA_AbsenceEvent.Lkp_Absence_Status], in memory, is [0] bytes
    MAPPING> CMN_1792 The data cache size that would hold [0] rows in the lookup table for [mplt_SA_ORA_AbsenceEvent.Lkp_Absence_Status], in memory, is [0] bytes
    MANAGER> PETL_24005 Starting post-session tasks. : (Tue Nov 16 09:01:18 2010)
    MANAGER> PETL_24029 Post-session task completed successfully. : (Tue Nov 16 09:01:18 2010)
    MAPPING> TE_7216 Deleting cache files [PMLKUP4513_131076_0_979L64] for transformation [mplt_SA_ORA_AbsenceEvent.Lkp_Absence_Status].
    MAPPING> TM_6018 The session completed with [0] row transformation errors.
    MANAGER> PETL_24002 Parallel Pipeline Engine finished.
    DIRECTOR> PETL_24013 Session run completed with failure.
    DIRECTOR> TM_6022
    SESSION LOAD SUMMARY
    ================================================
    DIRECTOR> TM_6252 Source Load Summary.
    DIRECTOR> CMN_1740 Table: [SQ_PER_ABSENCE_ATTENDANCES] (Instance Name: [mplt_BC_ORA_AbsenceEvent.SQ_PER_ABSENCE_ATTENDANCES])
         Output Rows [0], Affected Rows [0], Applied Rows [0], Rejected Rows [0]
    DIRECTOR> TM_6253 Target Load Summary.
    DIRECTOR> CMN_1740 Table: [W_ABSENCE_EVENT_DS] (Instance Name: [W_ABSENCE_EVENT_DS])
         Output Rows [0], Affected Rows [0], Applied Rows [0], Rejected Rows [0]
    DIRECTOR> TM_6023
    ===================================================
    DIRECTOR> TM_6020 Session [SDE_ORA_AbsenceEvent_Full] completed at [Tue Nov 16 09:01:19 2010].

    Hi
    Did you manage to find a solution to this problem?
    okay i been puzzling with this one a bit,how i resolved it was as follows:
    'AND NVL(paa.date_end, to_date('31-DEC-4712','DD-MON-YYYY')) >= TO_DATE('1980-01-01 00:00:00', 'YYYY-MM-D HH24:MI:SS') ) tab]'
    you will notice the yyyy-mm-dd function is missing a d from the parameter file
    if you take the sql and run it with the proper conversion of TO_DATE('1980-01-01 00:00:00', 'YYYY-MM-DD HH24:MI:SS') the sql works and the workflow completes, it would seem this is a bug when the dac generates the parameter $$HR_ABSNC_EXTRACT_DATE.
    hope this helps
    Regards
    Nick
    Edited by: Nickho on Feb 7, 2011 7:55 AM

  • How to change default PIRWBUSER password for ABAP Proxy monitoring ?

    Hi,
    Please advise how to change setting for PIRWBUSER in PI so no need to use master password PI in ECC server.
    In the Message monitoring you can have option to monitoring ABAP Proxy transaction in the other SAP Instance. But of course you need to have PIRWBUSER in that target SAP instance.
    How to change this configuration for PIRWBUSER for other SAP Instance. because other SAP instance it migh have different password for PIRWBUSER ?
    Regards
    Fernand

    Hello there.
    Please check the note below according to your system:
    #999962 - PI 7.10: Change passwords of PI service users
    #936093 - XI 7.0: Changing the passwords of XI service users
    #721548 - XI 3.0: Changing the passwords of the XI service users
    Regards,
    Caio Cagnani

Maybe you are looking for

  • Floating Date/Time in iCal Attachments

    I've been using floating times for our ical attachments and they work great on every device/OS so far except for Blackberry devices. Apparently, Blackberry devices don't properly support the ical standard and interepret floating dates (i.e. w/out the

  • How to edit an existing page in SharePoint designer and add custom javascript

    When I edit an existing page in SharePoint Designer to add JavaScript and save, I get a dialog with message "Content in the embedded form field may be changed by the server to remove unsafe content. Do you want to reload you page to see the results o

  • [Solved] Grub Error 13, ext4 and 2.6.28.1

    Hi guys!!! I have formatted my laptop disk in new ext4 format, following wiki instructions: http://wiki.archlinux.org/index.php/Cre - _Partition and all wok fine. But after today update (pacman -Syu), my arch don't boot. Grub messages (lastest grub v

  • Battery problems with mac book pro

    I just bought a mac book pro in March 2014. Since there, when I put the machine in the sleep mode , next day the battery is over.. I already tried a chat with apple and I couldn't solve my problem... After that I took my machine in apple store, they

  • Adobe live media encoder crashes when i press stop

    after i am done i push the stop button on the bottom of the encoder to stop my sreamming. everytime it freezes crashes and will not relaunch. i have to delete and reinstall it everytime. i am on a mac 10.5.8