Phone out for 3 weeks , has not been repaired yet!

My home phone stopped working August 15, called repair and was told someone would come on
August 17  , no one came,   I called again and got a repairman  out on august 17 he checked the line and told
us that he could not repair it because it was a problem in the cables and the cable splicer would be fixing it, they
were due to have it fixed on Aug 18... Anyway we waited for the phone to work , it was still out.  I called  2 days
later and asked what happened to the cable people who were supposed to come out on the 18, the woman
said she did not know but they were sent out and not there fixing the cable!!.  Well I have called 3 more times
since than and each time I am told someone will be there, the last man I spoke to was really rude man  and told me
that he would send someone out if someone was home to wait for the repairman, I explained that the problem
was up on the   pole and no one should have to come into my home that we just wanted the phone fixed, he
kept on repeating will someone be home!!! I finally got fed up and told him yes,,,, that was last week   and of course
NO ONE showed up  the phone is still out.. Today is
August 30.
I need my phone and fax machine for my business but can't use them, my cell phone bill is going to be outrageous, I don't know what to do anymore.   ( BTW my phone service was out 8 months ago also we were without our phone than for a month than and it is happening again)  Verizon just doesn t care, what happened to the old phone companies that cared about there customers and back than we were never without phone service.

Hello..I apologize for your inconveniences.  I am a Fios Tech but can do my best to assist you whether this is copper of Fios.  Let me know which of our services you have and a account telephone # and I will assist you in getting this resolved.
Joe D
Verizon Telecom
Fiber Solution Center
Notice: Content posted by Verizon employees is meant to be informational and does not supercede or change the Verizon Forums User Guidelines or Terms or Service, or your Customer Agreement Terms and Conditions or Plan.Follow us on Twitter™!

