Forms r still active while navigating thro menus to another form

Hi,
I have a menu and have couple of forms. While navigating through i am able to open other forms from one form. But the problem is the previous form from where i navigated is still in the background. I was able to make window menu invisible. so there is no window menu. But still the other forms which i have opened are still not closed when i choose to open a new form. Can any one help me out to close the forms which are not in use?
Thanks in advance
Sun

hi,
what u said is ok when im in 3rd or fourth form. But i have a login form from which im passing to other form.
My login form is not having menu attached to that. whereas the other forms will have that. The form which im calling at the time of login will not show menus when call this from login form using call_form('formname');
but for the rest of the forms ok.
Hope u did understand the problem..
Thanks anyway for ur valuable suggestion.

Similar Messages

  • JDeveloper : Problem while navigating from one to another page.......

    Hi,
    I am using JDeveloper 11.1.1.4.0.
    Assume that Eo name : EmployeesEO. I want to display all employees those who r all under coreesponding Department. For that i have created ViewCriteria Named as EmployeeByDepartment for DepartmentId in EmployeesVO. where clause in Viewcriteria is:
    *( (Employees.DEPARTMENT_ID = :Departmentid ) )* .
    Then exposed that viewCriteria in AM for EmployeesVO Instance.
    Now i created taskFlow where I created two jsff page. In page 1 just i drag and drop EmployeeByDepartment viewcriteria from datacontrol [DataControl->EmployeesVO1->NamedCriteria]. Then i drag and drop EmployeesVO1 from Datacontrol to Page 2 as ADF Form.
    Now while clicking Search Button in page 1 it should navigate to Page 2 and also it should display Employee details those who r all under same Department.
    How can i achieve??
    Regards,
    Praveen.

    First question: which component do you use (af:query or anything else)?
    next question if you use af:query why not show the result on the same page (query with table)?
    Timo

  • If my iPhone was stolen and i want to reactive an old phone using that same number for the time being while i waited to see if I could get my iPhone back, would the iPhone still work while i was using a re-activated old phone of mine?

    If my iPhone was stolen and i want to reactive an old phone using that same number for the time being while i waited to see if I could get my iPhone back, would the iPhone still work while i was using a re-activated old phone of mine?

    If a new SIM is activated on the same account for the same number, any existing SIMs for that number are deactivated.
    Why exactly would you care if the SIM in the missing device still works or not?

  • While navigation down in one block screen is moving upwards in forms

    While navigation down in one block screen is moving upwards in forms 6i plz help anybody regarding this problem

    Might be you need to check the view position on canvas. Is it on the correct position.
    In canvas you can display the view from view>show view. Then check if it is aligned correctly.
    -Ammad

  • TS4268 I still have "Waiting for Activation" while trying to activate iMessage on the iphone, noting that it was working normally and stopped working suddenly, as well I had done all the mentioned steps.. what should I do else?

    I still have "Waiting for Activation" while trying to activate iMessage on the iphone, noting that it was working normally and stopped working suddenly, as well I had done all the mentioned steps.. what should I do else?

    Define "mentioned steps." 
    See this:
    iOS: Troubleshooting FaceTime and iMessage activation

  • My itunes store account it still active but its declining my visa account which i have been using for a while to download apps

    My itunes store account it still active but its declining my visa account which i have been using for a while to download apps

    My experience in this situation has been that's it's related to the visa card, and not necessarily the phone or the iTunes store.  In addition to verifying all of the credentials on the card as entered, I'd also check with you card bank and see if they have declined the charges due to some type of security concerns.  I have a Chase card, and they will decline a charge even though there are sufficient funds available, if the charges meet some security screening criteria. 

  • I need to know if my membership(s) with Adobe Reader XI, Adobe Forms Central and Acrobat XI products are still active?  If so; when does my membership(s) due to expire?

    9 May 2014
    Dear Tech or Customer Support:
    I would like to know if my subscriptions memberships with Adobe Reader XI, Adobe Forms Central and Acrobat XI products are still active?  If so; when does my subscriptions memberships due to expire?
    Please reply back by email with full details as to my requests at your earliest availability to:  [email protected]
    Sincerely,
    Gwendolyn C. Baxter

    Hello,
    I just solved this problem on my computer.
    Windows 7 comes with only one "Voice" installed. "Microsoft Anna - English (United States)" I'm not sure what you get if your in another country.
    You can test your "Voice/Voices" by running Microsoft Narrator. Click [Start] button and type "Narrator" in the [search programs and files] box. Press [Enter]. Your computer should begin talking. Click [Voice Settings] button to see a list of installed voices. Take note of the voices listed. "Mine has just the one."
    Adobe Reader must have a voice selected that you have installed. To verify your settings Run Adobe Reader. From the top menu click [Edit] then click [Preferences] at the bottom of the list. In the Preferences window click [Reading] from the left hand list. Find "Read Out Loud Options" Un-check [Use default voice] Choose a voice from the drop down menu that you have verified is installed on your computer. Click [OK]
    My Adobe Reader had 4 voices listed to choose from. I found this curious because I only have one voice.
    Hope that helps.

  • Help,"InsertTextData changed while command still active" Error

    I try to use the command kCreatePageFromPageCmdBoss.
    The case is, open a document with one page, and add some text frame to the page, then use the command to copy this new created page 100 times.
    code:
    for( int i=0; i<times;i++)
    InterfacePtr<ICommand> iCreatePageFromPageCmd(CmdUtils::CreateCommand(kCreatePageFromPageCmdBoss));
    if (iCreatePageFromPageCmd == nil){
    ASSERT(iCreatePageFromPageCmd);
    break;
    iCreatePageFromPageCmd->SetItemList(pageUIDList);
    InterfacePtr<ILayoutCmdData> iLayoutCmdData(iCreatePageFromPageCmd,UseDefaultIID());
    if (iLayoutCmdData == nil){
    ASSERT(iLayoutCmdData);
    break;
    // it is valid to set the layout control data parameter to nil, there are times when there is no view.
    iLayoutCmdData->Set(::GetUIDRef(iNewDocument),nil);
    // process the command
    status = CmdUtils::ProcessCommand(iCreatePageFromPageCmd);
    It is troublesome that I always get the error message:"InsertTextData changed while command still active" when I debug my plugin in the indsign, what shall I do?anyone knows?

    In my opinion,you can get the ILayoutControlData before the loop,
    for example:
    InterfacePtr<ILayoutControlData> iLayoutControlData(Utils<ILayoutUIUtils>()->QueryFrontLayoutData());
    or:
    InterfacePtr<ILayoutControlData> iLayoutControlData(Utils<ILayoutUIUtils>()->QueryLayoutData(IPMUnknown* inWindow));
    After you get the ILayoutControlData, you can specify it in loop
    as follows:
    for(int32 i=0;i<times;i++)
    iLayoutCmdData->Set(::GetUIDRef(iNewDocument),iLayoutControlData);
    Please try it,and tell me the result,thank you!
    hawkrococo

  • Unexpected error while navigating quickly thru menu items

    Hi All,
    I am getting error while navigating quickly thru my portal application. It's a WebCenter spaces custom application that's using UCM for few contents.
    JDEV : 11.1.1.5.0
    Below is the error log that I see on EM.
    [2013-03-07T13:24:08.091+01:00] [WC_Spaces1] [WARNING] [] [oracle.adf.view.rich.component.fragment.UIXRegion] [host: cgreaswbc1prd.canonhosted.net] [nwaddr: 172.31.92.69] [tid: [ACTIVE].ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: [email protected]] [ecid: 004ppJ8QM7m0joxMwAJb6G00064Y004Z2G,0:1] [APP: CanonSelfServicePortal_application1#V2.0] [URI: /CSSP/faces/ActivitiesTF] [TARGET: /Farm_prd_domain/prd_domain/WC_Spaces1/CanonSelfServicePortal_application1(V2.0)] [TARGET_TYPE: j2ee_application] [[
    java.lang.IllegalStateException: The expression "#{bindings.ServiceRequestOverviewTF1.regionModel}" (that was specified for the RegionModel "value" attribute of the region component with id "r1") evaluated to null.
    This is typically due to an error in the configuration of the objects referenced by this expression.
    If it helps, the expression "#{bindings.ServiceRequestOverviewTF1}" evaluates to "null".
    If it helps, the expression "#{bindings}" evaluates to "com_canon_cssp_portal_pageDefs_UserDetailsPageDef_WEB_INF_UserDetailsTF_xml_UserDetailsTF". Now using an empty RegionModel instead.
         at oracle.adf.view.rich.component.fragment.UIXRegion.getRegionModel(UIXRegion.java:450)
         at oracle.adf.view.rich.component.fragment.UIXRegion._beginInterruptibleRegion(UIXRegion.java:682)
         at oracle.adf.view.rich.component.fragment.UIXRegion.processRegion(UIXRegion.java:498)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executeBindings(LifecycleImpl.java:715)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executeBindings(LifecycleImpl.java:750)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executeBindings(LifecycleImpl.java:750)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executeBindings(LifecycleImpl.java:750)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executeBindings(LifecycleImpl.java:750)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executeBindings(LifecycleImpl.java:750)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.access$000(LifecycleImpl.java:72)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl$1.call(LifecycleImpl.java:720)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl$1.call(LifecycleImpl.java:716)
         at oracle.adf.view.rich.component.fragment.UIXRegion.processRegion(UIXRegion.java:503)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executeBindings(LifecycleImpl.java:715)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executeBindings(LifecycleImpl.java:750)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executeBindings(LifecycleImpl.java:750)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executeBindings(LifecycleImpl.java:750)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executeBindings(LifecycleImpl.java:750)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executeBindings(LifecycleImpl.java:750)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executeBindings(LifecycleImpl.java:750)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executeBindings(LifecycleImpl.java:750)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executeBindings(LifecycleImpl.java:750)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executeBindings(LifecycleImpl.java:750)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._restoreView(LifecycleImpl.java:655)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:301)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:186)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:265)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.portlet.client.adapter.adf.ADFPortletFilter.doFilter(ADFPortletFilter.java:32)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.webcenter.framework.events.dispatcher.EventDispatcherFilter.doFilter(EventDispatcherFilter.java:44)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:205)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:106)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:446)
         at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:446)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:271)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:177)
         at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at com.canon.cssp.portal.filter.UnexpectedErrorFilter.doFilter(UnexpectedErrorFilter.java:47)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.wcps.client.PersonalizationFilter.doFilter(PersonalizationFilter.java:75)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.webcenter.content.integration.servlets.ContentServletFilter.doFilter(ContentServletFilter.java:168)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.webcenter.lifecycle.filter.LifecycleLockFilter.doFilter(LifecycleLockFilter.java:151)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.library.webapp.LibraryFilter.doFilter(LibraryFilter.java:175)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:111)
         at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313)
         at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:413)
         at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:94)
         at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:161)
         at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:136)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3715)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3681)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2277)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2183)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1454)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    This log is followed by a "ADF_FACES-60098:Faces lifecycle receives unhandled exceptions in phase RESTORE_VIEW 1" log. Can anyone help me know what can be the reason of this issue?
    Kindly let me know if you need more information.
    Regards,
    Kanchan

    Hi Daniel,
    Thanks for your reply!
    The navigation menu that I am talking about here, is implemented using Oracle ADF navigation model. All the links in the menu refer to different bounded taskflows. Now if we click on those links one after the other, while one taskflow is still in progress another taskflow is invoked.
    If you look at the exception that I posted, the expression below is pointing to ServiceRequestOverviewTF1, while the pagedef is referring to UserDetailsTF. Now, in my application, there is no link between ServiceRequestOverview and UserDetails. Could it be a case that a kind of mix up of active taskflow and previously called taskflow is happening?
    java.lang.IllegalStateException: The expression "#{bindings.ServiceRequestOverviewTF1.regionModel}" (that was specified for the RegionModel "value" attribute of the region component with id "r1") evaluated to null.
    This is typically due to an error in the configuration of the objects referenced by this expression.
    If it helps, the expression "#{bindings.ServiceRequestOverviewTF1}" evaluates to "null".
    If it helps, the expression "#{bindings}" evaluates to "com_canon_cssp_portal_pageDefs_UserDetailsPageDef_WEB_INF_UserDetailsTF_xml_UserDetailsTF". Now using an empty RegionModel instead.

  • Is Oracle still actively creating AMIs for Oracle Linux?

    Hi All,
    I was wondering if any of you knows if Oracle is still actively creating new Oracle Linux AMIs for Amazon EC2? I can see the most recent one is Oracle Linux 6.1 while we are already at 6.3.
    Now that Oracle has announced they are in the IaaS and PaaS business as well, do they stop supplying Amazon AMIs?
    Bart.

    I would never deploy the first point release of a major release into production. In my experience, Oracle rolls out 2 "releases" of each major version. The SECOND release tends to be production-ready for shops with serious HA requirements. Usually, this Second release also contains sneak previews of the important features of the next major Version--but these should be considered version 1.0 features and not relied upon. The FIRST release of a major version will contain those important features in a strong form suitable for the vast majority of shops--but it will still have lots of bugs. If you have to bounce your instance even once a month to work around a bug, you aren't getting close to HA.
    My advice--the most stable version will always be the terminal release of the last version--currently 9.2.0.6. Similarly, the last point release of R1 will be quite stable. Realistically, 98% of the customer base can live with occasional downtime and bug problems, and will enjoy the new features of the latest software. Even for them, I'd wait for the second point release or higher for production. QA and DEV are different stories--jump on the latest wave and write code using the newest features. But wait for the second point release before going into production. Typically it will be out in a few months and will fix the glaring bugs.

  • Blank Screen while navigating from one screen to another in a web applicati

    Blank Screen while navigating from one screen to another in a web application.
    While navigating through the screens of the web-based application, I get blank screen at times. The application menu bar is still visible and the header and footer jsps are also still available. The main processing frame alone goes blank. Once I get the blank screen, I am able to choose from the menu option and contine navigating through the screens.
    The application has been deployed on WebSphere Application Server v6.0 and uses JDK 1.4.2. I have checked the application, server and systemerr logs. And there are no exceptions in any of the log files. There is no difference in the logs for a normal flow and the flow when the blank screen occurs.
    The blank screen does not occur always. It occurs around 3 out of 10 times. If you consider a particular page, mostly it loads normally and very few times, the blank screen occurs.
    Compression filter is being used and it gets invoked for every request. Size before and after compression also gets printed in the logs.
    Could this be causing any issue in terms of memory handled or could any jsp timeout be happening, though there are no exceptions in the logs.

    Well, since no one has any ideas, here is my two cents worth:
    Can you turn off compression and see if the problem goes away? If not, I suggest creating a small separate project with the same functionality as that part of the program that causes problems and see if you can duplicate it. Use System.out.println() in the java code and out.write() in the JSP pages throughout the java and JSP code to write to the log file or console as each section is run to see what section is causing problems. You can also consider commenting out sections of code in your JSP page to see if you can isolate the problem.
    I had a similar problem with the screen being blank and this is what I found:
    My JSP page had an include tag in it that included another JSP page. The outer JSP page was drawn and waited for the included JSP page to be drawn. The logic took several minutes to run and something timed out. The inner JSP page was never drawn. No log entry occurred. It appears that it was not Apache or Tomcat that caused the problem, but some firewall or similiar such device. If you have a firewall or similar device, see if the person who maintains it can temporarily set its timeout to a very long time (15 minutes) to see if the problem goes away. Apache and Tomcat probably also have a timeout feature too. You will have to read up on their configuration settings on how to set them.
    By the way, each of those devices probably has its own log file you can read to see if its reporting an error.

  • Delete memory Id when the session is still active

    Hi all,
    Can anyone tell me how to clear the Memory Id when the session is still active.
    I am getting the amount value through Memory Id from import and export parameter when I am posting the check. Again if I reprint the check without closing the session the amount value is getting double evertimes.
    If I delete from Memory Id I am not able to see any amount value while posting for first time.
    Can anyone suggest me how to proceed further.
    Regards
    Yathish

    Looks like you are not clearing the variables before and after that logic. Clear them and try.
    Let us if you are doing that or not.
    Rgds,
    Naren
    Message was edited by:
            Someneni

  • Is there any method to remember the running subtitle and audio stream when navigating through menus?

    I have a language Menu named 'Setup' with 4 buttons 1.English  2.Spanish  3.Spanglish  4.Subtitle Off.
    To reach this page you have to hit Setup button on Main Menu. The setup button takes to a sub-menu of Setup where I have a symbol of 'tick' at Subtitle Off indicating the state of the current subtitle stream. I have 3 more sub-menus with similar buttons but with 'tick' at different languages indicating the state of the current running/selected language, 2nd page has English with tick, 3rd page has Spanish with tick and 4th has Spanglish with tick. My client wants me to jump on the respective language ticked page when you hit the setup button on Main Menu. As far as I understand we cannot assign a code in Encore to a single button to read what subtitle stream is running.
    Is there any method to remember the running stream when navigating through menus?
    I have done this in Sonic Scenarist.
    Regards,
    A Gandhi

    I think this was added in a "newer" version of Encore (meaning anywhere from CS4 up). In any event, it is available in Encore CS6.
    There is a menu (not button) property that allows yoi9u to make the active subtitle track button the default (i.e. selected/highlight shows) just as you want.

  • Reminder connection still active

    While I'm online i get a pop up window about the internet connection, a reminder that the connection is still active and if i want to remain connected. Is there a way to increase the time before the reminder appears. Its frustrating while watching movies
    Thanks!

    Ah, there's the issue then!
    The option to disable that does exist, but it's kinda buried.
    Note: these instructions are from OS X 10.5, Leopard, and may differ from other versions. If you don't find the checkbox, let me know what OS you're using, and where you get stuck, and I'll see if I can find it!
    System Preferences>Network, then choose PPPoE in the list at the left. Click the Advanced button. Chose the PPP tab here. Is there a checkmark next to "Prompt ever x minutes to maintain connection"? If so, that's the cause of your trouble. Uncheck the box, click OK, and you should be all set!
    ~Lyssa

  • Isdn still active

    Dear all,
    when i just configured the isdn from the branch side and the dialer from the PRI line, it is automaticlly come up even the primary link is still up.
    i check the intersting traffic which i exclude the eigrp routing protocol form it.
    when i check the routing entry, i found some intry prefer isdn over the serial so i increase the delay at the bri link, so all routing change to the primary link ( serial)
    you now that i can't stay the isdn active it is money so what do you suggest me to do ?
    B.R
    Ahmad abu zayyad

    dear all,
    i don't think it is relate to the broadcast, since i do additiona testing which is as follow:
    i make the dial only from the head office: isdn stilla active :)
    i make the dial from the branch only: the isdn still active :)
    i do no cdp enable on both the dialer and bri interface : isdn still active :)
    so what do you think is the problem.
    if you think it is broadcast, so why the head office dial the branch.
    really amazing situation
    any new idea or simillar case
    B.R
    Ahmed

Maybe you are looking for