Debugger not working in the web browser.

Hi everyone,
I am not able to open the debugger in the web browser. Its like earlier when I use to put a break point in my codes and run the browser the break point use to trigger but looks like due to some setting changes it has stopped working.
Can anyone suggest what settings have gone wrong .
Rgds,
Anu.

Yes its working now, but if I open it in internet explorer the mouse pointer and the sand closck on it keeps flickering and no codes can be seen in the debugger and the debugger doesnt open at all in mozilla firefox. It use to work fine before. Please suggest.
Rgds,
Anu.

Similar Messages

  • Report Not working in the Web Browser

    Hi ALL ,
    Am working on a item SKU report . The report is running fine in the BIDS but once i try to view the report in the WEB Browser
    tried both Mozilla and Internet Explorer no data is shows up .
    The report has 2 report filter one is on the service and the other one is the item sku its a multi - parameter  that contains
    a list of more than 6000 different SKU . Can the filter be the reason for the report not displaying in the web browser.
    If yes kindly advice me what the workaround for it .
    I tried having the filter in the  SQL main query but it was of no use no data it was showing after having the ssrs report filter
    at least right information its showing but in the BIDS not in the main web browser.
    Kindly Help
    Priya

    Hi Priya,
    According to the description, I understand that there are parameters (@SKU and @SKUlist) in the report, and SKUlist parameter is multi-value parameter. When selecting values of the SKU parameter, the parameter SKUlist will display corresponding values. In this
    case, you should create cascading parameters, right? And you use parameters to filter the report.
    Because the data of the report can be shown in the Business Intelligence Development Studio (BIDS) environment, the issue only occurs after deploying the report to report server. Based on my research, I think it may occur because of web browser issue. I have
    known you use Mozilla and Internet Explorer to view the report but there is still no data.
    In Reporting Services, not all report functionality is supported by all browsers. In this scenario, I suggest you considering the aspects of the setting or third party add-ons of Internet Explorer (IE). You can refer to the steps below:
    1. Click Tools -> Internet options.
    2. Switch to the Security tab, click Local intranet, and then select Default level.
    3. Switch to the Advanced tab, and click Restore advanced settings.
    4. Temporarily disable third party add-ons. For detailed steps, please see the link:
    http://windows.microsoft.com/en-IN/internet-explorer/manage-add-ons#ie=ie-10
    Reference:http://technet.microsoft.com/en-us/library/ms156511(v=sql.105).aspx
    Regards,
    Heidi Duan
    Heidi Duan
    TechNet Community Support

  • Flex 2 SWF not loading on the web browser when Flash Player 8 is running

    I got a Flex 2 application that is not loading on the web
    browser when the users workstations got Macromedia Flash Player 8
    installed. Please advice on what could be the issue, i got security
    calls included i.e. securty.allowInsucureDomain, crossdomain.xml,
    etc.
    The application shows no issues on web browsers with Flash
    Player 9 installed.

    if you have read developersGuide it says that there somewhere
    http://livedocs.adobe.com/flex/201/html/wwhelp/wwhimpl/js/html/wwhelp.htm?href=Part2_DevAp ps_048_1.html
    here is workaround
    http://kb.adobe.com/selfservice/viewContent.do?externalId=749eaa47&sliceId=1
    flex 9 is complete rewrite (almost) and its lot mor fast and
    effecient) you should't want to use flash 8 if you can anyways, but
    somethimes I guess there is not other way out..

  • My course designed in Captivate 5 will not open in the web browser when published or in preview mode

    Does anyone know why my course will not open in a web browser. It's a pretty standards course. It's 800 X 600 with 73 slides that are all about 10 seconds long. It does have a few videos incorporated, but I removed them and published and I still got nothing in a web browser. Any ideas?

    I'm afraid you haven't given us enough information to know how to help you.
    More details please. 
    Screenshots of what you see perhaps?
    Do you have the same issue with a new blank project uploaded to the same publish folder with the same browser?

  • Graphics not working on the web

    Hi there,
    When I try to run the graphics from a parameter form on the web,
    then no graph is generated on the web on the client machine,but
    a small window appears on the server sometimes.
    Please let me know if there is any solution or workaround to it.
    Arvind Sareen
    null

    Can you tell me how and what to set \ change on border manager?
    Is any way to use Virtual Office from outside LAN?
    TIA
    Nanu
    >>> Edward van der Maas<edmaa_remove_this!@[email protected] > 07/08/2007 19:42:01 >>>
    Nanu Kalmanovitz wrote:
    > Hi!
    >
    > We have Novell SBS 6.5, a tree with 3 servers:
    >
    > 1. Border Manager sp1
    > 2. GroupWise (NAT) sp1
    > 3. WEB (NAT) sp6 - Apache 2, MySQL and PHP.
    >
    > Until now we worked on the WEB site from the LAN using the Win tools
    > to copy and edit files.
    >
    > What and how shall I do to permit someone from the outside world to
    > work on some of the web site folders?
    >
    > Please help
    It depends on how much you'd like to spend. If you want it secure and
    use authentication you can look at an solution involving Novell Access
    Manager. If you have less money to spend maybe just a simple NAT on
    your bordermanager to your webserver and thats it.
    Cheers,
    Edward

  • RegisterHotKey(....) to disable hotkeys such as ALT+F4 is not working in C# Web Browser control

    Disabling hot keys like "ALT+F4" using register RegisterHotKey(..) function and wndproc(..) function in c# windows application is not working as expected in few cases. Below is the description.
    I am using C# Web Browser control in windows application to display Web Pages. We are disabling hot keys like ALT+F4 by calling the method RegisterHotKey(..) and capture the hot key message in Wndproc(..) function. Initially This is working as expected
    normally.
    But as part of new requirement, we need to set the "title of Web browser page" to its parent class(Win form) text property. when we are assigning text property of winform using below code, the hot keys could not be disabled.
    this.Text = webBrowserCustom.DocumentTitle; //this keyword refers to WinForm which loads web browser control
    If webBrowserCustom.DocumentTitle is empty then this.text is set to Empty string. In such case the hot keys are not getting disabled.
    I am not sure what is the relation between text property of winform and hot keys disabling.
    Could you please let us know why hot keys are not getting disabled when we setting empty string to Winform(which is loading Web Browser control) text property.?

    Hi,
    How did you use RegisterHotKey and winproc function in your project, could you please post the code here so that we can reproduce the problem firstly?
    If you just want to prevent the user from closing the form, you could register Form_Closing event handler, and cancel the closing behavior by the user. 
    private void Form1_FormClosing(object sender, FormClosingEventArgs e)
    e.Cancel = (e.CloseReason == CloseReason.UserClosing);
    private void btnCloseForm_Click(object sender, EventArgs e)
    this.FormClosing -= new System.Windows.Forms.FormClosingEventHandler(this.Form1_FormClosing);
    this.Close();
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Application not working in the firefox browser?

    Hi,
    My application is perfectly working in the Internet Explorer( displays all the UI elements ) . but today i installed the firefox browser.
    The application is not showing all the UI elements ,tables etc .
    What should be done to work the application in Firefox browser ?
    Regards,
    Lakshmi.

    Hi,
    Please go through this link -
    https://forums.sdn.sap.com/click.jspa?searchID=30476121&messageID=7716841
    Regards,
    Lekha.

  • Play back video clip is not working in the event browser...

    Hello,
    I have a problem in the event browser only. If I place the skimmer in any clip and press the space bar, nothing happen. If I press the "play" arrow" it does not work neither nor through the presentation menu.
    The space bar shortcut to play works perfectly fine in the timeline, but not in the event browser.
    In order to preview a clip at normal speed (100%), I have to drag it in the timeline and play it wich is rather anoying.
    Any idea on how to correct this issue would be very much welcome.
    Thank you very much for your help.

    I was having this exact same problem.  I tried deleting the preferences, however that didn't work.  But, yes, when I switched the view from 'show viewers on second display', back to 'show on main display'... the spacebar worked again... then I switched back to showing the viewers on my second display, the original circumstance  (which is definitely my preference)... and so far it is working again.. doesn't seem like anything has been 'fixed', but hopefully this doesn't happen often.
    So thanks to this thread, as I had no idea what to do, and it was getting very annoying.

  • For years FF has worked beautifully with Constant Contact. Now sevear function in CC will not work in the FF browser - they work in all other browsers. Help

    Until one week ago, I had no difficulty or problems working Constant Contact while open in my Firefox browser. Now I have several with some functions in CC not working.
    Inserting images, setting hyper links, changing background color - These are three necessary functions that I use in Constant Contact emails that no longer function when opening CC in Firefox browser - latest update was today 10/29/2013.
    The function work in the Chrome and Internet Explorer browsers.
    I have contacted Support at Constant Contact and the issue is not with their program.

    Hi eaglegrafix, try disabling ALL nonessential or unrecognized extensions (i.e., anything you don't think you'll need for 24 hours) and see whether that solves it. You can do that on the Add-ons page:
    orange Firefox button (or Tools menu) > Add-ons > Extensions category ''(in the left column, click Extensions)''
    Usually a link will appear above at least one disabled extension to restart Firefox. You can complete your work on the tab and click one of the links as the last step.
    Does that help narrow it down?

  • Manage On Demand Does Not Work on the Web Site

    Trying to Manage on Demand on the web site.  Page does not load correctly.  IE Crashes.  Firefox just does not work.  Something wrong with the web site.

    I've had same problem for 3 months.They've been to the house twice about this issue and still no fix.They won't pay attention until enough of us cancel and that is exactly what I plan to do

  • BW Field level Autorizations are not working in the WEBI Reports

    Dear All,
    1. I have created Authorization roles with Infoobjects Authorization Objects.
    2. In Bex Query Authoizations are working on the Infoobjects like for
    Ex: For USER1 I have given Company code = 1000 &
    User 2 I have given authorization for 1100.....
    3. Import those roles into Business Objects-CMC.
    4.Users were Imported.
    But in the WEBI Reports BW Field level Authorizations are not working i.e for USER1 authorization for Company code is 1000 , in WEBI report it is showing all the Company codes data for USER1.
    For USER2 also showing all the data in the WEBI report.
    Plz help me on this issue.
    Thanks,
    Kiran Manyam

    Hi,
    For Authorization to work in BO you can check the following:
    1. You need to create authorization variables in your BEx query.
         Also these variables should not be input ready.
    2. While creating universe in BO you need to select "Single Sign On" option available in the parameters iwhile creating a new
        connection.
    Regards,
    Rohit

  • Lower case search is not working in the Web

    Hi BW Gurus ,
    when i am executing  a query i am able to search the values in the selection with f4 using smaller case as well as lower case but in the web it is taking only upper case letters search... if i am giving as lowercase it wont show any records when it is upper case its showing records. any solution for this.....
    vas

    Hi Vas,
    While searching, put a condition such that it works for both the lower case as well as uppercase.
    Regards,
    Ravi G

  • Why does FF newest version not work as a web browser?

    I updated to FF version 8 but the browser will not launch. I got an email from FF help telling me to uninstall FF then reinstall. I did this-- still useless. I checked my firewall and that's OK. So then I uninstalled FF 8 and went back to version 3.7 and it works fine. So I'll stay with that till you cut me off, then I'll go to another browser. Too bad, I really like FF but can't get it to work now. How long can I use version 3.7-- it works far better than the new one, at least for me.

    Right now (and for quite some time!) the community pages are a real PITA.  Trying to link the two did not bring the nice behavior of the Forums to the Community, but rather brought that stench over here!
    https://decibel.ni.com/content/thread/11597?tstart=0
    Flame on.  I find the community useless.
    Click on link, or revisit old address from browser.
    Hey nice, I am logged in. 
    Click on another link.
    Darn, now I am logged out.
    Log In.
    Now I am at the Community Home page, where the heck was I?
    Actually not mad, just indifferent.  I figure in a few months I'll hear that it was fixed and maybe I'll go back there.

  • Firefox does not allow me to 'paste' url's/rapidshare links anywhere on the web browser.

    I noticed this problem when I purchased a Rapidshare account. In Google i found the URL of a movie>highlight the link>copy>but the 'paste' option is blanked out (not available) when i come to paste the link in the web browser. I have tried ctrl-v and also the edit>paste but the 'paste' icon i always 'greyed' or blanked out. This problem does not occur on any other computer in the house, just on my laptop. It only occurs with rapidshare links (and similar URL's). I can not paste in the web browser nor can I paste on the rapidshare website because the paste option is not 'click-able'. I don't know what do to, please help.
    == This happened ==
    Every time Firefox opened
    == I just signed up to rapidshare and have the 'paste' option has never worked.

    Make sure that you do not block cookies.<br />
    See http://kb.mozillazine.org/Cookies
    Start Firefox in [[Safe Mode]] to check if one of the add-ons is causing the problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    * Don't make any changes on the Safe mode start window.
    See:
    * [[Troubleshooting extensions and themes]]

  • Published a site in iweb but looks different in the web browser

    Hi,
    I have published a site in iWeb but it looks different when viewed in the web browser having published a few times.
    The pictures have small frames around which display perfectly i niweb but do not show in browser?
    The navigation menu is all showing in iweb but again not showing in the web browser?
    Not sure what I am doing wrong? I have tried to publish a few times.. checked that all the tick boxes show 'display navigation menu' etc?
    Thanks
    Toni

    Since you do not provide real varifiable, factual information I searched for :
    http://www.google.com/search?q=toni+darcy%27s+Products
    Is this you?
    http://www.tonidarcy.co.uk/toni_darcy_photographer/toni_darcy._photographer._wel come..html
    I noticed on the Pricing page that I cannot click the Gallery link. Something covering it?
    Other pages have similar behaviour.
    And there's no link for the home page. Perhaps you're hiding it.
    And see if you can use a shorter, and different, Sitename. It is clear who you are. And just welcome is enough.
    And empty the browser cache.

Maybe you are looking for

  • Languages: Some song titles do not show up on iPod menus

    Hi, I have a few Thai CDs that I have uploaded to my iPod. Unfortunately, the song titles that are using Thai script do not show up in the iPod lists (they show as blank). Is there any way to correct this problem short of translating the names to Eng

  • Is there an adapter out there that will convert a thunderbolt port on my Macbook Air to my HP L2245wg monitor?

    I am considering buying a new MacBook Air but I also want to sync it with my HP L2245wg monitor and I am wondering if there is a solution out there that will do that for me without having to buy a new Mac Monitor with a Thunderbolt port. Here is the

  • How to install old fcp x

    Hi, From a french FCP X user and a bad english user. I've bought on the store FCPX 10.0.0 the 1st version in 2011. Today i wan to re-install FCP X by the store clicking on "install" under the picture of FCP X. The message is that i can't because i ha

  • Licensing stopped  Error 150:30  Mac

    Transferred files from old Mac to new Mac.  Everything transferred.  I checked PSE, and it looked as if it was fine.  A week later I tried to open PSE and got the error message saying the licensing stopped.  Again - this is my new Mac.  I am not tryi

  • Unable to start DSC Shared Memory

    I am running LabView 7.0 (I know its an older setup), with DSC and Lookout OPC to do Serial communications to an Omron PLC. I needed to update the Ni-DAQ because the PCI-6220 board needs the driver. I upgraded to NI-DAQ 7.5 and now a get the Unable t