CS4- nested object error

I used DWCS4 to install a flash swf animation into a asp
page. (I have html pages on the site the swf plays no problem.) I
recieved the following error.
Active Server Pages error 'ASP 0139'
Nested Object
/index.asp, line 86
An object tag cannot be placed inside another object tag.
----->below is the source code that was genereated by CS4
when I installed the swf <-----------
<object id="FlashID"
classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="800"
height="80">
<param name="movie" value="rdslogo2.swf">
<param name="quality" value="high">
<param name="wmode" value="opaque">
<param name="swfversion" value="9.0.45.0">
<!-- This param tag prompts users with Flash Player 6.0
r65 and higher to download the latest version of Flash Player.
Delete it if you don’t want users to see the prompt. -->
<param name="expressinstall"
value="../Scripts/expressInstall.swf">
<!-- Next object tag is for non-IE browsers. So hide it
from IE using IECC. -->
<!--[if !IE]>-->
<object type="application/x-shockwave-flash"
data="rdslogo2.swf" width="800" height="80">
<!--<![endif]-->
<param name="quality" value="high">
<param name="wmode" value="opaque">
<param name="swfversion" value="9.0.45.0">
<param name="expressinstall"
value="../Scripts/expressInstall.swf">
<!-- The browser displays the following alternative
content for users with Flash Player 6.0 and older. -->
<div>
<h4>Content on this page requires a newer version of
Adobe Flash Player.</h4>
<p><a href="
http://www.adobe.com/go/getflashplayer"><img
src="
http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif"
alt="Get Adobe Flash player" width="112" height="33"
/></a></p>
</div>
<!--[if !IE]>-->
</object>
<!--<![endif]-->
</object>
Does anyone know how to correct this problem?

Found the answer here:
http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?forumid=12&catid=189&threadid =1419395&enterthread=y
I was inserting the .swf into an .html page with my IIS
server set to read .html pages as .asp.
CS4 puts in different code for asp pages compared to html
pages.
Rich