Similar Messages

  • How to find out the GR Numbers for which IR has not been done

    Hi Sap Gurus,
    Can anybody tell me how to find out the G R Numbers for which Invoice Receipt has not been done. Any TC or ant standard process to find out.
    Thanks N Regards,
    Siddhartha

    Hi Siddarth,
    Solution :
            1) Go to SE16 - Table Name : EKBE (PO History)
            2) Field - BUDAT (Posting Date)
            3) Transaction event Type:
                             - 1 (Only GR's )
                             - 2 (Both GR and IR)
            4) We can fetch both GR Numbers and also PO Numbers for which IR has not been done if transaction event - 1.
    In addition to MB5S, you can try this also...

  • I sent in my iPod nano to the replacement program about two weeks back. However, I checked the status of the repair and it still says it has not been received yet. Is there any way to follow up on where the nano could be? I sent it via FedEx.

    I sent in my iPod nano to the replacement program about two weeks back. However, I checked the status of the repair and it still says it has not been received yet. However, my boyfriend sent in his the same time I did and his repair status says repair being diagnosed. I still have the "receipt" of the package when they first sent it to me. I sent it via FedEx. Is there any way to follow up on where the nano could be or maybe find out if I can still get a replacement even though my nano might be lost in transit?

    I sent it via FedEx. 
    Call FedEx.  They will be able to track their own packages.  They will let you know if your iPod Nano was delivered and to who!

  • Goods receipt for purchase assignments has not been posted

    Hi all;
    In Vl02n in goods issue steps i have a message "Goods receipt for purchase assignments has not been posted"
    -the purchas order is assined to items delivery correctelly!
    -in our case, we haven't a stock.
    -after goods issue in vl02n we have tow goods mvt (101 for goods receipt) and (601 for goods issue) for the same quantity.
    so can you tell me how to solve this problem
    thx

    ok sir ;
    No i don't talke abouat STP i don't have any transit stock it's a simpl sales based on global purchas
    -first with me21n i created global purchas order
    -the sales will be picked from this purchas .
    -delivery is assigned automatically to this purchas order  with user exit.
    -with vl02n in goods issue steps there is tow operations ( stock mvt 101 in purchas assignement and a normal 601 for delivery )

  • Goods receipt for purchase assignments has not been posted. Mes. no. O1573

    Dear expert,
    I got a proplem with Intercompany STO as detail below:
    Goods receipt for purchase assignments has not been posted.
    Message no. O1573
    Diagnosis
    Certain fields needed for posting Goods Receipt have not been entered.
    System Response
    The goods receipt for Purchase Assignment was not posted.
    Procedure
    Check the error log and make the required entry.
    process Step by steps:
    1- create PO (intercompany PO) --> save
    2- create SO to sell to endcustomer (at receiving company)
    3- create DO
    4- assign the previewous PO to DO  (exchange function)
    5- PGI ---> problem as above
    Please, kindly help

    Dear all,
    In this case,  if I enter itemcategory "U" into PO I can post GR and GI at the same time I do PGI. but you know if I use "U" which mean I can't enter the net price as normal because this is a "stock transfer".
    Is there any ideal for this?
    Please, help me

  • XSLT Mapping: Namespace for prefix 'ns0' has not been declared

    Hello, I am working on a synchronous SOAP call and having some trouble with the response message. The web service has its own namespace and I am trying to convert this to my custom data type in PI. PI wants the message to be in format of having ns0 prefix and namespace like we have defined (http://foo for example).
    I have an XSLT mapping (see below) which works fine with my test response payload (pulled from SXMB_MONI source) on this online XSLT test site:
    http://www.freeformatter.com/xsl-transformer.html
    However when I import this archive to PI and test with operation mapping it always says "Namespace for prefix 'ns0' has not been declared."
    This is very confusing because when I test it online, I see both prefix and namespace declaration perfectly. Is there a way to see the results in the PI test tool? After this XSLT java error it doesn't give me the output even in Trace Level All mode.
    Please advise on this issue or if you know an easier way (such as altering my datatype/message type to match the inbound SOAP message). I tried working with the 3rd party WSDL but the response message types show a different root level node than what PI is receiving so I gave up to make my own matching datatype. I just have to solve this last inbound namespace issue and should be finished.
    FYI I have refreshed all PI caches and activated all objects.
    Thanks for your ideas!
    <xsl:stylesheet version="1.0"
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:ns0="http://foo"
      <xsl:output method="xml" indent="yes" omit-xml-declaration="yes"/>
      <xsl:template match="@* | node()">
        <xsl:copy>
          <xsl:apply-templates select="@* | node()"/>
        </xsl:copy>
      </xsl:template>
      <xsl:template match="/*">
        <xsl:element name="ns0:{local-name()}">
          <xsl:apply-templates select="@* | node()" />
        </xsl:element>
      </xsl:template>
      <xsl:template match="/">
        <xsl:element name="{local-name()}">
          <xsl:apply-templates select="@* | node()" />
        </xsl:element>
      </xsl:template>
    </xsl:stylesheet>

    Some additional info, here is an example payload which goes through the XSLT mapping perfectly, but in PI I get the error about missing ns0 declaration.
    XML input:
    <bar xmlns='http://irrelevantnamespace'
    xmlns:soap='http://schemas.xmlsoap.org/soap/envelope/'
    xmlns:xsd='http://www.w3.org/2001/XMLSchema'
    xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'>
    <foo/>
    </bar>
    XSLT mapped output using test tool and XSL above:
    <?xml version="1.0" encoding="UTF-8"?>
    <ns0:bar xmlns:ns0="http://foo">
       <foo />
    </ns0:bar>

  • Error: Permission denied for (document.domain has not been set) to call method Location.toString on (document.domain=).

    Why am I getting these errors Error: Permission denied for (document.domain has not been set) to call method Location.toString on (document.domain=).
    == URL of affected sites ==
    http://

    HOW DO YOU SET THIS??? I'M FRUSTRATED OVER THIS. ITS BEEN 2 MONTHS SINCE I HAVE BEEN ABLE TO PLAY ANY GAMES IN FACEBOOK DUE TO THIS PROBLEM! IT DOES NOT MATTER WHAT BROWSER I USE I STILL GET THIS SAME MESSAGE.

  • A Required COM Add-in program for XL Reporter has not been loaded and ....

    A Required COM Add-in program for XL Reporter has not been loaded and prohibits Microsoft Excel from running. For more information, click help.
    XL 2007, with the Trust level for macros set to minimum. SBO 2007 PL 42.
    Thanks
    Charles

    Read the following solution from SAP for your problem:
    When we open XL Reporter we get an error
    message "A required COM add-in program for XL Reporter has not been loaded
    and prohibits Microsoft Excel from running." when trying to open a report
    definition.
    SOLUTION FOR THE PROBLEM:
    Reason and Prerequisites
    You need to be an administrator on the local machine to add COM add-ins.
    Solution
    The user should be added as a member of the administrator role on the
    local computer the first time you start Excel from XL Reporter the first
    time so that the COM addin are registered, then you can remove the user
    from the administrator group again.
    Manually Loading the XL Reporter Excel COM Add-In
    Symptom
    If you install Microsoft Office after installing the XL Reporter
    application or use another Windows user than the one you used when
    installing XL Reporter, you can get an error message.
    Reason and Prerequisites
    The reason for this is that the report writer COM Add-in has not been
    loaded, which prohibits Microsoft Excel from running.
    Solution
    1. Start Microsoft Excel. If you already have the COM Add-ins command on
    the Tools menu, go to step 7.
    2. In the Tools menu, choose Customize.
    This opens the Customize window.
    3. Choose the Commands tab and select Tools from the Categories pane on
    the left.
    4. In the Command pane on the right, scroll down to the COM Add-ins
    command.
    5. Select the COM Add-ins command, hold down the mouse button, and drag
    COM Add-ins from the Commands pane over to the Tools menu on the Microsoft
    Excel men bar. When the Tools menu commands appear, point to where you
    want the COM Add-ins command to appear on the menu and release the mouse
    button.
    6. To close the Customize window, choose Close.
    7. On the Tools menu, choose the new COM Add-ins option.
    This opens the COM Add-ins window.
    8. In the window, choose Add to open the Add Add-in window.
    9.Select the IXXLReporter.dll file located in the Client directory in the
    XL Reporter program installation area and choose OK.
    10. In the COM Add-ins window, select the XL Reporter checkbox and choose
    OK.

  • I purchased Adobe Creative Ste 5.5 Master Collection for windows for my college student daughter in '12 and she would like to install in on her iMac.  Please advise on the process.  Software has not been used yet.

    I purchased Adobe Creative Ste 5.5 Master Collection for windows for my college student daughter in '12 and she would like to install in on her iMac.  Please advise on the process.  Software has not been used yet.

    you need to exchange your win cs5.5 for mac cs5.5.
    unfortunately, adobe only offers that for cs6, Order product | Platform, language swap

  • SCCM Client Policy instance "The body for this policy has not been downloaded."?

    Hi,
    With PolicySpy I got SCCM Client Policy instance with an red and white symbol "The body for this policy has not been downloaded." what does that mean?
    /SaiTech

    Hi,
    Is there something not working? What is the core issue?
    -It is a long story, I will take the short version. I have had several supportcase at Microsoft, I think in two yeas time. We have done RAP as a Service, and no big issue. I have reinstalled the MP just some Days ago.
    I started with slow App-V 4 user centric deployment (hours). No I have an case at Microsoft support about Enable Win32_QuickFixEngineering class in the Client Setting hardware Inventory dont get enable at client side.
    If I do policy reset I think it take long time 15-30 minuters to all actions show up again.
    So I try to understand MP and policy, I have an feeling that something is not right but what?
    /SaiTech

  • Account for bank transfer has not been defined

    Hi,
    I am doing a Bank Transfer in my SDK development and I get following error:
    "Account for bank transfer has not been defined "
    I use _SYS00000000002 (Cash at Bank - Checking (HO, USA, GA )) from the US demo database for testing and it doesn't work.
    My code is below, even when this only for consuling.
    Thank you,
    Rune
    oPayments = (SAPbobsCOM.Payments)oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oIncomingPayments);
                        oPayments.CardCode = vmp_CardCode_string;
                        oPayments.DocDate = DateTime.Now;
                        oPayments.JournalRemarks = "Incoming - Payment Bank Transfer";
                        oPayments.TaxDate = DateTime.Now;
                        SAPbobsCOM.Recordset oRecordset_BankAccount = null;
                        oRecordset_BankAccount = ((SAPbobsCOM.Recordset)(oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.BoRecordset)));
                        oRecordset_BankAccount.DoQuery("SELECT * FROM [dbo].[@PAY_TYPE] WHERE [U_PayMethod] = '01'");
                        oRecordset_BankAccount.MoveFirst();
                        if (oRecordset_BankAccount.EoF == true) // No Records
                        else
                            vmp_BankAccount_string = Convert.ToString(oRecordset_BankAccount.Fields.Item("U_BankAccount").Value);
                        oPayments.TransferAccount = vmp_BankAccount_string;// "_SYS00000000343"; //"1010140-001";
                        oPayments.TransferDate = DateTime.Now;
                        oPayments.TransferReference = vmp_CardCode_string;
                        oPayments.TransferSum = vmp_Amount_double;
                        vc_Message_Result_Int32 = oPayments.Add();
    Edited by: Rune Brattas on Jun 18, 2009 5:18 PM

    Hi,
    I request you to post this thread in SDK forum,so that you may get quick response.
    And kindly close this thread after posting in the appropriate forum.

  • The wifi has been lost or disconnected on my iPad. It's the iPad 2 and has not been updated yet. It's IOS 6.1.3 .. how do I add a network back onto it? I have typed in the name and chosen each of the securities and still hasn't connected!

    The wifi has been lost or disconnected on my iPad. It's the iPad 2 and has not been updated yet. It's IOS 6.1.3 .. how do I add a network back onto it? I have typed in the name and chosen each of the securities and still hasn't connected!

    Hey there Luba_kalstad,
    It sounds like you are unable to join your network and cannot see it in the Wi-Fi list in Settings. I would try the troubleshooting outlined in this article named:
    iOS: Troubleshooting Wi-Fi networks and connections
    http://support.apple.com/kb/ts1398
    Be sure you're in range of your Wi-Fi router (access point).
    Tap Settings > Wi-Fi and turn Wi-Fi off and on. If your Wi-Fi setting is dimmed, follow these steps.
    Confirm that your Wi-Fi router and cable or DSL modem are connected to power, turned on, and connected to the Internet. If not, refer to your network administrator or Internet service provider (ISP) for assistance.
    Restart your iOS device.
    Tap Settings > Wi-Fi and locate the Wi-Fi network to which you're connected.
    Tap and Forget this Network.
    Try to connect to your desired Wi-Fi network.
    Note: You may need to enter your Wi-Fi password again if your network requires one.
    Turn your Wi-Fi router off and on2. If your ISP also provides cable or phone service, check with them before attempting this step to avoid interruption of service.
    Update your device to the latest version of software.
    Update your Wi-Fi router to the latest firmware2. For AirPort Base Stations, install updates using the AirPort Utility.
    And this section down toward the bottom if needed:
    Unable to locate a Wi-Fi network
    Verify that the network is available by tapping Settings > Wi-Fi and choosing from the available networks.Note: It may take a few seconds for the Wi-Fi network name to appear.
    Move closer to your wireless router (access point) and attempt to locate the Wi-Fi network.
    If you do not see the network you would like to join, you may be attempting to connect to a hidden network. Learn how to join a hidden network.
    Supported Wi-Fi configurations vary by iOS device model. Find out which standards your device supports3.
    Reset network settings by tapping Settings > General > Reset > Reset Network Settings. Note: This will reset all network settings including:
    previously connected Wi-Fi networks and passwords
    recently used Bluetooth accessories
    VPN and APN settings
    Thank you for using Apple Support Communities.
    Take care,
    Sterling

  • The license key library has not been initialized yet.

    Hello Experts,
    I just recently installed the SAP ABAP Preview Edition and after getting my license key I tried installing it via transaction SLICENSE. Now, I clicked on new licenses button then from there I clicked on 'INSTALL'. Then it prompted me to load the text file containing the license key. But when I clicked ok the error 'The license key library has not been initialized yet.' appeared. Whats the solution for this? hope you could help me out here guys. Thank you and take care!

    Hello,
    Could you check the following parameters in your profile file (default in c:\SAP\NSP\SYS\profile\NSP_DVEBMSGS00_<HOSTNAME>):
    [code]
    ssf/ssfapi_lib = $(DIR_CT_RUN)\sapsecu.dll
    sec/libsapsecu = $(DIR_CT_RUN)\sapsecu.dll
    check whether '\' exists here ^
    [/code]
    If the backslashes are missing, add them, restart the ABAP application server and try to install the license file again.
    Kind regards,
    Klaus

  • HT4009 I made a in app purchase on a game and it never took, when I went back and tried it again a window popped up that said I have already purchased this item but has not been downloaded yet? How do I download it when there is not a option to download?

    I made a in app purchase on a game and it never took, when I went back and tried it again a window popped up that said I have already purchased this item but has not been downloaded yet? How do I download it when there is not a option to download?

    Hi Dave_warr,
    I would suggest restarting the iPad and see if the download resumes.
    iTunes: How to resume interrupted iTunes Store downloads
    Resuming downloads from an iOS device
    From the Home screen, tap the iTunes icon.
    For iPhone/iPod touch, tap More > Downloads. For iPad, tap Downloads.
    Enter your account name and password.
    Click the "OK" button.
    Click the Resume or Resume All button to start the download.
    If you don't see the application to download it, then follow these troubleshooting steps:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store
    If the app does not appear in your list of purchases, then contact the iTunes Store for help:
    How to report an issue with your iTunes Store, App Store, Mac App Store, or iBookstore purchase
    I hope this information helps ....
    Have a great day!
    - Judy

  • HT204370 can you return a movie purchased by mistake that has not been viewed yet?

    can you return a movie purchased by mistake that has not been viewed yet?

    Hi jimmy505,
    The following information should help you with this:
    How to report an issue with your iTunes Store, App Store, Mac App Store, or iBookstore purchase
    Find the email receipt for your purchase.
    Click Report a Problem under the app that is having the issue.
    When prompted, enter the Apple ID and password you used to purchase the item, then click Report a Problem.
    Click Report a Problem next to the item you are having an issue with.
    From the Choose Problem dropdown menu, choose the appropriate issue.
    Follow the onscreen instructions and—if prompted—type a description of the problem into the text field.
    Click Submit to have your issue reviewed.
    Hope this helps ....
    - Judy

Maybe you are looking for

  • Can I have a primary key as a non-unique column

    Hi all, I have a table with 35 columns and only one column in a not null column. But this column data is not unique. I want to create a primary key with non-unique index, can I don it, if it is not possible is there any other way to it. Please help m

  • PDF files does not open in IE 8

    When I click on a link on a web page which is to open a pdf file in acrobat reader, it does not open and gives me a error mesage The instruction at "0x02d96433" referenced memory at "0x00000000". The memory could not be read and then it opens a blank

  • Problem with ALT button

    Hi people. In the final version of the Adobe suite CS5 is set to button Alt call menu tools (in the previous version it was invited only as long as I hold the button). It bothers me terribly because I zoomed in Alt + scroll, and then the interrupt in

  • Mac Pro 8 core won't start up

    I went on a holiday for about three weeks and I am unable to start up my Mac Pro now. When I press the power button, the light just flashes and I hear the fans start up. There is no chime and the display remains black. I tried shutting down by pressi

  • Maximize desktop application window

    Hello! I wonder how I can maximize a window from a desktop application made in JavaFX? I say automatically, so you run the program opens the window already maximized. Thank you.