How to cancel order made today?

Could I ask for help wit canceling my order made today for moving phone line from Sky and for broadband. Apparently my partner sorted Sky issues when I was ordering BT.
What should I do?

Hi Rainmakerjg,
Thanks for the post and welcome to the forum.  I can cancel this order for you.
Please drop me an email via the 'Contact Us' link in my profile. (click on my name and you will find the link under the "about me" section). Include your BT order number if you have received one, your full address details and the link to this thread.
Cheers
Sean
BTCare Community Manager
If we have asked you to email us with your details, please make sure you are logged in to the forum, otherwise you will not be able to see our ‘Contact Us’ link within our profiles.
We are sorry that we are unable to deal with service/account queries via the private message(PM) function so please don't PM your account info, we need to deal with this via our email account :-)

Similar Messages

  • How to cancel "Order Line Fulfilled"?

    Dears,
    When I want cancel order ,it display :
    "You are not allowed to cancel Order Line because:
    Line Fulfilled"
    Is there any method to cancel the order line? Which column decide order line Fulfilled??

    Hi Sandeep Gandhi ,
    Thank you for your response.
    1.I wonder why the creditonly line created manually can be cancelled from screen?Also after lines be booked .
    But the retrobill line cannot cancel although the line status ='Entered'.
    2.I don't wnat canceling from sql but try to make the line not become "Fulfilled" before line created.

  • No longer needing extra 20GB of space (iCloud). How to cancel order and payments?

    I ordered and paid for an additional 20GB of space (iCloud) per month.
    How do I cancel the order now that I no longer need?

    See the "Downgrade your iCloud storage plan" section of iCloud storage upgrades and downgrades - Apple Support

  • Urgent: how to cancel orders in OM using API.oe_order_pub

    Hi All,
    I have written API - oe_order_pub, its compiling successfully but the orders are not getting cancelled. Do I need to add few more things for the following code...
    Please help
    create or replace package body apcx_test_cancel_order is
    PROCEDURE process_order_api (
    p_header_rec IN OUT oe_order_pub.header_rec_type,
    p_line_tbl IN OUT oe_order_pub.line_tbl_type,
    p_action_request_tbl IN OUT oe_order_pub.request_tbl_type,
    x_return_status OUT VARCHAR2,
    x_msg_count OUT NUMBER,
    x_msg_data OUT VARCHAR2) IS
    l_header_val_rec oe_order_pub.header_val_rec_type;
    l_header_adj_tbl oe_order_pub.header_adj_tbl_type;
    l_header_adj_val_tbl oe_order_pub.header_adj_val_tbl_type;
    l_header_price_att_tbl oe_order_pub.header_price_att_tbl_type;
    l_header_adj_att_tbl oe_order_pub.header_adj_att_tbl_type;
    l_header_adj_assoc_tbl oe_order_pub.header_adj_assoc_tbl_type;
    l_header_scredit_tbl oe_order_pub.header_scredit_tbl_type;
    l_header_scredit_val_tbl
    oe_order_pub.header_scredit_val_tbl_type;
    l_line_val_tbl oe_order_pub.line_val_tbl_type;
    l_line_adj_tbl oe_order_pub.line_adj_tbl_type;
    l_line_adj_val_tbl oe_order_pub.line_adj_val_tbl_type;
    l_line_price_att_tbl oe_order_pub.line_price_att_tbl_type;
    l_line_adj_att_tbl oe_order_pub.line_adj_att_tbl_type;
    l_line_adj_assoc_tbl oe_order_pub.line_adj_assoc_tbl_type;
    l_line_scredit_tbl oe_order_pub.line_scredit_tbl_type;
    l_line_scredit_val_tbl oe_order_pub.line_scredit_val_tbl_type;
    l_lot_serial_tbl oe_order_pub.lot_serial_tbl_type;
    l_lot_serial_val_tbl oe_order_pub.lot_serial_val_tbl_type;
    BEGIN
    oe_order_pub.process_order (p_api_version_number => 1.0,
    p_init_msg_list => fnd_api.g_true,
    p_return_values => fnd_api.g_false,
    p_action_commit => fnd_api.g_false,
    x_return_status => x_return_status,
    x_msg_count => x_msg_count,
    x_msg_data => x_msg_data,
    p_header_rec => p_header_rec,
    p_line_tbl => p_line_tbl,
    p_action_request_tbl => p_action_request_tbl,
    x_header_rec => p_header_rec,
    x_header_val_rec => l_header_val_rec,
    x_header_adj_tbl => l_header_adj_tbl,
    x_header_adj_val_tbl => l_header_adj_val_tbl,
    x_header_price_att_tbl => l_header_price_att_tbl,
    x_header_adj_att_tbl => l_header_adj_att_tbl,
    x_header_adj_assoc_tbl => l_header_adj_assoc_tbl,
    x_header_scredit_tbl => l_header_scredit_tbl,
    x_header_scredit_val_tbl => l_header_scredit_val_tbl,
    x_line_tbl => p_line_tbl,
    x_line_val_tbl => l_line_val_tbl,
    x_line_adj_tbl => l_line_adj_tbl,
    x_line_adj_val_tbl => l_line_adj_val_tbl,
    x_line_price_att_tbl => l_line_price_att_tbl,
    x_line_adj_att_tbl => l_line_adj_att_tbl,
    x_line_adj_assoc_tbl => l_line_adj_assoc_tbl,
    x_line_scredit_tbl => l_line_scredit_tbl,
    x_line_scredit_val_tbl => l_line_scredit_val_tbl,
    x_lot_serial_tbl => l_lot_serial_tbl,
    x_lot_serial_val_tbl => l_lot_serial_val_tbl,
    x_action_request_tbl => p_action_request_tbl);
    END process_order_api;
    PROCEDURE cancel_order (
    p_order_header_id oe_order_headers.header_id%TYPE,
    p_change_reason_code VARCHAR2,
    p_change_comments VARCHAR2,
    x_return_status OUT VARCHAR2,
    x_msg_count OUT NUMBER,
    x_msg_data OUT VARCHAR2) IS
    l_header_rec oe_order_pub.header_rec_type := oe_order_pub.g_miss_header_rec;
    l_stmt NUMBER;
    BEGIN
    l_stmt := 10;
    l_header_rec := OE_ORDER_PUB.G_MISS_HEADER_REC;
    l_header_rec.operation := oe_globals.g_opr_update;
    l_header_rec.header_id := p_order_header_id;
    l_header_rec.cancelled_flag := 'Y';
    l_header_rec.change_reason := p_change_reason_code;
    l_header_rec.change_comments := p_change_comments;
    -- Call process order api
    l_stmt := 20;
    process_order_api (p_header_rec => l_header_rec,
    p_line_tbl => oe_order_pub.g_miss_line_tbl,
    p_action_request_tbl => oe_order_pub.g_miss_request_tbl,
    x_return_status => x_return_status,
    x_msg_count => x_msg_count,
    x_msg_data => x_msg_data);
    l_stmt := 30;
    EXCEPTION
    WHEN OTHERS THEN
    oe_msg_pub.add_text ('Unexpected error in apcx_test_order_api.cancel_order, stmt ' || l_stmt || ': ' ||SQLERRM);
    x_msg_count := NVL (x_msg_count, 0) + 1;
    x_return_status := fnd_api.g_ret_sts_unexp_error;
    if x_return_status = FND_API.G_RET_STS_SUCCESS then
    dbms_output.put_line('success');
    commit;
    else
    dbms_output.put_line('failure');
    rollback;
    end if;
    end;
    END apcx_test_cancel_order;
    Thanks in advance.
    Raj
    Message was edited by:
    user613675

    Hi,
    Can you pls try by passing this parameter value too.
    l_header_adj.adjusted_amount := 5;
    Thanks,
    Praveen

  • HT201303 I need to cancel order I made its charging me monthly.....I thought I cancel abt 2 months ago.

    How can I cancel order made on itune?

    If it's an auto-renewing subscription then there are instructions on this page for managing and stopping them : http://support.apple.com/kb/HT4098

  • How can I cancel an order made as apple guest? or how can i associate it with an account?

    how can I cancel an order made as apple guest? or how can i associate it with an account?

    You should still have an order number
    call 1-800-MY-APPLE

  • How to cancel an order if transaction not complete

    How to cancel an order if transaction not complete

    Presuming you're referring to a purchase from the iTunes Store, go here:
    http://www.apple.com/support/itunes/contact/
    and follow the instructions to report the issue to the iTunes Store. Refunds are not guaranteed, but iTunes support should be able to help you in one way or another.
    Regards.

  • How to cancel an order or to remove one item, bought as a guest?

    how to cancel an order or to remove one item, bought as a guest?

    That does not help at all.
    Please explain.  Use sentences please.
    How do you buy something as a guest? 
    You have an iphone?
    You purchased an app?
    You don't want the app?  Simply delete it.  This is covered in the manual.
    If you do not explain what you are talking about, then it is very difficult to help

  • HT1420 how to cancel an order or to remove one item, bought as a guest?

    how to cancel an order or to remove one item, bought as a guest?

    All sales are final the moment you click buy

  • HT5772 How do you delete and cancel order placed in error? My recent purchase shows additional purchases not authorized.

    How do you cancel purchases made on the i-pod? My recent purchase included unauthorized apps and I need to cancel and refund the entire purchases.

    Were they 'placed in error' or 'unauthorised' ? Purchases are considered final, but you can try the 'report a problem' page to contact iTunes Support and see if they will refund or credit you : http://reportaproblem.apple.com
    If the 'report a problem' link doesn't work then you can try contacting iTunes support via this page : http://www.apple.com/support/itunes/contact/- click on Contact iTunes Store Support on the right-hand side of the page, then Purchases, Billing & Redemption

  • How to cancel pre order purchase movie rental on itunes

    how to cancel pre order purchase movie rental on itunes that i have already een charged for i wont press the download botton

    We are fellow users here on these user-to-user forums, you're not talking to iTunes Support nor Apple
    All purchases are considered final but you can try the 'report a problem' page to contact iTunes Support and see if they will refund or credit you : http://reportaproblem.apple.com
    Or you can try contacting iTunes Support via this page : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Purchases, Billing & Redemption

  • How to cancel an erase request made through find my I phone

    I lost an I phone and through " find my I phone " I found it was offline so I made a request to erase the phone when connected to internet.
    Next day I found it, how to cancel that erase request? I am afraid if I opened it it will connect to internet and be erased
    Anybody can help ?

    unlick wrote:
    same case happened to me but i got it backed up a day b4. now the problem is.... it is taking forever to erase the phone.
    the spinning bars is at the center of the screen for hours now and it is still spinning. any clue?
    It's probably waiting for the phone to come back on line so it can communicate with it.

  • How to cancel Transfer order

    Hi Every body
    Can you please tell me how to cancel Transfer order process

    Hi Varaprasad,
    You can't cancel the TRANSFER ORDER which was already confirmed using LT15
    LT15 can be used for non-confirmed Transfer orders
    Goto Transaction code LT01 and manally transfer the stock from Specified Bin  to Required Bin
    Or you can use LT0G to cancell the TRANSFER ORDER which was already confirmed.
    Please check and revert if you need further details.
    regards,
    santosh

  • How to cancel sales order which I placed?

    How to cancel sales order which I placed? And this order had not been delivered.

    Rejection SO & Cancellation SO both are same. So please follow the below steps-
    1. Use Tcode VA02
    2. Enter Sales order number which you want to cancel.
    3. Click "enter"
    4. Click the icon "Reject Document"
    5. Select suitable u2018Reason for rejectionu2019.
    6. Save
    Many Thanks & Regards,
    Susanta K Senapati

  • How to cancel my pending order

    Hey,
    Can any one tell me how to cancel my pending order. Also even if I dont cancel my
    order will my card be charged.
    Thanks.

    please contact Skype customer service
    TIME ZONE - US EASTERN. LOCATION - PHILADELPHIA, PA, USA.
    I recommend that you always run the latest Skype version: Windows & Mac
    If my advice helped to fix your issue please mark it as a solution to help others.
    Please note that I generally don't respond to unsolicited Private Messages. Thank you.

