Unable get the bean in Controller of the item created through OAF Personalization

Hello Folks,
I have a requirement to create an Static Styled Text item through OAF Personalization and that item should be shown if it meets some particular condition.
So I tried to extend the controller of the page and tried to get the reference of the bean but I am not getting the bean in the controller class.
I have seen the main page and some external regions are there in the page.
Main Page has the controller attached in its page layout region and other regions don't have any CO attached.
Whenever I create the item it is under that particular region.
When I try to access some seeded item created under that region and I am able to get the bean in the controller but not the one created by me.
Here is the scenario:
Suppose Page Name is TestPG, it includes some external region like XyzPG, whenever I create the item it gets created under XyzRN with name XyzRN.item1 but whatever seeded items are there those are there with name item2,item3 etc. For item2, item3 I am able to get the bean but not not for XyzRN.item1 in the controller.
Could you please tell me how to get the bean for XyzRN.item1 in the main page controller.
Please reply soon. Its urgent.
Thanks,
Raja Dutta

Hi Shobit,
I have tried the workaround given by you at the 4th reply.
a) In your base page controller, try to get bean instance of child embeded region top ui element.
b) Now use this bean instance to find child region instance from your base page CO
But it didn't work for me :-( :'(
Here is the information about the page and region:
The page includes the region like this:
<page xmlns="http://xmlns.oracle.com/jrad" xmlns:oa="http://xmlns.oracle.com/oa" xmlns:ui="http://xmlns.oracle.com/uix/ui" xmlns:jrad="http://xmlns.oracle.com/jrad" version="10.1.3_1086" xml:lang="en-US" file-version="$Header: AccountInfoPG.xml 120.8.12010000.2 2009/06/01 12:05:24 vnetan ship $" xmlns:user="http://xmlns.oracle.com/jrad/user">
<oa:pageLayout id="PageLayoutRN" windowTitle="Account Information" amDefName="oracle.apps.ce.bankaccount.server.BankAccountAM" controllerClass="oracle.apps.ce.bankaccount.webui.AccountInfoCO" warnAboutChanges="true">
<oa:defaultSingleColumn id="AccountInfoRN" extends="/oracle/apps/ce/bankaccount/webui/AccountInfoRN"/>
I have check the /oracle/apps/ce/bankaccount/webui/AccountInfoRN through Functional Administration, it doesn't have any controller attached.
I have tried like this:
1. I have created one static styled text item through the main page personalization:
Static Styled Text: IBAN Message which has id XxIBANMessage
2. Another static styled text item through the region (included in the main page )personalization:
Static Styled Text: (AccountInfoRN.XxIBANMessage1) [ When viewed at page level ]
Static Styled Text: (XxIBANMessage1) [ When viewed at region level ]
Controller Code is:
      try{
      // Get bean of Static Styled Text item  using    findChildRecursive
      OAStaticStyledTextBean ibanMessageBean2 = (OAStaticStyledTextBean)webBean.findChildRecursive("XxIBANMessage");
      if(ibanMessageBean2!=null && !ibanMessageBean2.equals(""))
        pageContext.writeDiagnostics(this,"XXAccountInfoCO:processRequest:found 1",2);
        ibanMessageBean2.setRendered(true);
      else
        pageContext.writeDiagnostics(this,"XXAccountInfoCO:processRequest:not found at page level 1",2);
      OAStaticStyledTextBean ibanMessageBean = (OAStaticStyledTextBean)webBean.findChildRecursive("AccountInfoRN.XxIBANMessage1");
      if(ibanMessageBean!=null && !ibanMessageBean.equals(""))
        pageContext.writeDiagnostics(this,"XXAccountInfoCO:processRequest:found 2",2);
        ibanMessageBean.setRendered(true);
      else
        pageContext.writeDiagnostics(this,"XXAccountInfoCO:processRequest:Not found with alias 2",2);
      OADefaultSingleColumnBean bean = (OADefaultSingleColumnBean)webBean.findChildRecursive("AccountInfoRN");
      pageContext.writeDiagnostics(this,"XXAccountInfoCO:processRequest:bean="+bean,2);
      OAStaticStyledTextBean ibanMessageBean1 = (OAStaticStyledTextBean)bean.findChildRecursive("XxIBANMessage1");
      if(ibanMessageBean1!=null && !ibanMessageBean1.equals(""))
        pageContext.writeDiagnostics(this,"XXAccountInfoCO:processRequest:found 3",2);
        ibanMessageBean1.setRendered(true);
      else
        pageContext.writeDiagnostics(this,"XXAccountInfoCO:processRequest:Not found through region 3",2);
      /*===========with findIndexedChildRecursive ===========*/
        OAStaticStyledTextBean ibanMessageBean3 = (OAStaticStyledTextBean)webBean.findIndexedChildRecursive("XxIBANMessage");
        if(ibanMessageBean3!=null && !ibanMessageBean3.equals(""))
          pageContext.writeDiagnostics(this,"XXAccountInfoCO:processRequest:findIndexedChildRecursive:found 1",2);
          ibanMessageBean3.setRendered(true);
        else
          pageContext.writeDiagnostics(this,"XXAccountInfoCO:processRequest:findIndexedChildRecursive:not found at page level 1",2);
        OAStaticStyledTextBean ibanMessageBean4 = (OAStaticStyledTextBean)webBean.findIndexedChildRecursive("AccountInfoRN.XxIBANMessage1");
        if(ibanMessageBean4!=null && !ibanMessageBean4.equals(""))
          pageContext.writeDiagnostics(this,"XXAccountInfoCO:processRequest:findIndexedChildRecursive:found 2",2);
          ibanMessageBean4.setRendered(true);
        else
          pageContext.writeDiagnostics(this,"XXAccountInfoCO:processRequest:findIndexedChildRecursive:Not found with alias 2",2);
        OADefaultSingleColumnBean bean1 = (OADefaultSingleColumnBean)webBean.findIndexedChildRecursive("AccountInfoRN");
        pageContext.writeDiagnostics(this,"XXAccountInfoCO:processRequest:bean1="+bean1,2);
        OAStaticStyledTextBean ibanMessageBean5 = (OAStaticStyledTextBean)bean1.findIndexedChildRecursive("XxIBANMessage1");
        if(ibanMessageBean5!=null && !ibanMessageBean5.equals(""))
          pageContext.writeDiagnostics(this,"XXAccountInfoCO:processRequest:findIndexedChildRecursive:found 3",2);
          ibanMessageBean5.setRendered(true);
        else
          pageContext.writeDiagnostics(this,"XXAccountInfoCO:processRequest:findIndexedChildRecursive:Not found through region 3",2);
      catch(Exception e)
        pageContext.writeDiagnostics(this,"XXAccountInfoCO:processRequest:catch:Erro:"+e.getMessage(),2);
O/p through diagnostics:
XXAccountInfoCO:processRequest:not found at page level 1
XXAccountInfoCO:processRequest:Not found with alias 2
XXAccountInfoCO:processRequest:bean=OADefaultSingleColumnBean, localName='header'
XXAccountInfoCO:processRequest:Not found through region 3
XXAccountInfoCO:processRequest:findIndexedChildRecursive:not found at page level 1
XXAccountInfoCO:processRequest:findIndexedChildRecursive:Not found with alias 2
XXAccountInfoCO:processRequest:bean1=OADefaultSingleColumnBean, localName='header'
XXAccountInfoCO:processRequest:findIndexedChildRecursive:Not found through region 3
Please advise. its urgent. meanwhile I will try the workaround given at 3rd reply.
Thanks
Raja Dutta

Similar Messages

  • Is there any way to avoid restoring the beans that are in the request scop?

    Hi!
    The problem is that I don't want to have my beans reloaded by the Restore View lifecycle's fase. I CAN'T put them into the session and if I don't do so, every time I click in a commandLink or commandButton for example, the first thing the JSF does is to reconstruct the bean used in the previous view before following to the next view.
    Some properties of the beans are populated through data base access. The problem is that when I just want to go from a page to another I don't want to have this kind of bean reconstructed.
    Any ideas? I'm I doing anything wrong?
    Thank you all!

    In a valuechangelistener you can do this. I've tried it and it works well
         PhaseId phaseId = event.getPhaseId();
              //incorrect phase
              if (phaseId.equals(PhaseId.ANY_PHASE))
              event.setPhaseId(PhaseId.UPDATE_MODEL_VALUES);
              event.queue();
              // correct phase
              else if (PhaseId.UPDATE_MODEL_VALUES.equals(event.getPhaseId()))
    load backing bean here

  • How to save the bean area content to the database

    DB version:10g
    forms version:10g
    Hi Guys,
    I have used text editor PJC/java bean in my screen where i have attched it to "bean area" field.Iam able to do all the changes to the to the text entered in this "bean area" but when i save this in the database it says no changes to save.in my table the column type is Varchar2.
    any ideas of how to save the changes of a bean area to the database???
    regards

    @François Degrelle -Ya frank i have already checked Get_Custom_Property() but the problem is this is returning the HTML code like
    html>
    <head>
    </head>
    <body>
    This is a <b>styled</b> (<i><u>HTML</u></i>) text<br><b><font color="#0066FF" face="Arial">
    displayed</font></b> and <b><font color="#008000" face="Arial">edited</font></b><br>
    in an <b><font color="#FF0000" face="Arial">Oracle Forms</font></b> application
    </body>
    </html>
    but want the data to be in the formatted so that i can store the data in the column and retrieve formatted text into the text field so that user can see only the formatted text that is lets say
    shdjshdsjdsdsdlas -original text
    shdjshdsjdsdsdlas -formatted text
    now i want to strore shdjshdsjdsdsdlas this text into teh database so that when i retrieve shdjshdsjdsdsdlas this data should be shown.
    regards
    Edited by: user123 on May 27, 2011 4:22 PM

  • Portal devt - getting the bean value

    hi,
    i am trying to send my bean value as url but some how i am not able to get that value.  can somebody help me plese.
    my statement:
         srcUrl="http://multirater.standardbank.co.za/reportsdev/showlist.asp?per=<%=bwReportsBean.getGuid()%>" 
    here I wanted to use      bwReportsBean.getGuid() as value.  but it is giving error if i use per=.  your help will be highly appreicated.
    my full statement is:
    <hbj:isolatedHtmlContainer
              id="isohtmlCont" 
              width="100%" 
              height="600"            
              scrolling="AUTO" 
              bordered="false"          srcUrl="http://multirater.standardbank.co.za/reportsdev/showlist.asp? per=<%=bwReportsBean.getGuid()%>"            />     
    thanks a lot.

    Hello kata,
    Why dont you declare a variable and then pouplate the bean's value into the variable and then use the varialbe in the url.
    Pradeep

  • How do I configure the 2504 Wireless controller with AP?

    I recently purchase the 2504 wireless controller and the 1602i AP. I was able to do the basic setup of the controller and can now access the web interface, but the AP is not being detected and I am unable to add it.

    First of all: 1602 AP need minimum software version on WLC: 7.4.100.0
    paste this info:
    sh sysinfo from WLC
    sh version from AP.
    Did you create a DHCP pool for APs to get IP ?
    Try to to be keep AP and WLC on same subnet.
    regards

  • Version number for GPO's not in sync with the version number for GPO's on the Baseline domain controller

    Hi
    I accidentally removed one of our domain controller's hyper-v image (DC-02) from the hyper-v manager and to bring it back online launched a new virtual machine using the same virtual hard drive. This brought back the domain controller machine and I set the
    original IP address to the same assuming that everything would just working fine.
    Sadly, that wasn't the case as when I tried to open the group policy manager on that machine I started getting "Access is denied" error. I was then presented with an option to open the group policy manager with the first available DC which I did
    and was able to open it with showing the same machine as the baseline domain controller under the status tab (DC-01 is actually the baseline DC). I then clicked Detect now and noticed it was showing 1 DC under replication in progress with problems in GPO version.
    I then did the same thing on the primary DC (DC-01) and even there it was showing this only (images attached).
    So I started exploring over the internet going through various articles but couldn't find a solution which I could apply without worrying about corrupting something somewhere. I also went to the SYSVOL folder on both the DC's to check the version number
    in GPT.ini files which are mentioned below:
    \\CC-DC01\sysvol\cloudchowk.lab\Policies\{6AC1786C-016F-11D2-945F-00C04fB984F9}
    [General]
    Version=3
    \\CC-DC01\sysvol\cloudchowk.lab\Policies\{31B2F340-016D-11D2-945F-00C04FB984F9}
    [General]
    Version=5439513
    \\cc-dc02\SYSVOL\cloudchowk.lab\Policies\{6AC1786C-016F-11D2-945F-00C04fB984F9}
    [General]
    Version=3
    \\cc-dc02\SYSVOL\cloudchowk.lab\Policies\{31B2F340-016D-11D2-945F-00C04FB984F9}
    [General]
    Version=5308439
    Could anyone please help me sort this out? I am no system admin and whatever knowledge I have of setting up DC, AD etc is from following one article or the other over the internet.
    Regards
    Sajat Jain

    Hi
    Apologies for responding late. I followed through all the points mentioned by Frank and even did a non-authoritative restore synchronization but still no luck.
    I am attaching the output from the dcdiag /q and the from the event viewer after doing to non-authoritative restore synchronization.
    DCDIAG /Q
    There are warning or error events within the last 24 hours after the
    SYSVOL has been shared. Failing SYSVOL replication problems may cause
    Group Policy problems.
    ......................... CC-DC03 failed test DFSREvent
    Unable to connect to the NETLOGON share! (\\CC-DC03\netlogon)
    [CC-DC03] An net use or LsaPolicy operation failed with error 67,
    The network name cannot be found..
    ......................... CC-DC03 failed test NetLogons
    An error event occurred. EventID: 0x0000164A
    Time Generated: 01/18/2015 17:52:17
    Event String:
    The Netlogon service could not create server share C:\Windows\SYSVOL\sysvol\cloudchowk.lab\SCRIPTS. The following error occurred:
    An error event occurred. EventID: 0x0000164A
    Time Generated: 01/18/2015 17:54:12
    Event String:
    The Netlogon service could not create server share C:\Windows\SYSVOL\sysvol\cloudchowk.lab\SCRIPTS. The following error occurred:
    An error event occurred. EventID: 0x00000422
    Time Generated: 01/18/2015 17:54:41
    Event String:
    The processing of Group Policy failed. Windows attempted to read the file \\cloudchowk.lab\sysvol\cloudchowk.lab\Policies\{31B2F340-016D-11D2-945F-00C04FB984F9}\gpt.ini from a domain controller and was not successful. Group Policy settings may not be applied until this event is resolved. This issue may be transient and could be caused by one or more of the following:
    An error event occurred. EventID: 0x00000422
    Time Generated: 01/18/2015 17:55:42
    Event String:
    The processing of Group Policy failed. Windows attempted to read the file \\cloudchowk.lab\sysvol\cloudchowk.lab\Policies\{31B2F340-016D-11D2-945F-00C04FB984F9}\gpt.ini from a domain controller and was not successful. Group Policy settings may not be applied until this event is resolved. This issue may be transient and could be caused by one or more of the following:
    An error event occurred. EventID: 0x00000422
    Time Generated: 01/18/2015 17:59:41
    Event String:
    The processing of Group Policy failed. Windows attempted to read the file \\cloudchowk.lab\sysvol\cloudchowk.lab\Policies\{31B2F340-016D-11D2-945F-00C04FB984F9}\gpt.ini from a domain controller and was not successful. Group Policy settings may not be applied until this event is resolved. This issue may be transient and could be caused by one or more of the following:
    An error event occurred. EventID: 0x00000422
    Time Generated: 01/18/2015 18:04:42
    Event String:
    The processing of Group Policy failed. Windows attempted to read the file \\cloudchowk.lab\sysvol\cloudchowk.lab\Policies\{31B2F340-016D-11D2-945F-00C04FB984F9}\gpt.ini from a domain controller and was not successful. Group Policy settings may not be applied until this event is resolved. This issue may be transient and could be caused by one or more of the following:
    An error event occurred. EventID: 0x0000164A
    Time Generated: 01/18/2015 18:05:10
    Event String:
    The Netlogon service could not create server share C:\Windows\SYSVOL\sysvol\cloudchowk.lab\SCRIPTS. The following error occurred:
    An error event occurred. EventID: 0x00000422
    Time Generated: 01/18/2015 18:09:42
    Event String:
    The processing of Group Policy failed. Windows attempted to read the file \\cloudchowk.lab\sysvol\cloudchowk.lab\Policies\{31B2F340-016D-11D2-945F-00C04FB984F9}\gpt.ini from a domain controller and was not successful. Group Policy settings may not be applied until this event is resolved. This issue may be transient and could be caused by one or more of the following:
    An error event occurred. EventID: 0x00000422
    Time Generated: 01/18/2015 18:14:42
    Event String:
    The processing of Group Policy failed. Windows attempted to read the file \\cloudchowk.lab\sysvol\cloudchowk.lab\Policies\{31B2F340-016D-11D2-945F-00C04FB984F9}\gpt.ini from a domain controller and was not successful. Group Policy settings may not be applied until this event is resolved. This issue may be transient and could be caused by one or more of the following:
    An error event occurred. EventID: 0x00000422
    Time Generated: 01/18/2015 18:19:43
    Event String:
    The processing of Group Policy failed. Windows attempted to read the file \\cloudchowk.lab\sysvol\cloudchowk.lab\Policies\{31B2F340-016D-11D2-945F-00C04FB984F9}\gpt.ini from a domain controller and was not successful. Group Policy settings may not be applied until this event is resolved. This issue may be transient and could be caused by one or more of the following:
    An error event occurred. EventID: 0x00000422
    Time Generated: 01/18/2015 18:24:43
    Event String:
    The processing of Group Policy failed. Windows attempted to read the file \\cloudchowk.lab\sysvol\cloudchowk.lab\Policies\{31B2F340-016D-11D2-945F-00C04FB984F9}\gpt.ini from a domain controller and was not successful. Group Policy settings may not be applied until this event is resolved. This issue may be transient and could be caused by one or more of the following:
    ......................... CC-DC03 failed test SystemLog
    EVENT VIEWER LOGS
    The DFS Replication service initialized SYSVOL at local path C:\Windows\SYSVOL\domain and is waiting to perform initial replication. The replicated folder will remain in the initial synchronization state until it has replicated with its partner CC-DC01.cloudchowk.lab. If the server was in the process of being promoted to a domain controller, the domain controller will not advertize and function as a domain controller until this issue is resolved. This can occur if the specified partner is also in the initial synchronization state, or if sharing violations are encountered on this server or the synchronization partner. If this event occurred during the migration of SYSVOL from File Replication service (FRS) to DFS Replication, changes will not replicate out until this issue is resolved. This can cause the SYSVOL folder on this server to become out of sync with other domain controllers.
    Additional Information:
    Replicated Folder Name: SYSVOL Share
    Replicated Folder ID: 4689406D-D6D8-49E0-8079-2B1D4AE61BC6
    Replication Group Name: Domain System Volume
    Replication Group ID: 6B162096-2EFA-4D4C-BF13-62CC5B112B97
    Member ID: 566943F9-D2FB-4304-823D-10DC972F831A
    Read-Only: 0
    Should I just start over again by removing DC03 and setting up another DC?
    Regards
    Sajat Jain

  • How do I use the Xbox 360 controller

    Hello,
    As everyone knows the XBOX 360 controller is the definitive controller for Windows gaming.
    I'm working on two projects now.  One in Flash and one in Unreal Engine.  I thought,"Wouldn't it be great to work on three projects at once."
    So the idea came to me that a comedic style hockey game could be made in Flash.  Flash is great for action games, and the P2P networking(thought could have been done better) is just sufficient to make a good multiplayer experience.
    I do not however want an action oriented hockey game without analog sticks.  I've gotten the XBOX 360 controller to work in C/C++ in a Tekken Style Open Wolrd Game, and it was great.  Where do I get the XBOX360 code to integrate them into a flash game?
    ,Jim

    The GameInput API's for Actionscript 3.0. You can get when you download and install the Adobe Gaming SDK, after that you would need to import the SWC.

  • How to call the bean in jspdyn component?

    Hi,
    i created  jspdyn component in that bean and bussiness logic class in NWDS.i created a method() in that businesslogic class.i called that method in bean class.i created both in same package,there is no error occur while creating the object of that class.but the bean class not recognize the business class method which i created. What is the cause? and also tell me how to call the bean in jsppage also.and also give me textfields,button and syntax of event handling in HTMLB,iam new to this area.so,give me one example step by step.

    Hi,
         Please check on these links for a good start.
    Java development methodologies (Part II)
    Bean usage in JSPDynPage
    jspDynPage portalapp.xml
    Regards,
    Harini S
    Please avoid giving personal mail id(s). That may prevent others from getting the same information when needed.

  • Can I change the record an EJB points to from within the bean?

    I have a problem which I hope someone can help with.
    I'm programming an EJB application which references several 'price list' type tables. An order will contain several option selections, which reference options, which each have an associated price. A system administrator is going to have to change and update these prices as tim egoes on, and may want to remove options etc. In order to ensure that existing orders don't have their values changed as a result of this we've decided that, when options have their price changed, we actually create a new option record, setting an end_date on the old option record to signify that it's no longer valid for new orders being raised. In the option Beans set cost method, I set the end_date property of the bean and call the create method of the options own home interface.
    My problem is this: At the moment I return the newly created option as a return value of the setCost method but I feel this is a little graceless. Ideally I'ld like to change the bean to point at the new record as part of the set method itself, that way, to the client it would appear as if tey were still looking at the same bean but with an updated price, which is what you'ld normally expect from a set method. Can this be done?

    Um, yeah - graceless is a good word. Essentially, you've stuck business logic into the EntityBean (I'm guess that's what you're using for data persistence). What you need to do is move the Option.create() method out of the EntityBean and use a StatelessSessionBean to execute the logic: update the old Option record, create the new one, then return the result.
    As an aside, it's considered Not Very Good Practice to have client applications directly accessing EntityBeans: serializable DataObjects (e.g. JavaBeans, not EJB) or ValueObjects (non-"changeable" DOs) are better at passing data back and forth between client applications and application container. Ideally, this flow is like this:
    client <- VO -> SSB <- DO -> EntB
    This lets the EntityBean just worry about getting data in/out of storage, the (business) logic resides in the StatelessSessionBean and the client interacts/shows the data.

  • Where to put the Bean class in a html- Bean- JSP setup

    Hi,
    The setup is simple, the front end is a html form, there is a Java Bean with set/get methods and finally a jsp which accesses the bean and prints the result.
    The problem is that it cannot locate the Bean class. I have compiled the bean class and stored the .class file in webapps/ROOT/WEB-INF/classes dir. The jsp and html files are located in the webapps/ROOT dir. Iam using tomcat 5.0.28, with ROOT context enabled. Is this because I need to set the CLASSPATH for Tomcat? Any pointers?
    Thanks

    No you don't need to set CLASSPATH.
    You need to put your bean in a package.
    As of java1.4, JSPs can not access beans that are in the default/unnamed pacakge.
    package mypackage
    public class MyClass
    and then the class would compile to
    WEB-INF/classes/mypackage/MyClass.class

  • Using the xbox 360 controller in my java application

    Wanted to know if there is a way to get the xbox 360 controller or the nintendo wii to work with my java application. Has anyone been able to access either controller using java.
    Thanks
    GradStudent

    nope. you can use jinput to use game controllers... but only game controllers
    that can be plugged in and have a driver.
    i dont have any game systems, do the controllers have a usb attachment and computer drivers?
    xbox mod:
    http://www.fury-tech.com/en/Guides/Xbox-Controller-PC-Conversion-Mod
    jinput:
    https://jinput.dev.java.net/

  • Best MIDI controller in the $100-$200 range

    Hello,
    I was at Best Buy today toying around with some of the 49 key M-Audio controllers and I really liked them! I'm getting more and more into composition recently and figure I'll need a MIDI controller at some point, so what's the best MIDI controller in the $100-$200 range? For usage with Logic Studio applications.
    Thanks!
    Message was edited by: Lencias

    Hello,
    I have an M-Audio Keystation 49e and I love it. It's great for composing and its pretty cheap... if you're a serious pianist/keyboardist I would recommend getting the larger (I think its 61 keys) model, but my 49 works great for me.
    Plug and play!! no installation of anything required... my Mac recognized it instantly and it works great with Logic Studio

  • Exchange server-Removing a Domain Controller from the forest

    Hi Guys,
    I need some help on removing a faulty domain controller from the AD forest. Here is the scenario:
    1. The FSMO roles have been seized to a new domain controller already.
    2. The old one is non-functional and is down for ever.
    I know the steps would be doing a meta-data cleanup And then remove some of the DNS entries related to the old server. But the real issue is:
    > I have Exchange 2013 running in one of the machines configured in the Forest, which was migrated from the old Domain controller. I then set Exchange listening to the new domain controller.
    So, my doubt is, if I delete the old domain controller and do a metadata cleanup, would it have any effect on the exchange server? The Exchange machine acts as an additional domain controller as well. Its a production environment and any
    change that affects Exchange would cause a big loss. Looking forward for your valuable suggestions..
    Regards,
    Nash

    Hi Ed,
    I don't have issues with the AD on the Exchange server. Eventhough it is configured as an AD, Exchange is pointed to the main working domain controller, which is a different machine. I just want to remove the traces of an old domain controller from which
    I transferred the FSMO roles to the new domain controller. The old  domain controller is completely down and hence I can't do a conventional 'dcpromo' on it. So just planning to do a 'metadata clean up' for removing the non-working DC from the forest. 
    So, In essence, I just want to know that, if I do a metadata cleanup, would it affect the Exchange server in any way?
    Regards,
    Nash

  • Why is my applet not visible in the bean area?

    I have a simple test form with a bean area. I have set the implementation class of the bean area and added the .jar file to the formsweb.cfg archive parameter.
    When I load the form (no errors) I can see in the Java console that my applet works perfectly, all of the data is retrieved from the remote database as expected.
    My problem is that the bean area is grayed out and I see NOTHING there.
    What am I missing so that my applet will show up?
    I am using forms 10g.
    Thanks...
    Edited by: errodr on Dec 21, 2012 10:52 AM

    An applet is just a container for a java-application. If you have the source-code, there will be some main-class which puts the main-layout into the applet. This code has to be modified and included in your Bean-class.

  • OutOfMemoryError in the bean access in wl6.0sp2

    we query a table ,the result is almost 3000 records,at the same time there are
    5 clients to call the bean to execute the query.
    but every time we catch the OutOfMemoryError at runtime so what can we do with
    it and avoid the error,in depoly the bean or in programming the bean?
    the memory of our PC is 528MB, is it not enough?
    3kx a lot!

    Rob Woollen <[email protected]> wrote:
    tony wrote:
    we query a table ,the result is almost 3000 records,at the same timethere are
    5 clients to call the bean to execute the query.So you need to be able to store >= 15000 records in memory. How big
    is a record?
    but every time we catch the OutOfMemoryError at runtime so what canwe do with
    it and avoid the error,in depoly the bean or in programming the bean?
    the memory of our PC is 528MB, is it not enough?How large is the java heap size? (the -mx parameter to the java vm)the heap size is the default 64m, i will try more than it.
    3ks
    >
    -- Rob
    3kx a lot!

Maybe you are looking for