Similar Messages

  • How to get value of a nested object?!!

    I am writing a small game program in java(applet). I am not getting the value of a nested object in the paint method. Please help.
    the text marked as code is wrong. Can u tell me a simple method?
    s1.a[0].x will give error. What should I use?
    import java.awt.*;
    import java.applet.*;
    import java.awt.event.*;
    class SnakeBit
         int x,y; //x and y are coordinates
         int position;
    public SnakeBit(int x, int y)
         this.x=x;
         this.y=y;
    public SnakeBit copy(SnakeBit a)
         this.x=a.x;
         this.y=a.y;
         return this;
    public int getValueX()
         int a;
         a=this.x;
         return a;
    public int getValueY()
         int b;
         b=this.y;
         return b;
    }//end of class SnakeBit.
    class Cell
         public int x,y;
    //************************************************Snake class***************************************
    class Snake
         public Snake()
                             SnakeBit a[]=new SnakeBit[5];
                             a[0]=new SnakeBit(8,4);
         public static void main(String args[])
                             SnakeBit a[]=new SnakeBit[5];
                             a[0]=new SnakeBit(8,4);
                             a[1]=new SnakeBit(8,5);
                             a[2]=new SnakeBit(8,6);
                             a[3]=new SnakeBit(9,6);
                             a[4]=new SnakeBit(10,6);
                             a[5]=new SnakeBit(10,7);
                             a[6]=new SnakeBit(10,8);
              Snake a1=new Snake();
         public void up(SnakeBit a[])
              move(a);
              a[0].y=a[0].y-1;
         public void right(SnakeBit a[])
              move(a);
              a[0].x=a[0].x+1;
         public void left(SnakeBit a[])
              move(a);
              a[0].x=a[0].x-1;
         public void down(SnakeBit a[])
              move(a);
              a[0].x=a[0].y+1;
         public void move(SnakeBit a[])
              a[6].copy(a[5]);
              a[5].copy(a[4]);
              a[4].copy(a[3]);
              a[3].copy(a[2]);
              a[2].copy(a[1]);
              a[1].copy(a[0]);
    }//end of class Snake.
    public class Game1 extends Applet //implements KeyListener
         Snake s1;
         SnakeBit aa;
         int sizeOfCell=10; //default=10
         int startX=20; //starting x position of board.default=20
         int startY=20;     //starting y position of board.
         int maxX=200;          //max x value of board, ie width. default=200
         int maxY=200;          //max y value of board ie height.
         boolean drawBoard;
         //int arrays which will store the values of the objects
         int x[]=new int[5];
         int y[]=new int[5];
         public void init()
              s1=new Snake();
              //drawBoard=false;
              //x=s1.getValueX();
              //y=s1.getValueY();
              //aa = s1.a[0];
         public void paint(Graphics g)
         //public void Mpaint(Graphics g, Snake s1)
              //if (drawBoard==false)
                   drawBoard=true;
                   g.setColor(Color.cyan);
                        for(int i=startX;i<=maxX;i=i+sizeOfCell)
                        for(int j=startY;j<=maxY;j=j+sizeOfCell)
                             g.fillRect(i,j,sizeOfCell,sizeOfCell);
                   g.setColor(Color.red);
                                  for(int i=startX;i<=maxX;i=i+sizeOfCell)
                                  for(int j=startY;j<=maxY;j=j+sizeOfCell)
                                       g.drawRect(i,j,sizeOfCell,sizeOfCell);
              for(int i=0;i<7;i++)
    <code>
              g.drawRect(s1.a[0].x * sizeOfCell, s1.a[0].y*sizeOfCell,sizeOfCell,sizeOfCell);
    </code>
    }//end of class Game.

    Those who feel the program is too big to solve,( actually the code is not well written, and documentation is nill)
    I will try to explain in my own words.
    There are only 3 classes
    1)SnakeBit
    2)Snake
    3)Game
    SnakeBits draws a small part of a snake.
    Snake draws the whole snake.
    In the constructor of the Snake class , one SnakeBit is created.(Actually we create 5 or more, but right now to make the problem clear, I have created only one.)
         SnakeBit a[]=new SnakeBit[5];
         a[0]=new SnakeBit(8,4);
    In the game class, a Snake is created.
    In the game class, I can access the members of the Snake class. But I cannot access the members of the SnakeBit class.
    I need to access the members of the SnakeBit class from the paint method. otherwise How am I going to draw it on the screen.
    So tell me a way to do it.
    I want to get the x and y variable of the SnakeBit class from the Game class.
    Please help.

  • [svn:bz-4.0.0_fixes] 20586: backporting nest object level fix and nest collection level fix from blazeds trunk to 4 .0.0.fixes branch

    Revision: 20586
    Revision: 20586
    Author:   [email protected]
    Date:     2011-03-03 13:44:51 -0800 (Thu, 03 Mar 2011)
    Log Message:
    backporting nest object level fix and nest collection level fix from blazeds trunk to 4.0.0.fixes branch
    checkintests pass
    Modified Paths:
        blazeds/branches/4.0.0_fixes/modules/common/src/flex/messaging/errors.properties
        blazeds/branches/4.0.0_fixes/modules/core/src/flex/messaging/endpoints/AbstractEndpoint.j ava
        blazeds/branches/4.0.0_fixes/modules/core/src/flex/messaging/io/SerializationContext.java
        blazeds/branches/4.0.0_fixes/modules/core/src/flex/messaging/io/amf/Amf0Input.java
        blazeds/branches/4.0.0_fixes/modules/core/src/flex/messaging/io/amf/Amf0Output.java
        blazeds/branches/4.0.0_fixes/modules/core/src/flex/messaging/io/amf/Amf3Input.java
        blazeds/branches/4.0.0_fixes/modules/core/src/flex/messaging/io/amf/Amf3Output.java
        blazeds/branches/4.0.0_fixes/modules/core/src/flex/messaging/io/amf/AmfIO.java

    Revision: 20586
    Revision: 20586
    Author:   [email protected]
    Date:     2011-03-03 13:44:51 -0800 (Thu, 03 Mar 2011)
    Log Message:
    backporting nest object level fix and nest collection level fix from blazeds trunk to 4.0.0.fixes branch
    checkintests pass
    Modified Paths:
        blazeds/branches/4.0.0_fixes/modules/common/src/flex/messaging/errors.properties
        blazeds/branches/4.0.0_fixes/modules/core/src/flex/messaging/endpoints/AbstractEndpoint.j ava
        blazeds/branches/4.0.0_fixes/modules/core/src/flex/messaging/io/SerializationContext.java
        blazeds/branches/4.0.0_fixes/modules/core/src/flex/messaging/io/amf/Amf0Input.java
        blazeds/branches/4.0.0_fixes/modules/core/src/flex/messaging/io/amf/Amf0Output.java
        blazeds/branches/4.0.0_fixes/modules/core/src/flex/messaging/io/amf/Amf3Input.java
        blazeds/branches/4.0.0_fixes/modules/core/src/flex/messaging/io/amf/Amf3Output.java
        blazeds/branches/4.0.0_fixes/modules/core/src/flex/messaging/io/amf/AmfIO.java

  • "object reference not set to an instance of an object" error while running ssrs report locally

    Hi Folks,
    I am a bit new to SSRS.
    I am using ssrs 2012 and trying to use a method from a dll file. I am loaded the assembly file in reference of the report.
    Now I am trying to use a static method from the Dll. e.g. applicationName.classname.MethodName()
    But while running the report I am getting "object reference not set to an instance of an object" error.
    For a note I am trying execute the report locally.
    Any help would be highly appreciable.
    sarat chandra sahoo

    Sorry for late reply Sinaloe..
    I have added a dll file in my report reference. And in a textbox trying to execute this below.
    =Recall.Common.LocalizationEx.Localization.GetString(Parameters!Culture.Value, "RFID", "BICustomerPortal")
    where Getstring() is a static method in the dll.
    I guess some configuration setting I am missing here.
    1. I have copied these dlls in "C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\PrivateAssemblies" and "C:\Windows\Assembly".
    sarat chandra sahoo

  • CO OBJECT ERROR IN MIRO FOR UNPLANNED DEL COST

    Dear Friends
    I m facing one error in MIRO can u guide me in that context.
    well in MIRO i m postin Unplanned deliver cost.......and it is asking me assignment to this G/L for Cost center object..
    ERROR: Account 40201070 requires an assignment to a CO object
    ..I have already assigned the Cost center for the G/l in OKB9 is there anything else has to be done
    Actually we have 4 plants and 4 Business area i.e whenever i am doing any posting for BW01 -and Business Area BA01 My cost center BW01402 will get hit similarly for other plant and Business are Cost center has been assigned in OKB9 in Details per business Area,is it the right method or anything else has to be done.
    Actually in OKB9 i have maintained that GL and in Detail per business area i have maintained cost center per business area
    we have assigned the right Cost senter only i.e for different Plant and differenct business area we have asigned different cost center.
    Then y i m getting error i m not understanding..
    Please guide me in this context.
    Also i am trying other method of posting Freight (unplanned delviery cost ) as well as labour charge through ACTIVATING -"Activate Direct Posting to G/L Accounts and Material Accounts"
    So that for particular G/L I can Debt or credit that account,in which will doing MIRO G/L Tab gets activated ,i m entering G/L and entering amount for freight and Labor is this the correct procedure.
    Regards
    shailesh

    I have already assigned this G/L as primary cost element in FS00 and in OKB9 also Cost center is assigned as per Business Area as mentioned in the thread
    i.e we have 4 plants and 4 business area so we assigned 4 cost centers to 4 business area, so whenver i m postin unplanned delivery cost for a particular plant then my GL should hit with proper cost center but still it is asking for CO OBJECT
    ERROR IS:
    "Account 40201070 requires an assignment to a CO object"
    If i maintained the default Cost center in FS00 in cost element then it doesnt give error but my requirement is that for a particular plant ,and business are only cost area assigned to it should hit
    Any other solutions.
    Thankz and regards
    Shailesh

  • "Invalid Annotation Object" error

    I'm using Windows XP Pro (SP3) on a 2.66 GHz, 2 GB RAM computer, and while working in an Adobe Acrobat 9 document, I had just saved the file (CTRL+S) and the document froze and I got a Windows error box that asked if I wanted to send an error report, which I did. When I opened Adobe again, it asked if I wanted to open the last file which didn't save correctly, which I did.
    Then when I proceeded to work in the document and tried to highlight a sentence I was going to delete, I got an Adobe Acrobat popup box that said "Invalid Annotation Object. OK" but no matter how many times I clicked on "OK," the box kept popping up and wouldn't go away. I tried saving a copy of the document, but the same box was in it and wouldn't go away. I couldn't even work in the document to extract pages or anything else. Huge problem!
    Does anyone know what can I do to resolve this problem? (This happened on a Saturday when Adobe phone support is not accessible.)

    On 3/24/2015 same problems, after Adobe Acrobat 9 pro. crashed while I added text boxes.. When I opened Adobe again, Yes to open the last file which didn't save correctly, then "Invalid Annotation Object" errors on my .pdf file of 96 pages
    - first, I had to acknowledge/click the OK button until all " invalid annotation objects" error pop-up windows are gone
    (for my file with 96 pages, i had to hit the OK button more than hundreds times - need patience)
    - then found out (later) that what I did turn out to be the same steps as following post by davidsdomingo in adobe.forums
    davidsdomingo May 28, 2009 1:39 PM (in response to (Holger_Wulf))
    Here is a technique for identifying all the pages that have invalid annotation objects on them:
    1. Document > Extract Pages ...
    •Select the checkbox for "Extract Pages As Separate Files"
    •Set the destination to a 'dedicated' folder that won't contain any other files -- that way, you can simply delete the folder when this process is done.
    •Click OK.
    2. During the extraction, click OK in all the message boxes that appear.
    3. After the extraction, look in the destination folder to see which pages are missing. Those are the pages that have invalid annotation objects.
    From this point you can try to delete the objects, or simply delete and replace the pages, or implement a different solution. Hope this helps someone.
    - after extract the 96-pages file into individual files into a dedicated folder, only 95 got extracted and page 1 was not/can not be extracted.
    - I then combined the 95 good extracted pages into a new file name .pdf
    - then inserted a good page 1 without error (from the file that was saved previous day, prior to all the changes I made on the corrupted file), re work on page 1
    - delete the bad file.
    Hope this helps someone.

  • Adobe "Invalid annotation object" error

    We recieve a specific error message on a few PDFs. Some from documents converted from 2007 Word and others out of Outlook 2007 through the PDF print function.  While moving the mouse over certain comments the users has placed on the document in the PDF format, Acrobat 9.9.3 throws this error. We've tried to delete the bad refs and other times have just started a new document, print to PDF while starting over.  Any ideas on why this is happining, what might be causing this and what we can do to reslove this problem.  I cannot seem to duplicate the problem a few see.  Any thoughts or solutions would be greatly appreciated. Best regards, Brian

    On 3/24/2015 same problems, after Adobe Acrobat 9 pro. crashed while I added text boxes.. When I opened Adobe again, Yes to open the last file which didn't save correctly, then "Invalid Annotation Object" errors on my .pdf file of 96 pages
    - first, I had to acknowledge/click the OK button until all " invalid annotation objects" error pop-up windows are gone
    (for my file with 96 pages, i had to hit the OK button more than hundreds times - need patience)
    - then found out (later) that what I did turn out to be the same steps as following post by davidsdomingo in adobe.forums
    davidsdomingo May 28, 2009 1:39 PM (in response to (Holger_Wulf))
    Here is a technique for identifying all the pages that have invalid annotation objects on them:
    1. Document > Extract Pages ...
    •Select the checkbox for "Extract Pages As Separate Files"
    •Set the destination to a 'dedicated' folder that won't contain any other files -- that way, you can simply delete the folder when this process is done.
    •Click OK.
    2. During the extraction, click OK in all the message boxes that appear.
    3. After the extraction, look in the destination folder to see which pages are missing. Those are the pages that have invalid annotation objects.
    From this point you can try to delete the objects, or simply delete and replace the pages, or implement a different solution. Hope this helps someone.
    - after extract the 96-pages file into individual files into a dedicated folder, only 95 got extracted and page 1 was not/can not be extracted.
    - I then combined the 95 good extracted pages into a new file name .pdf
    - then inserted a good page 1 without error (from the file that was saved previous day, prior to all the changes I made on the corrupted file), re work on page 1
    - delete the bad file.
    Hope this helps someone.

  • Can we show the nested objects in Powershell?

    I am adding a .NET type to Powershell session using Add-Type and then creating object of that type using New-Object. This is done as follows:
    Add-Type -AssemblyName OuterObj
    $a = New-Object OuterObj
    Object of type OuterObj is successfully created. Now .NET type $a has a field named innerObj which is object of another .NET type innerObject. So I add "innerObject" .NET type and create an instance using New-Object.
    Add-Type -AssemblyName innerObject
    $b = New-Object innerObject
    Object of type innerObject is also successfully created. Now I do as follows:
    $a.innerObj = $b
    Now when I print $a, it shows something like this:
    innerObj : innerObject
    Thus it does not display the contents of innerObject by default. When I go and explore, innerObj has the fields. I know Powershell does not show the nested objects by default but instead just shows their types, but is there a way I can specify that what
    level of nesting of objects powershell should show by default? Is there something to specify to show 1 or 2 levels of nested objects?
    Any help would be highly appreciated.

    The simplest approach, if you're writing these C# classes yourself, is probably to override the class's ToString method.  That way it will just display that way by default in PowerShell, without any extra effort on the scripter's part.
    If that's not an option, then you can write PowerShell code to accomplish something similar.  Here are examples of both:
    # C# ToString version:
    Add-Type -TypeDefinition @'
    public class innerObject
    public string Property1;
    public string Property2;
    public override string ToString()
    return string.Format("Property1: {0}, Property2: {1}", Property1, Property2);
    public class OuterObj
    public innerObject innerObj;
    $a = New-Object OuterObj
    $b = New-Object innerObject -Property @{ Property1 = 'First Property'; Property2 = 'Second Property' }
    $a.innerObj = $b
    $a | Format-List
    # PowerShell version using constructed property values with
    # Format-List.
    Add-Type -TypeDefinition @'
    public class innerObject
    public string Property1;
    public string Property2;
    public class OuterObj
    public innerObject innerObj;
    $a = New-Object OuterObj
    $b = New-Object innerObject -Property @{ Property1 = 'First Property'; Property2 = 'Second Property' }
    $a.innerObj = $b
    $a | Format-List -Property @{ Label = 'innerObj'; Expression = { "Property1: $($_.innerObj.Property1), Property2: $($_.innerObj.Property2)" } }

  • Many  db  objects error after Upgrate EBS 12.1.1 to EBS 12.1.2(7303033)

    many db objects error after apply patch 7303033
    Error db objects
    APPS.ENGECOBO
    APPS.OKL_REVERSE_CONTRACT_PVT
    APPS.OKL_GENERATE_ACCRUALS_PUB
    APPS.OKL_PROCESS_TMPT_SET_PVT_W
    APPS.OKL_TRANS_CONTRACTS_PVT_W
    APPS.OKL_TRANSACTION_PVT_W
    APPS.OKL_CONTRACT_PVT
    APPS.OKL_GENERATE_ACCRUALS_PVT_W
    APPS.OKL_LA_JE_PUB
    APPS.OKL_TRANSACTION_PUB
    APPS.OKL_GENERATE_ACCRUALS_PVT
    APPS.OKL_AM_ASSET_DISPOSE_PVT
    APPS.OKL_AM_ASSET_RETURN_PVT
    APPS.OKL_CS_WF
    APPS.OKL_FUNDING_WF
    APPS.OKL_LA_JE_PVT
    APPS.OKL_INTEREST_CALC_PVT
    APPS.OKL_LOSS_PROV_PVT
    APPS.OKL_MISC_TRANS_PVT
    APPS.OKL_MASS_REBOOK_PVT
    APPS.OKL_AM_LEASE_LOAN_TRMNT_PVT
    APPS.OKL_AM_LOAN_TRMNT_PVT
    APPS.OKL_AM_LEASE_TRMNT_PVT
    APPS.OKL_RELEASE_PVT
    APPS.OKL_AM_QUOTES_WF
    APPS.OKL_REV_LOSS_PROV_PVT
    APPS.OKL_SPLIT_CONTRACT_PVT
    APPS.OKL_LA_STREAM_PVT
    APPS.OKL_SPLIT_ASSET_PVT
    APPS.OKL_TRANS_CONTRACTS_PVT
    APPS.OKL_AM_TERMNT_QUOTE_PVT
    APPS.OKL_CS_TRANSFER_ASSUMPTION_PVT
    APPS.OKL_PROCESS_TMPT_SET_PVT
    APPS.OKL_TRANSACTION_PVT
    APPS.OKL_VARIABLE_INTEREST_PVT
    APPS.OKL_GENERATE_ACCRUALS_PUB_W
    APPS.OKL_TRANS_CONTRACTS_PUB_W
    APPS.OKL_TRX_CONTRACTS_PUB_W
    APPS.OKL_TRANSACTION_PUB_W
    APPS.OKL_PROCESS_TMPT_SET_PUB_W
    APPS.OKL_CS_PRINCIPAL_PAYDOWN_PVT
    APPS.EAM_PROCESS_WO_PVT
    APPS.OKL_AM_CNTRCT_LN_TRMNT_PVT
    APPS.OKL_SERVICE_INTEGRATION_PVT
    APPS.OKL_PERIOD_SWEEP_PVT
    APPS.OKL_SEC_AGREEMENT_PVT
    APPS.IGS_FI_CREDIT_PVT
    APPS.FFP55366_01011990
    APPS.FFP51404_01011997
    APPS.FFP51848_01011990
    APPS.FFP55358_01011990
    APPS.FFP55370_01011990
    APPS.FFP50529_01011900
    APPS.FFP50775_01011900
    APPS.FFP52681_01071999
    APPS.FFP50533_01011900
    APPS.FFP55069_01011990
    APPS.FFP50531_01011900
    APPS.FFP55060_01011990
    APPS.FFP51840_01011990
    APPS.FFP55372_01011990
    APPS.FFP50773_01011900
    APPS.FFP55067_01011990
    APPS.FFP53497_01012001
    APPS.FFP51406_01011997
    APPS.FFP52621_01011996
    APPS.FFP52090_01011990
    APPS.FFP55065_01011990
    APPS.FFP53540_01012001
    APPS.FFP51837_01011990
    APPS.FFP55364_01011990
    APPS.FFP52115_01011990
    APPS.FFP50506_01011900
    APPS.FFP53477_01012001
    APPS.FFP55375_01011990
    APPS.FFP50508_01011900
    APPS.FFP50512_01011900
    APPS.FFP52744_01071999
    APPS.FFP50510_01011900
    APPS.FFP52724_01071999
    APPS.FFP55355_01011990
    APPS.FFP55058_01011990
    APPS.FFP54406_01011995
    APPS.FFP54413_01011995
    APPS.FFP50577_01011900
    APPS.FFP51867_01011990
    APPS.FFP51411_01011999
    APPS.FFP51887_01011990
    APPS.FFP54398_01011995
    APPS.FFP50576_01011900
    APPS.FFP54411_01011995
    APPS.FFP54409_01011995
    APPS.FFP54520_01011995
    APPS.FFP52481_01010001
    APPS.FFP52683_01071999
    APPS.FFP50527_01011900
    APPS.FFP51843_01011990
    APPS.FFP54474_01011995
    APPS.FFP55062_01011990
    APPS.FFP55361_01011990
    APPS.CSC_ACTION_ASSEMBLER_PVT_W
    FLOWS_010500.ImportExport
    FLOWS_010500.ImportExport
    PUBLIC.WWV_FLOW_LIST_OF_VALUES_DATA
    PUBLIC.WWV_FLOW_LISTS_OF_VALUES$
    PUBLIC.WWV_FLOW_GENERIC
    PUBLIC.WWV_FLOW_FIELD_TEMPLATES
    RE.RE_PROFILER
    APPS.FFP58914_01010001
    APPS.FFP58915_01010001
    APPS.FFP58920_01010001
    APPS.FFP58919_01010001
    APPS.OKL_PROP_TAX_ADJ_PVT
    APPS.OKL_PROCESS_PPD_PVT
    APPS.OKL_STREAM_MIGRATION_PVT
    APPS.FFP53720_01011990
    APPS.FFP51846_01011990
    APPS.FFP51888_01011990
    APPS.FFP55078_01011990
    APPS.FFP59117_01011990
    APPS.FFP59110_01011990
    APPS.FFP59131_01011990
    APPS.FFP51844_01011990
    APPS.FFP56331_01011990
    APPS.FFP54827_01012000
    APPS.FFP55070_01011990
    APPS.FFP56324_01011990
    APPS.FFP50523_01011900
    APPS.FFP57220_01012000
    APPS.FFP55080_01011990
    APPS.FFP59112_01011990
    APPS.FFP50522_01011900
    APPS.FFP55330_01011998
    APPS.FFP51850_01011990
    APPS.FFP50928_01011997
    APPS.FFP56326_01011990
    APPS.FFP51838_01011990
    APPS.FFP56333_01011990
    APPS.FFP50583_01011900
    APPS.FFP56716_01012001
    APPS.FFP51906_01011990
    APPS.FFP54824_01012000
    APPS.FFP59175_01012004
    APPS.FFP55063_01011990
    APPS.FFP59273_01012004
    APPS.FFP57215_01011999
    APPS.FFP54518_01011995
    APPS.FFP54525_01011995
    APPS.FFP55367_01011990
    APPS.FFP55079_01011990
    APPS.FFP51068_01011997
    APPS.FFP59195_01011990
    APPS.FFP56739_01011999
    APPS.FFP59111_01011990
    APPS.FFP51849_01011990
    APPS.FFP56325_01011990
    APPS.FFP54909_01011990
    APPS.FFP55077_01011990
    APPS.FFP56332_01011990
    APPS.FFP54912_01011990
    APPS.FFP59116_01011990
    APPS.FFP59192_01011990
    APPS.FFP59200_01011990
    APPS.FFP59115_01011990
    APPS.FFP56053_01012000
    APPS.FFP59251_01012004
    APPS.FFP54394_01011995
    APPS.FFP56329_01011990
    APPS.FFP55331_01011998
    APPS.FFP56323_01011990
    APPS.FFP56330_01011990
    APPS.FFP56322_01011990
    APPS.FFP55359_01011990
    APPS.FFP58907_01010001
    APPS.FFP53224_01011999
    APPS.FFP1915_01010001
    APPS.FFP55373_01011990
    APPS.FFP55240_26121999
    APPS.FFP56596_01012001
    APPS.FFP57190_01012000
    APPS.FFP54407_01011995
    APPS.FFP56052_01012000
    APPS.FFP55328_01011998
    APPS.FFP54414_01011995
    APPS.FFP55356_01011990
    APPS.FFP54393_01011995
    APPS.FFP54449_01011995
    APPS.FFP56337_01011995
    APPS.FFP54524_01011995
    APPS.FFP1919_01010001
    APPS.FFP56434_01012001
    APPS.FFP58163_01011951
    APPS.FFP56056_01012000
    APPS.FFP54404_01011995
    APPS.FFP54523_01011995
    APPS.FFP58909_01010001
    APPS.FFP58908_01010001
    APPS.FFP1918_01010001
    APPS.FFP58906_01010001
    APPS.FFP58913_01010001
    APPS.FFP58912_01010001
    APPS.FFP54823_01012000
    APPS.FFP51841_01011990
    APPS.FFP50581_01011900
    APPS.FFP55306_01011995
    APPS.FFP50525_01011900
    APPS.FFP59191_01011990
    APPS.FFP59114_01011990
    APPS.FFP51966_01011998
    APPS.FFP56321_01011990
    APPS.FFP57217_01012000
    APPS.FFP56328_01011990
    APPS.FFP50524_01011900
    APPS.FFP57196_01012000
    APPS.FFP55362_01011990
    APPS.FFP59113_01011990
    APPS.FFP57216_01012000
    APPS.FFP59176_01012004
    APPS.FFP55243_26121999
    APPS.FFP56327_01011990
    APPS.FFP57126_01011995
    APPS.FFP55333_01011998
    APPS.FFP54403_01011995
    APPS.FFP55368_01011990
    APPS.FFP54522_01011995
    APPS.FFP54948_01011990
    APPS.FFP57125_01011995
    APPS.FFP54521_01011995
    APPS.FFP1916_01010001
    APPS.FFP1917_01010001
    APPS.FFP58911_01010001
    APPS.FFP58918_01010001
    APPS.FFP58910_01010001
    APPS.FFP60555_01010001
    APPS.FFP60587_01011990
    APPS.FFP60588_01011990
    APPS.FFP60589_01011990
    APPS.FFP60591_01011990
    APPS.FFP60592_01011990
    APPS.FFP60593_01011990
    APPS.FFP60606_01011990
    APPS.FFP60607_01011990
    APPS.FFP60793_01012004
    APPS.FFP60833_01012000
    HERMAN.RDT_1
    APPS.FFP60943_01011990
    APPS.FFP60944_01011990
    APPS.FFP60963_01012000
    APPS.FFP60964_01012000
    APPS.OKL_AM_BAL_WRITEOFF_PVT
    APPS.OKL_LA_SALES_TAX_PVT
    APPS.FFP61156_01010001
    APPS.FFP61138_01010001
    APPS.FFP61170_01010001
    APPS.FFP61152_01010001
    APPS.FFP61124_01010001
    APPS.FFP61277_01011951
    APPS.FFP61440_01011990
    APPS.FFP52982_01010001
    APPS.FFP61511_01012000
    APPS.FFP61532_01011990
    APPS.OKL_MULTIGAAP_ENGINE_PVT
    APPS.XLA_00707_AAD_C_000026_PKG
    APPS.XLA_20065_AAD_C_000030_PKG
    APPS.FSAH_DUPLICATE_PKG
    APPS.FFP61884_01010001
    APPS.FFP61924_01010001
    APPS.FFP61920_01010001
    APPS.FFP61867_01010001
    APPS.FFP61871_01010001
    APPS.FFP61926_01010001
    APPS.FFP61912_01010001
    APPS.FFP61897_01010001
    APPS.FFP61919_01010001
    APPS.XLA_00707_AAD_C_000044_PKG
    APPS.MSD_DEM_OBI_DEMANTRA_MV
    APPS.FFP62356_01012000
    APPS.FFP62357_01012000
    APPS.FFP62358_01012000
    APPS.FFP62359_01012000
    APPS.FFP62376_01012000
    APPS.FFP62377_01012000
    APPS.FFP62378_01012000
    APPS.FFP62379_01012000
    CA.F
    CA.G

    user8019167 wrote:
    many db objects error after apply patch 7303033
    Error db objects
    APPS.ENGECOBO
    APPS.OKL_REVERSE_CONTRACT_PVT
    APPS.OKL_GENERATE_ACCRUALS_PUB
    APPS.OKL_PROCESS_TMPT_SET_PVT_W
    APPS.OKL_TRANS_CONTRACTS_PVT_W
    APPS.OKL_TRANSACTION_PVT_W
    APPS.OKL_CONTRACT_PVT
    APPS.OKL_GENERATE_ACCRUALS_PVT_W
    APPS.OKL_LA_JE_PUB
    APPS.OKL_TRANSACTION_PUB
    APPS.OKL_GENERATE_ACCRUALS_PVT
    APPS.OKL_AM_ASSET_DISPOSE_PVT
    APPS.OKL_AM_ASSET_RETURN_PVT
    APPS.OKL_CS_WF
    APPS.OKL_FUNDING_WF
    APPS.OKL_LA_JE_PVT
    APPS.OKL_INTEREST_CALC_PVT
    APPS.OKL_LOSS_PROV_PVT
    APPS.OKL_MISC_TRANS_PVT
    APPS.OKL_MASS_REBOOK_PVT
    APPS.OKL_AM_LEASE_LOAN_TRMNT_PVT
    APPS.OKL_AM_LOAN_TRMNT_PVT
    APPS.OKL_AM_LEASE_TRMNT_PVT
    APPS.OKL_RELEASE_PVT
    APPS.OKL_AM_QUOTES_WF
    APPS.OKL_REV_LOSS_PROV_PVT
    APPS.OKL_SPLIT_CONTRACT_PVT
    APPS.OKL_LA_STREAM_PVT
    APPS.OKL_SPLIT_ASSET_PVT
    APPS.OKL_TRANS_CONTRACTS_PVT
    APPS.OKL_AM_TERMNT_QUOTE_PVT
    APPS.OKL_CS_TRANSFER_ASSUMPTION_PVT
    APPS.OKL_PROCESS_TMPT_SET_PVT
    APPS.OKL_TRANSACTION_PVT
    APPS.OKL_VARIABLE_INTEREST_PVT
    APPS.OKL_GENERATE_ACCRUALS_PUB_W
    APPS.OKL_TRANS_CONTRACTS_PUB_W
    APPS.OKL_TRX_CONTRACTS_PUB_W
    APPS.OKL_TRANSACTION_PUB_W
    APPS.OKL_PROCESS_TMPT_SET_PUB_W
    APPS.OKL_CS_PRINCIPAL_PAYDOWN_PVT
    APPS.EAM_PROCESS_WO_PVT
    APPS.OKL_AM_CNTRCT_LN_TRMNT_PVT
    APPS.OKL_SERVICE_INTEGRATION_PVT
    APPS.OKL_PERIOD_SWEEP_PVT
    APPS.OKL_SEC_AGREEMENT_PVT
    APPS.IGS_FI_CREDIT_PVT
    APPS.FFP55366_01011990
    APPS.FFP51404_01011997
    APPS.FFP51848_01011990
    APPS.FFP55358_01011990
    APPS.FFP55370_01011990
    APPS.FFP50529_01011900
    APPS.FFP50775_01011900
    APPS.FFP52681_01071999
    APPS.FFP50533_01011900
    APPS.FFP55069_01011990
    APPS.FFP50531_01011900
    APPS.FFP55060_01011990
    APPS.FFP51840_01011990
    APPS.FFP55372_01011990
    APPS.FFP50773_01011900
    APPS.FFP55067_01011990
    APPS.FFP53497_01012001
    APPS.FFP51406_01011997
    APPS.FFP52621_01011996
    APPS.FFP52090_01011990
    APPS.FFP55065_01011990
    APPS.FFP53540_01012001
    APPS.FFP51837_01011990
    APPS.FFP55364_01011990
    APPS.FFP52115_01011990
    APPS.FFP50506_01011900
    APPS.FFP53477_01012001
    APPS.FFP55375_01011990
    APPS.FFP50508_01011900
    APPS.FFP50512_01011900
    APPS.FFP52744_01071999
    APPS.FFP50510_01011900
    APPS.FFP52724_01071999
    APPS.FFP55355_01011990
    APPS.FFP55058_01011990
    APPS.FFP54406_01011995
    APPS.FFP54413_01011995
    APPS.FFP50577_01011900
    APPS.FFP51867_01011990
    APPS.FFP51411_01011999
    APPS.FFP51887_01011990
    APPS.FFP54398_01011995
    APPS.FFP50576_01011900
    APPS.FFP54411_01011995
    APPS.FFP54409_01011995
    APPS.FFP54520_01011995
    APPS.FFP52481_01010001
    APPS.FFP52683_01071999
    APPS.FFP50527_01011900
    APPS.FFP51843_01011990
    APPS.FFP54474_01011995
    APPS.FFP55062_01011990
    APPS.FFP55361_01011990
    APPS.CSC_ACTION_ASSEMBLER_PVT_W
    FLOWS_010500.ImportExport
    FLOWS_010500.ImportExport
    PUBLIC.WWV_FLOW_LIST_OF_VALUES_DATA
    PUBLIC.WWV_FLOW_LISTS_OF_VALUES$
    PUBLIC.WWV_FLOW_GENERIC
    PUBLIC.WWV_FLOW_FIELD_TEMPLATES
    RE.RE_PROFILER
    APPS.FFP58914_01010001
    APPS.FFP58915_01010001
    APPS.FFP58920_01010001
    APPS.FFP58919_01010001
    APPS.OKL_PROP_TAX_ADJ_PVT
    APPS.OKL_PROCESS_PPD_PVT
    APPS.OKL_STREAM_MIGRATION_PVT
    APPS.FFP53720_01011990
    APPS.FFP51846_01011990
    APPS.FFP51888_01011990
    APPS.FFP55078_01011990
    APPS.FFP59117_01011990
    APPS.FFP59110_01011990
    APPS.FFP59131_01011990
    APPS.FFP51844_01011990
    APPS.FFP56331_01011990
    APPS.FFP54827_01012000
    APPS.FFP55070_01011990
    APPS.FFP56324_01011990
    APPS.FFP50523_01011900
    APPS.FFP57220_01012000
    APPS.FFP55080_01011990
    APPS.FFP59112_01011990
    APPS.FFP50522_01011900
    APPS.FFP55330_01011998
    APPS.FFP51850_01011990
    APPS.FFP50928_01011997
    APPS.FFP56326_01011990
    APPS.FFP51838_01011990
    APPS.FFP56333_01011990
    APPS.FFP50583_01011900
    APPS.FFP56716_01012001
    APPS.FFP51906_01011990
    APPS.FFP54824_01012000
    APPS.FFP59175_01012004
    APPS.FFP55063_01011990
    APPS.FFP59273_01012004
    APPS.FFP57215_01011999
    APPS.FFP54518_01011995
    APPS.FFP54525_01011995
    APPS.FFP55367_01011990
    APPS.FFP55079_01011990
    APPS.FFP51068_01011997
    APPS.FFP59195_01011990
    APPS.FFP56739_01011999
    APPS.FFP59111_01011990
    APPS.FFP51849_01011990
    APPS.FFP56325_01011990
    APPS.FFP54909_01011990
    APPS.FFP55077_01011990
    APPS.FFP56332_01011990
    APPS.FFP54912_01011990
    APPS.FFP59116_01011990
    APPS.FFP59192_01011990
    APPS.FFP59200_01011990
    APPS.FFP59115_01011990
    APPS.FFP56053_01012000
    APPS.FFP59251_01012004
    APPS.FFP54394_01011995
    APPS.FFP56329_01011990
    APPS.FFP55331_01011998
    APPS.FFP56323_01011990
    APPS.FFP56330_01011990
    APPS.FFP56322_01011990
    APPS.FFP55359_01011990
    APPS.FFP58907_01010001
    APPS.FFP53224_01011999
    APPS.FFP1915_01010001
    APPS.FFP55373_01011990
    APPS.FFP55240_26121999
    APPS.FFP56596_01012001
    APPS.FFP57190_01012000
    APPS.FFP54407_01011995
    APPS.FFP56052_01012000
    APPS.FFP55328_01011998
    APPS.FFP54414_01011995
    APPS.FFP55356_01011990
    APPS.FFP54393_01011995
    APPS.FFP54449_01011995
    APPS.FFP56337_01011995
    APPS.FFP54524_01011995
    APPS.FFP1919_01010001
    APPS.FFP56434_01012001
    APPS.FFP58163_01011951
    APPS.FFP56056_01012000
    APPS.FFP54404_01011995
    APPS.FFP54523_01011995
    APPS.FFP58909_01010001
    APPS.FFP58908_01010001
    APPS.FFP1918_01010001
    APPS.FFP58906_01010001
    APPS.FFP58913_01010001
    APPS.FFP58912_01010001
    APPS.FFP54823_01012000
    APPS.FFP51841_01011990
    APPS.FFP50581_01011900
    APPS.FFP55306_01011995
    APPS.FFP50525_01011900
    APPS.FFP59191_01011990
    APPS.FFP59114_01011990
    APPS.FFP51966_01011998
    APPS.FFP56321_01011990
    APPS.FFP57217_01012000
    APPS.FFP56328_01011990
    APPS.FFP50524_01011900
    APPS.FFP57196_01012000
    APPS.FFP55362_01011990
    APPS.FFP59113_01011990
    APPS.FFP57216_01012000
    APPS.FFP59176_01012004
    APPS.FFP55243_26121999
    APPS.FFP56327_01011990
    APPS.FFP57126_01011995
    APPS.FFP55333_01011998
    APPS.FFP54403_01011995
    APPS.FFP55368_01011990
    APPS.FFP54522_01011995
    APPS.FFP54948_01011990
    APPS.FFP57125_01011995
    APPS.FFP54521_01011995
    APPS.FFP1916_01010001
    APPS.FFP1917_01010001
    APPS.FFP58911_01010001
    APPS.FFP58918_01010001
    APPS.FFP58910_01010001
    APPS.FFP60555_01010001
    APPS.FFP60587_01011990
    APPS.FFP60588_01011990
    APPS.FFP60589_01011990
    APPS.FFP60591_01011990
    APPS.FFP60592_01011990
    APPS.FFP60593_01011990
    APPS.FFP60606_01011990
    APPS.FFP60607_01011990
    APPS.FFP60793_01012004
    APPS.FFP60833_01012000
    HERMAN.RDT_1
    APPS.FFP60943_01011990
    APPS.FFP60944_01011990
    APPS.FFP60963_01012000
    APPS.FFP60964_01012000
    APPS.OKL_AM_BAL_WRITEOFF_PVT
    APPS.OKL_LA_SALES_TAX_PVT
    APPS.FFP61156_01010001
    APPS.FFP61138_01010001
    APPS.FFP61170_01010001
    APPS.FFP61152_01010001
    APPS.FFP61124_01010001
    APPS.FFP61277_01011951
    APPS.FFP61440_01011990
    APPS.FFP52982_01010001
    APPS.FFP61511_01012000
    APPS.FFP61532_01011990
    APPS.OKL_MULTIGAAP_ENGINE_PVT
    APPS.XLA_00707_AAD_C_000026_PKG
    APPS.XLA_20065_AAD_C_000030_PKG
    APPS.FSAH_DUPLICATE_PKG
    APPS.FFP61884_01010001
    APPS.FFP61924_01010001
    APPS.FFP61920_01010001
    APPS.FFP61867_01010001
    APPS.FFP61871_01010001
    APPS.FFP61926_01010001
    APPS.FFP61912_01010001
    APPS.FFP61897_01010001
    APPS.FFP61919_01010001
    APPS.XLA_00707_AAD_C_000044_PKG
    APPS.MSD_DEM_OBI_DEMANTRA_MV
    APPS.FFP62356_01012000
    APPS.FFP62357_01012000
    APPS.FFP62358_01012000
    APPS.FFP62359_01012000
    APPS.FFP62376_01012000
    APPS.FFP62377_01012000
    APPS.FFP62378_01012000
    APPS.FFP62379_01012000
    CA.F
    CA.GThe FFP packages are fastformula packages that were invalidated after running the HRGLOBAL driver and will compile normally with adadmin
    as for the remaining formulas they will not compile with adadmin for some reason, and you have to open each package and re-compile the packages it refferences even if they are valid.
    reffer to Oracle document [ID 1065445.1] ENGFDECN ECO Form When Try to Tab out of Field ECO Number, get FRM-40735: WHEN-VALIDATE_ITEM trigger raised unhandled exception ORA-04063
    despite that the solution in the doc id above talks only about ENGFDECN but it applies to all other packages. I've faced the same issue and now I have ZERO invalid packages, it will take sometime but it's worth a while.
    Regards,
    Mohammed B. Tammous

  • PHOTOSHOP CS4, windows 7, error 148:3Cannot uninstall or reinstall from disk?

    PHOTOSHOP CS4, windows 7, error 148:3Cannot uninstall or reinstall from disk?

    PHOTOSHOP CS4, windows 7, error 148:3Cannot uninstall or reinstall from disk?

  • Auto nesting objects

    Is there some way (script / plugin?) to auto nest objects on page?
    In other words, to place all objects as tight as possible to eachother.

    @Meate
    Our rip software (Wasatch Softrip) uses rectangles too. In most cases this is good enough (and allow easy cutting), but some cases where cutting isn't needed, tighter fitting would be helpful if available. See simple example in attachment.
    But like i said, i was just checking if some script existed already. If not, it's not worth writing one for the rare occasions it would be helpful.

  • Cannot insert object error using Power View in Excel 2013

    I created a short table in Excel 2013, positioned the cursor in the table and clicked Inset/Power View Report. I get a status window saying Excel is opening a Power View sheet but then I get a Power View error: Cannot Insert Object. I am able to insert new
    tabs in the workbook. When I try the insert again, I just get the Power View error. I looked at other threads with similar issues and did the following:
    Made the Formula bar visible - no change
    Tried to repair Office 2013 but that option is not available when I right click on the program in the Control Panel
    De-installed Silverlight - Tried to insert Power View Report. A Power View tab was created with the Power View picture and Power View ribbon. Got the message to install Silverlight and Reload. Installed Silverlight hit Reload and the Power View tab didn't
    change. Hit Power View Report and got the Cannot Insert Object error message again.
    Any help is appreciated.

    Hi,
    Did you use PowerView first time? I notice you had found a similar thread and tested the solutions.
    PowerView is an add-in in Excel2013, We must make sure that you check some option in the trust center and Add-in center.
    http://blogs.office.com/b/microsoft-excel/archive/2012/10/04/intro-to-power-view-for-excel-2013.aspx
    Location1: Excel Options>Add-in>Solver Add-in enable
    Location2: Excel Options> Trust Center> Add-in
    Then you said that you couldn’t repair the Excel 2013, please refer to the following link:
    http://office.microsoft.com/en-gb/outlook-help/repair-office-programs-HA010357402.aspx
    At last, we may test it in clean boot, please refer to the following link:
    http://support.microsoft.com/kb/929135
    Regards,
    George Zhao
    TechNet Community Support

  • DG Observer triggering SIGSEGV Address not mapped to object errors in alert log

    Hi,
    I've got a Data Guard configuration using two 11.2.0.3 single instance databases.  The configuration has been configured for automatic failover and I have an observer running on a separate box.
    This fast-start failover configuration has been in place for about a month and in the last week, numerous SEGSEGV (address not mapped to object) errors are reported in the alert log.  This is happening quite frequently (every 4/5 minutes or so).
    The corresponding trace files show the process triggering the error coming from the observer.
    Has anyone experienced this problem?  I'm at my wits end trying to figure out how to fix the configuration to eliminate this error.
    I must also note that even though this error is occurring a lot, it doesn't seem to be affecting any of the database functionality.
    Help?
    Thanks in advance.
    Beth

    Hi..   The following is the alert log message, the traced file generated, and the current values of the data guard configuration.  In addition, as part of my research, I attempted to apply patch 12615660 which did not take care of the issue.  I also set the inbound_connection_timeout parameter to 0 and that didn't help either.  I'm still researching but any pointer in the right direction is very much appreciated.
    Error in Alert Log
    Thu Apr 09 10:28:59 2015
    Exception [type: SIGSEGV, Address not mapped to object] [ADDR:0x9] [PC:0x85CE503, nstimexp()+71] [flags: 0x0, count: 1]
    Errors in file /u01/app/oracle/diag/rdbms/<db_unq_name>/<SID>/trace/<SID>_ora_29902.trc  (incident=69298):
    ORA-07445: exception encountered: core dump [nstimexp()+71] [SIGSEGV] [ADDR:0x9] [PC:0x85CE503] [Address not mapped to object] []
    Use ADRCI or Support Workbench to package the incident.
    See Note 411.1 at My Oracle Support for error and packaging details.
    Thu Apr 09 10:29:02 2015
    Sweep [inc][69298]: completed
    Trace file:
    Trace file /u01/app/oracle/diag/rdbms/<db_unq_name>/<SID>/trace/<SID>_ora_29902.trc
    Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
    With the Partitioning and Oracle Label Security options
    ORACLE_HOME = /u01/app/oracle/product/11.2.0.3/dbhome_1
    System name:    Linux
    Node name:      <host name>
    Release:        2.6.32-431.17.1.el6.x86_64
    Version:        #1 SMP Wed May 7 14:14:17 CDT 2014
    Machine:        x86_64
    Instance name: <SID>
    Redo thread mounted by this instance: 1
    Oracle process number: 19
    Unix process pid: 29902, image: oracle@<host name>
    *** 2015-04-09 10:28:59.966
    *** SESSION ID:(416.127) 2015-04-09 10:28:59.966
    *** CLIENT ID:() 2015-04-09 10:28:59.966
    *** SERVICE NAME:(<db_unq_name>) 2015-04-09 10:28:59.966
    *** MODULE NAME:(dgmgrl@<observer host> (TNS V1-V3)) 2015-04-09 10:28:59.966
    *** ACTION NAME:() 2015-04-09 10:28:59.966
    Exception [type: SIGSEGV, Address not mapped to object] [ADDR:0x9] [PC:0x85CE503, nstimexp()+71] [flags: 0x0, count: 1]
    DDE: Problem Key 'ORA 7445 [nstimexp()+71]' was flood controlled (0x6) (incident: 69298)
    ORA-07445: exception encountered: core dump [nstimexp()+71] [SIGSEGV] [ADDR:0x9] [PC:0x85CE503] [Address not mapped to object] []
    ssexhd: crashing the process...
    Shadow_Core_Dump = PARTIAL
    ksdbgcra: writing core file to directory '/u01/app/oracle/diag/rdbms/<db_unq_name>/<SID>/cdump'
    Data Guard Configuration
    DGMGRL> show configuration verbose;
    Configuration - dg_config
      Protection Mode: MaxPerformance
      Databases:
        dbprim - Primary database
        dbstby - (*) Physical standby database
      (*) Fast-Start Failover target
      Properties:
        FastStartFailoverThreshold      = '30'
        OperationTimeout                = '30'
        FastStartFailoverLagLimit       = '180'
        CommunicationTimeout            = '180'
        FastStartFailoverAutoReinstate  = 'TRUE'
        FastStartFailoverPmyShutdown    = 'TRUE'
        BystandersFollowRoleChange      = 'ALL'
    Fast-Start Failover: ENABLED
      Threshold:        30 seconds
      Target:           dbstby
      Observer:         observer_host
      Lag Limit:        180 seconds
      Shutdown Primary: TRUE
      Auto-reinstate:   TRUE
    Configuration Status:
    SUCCESS
    DGMGRL> show database verbose dbprim
    Database - dbprim
      Role:            PRIMARY
      Intended State:  TRANSPORT-ON
      Instance(s):
        DG_CONFIG
      Properties:
        DGConnectIdentifier             = 'dbprim'
        ObserverConnectIdentifier       = ''
        LogXptMode                      = 'ASYNC'
        DelayMins                       = '0'
        Binding                         = 'optional'
        MaxFailure                      = '0'
        MaxConnections                  = '1'
        ReopenSecs                      = '300'
        NetTimeout                      = '30'
        RedoCompression                 = 'DISABLE'
        LogShipping                     = 'ON'
        PreferredApplyInstance          = ''
        ApplyInstanceTimeout            = '0'
        ApplyParallel                   = 'AUTO'
        StandbyFileManagement           = 'MANUAL'
        ArchiveLagTarget                = '0'
        LogArchiveMaxProcesses          = '4'
        LogArchiveMinSucceedDest        = '1'
        DbFileNameConvert               = ''
        LogFileNameConvert              = ''
        FastStartFailoverTarget         = 'dbstby'
        InconsistentProperties          = '(monitor)'
        InconsistentLogXptProps         = '(monitor)'
        SendQEntries                    = '(monitor)'
        LogXptStatus                    = '(monitor)'
        RecvQEntries                    = '(monitor)'
        SidName                         = ‘<sid>’
        StaticConnectIdentifier         = '(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=<db host name>)(PORT=1521))(CONNECT_DATA=(SERVICE_NAME=<service_name>)(INSTANCE_NAME=<sid>)(SERVER=DEDICATED)))'
        StandbyArchiveLocation          = 'USE_DB_RECOVERY_FILE_DEST'
        AlternateLocation               = ''
        LogArchiveTrace                 = '0'
        LogArchiveFormat                = '%t_%s_%r.dbf'
        TopWaitEvents                   = '(monitor)'
    Database Status:
    SUCCESS
    DGMGRL> show database verbose dbstby
    Database - dbstby
      Role:            PHYSICAL STANDBY
      Intended State:  APPLY-ON
      Transport Lag:   0 seconds
      Apply Lag:       0 seconds
      Real Time Query: ON
      Instance(s):
        DG_CONFIG
      Properties:
        DGConnectIdentifier             = 'dbstby'
        ObserverConnectIdentifier       = ''
        LogXptMode                      = 'ASYNC'
        DelayMins                       = '0'
        Binding                         = 'optional'
        MaxFailure                      = '0'
        MaxConnections                  = '1'
        ReopenSecs                      = '300'
        NetTimeout                      = '30'
        RedoCompression                 = 'DISABLE'
        LogShipping                     = 'ON'
        PreferredApplyInstance          = ''
        ApplyInstanceTimeout            = '0'
        ApplyParallel                   = 'AUTO'
        StandbyFileManagement           = 'AUTO'
        ArchiveLagTarget                = '0'
        LogArchiveMaxProcesses          = '4'
        LogArchiveMinSucceedDest        = '1'
        DbFileNameConvert               = ''
        LogFileNameConvert              = ''
        FastStartFailoverTarget         = 'dbprim'
        InconsistentProperties          = '(monitor)'
        InconsistentLogXptProps         = '(monitor)'
        SendQEntries                    = '(monitor)'
        LogXptStatus                    = '(monitor)'
        RecvQEntries                    = '(monitor)'
        SidName                         = ‘<sid>’
        StaticConnectIdentifier         = '(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=<db host name>)(PORT=1521))(CONNECT_DATA=(SERVICE_NAME=<service_name>)(INSTANCE_NAME=<sid>)(SERVER=DEDICATED)))'
        StandbyArchiveLocation          = 'USE_DB_RECOVERY_FILE_DEST'
        AlternateLocation               = ''
        LogArchiveTrace                 = '0'
        LogArchiveFormat                = '%t_%s_%r.dbf'
        TopWaitEvents                   = '(monitor)'
    Database Status:
    SUCCESS

  • How to send nested object collection to PL/SQL Procedure as an Input param

    How to send nested object collection to PL/SQL Procedure as an Input parameter.
    The scenario is there is a parent mapping object containing a collection(java.sql.Array) of child objects.
    I need to send the parent object collection to PL/SQL procedure as a input parameter.
    public class parent{
    String attr1;
    String attr2;
    Child[] attr3;
    public class Child{
    String attr1;
    SubChild[] attr2;
    public class SubChild{
    String attr1;
    Urgent!!!
    Edited by: javiost on Apr 30, 2008 2:09 AM

    javiost wrote:
    How to send nested object collection to PL/SQL Procedure as an Input parameter.There are a few ways to do this, all of which likely depend on the particular database you're using.
    Urgent!!!Not to me...

  • Expected a dict object error message

    When attempting to open a PDF file in Reader sometimes get the "Expected a dict object" error message.

    Did you ever find the answer to this problem??  I am having the same problem with
    my Acrobat 9 Pro document.  When trying to insert a page to the document (300 pages long) I get the error message "expected a dict object
    Would appreciate any tips you can give me.

Maybe you are looking for