Can't access fault reporting page

Everytime i open the page to report a fault with my home phone line all i get is a blank screen. Is this a problem with BT's server? Although i can access the business fault reporting page.

I think the fault reporting pages are having 'issues', also there was a problem with certain number ranges not being recognised by bt.com faults.
If you have a 10 digit number (instead of 11) you might want to try calling the hep desk instead on 0800 800 151.

Similar Messages

  • Discoverer Report  Can i Access these report vie Internet

    Dear Sir,
    Can i access the report from cyber cafe(Web Enabled) that is generated with oracle 9i Discoverer. If YES then How ?
    If NO then Why
    OR
    any other version from which we can access the report from cyber cafe that created with discoverer

    Hi Felix,
    of course. this works. In the customer exit you can read in step 2 the variables from the input screen.
    function z_bw_e_zepcfiscyvvg.
    *"*"Lokale Schnittstelle:
    *"  IMPORTING
    *"     VALUE(I_VNAM) TYPE  RSZGLOBV-VNAM
    *"     VALUE(I_VARTYP) TYPE  RSZGLOBV-VARTYP
    *"     VALUE(I_IOBJNM) TYPE  RSZGLOBV-IOBJNM
    *"     VALUE(I_S_COB_PRO) TYPE  RSD_S_COB_PRO
    *"     VALUE(I_S_RKB1D) TYPE  RSR_S_RKB1D
    *"     VALUE(I_PERIV) TYPE  RRO01_S_RKB1F-PERIV
    *"     VALUE(I_T_VAR_RANGE) TYPE  RRS0_T_VAR_RANGE
    *"     VALUE(I_STEP) TYPE  I DEFAULT 0
    *"  EXPORTING
    *"     VALUE(E_T_RANGE) TYPE  RSR_T_RANGESID
    *"     VALUE(E_MEEHT) TYPE  RSZGLOBV-MEEHT
    *"     VALUE(E_MEFAC) TYPE  RSZGLOBV-MEFAC
    *"     VALUE(E_WAERS) TYPE  RSZGLOBV-WAERS
    *"     VALUE(E_WHFAC) TYPE  RSZGLOBV-WHFAC
    *"  CHANGING
    *"     VALUE(C_S_CUSTOMER) TYPE  RRO04_S_CUSTOMER OPTIONAL
      data: wa_e_t_range     type line of rsr_t_rangesid,
            wa_i_t_var_range type rrrangeexit.
      data: l_month(2) type n,
            l_year(4)  type n.
      case i_step.
        when '2'.
          read table i_t_var_range
               into  wa_i_t_var_range
               with key vnam = 'M_SEV_01'.
          l_month = wa_i_t_var_range-low+4(2).
          l_year  = wa_i_t_var_range-low+0(4).
          if l_month = '01' or l_month = '02'.
            l_year = l_year - 3.
          else.
            l_year = l_year - 2.
          endif.
          wa_e_t_range-low  = l_year.
          wa_e_t_range-opt  = 'EQ'.
          wa_e_t_range-sign = 'I'.
          append wa_e_t_range to e_t_range.
      endcase.
    endfunction.
    Variable 'M_SEV_01' is a input variable for calmonth. From this variable the coding extract the fiscal year.
    Sven

  • Can't access teaming web page

    Hi, I've installed teaming 2.1 on a sles11 x64 virtual machine. I've used sun java jdk 1.6.21. After install I start the teaming server but then can't access the web page (I've used port 8080 in the URL). I used default network settings. I believe the mysql database has been created correctly. I think the problem is with Tomcat/java. I've included the output of tail --f catalina.out
    /opt/novell/teaming/apache-tomcat-6.0.18/bin/catalina.sh: line 309: /usr/jre/bin/java: No such file or directory
    Error occurred during initialization of VM
    Could not reserve enough space for object heap
    Could not create the Java virtual machine.
    Error occurred during initialization of VM
    Could not reserve enough space for object heap
    Could not create the Java virtual machine.
    Error occurred during initialization of VM
    Could not reserve enough space for object heap
    Could not create the Java virtual machine.
    the path shown in the first line of this output is not what I specified for java during the installation of teaming (I used /usr/java/jdk1.6.0_21). Any help would be greatly appreciated
    Lou

    Hi Lou,
    Have you set an environment var for the JAVA_HOME?
    you can set it system wide, create or edit /etc/profile.local, and add:
    export JAVA_HOME=/usr/java/jdk1.6.0_21
    Then reboot the system so the env var gets set globally.
    If the site is still not accessible, rerun the Teaming install choosing to reconfigure, double check the JAVA_HOME path set and see if that does the trick.
    Cheers,
    Willem

  • Daniel or anyone else, Help on why I can't access certain jsp pages

    I have installed the Web Service Portlet Wizard to build my portlets. In particular,
    I have created a URL porlet jsp which receives its content from a URL.
    This URL that I retrive is an application that I have running on my Weblogic 6.1
    Server. I can access the login page, and can logon and do a few things but for
    some reason I Can't access certain pages. The pages I can't access are also jsp
    pages on the wlserver6.1 server(exactly the same as other ones I can access and
    interact with).
    The error I receive on the Portal Front end is attached in a word doc. I have
    also included in there, a snapshot of the access log for those pages, but I can't
    really make out what it is telling me (if anything!).
    For one of the pages, that I can't successfully access I get java.lang.ArrayIndexOutOfBoundsException
    This only happens with 1 of the pages. But trying to access the same page withouth
    going thru the portal I get NO errors what so ever.
    Please if anyone can give me any information on why I can't access certain pages
    via my portal It would be very helpful.
    Finally I have included the code of my Portlet which accesses the URL. This is
    also included in the word doc.
    Thanks
    Ramy
    [Portal.doc]

    Ramy,
    I don't know the Web Service Portlet Wizard too well, but I notice that
    login.htm never seems to be found (404 in logs). I would think that the two
    warnings below your JSP call (cookies, and portlet state) are your most
    likely culprits. If the Web Service Portlet Wizard does not handle cookies
    then the portal server will have to continiously reauthenticate. I will
    forward your email however and see if I can dig up a better diagnosis. Also,
    could you post the stack trace for the ArrayIndexOutOfBoundsException you
    are seeing.
    Sincerely,
    Daniel Selman
    "Ramy" <[email protected]> wrote in message
    news:[email protected]..
    >
    I have installed the Web Service Portlet Wizard to build my portlets. Inparticular,
    I have created a URL porlet jsp which receives its content from a URL.
    This URL that I retrive is an application that I have running on myWeblogic 6.1
    Server. I can access the login page, and can logon and do a few things butfor
    some reason I Can't access certain pages. The pages I can't access arealso jsp
    pages on the wlserver6.1 server(exactly the same as other ones I canaccess and
    interact with).
    The error I receive on the Portal Front end is attached in a word doc. Ihave
    also included in there, a snapshot of the access log for those pages, butI can't
    really make out what it is telling me (if anything!).
    For one of the pages, that I can't successfully access I getjava.lang.ArrayIndexOutOfBoundsException
    This only happens with 1 of the pages. But trying to access the same pagewithouth
    going thru the portal I get NO errors what so ever.
    Please if anyone can give me any information on why I can't access certainpages
    via my portal It would be very helpful.
    Finally I have included the code of my Portlet which accesses the URL.This is
    also included in the word doc.
    Thanks
    Ramy

  • Can u access Oracle9i Reports objects from Java Code?

    Hi,
    How can you access Oracle9i Reports (Rel 2) objects like Body, DataSource, Groups etc from Java Code?
    What are the available APIs?
    I went thru the APIs at http://otn.oracle.com/products/reports/htdocs/getstart/docs/Javadocs/oracle/reports/plugin/definition/package-summary.html
    However various constructors stated in these APIs are using classes from "oracle.reports.definition" package which are difficult for me to locate.
    For eg. Report constructor is using oracle.reports.definition.RWReport and there is no API documentation available for RWReport class.
    Please suggest me the site for the above APIs or the method to get a reference to "Report" instance.
    Thanks
    Rakesh.

    Thanks Tugdual for your quick reply.
    Thats exactly what I am trying to do. I want to develop a utility which can have a subset of Report Developer's functionality.
    Currently using Reports Developer & Report Wizard, I can create a report by providing SQL statement and few parameters (like Report Style, Calculated Fields, Template file etc). I want to put all these parameters in a XML file and run my java utility (based on the APIs which I am looking for) which will use these XML parameter file and generate a '.rdf' file.
    Also, could you please suggest me the site for oracle.reports.definition package API or the way to get a reference to oracle.reports.plugin.definition.Report instance.
    Thanks,
    Rakesh

  • Can only access certain man pages with sudo

    I can only access certain man pages with sudo. They aren't accessible as either root or normal user. I can't be a 100% sure but it would appear that the man pages I have problems with are those located in /usr/share/man. I can't see any differences in file or directory permissions with those located in /usr/man. Anyone else having this problem. Or have I commited another noobish mistake.
    man pacman is an example.
    Any pointers would be greatly appreciated.

    the filesystem and bash packages need to be updated after the pacman 3.1 release
    if you want immediate results add
    UNSET MANPATH to your .bashrc
    Last edited by dolby (2008-01-24 20:45:17)

  • I can't access most internet pages because I don't have adobe flash player for my powerbook and the download doesn't seem to work?

    I can't access most internet pages because I don't have adobe flash player for my powerbook and the download doesn't seem to work?

    The message requesting that you download Adobe Flash Player takes you to FP requireing an Intel processor. Doesn't work on a PowerPC processor. I fould a hack, installed it & it works with Firefox, TenFourFox & Safari.
    Download this http://www.steelbin.com/FPforFBPPC.zip to your desktop, unzip it, and replace the current Flash Player plug-in which is in your main/Library/Internet Plug-Ins folder, (not the user Library). Save the old one just in case this one doesn't work.
     Cheers, Tom

  • How can i access my docs (pages) in my iCloud from my iPad? I do no have pages in my iPad? help please

    How can i access my docs (pages) in my iCloud from my iPad? I do no have pages in my iPad? help please

    Why would you want to access your Pages documents on the iPad if you don't have Pages?
    If you wanted to email them to someone, you could have done that on the Mac. If you want to edit them on the iPad you need the app on the iPad.

  • I can not access the welcome page

    After i installed oracle application server soa suite 10.1.3.1.0 ( soa_windows_x86_101310_disk1) successfully . I want to access the welcome page of oracle application server control
    by going all programs -->oracle(instance name)--> oracle application server control
    It said Page can not be displayed
    then i went to c:\productz10.1.3.1\OracleAS-1\install\readme.txt to check hostname and port number which is correct (http://localhost:8888/)
    i typed in the browser manually ,but it still showed the page cannot be displayed.
    after that, i was using command prompt to check status of the process
    c:\productz10.1.3.1\OracleAS_1\opmn\bin>opmnctl status
    it showed only OC4JGroup:default group -->process status: alive
    but i could not see the http server process
    and still was trying to start the oracle http server and it seemed useless i did not how can i access the welcome page and access to the application server control
    I need help
    thank you very much

    Which install type did you choose? If you chose Custom, you may not have installed OHS at all...

  • TS3798 I get this error message"your operation could not be completed" I need help figuring out why I can not access the web page.

    I get this error message"your operation could not be completed" I need help figuring out why I can not access the web page.

    amarilysfl wrote:
    "Your disk could not be partitioned. An error occurred while partitioning the disk".
    https://www.apple.com/support/bootcamp/
    If you were using Apple's BootCamp and received this message, quit it and open Disk Uility in your Applicaitons/Utilities folder.
    Select the Macintosh HD partition on the left and select Erase and Erase Free Space > Zero option and let it complete (important) this will check the spare space for bad sectors that can cause issues formatting partitions.
    Once it's completed, try creating a partiton again in BootCamp.
    If that doesn't work, then hold command option r keys down while connected to a fast internet connection, Internet Recovery should load (spinning globe) and then in that Disk Utility, select your entire internal drive and click > First Aid > Repair Disk and Permissions.
    reboot and attempt Bootcamp again.
    If you still get a error, it might be that you have OS X data on the bottom area where BootCamp partition needs to go. This would occur if you had the drive or computer for a long time or wrote a large amount of files to the drive and nearly filling it up and then reduced some, but it left traces in the area BootCamp needs to go.
    To fix this
    BootCamp: "This disc can not be partitioned/impossible to move files."
    How to safely defrag a Mac's hard drive

  • After I updated the iOS version on 11/23/13, I can not access anymore my Pages. It says it's updating. How long would this take to update?

    After I updated the iOS version on 11/23/13, I can not access anymore my Pages documents. It says it's updating. How long would this take to update?

    Try this  - Reset the iPad by holding down on the Sleep and Home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons. (This is equivalent to rebooting your computer.) No data/files will be erased.
    If there are multiple apps trying to download at once, only one can download at a time and the rest say "Waiting" until it is then their turn. Try this. Double tap the icon of the Waiting app, and it should resume the download.
    How to Solve the Problem of An iPad App Download Stuck on “Waiting”
    http://ipadacademy.com/2012/06/how-to-solve-the-problem-of-an-ipad-app-download- stuck-on-waiting
    How To Get Rid Of Your iPad App Download Frozen Problem
    http://www.sidelineapple.com/how-to-get-rid-of-your-ipad-app-download-frozen-pro blem-and-not-lose-years-of-your-life-video/
    iTunes: How to resume interrupted iTunes Store downloads
    http://support.apple.com/kb/ht1725
    Another thing to try - Turn the iPad Off & then back ON.
    If that doesn't work:
    •  Log out of your iTunes store account.  Go to Settings > Store > Sign Out Then press the Home button.
    • Then press and hold the Home and Sleep buttons simultaneously and don't release them when it brings up the Turn Off screen; keep holding them until the Apple logo appears.
    • After restart, the Waiting should be gone.
     Cheers, Tom

  • I can not access the home page

    I have installed Oracle Portal 3.0 EA on a Windows NT 4.0 Workstation
    running Oracle 8.1.6.
    And now I can not access the home page and login from a local browser installed on the server by typing http://<hostname>/pls/portal30/portal30.home.
    Apache is still working.

    Jan-Peter,
    Obviously the browser recognizes the servername:port because your sample works. It must have a problem with the pls or DAD.
    Can you access:
    http://servername:80/pls/admin_/gateway.htm
    If yes,
    Then check to make sure you are calling the correct DAD and they are setup. You can do this through the gateway.htm page.
    If no,
    Then your 9iAS did not setup mod_plsql correctly. Check oracle_admin to see if it points to plsql.conf
    null

  • TS3274 I can't access some web pages with safari like, forever 21, express. Even though I used to access them previously. Why?

    I can't access some web pages with safari like forever 21, express .com. Even though I used to access them previously

    Ashlee...
    Since the apps you mentioned require an internet connection try running the connectivity tests >  iTunes for Windows: Network Connectivity Tests

  • I can't access a report in reporting services in a VM via azure website with reportviewer

    Hi. I just create a VM with Reporting services, create a dataset, and a report, but when i try to access that report from my azure website via reportviewer i receive the error "the request failed with http status 401: unauthorized". Somebody with
    an idea about what is wrong?. I set reportserver URI, report Path, user and password to the reportviewer.
     Thank you in advance.

    Hi,
    Thank you for your post.
    See this article in Books Online:
    http://msdn.microsoft.com/en-us/library/ms156014.aspxfor
    information about how to configure security in Reporting Services
    http://msdn.microsoft.com/en-us/library/ms156034.aspx
    If it is the  SQL Reporting report server then follow these steps.
    Resolution: On the Server Home page select the
    Allow other Windows Azure services to access this server checkbox.
    To open the Server Home page:
    1.
    Go to https://windows.azure.com
    2. Navigate to the SQL Database server
    3. Click Firewall rules
    4. Select the Allow other Windows Azure services to access this server checkbox
    Also refer this link for more details.
    http://msdn.microsoft.com/en-us/library/hh403967.aspx
    Girish Prajwal

  • After 6 months can not access some web pages

    I can not get several web pages to work when I pull them up. Like Comcast, the main page comes up but not the current TV listings.

    Unfortunately this hasn't worked either. I did this several times, after deleting cache files and repairing permissions. Do you think the issue is something that the ISP could address?
    Another issue has appeared: I'm unable to login to a site that a friend has constructed; he assures me that when he uses the same login information on his mac there's no access problem. When I try, the login fields just reappear, without what I've entered.
    Any ideas are appreciated!

Maybe you are looking for

  • Display of Month and year in Y-axis of horizontal bar chart

    Hi, We are using Webi XI R2 version. Could you please let me know how we can display date in chart.  I am having objects as Month name (July, Aug etc) and year (2009). I want to display on the Y-axis as Jul-09, Aug-09 Please advise. Kindly let me kno

  • HELP! - airport no longer working after upgrade

    I performed the software update tonight (it prompted me for the first time tonight) to update the Airport Extreme Update 2007-001. Since I made the 'upgrade' I can no long connect to my home network nor any network I can usually get. How can I either

  • Unable to edit Outline in EAS WEB CONSOLE after JDK updated to 1.7.0_07

    Our windows infrastructure team upgrade JDK to 1.7.0_07 company wide. After upgrade I can login into the EAS console and do operations like searching for members, opening & closing outlines, looking at rules, calc script etc. But I cant add new membe

  • Using the MacPro with the LED cinema display

    When using the MacPro with a LED cinema display (or any other external monitor in fact), is it possible to make it so that the main display (the screen showing the dock and menu at the top) is assigned to the external monitor?

  • How could a button open a EXE file in any position?

    How could a button open a EXE file in free position? I am very confused, I am searching the issue for two days, I just could use fscommand function open a EXE file in a fixed opsition, where must be in the same root with the .swf(change into .exe for