Maybe you are looking for

  • Fan Speeds, and Mirror Raid with New Internal Hard Drive

    Regards, I recently installed and formatted a new hard drive in my PowerMac dual 2.3 ghz computer and I have a few questions. 1. Now that there are two hard drives do I need to do anything to ensure that the fan on my computer can keep them cool? I t

  • Signing a certificate

    Is there a way to sign X.509 certificates using JCA? I can't find anything on how to sign an X.509 certificate with another one anywhere in the documentation for JCA, and Google searches haven't been any help so far. This is intended to be used in an

  • New iphone 5s has random iTunes IDs on app updates

    I got a new iphone 5s couple weeks ago (replacing 4s). Everything transferred fine but certain apps ask for random (non family members, unknown IDs) apple IDs to update them. This is happening with apps such as google maps, lose it, waze. There are a

  • Unable to switch off password saving

    Firefox prompts to save passwords. IWhen I go into Tools->Options->Security, the box "Remember passwords for site" is ticked but grayed out so I cant change it.

  • "Serial Number Not Found" and battery not charging

    Hi, I have a problem with my Compaq mini 110c 1030sf. It started a few months ago, when a weird red message appeared on the Compaq boot logo : "Serial Number Not Found". Everything was still working fine though, that's why I did not try to fix it. Ho