Pay and go to pay monthly and keep your number all on o2, easy,

Had my NEW pay monthly sim, done a number swap on the web, then hung on 24 hours, nothing, web chat to O2, and there answer was, I was swaping my number from pay as you to pay as you go???, done this all again through o2chat, now 25 hours and still nothing, I think the next line will be cancel and stay on pay as you go

You need to use "keep my number" not a sim swap
http://www.o2.co.uk/help/phones-and-devices/how-to-keep-your-mobile-number

Similar Messages

  • Pay and go to pay monthly and keep your number all on o2, easy, B***ks

    Had my NEW pay monthly sim, done a number swap on the web, then hung on 24 hours, nothing, web chat to O2, and there answer was, I was swaping my number from pay as you to pay as you go???, done this all again through o2chat, now 25 hours and still nothing, I think the next line will be cancel and stay on pay as you go

    You need to use "keep my number" not a sim swap
    http://www.o2.co.uk/help/phones-and-devices/how-to-keep-your-mobile-number

  • Query to get holidays including saturday and sunday by giving month and year as input

    query to get holidays including saturday and sunday by giving month and year as input.

    Hi,
    Create a table for holidays.  You could INSERT one row for each holiday in each year, but it might be more useful if you just create 1 row for every day, with a column that tells whether that day is a holday, part of a weekend, or a work day.
    See
    http://forums.oracle.com/forums/message.jspa?messageID=3351081
    for a user-defined function that tests if a given DATE is holiday.
    You could use such a function when populating the table I mentioned earlier.

  • Table for Material Quantity and Value for particular month and year

    Hi All
    My requirement is that for a particular month and year I want to know the stock quantity and stock value for a particular material for a given plant.From which SAP table can I get this data as I want to fetch data for my Y report?
    Regards
    Satish Kumar

    Hi,
    You can use MB5B table as suggested earlier.also you can use:
    MBEW-VMKUM --> stock for previous month period
    MBEW-VJKUM --> stock for previous year period
    PLease view these links which migh tbe helpful to you:
    http://help.sap.com/saphelp_47x200/helpdata/en/39/55fee3bc6111d4b3960050dadf0791/content.htm
    TableStock
    Thanks
    Nisha

  • I recently purchased the Adobe Reader XI but can't edit a pdf file at all. Please advise on what is going on? I am paying roughly 18 GBP a month and my subscription says it is a Acrobat Pro Subscription on my account online.

    Do you know what may be causing this?

    I actually just figured it out. I had bought the Acrobat pro but never updated my program on my laptop...

  • Help with supply and demand query using monthly buckets

    I'm working on a query bound for Discoverer which pulls the aggregated supply and demand for an item and buckets it into months. So for any given item, I need to show the item, onhand, cost, aggregated supply (planned orders, requisitions, pos), and aggregated demand (planned order demand, jobs) - all bucketed by months.
    The code below works okay to find all of the data for July, but I also need to show August and September. I'm thinking I could use a union but am reluctant because the query already runs kind of slow and I'm not sure if I'm on the right track.
    Database Server
    RDBMS : 10.2.0.3.0
    Oracle Applications : 11.5.9
    -Tracy
    select
          item.inventory_item_id, item.organization_code, item.item, item.description
        , item.make_buy,item.planner_code
        , planned.compile_designator, planned.order_type_text, sum(planned.quantity_rate)planned_total
        , planned.mrp_sugg_due_month
        , sum(job.required_quantity-job.quantity_issued)job_open, job.required_month
        , onhand.total_qoh
        , purchase.item_revision prev, purchase.promised_month, purchase.ship_to_organization_id 
        , sum((purchase.quantity-purchase.quantity_cancelled)-purchase.quantity_received)po_open  
        , req.item_revision rrev, req.destination_organization_id, req.org_id, req.need_by_month
        , sum((req.quantity-req.quantity_cancelled)-req.quantity_delivered)req_open
        , cost.item_cost,cost.cost
    from
    --item--
    (select mtl.inventory_item_id, mtl.segment1 item,mtl.description,decode(mtl.planning_make_buy_code,1,'Make',2,'Buy') make_buy
            ,mtl.organization_id, mtp.organization_code, mtl.planner_code
           ,to_char(add_months(sysdate,+1),'YYYY_MM')month1, to_char(add_months(sysdate,+2),'YYYY_MM')month2
           ,to_char(add_months(sysdate,+3),'YYYY_MM')month3
    from    inv.mtl_system_items_b mtl, inv.mtl_parameters mtp
    where    mtl.organization_id = mtp.organization_id
    )item,
    --planned orders - 3 months --
    (select compile_designator,organization_id,inventory_item_id,order_type_text,nvl(quantity_rate,0)quantity_rate,new_due_date
           ,to_char(trunc(new_due_date,'MM'),'YYYY_MM')mrp_sugg_due_month
    from   apps.mrp_orders_sc_v
    where  order_type_text in ('Planned order','Planned order demand')
    and    to_char(trunc(new_due_date,'MM'),'YYYY_MM') <= to_char(add_months(:Month,+2),'YYYY_MM')
    and    to_char(trunc(new_due_date,'MM'),'YYYY_MM') >=  to_char(:Month,'YYYY_MM')
    )planned,
    --jobs - 3 months--
    (select organization_id,wip_entity_name job, inventory_item_id,concatenated_segments,nvl(required_quantity,0)required_quantity
            ,nvl(quantity_issued,0)quantity_issued, date_required,to_char(trunc(date_required,'MM'),'YYYY_MM') required_month
            ,wip_entity_id,creation_date, wip_job_status
    from    apps.wip_requirement_ops_inq_v
    where   primary_item_id <>inventory_item_id
    and     wip_job_status not in ('Closed','Cancelled','Complete')
    and     to_char(trunc(date_required,'MM'),'YYYY_MM') <= to_char(add_months(:Month,+2),'YYYY_MM')
    and     to_char(trunc(date_required,'MM'),'YYYY_MM') >= to_char(:Month,'YYYY_MM')
    )job,
    --qty onhand--
    (select  inventory_item_id,organization_id,sum(nvl(transaction_quantity,0))total_qoh
    from     inv.mtl_onhand_quantities_detail
    group by inventory_item_id, organization_id
    )onhand,
    -- po - 3 months--
    (select pol.item_id, pol.item_revision, nvl(pll.quantity,0)quantity, nvl(pll.quantity_received,0)quantity_received
          , nvl(pll.quantity_rejected,0),nvl(pll.quantity_cancelled,0)quantity_cancelled,poh.segment1 po_num
           ,pll.promised_date, to_char(trunc(pll.promised_date,'MM'),'YYYY_MM')promised_month
           ,pll.shipment_num,pll.ship_to_organization_id 
    from   po.po_lines_all pol, po.po_headers_all poh, po.po_line_locations_all pll
    where  poh.po_header_id = pol.po_header_id
    and    pol.po_header_id = pll.po_header_id
    and    pol.po_line_id = pll.po_line_id
    and    pol.cancel_flag != 'Y'
    and    pol.item_id is not null
    and    to_char(trunc(pll.promised_date,'MM'),'YYYY_MM')<= to_char(add_months(:Month,+2),'YYYY_MM')
    and    to_char(trunc(pll.promised_date,'MM'),'YYYY_MM')>=  to_char(:Month,'YYYY_MM')
    )purchase,
    --reqs - 3 months--
    (select prh.segment1 req_number,nvl(prl.quantity,0)quantity,nvl(prl.quantity_delivered,0)quantity_delivered
           ,nvl(prl.quantity_cancelled,0)quantity_cancelled
           ,prl.destination_organization_id,prl.org_id,prl.item_id,prl.item_revision,prl.need_by_date
           ,to_char(trunc(prl.need_by_date,'MM'),'YYYY_MM')need_by_month
    from   po.po_requisition_headers_all prh, po.po_requisition_lines_all prl
    where  prh.requisition_header_id = prl.requisition_header_id(+)
    and    nvl(prl.cancel_flag,'N') !='Y'
    and    prh.authorization_status != 'CANCELLED'
    and    to_char(trunc(prl.need_by_date,'MM'),'YYYY_MM') <= to_char(add_months(:Month,+2),'YYYY_MM')
    and    to_char(trunc(prl.need_by_date,'MM'),'YYYY_MM') >=  to_char(:Month,'YYYY_MM')
    )req,
    --cost--
    (select msib.inventory_item_id,msib.organization_id,cqm.material_cost,cic.item_cost
    ,(case when cqm.material_cost=0 then cic.item_cost else cqm.material_cost end) cost, cqm.cost_group_id
    from inv.mtl_system_items_b msib
         ,(select cql.cost_group_id,cql.inventory_item_id,cql.organization_id,cql.layer_quantity,cql.material_cost,mp.organization_code
             from bom.cst_quantity_layers cql, inv.mtl_parameters mp
            where mp.default_cost_group_id = cql.cost_group_id) cqm
        ,bom.cst_item_costs cic
    where msib.inventory_item_id = cqm.inventory_item_id(+)
    and msib.organization_id = cqm.organization_id(+)
    and msib.inventory_item_id = cic.inventory_item_id(+)
    and msib.organization_id = cic.organization_id(+)
    )cost
    where item.inventory_item_id = job.inventory_item_id(+)
    and   item.organization_id = job.organization_id(+)
    and   item.month1 = job.required_month(+)  -- 2009_07 --
    and   item.inventory_item_id = onhand.inventory_item_id(+)
    and   item.organization_id = onhand.organization_id(+)
    and   item.inventory_item_id = purchase.item_id(+)
    and   item.month1 = purchase.promised_month(+)  -- 2009_07 --
    and   item.inventory_item_id = req.item_id(+)
    and   item.month1 = req.need_by_month(+)  -- 2009_07 --
    and   item.inventory_item_id = cost.inventory_item_id(+)
    and   item.organization_id = cost.organization_id(+)
    and   item.inventory_item_id = planned.inventory_item_id(+)
    and   item.organization_id = planned.organization_id(+)
    and   item.month1 = planned.mrp_sugg_due_month(+)  -- 2009_07 --
    and   item.make_buy = 'Buy'
    and   item.item in ('161309040','744L755','150-GFM') --test items --
    group by item.inventory_item_id,item.organization_code,item.item,item.description,item.make_buy,item.planner_code
          ,job.required_month ,onhand.total_qoh , purchase.item_revision,  purchase.promised_month
            ,purchase.ship_to_organization_id  ,cost.item_cost,cost.cost
           ,req.item_revision, req.destination_organization_id,req.org_id,req.need_by_month
           ,planned.compile_designator,planned.order_type_text,planned.mrp_sugg_due_month
    order by item.organization_code,item.item

    Hi,
    Six things:
    (1) Where are the one-to-many relationships between your tables? If a single row in mtl can match two (or more) rows in mrp, and can also match two (or more) rows in wip, then it looks like, when you join both of them them, you'll have a chasm trap, that is, you'll get all the matching rows from mrp paired with all matching rows from wip. Are you sure your existing query is producing the right results?
    Are there one-to-many relationships with the other tables in your original query?
    (2) Are your DATEs always at midnight? If not, avoid using BETWEEN and LAST_DAY for DATE comparisons: otherwise you'll miss everything between 00:00:01 and 23:59:59 on the last day.
    That is, instead of
    and     mrp.new_due_date(+) BETWEEN :Month AND LAST_DAY(ADD_MONTHS(:Month,2))ypou should say
    and       mrp.new_due_date (+)     >= :Month
    and       mrp.new_due_date (+)     <  ADD_MONTHS (:Month, 3)(3) The basic way to pivot the months of mrp_due_date is:
    SELECT    ...
    ,       NVL ( SUM ( CASE
                     WHEN  mrp.new_due_date >= :month
                     AND   mrp.new_due_date < ADD_MONTHS (:month, 1)
                     THEN  mrp.quantity_rate
                    END
               , 0
               )          AS mrp_qty_0
    ,       NVL ( SUM ( CASE
                     WHEN  mrp.new_due_date >= ADD_MONTHS (:month, 1)
                     AND   mrp.new_due_date <  ADD_MONTHS (:month, 2)
                     THEN  mrp.quantity_rate
                    END
               , 0
               )          AS mrp_qty_1When you do this, do not GROUP BY TRUNC (mrp.new_due_date, 'MM').
    The code above does two months: I'm sure you get the idea for how to do more.
    To get dynamic column headings (such as Jun_2009 or "2009-06" instead of the generic mrp_qty_o) requires dynamic SQL. The best way to do dynamic SQL depends on the tool that is producing the query (e.g. SQL*Plus). What are you using? Are you willing to change, if it helps?
    (4) Displaying separate columns from one row as a single column on multiple rows is called unpivoting. How badly do you want to do that? Your query would be simpler and faster if the output had only one row per group (rather than one row for mrp_qty and another row for wip_wty). That one row could have six columns (e.q. June_mrp, June_wip, July_mrp, July_wip, August_mrp and August_wip) instead of three. Depending on your front-end tool, you might even be able to wrap the single row of output so that it always appeared as two rows, each with three columns.
    (5) Sorry I told you to do
    and     mrp.order_type_text(+) in (...)I never use the + outer-join notation any more, so I forgot about the ORA-01719 error. There's no problem having an outer-join condition like that using ANSI notation. (One more reason to switch.)
    (6) As you noticed, this site doesn't like to print the &lt;&gt; inequality operator, even inside tags.
    Use the equivalent != operator instead, when posting on this site.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Convert days to months and days?

    Hi,
    I need to take a a numeric value like 280 (which is really the number of days) and convert it to the number of months and days (eg 9 months and 10 days). Is this possible with PowerShell?
    Thanks
    Adam

    $ht = @{Months=$days/30;Days=$days%30}
    [string](0..33|%{[char][int](46+("686552495351636652556262185355647068516270555358646562655775 0645570").substring(($_*2),2))})-replace " "
    G
              ... rubbishell code ( from #2 ).
    I tested your rubbishell code, and got bad result:
    PS Q:\> $days=299 ; $ht = @{Months=$days/30;Days=$days%30} ; $ht
    Name                           Value                                                                                        
    Days                           29                                                                                           
    Months                         9,96666666666667                                                                             
    Do you really think 9,9666... is an integral number?
    No, it's not.
    If you wanna know the correct values, just look above at my last reply.
    I didn't realize you don't know how to truncate decimal.
    $ht = @{Months=[int](($days/30)-.5);Days=$days%30}
    But you did put together that convoluted mess to get the equivalent of a simple modulo operation, so that probably should have been a clue.
    [string](0..33|%{[char][int](46+("686552495351636652556262185355647068516270555358646562655775 0645570").substring(($_*2),2))})-replace " "
    GREAT!
              ... rubbishell code ( from #2 ).
    I tested your rubbishell code ONCE MORE(!), and got bad result
    ONCE MORE(!):
    PS Q:\> $days=300 ; $ht = @{Months=[int](($days/30)-.5);Days=$days%30} ; $ht
    Name                           Value                                                                                        
    Days                           0                                                                                            
    Months                         10                                                                              
    Do you really think 10 is equal to 11?
    Don't you think the correct answer is 11?
    If you wanna know the correct values, just look above at my last reply.
    Give it up dude, you'd better copy and paste my PowerShell code.  :)
    No, I'm pretty sure 300 days at 30 days/month is 10 months.  
    [string](0..33|%{[char][int](46+("686552495351636652556262185355647068516270555358646562655775 0645570").substring(($_*2),2))})-replace " "

  • Return the end of week date using month and week number

    Hi all,
    I am trying to find the date for end of the week using given month (201401, 201402...i.e, 2014 is year and 01,02 are months) and week number (01,02,03...) for the year. For example if my month is 201402 and week_number is 06 then it return the week_date
    as 2014-02-08. Can you please help me in writing a sql statement for this scenario.
    Thanks in advance,
    Nikhil

    Current month is irrelevant
    with dt as (
       select dateadd(day, (6-1)*7, '2014-01-01') as xwk
    select dateadd(day, 7-datepart(weekday, dt.xwk), xwk)
    from dt;
    Change the "6" in the with statement to the week of interest and 2014 to the year of interest...

  • Switch plans and keep my number?

    I am currently on my family's shared plan, and I'm not sure if my contract is up or almost up, but I want to switch from my family's to my fiance's (still on verizon)... What is the easiest way to do this and still keep my number?  Is it going to cost a ton to make the change?  Thanks!

    Your fiance needs to do an Assumption of Liability(AOL) for your line. There is no charge and you can keep your number.

  • I have a music library on an iMac and I got a new iPhone and a new MacBook Pro and I want some of the songs from the iMac library to be on my phone and my MacBook Pro and I have a new Apple ID on my phone and my Mac book pro

    I have a music library on an iMac and I got a new iPhone and a new MacBook Pro and I want some of the songs from the iMac library to be on my phone and my MacBook Pro and I have a new Apple ID on my phone and my Mac book pro, is this possible if so how do I do it?

    Providing specifics on all the ways to do this will take more time than I am willing to spend here these days.  You can do some of this with Home Sharing.  You can transfer the entire library from one computer to another, If you do that you can delete what you don't want from the transferred library.
    Quick answer if you use iTunes' default preferences settings: Copy the entire iTunes folder (and in doing so all its subfolders and files) intact to the other drive. Open iTunes and immediately hold down the option (alt) key (shift on Windows) so you get a prompt to select a library, then guide it to the 'iTunes Library.itl' file in the moved iTunes folder. If you put the copied iTunes folder in the default location of Macintosh HD > Users > *User Name* > Music then you don't even need to start with the option key held down, iTunes will automatically look for it there. (Make sure there isn't anything already in the iTunes folder there that you want to keep since you will be replacing it with the one you are moving.)
    You do not want to use a new AppleID.  Change the  AppleID on the new phone to the old ID.  Purchases made with one AppleID cannot be transferred to a different one and it will be a royal pain to manage two Apple IDs.
    Change iTunes Store account on an iOS device - Log out of your current account with Settings.app > Store (Settings > iTunes & App Stores on iOS 6) > tap on your AppleID. Log in with a different account. Note, turning on automatic downloads or re-download past purchases may tie the device to that account for 90 days - http://support.apple.com/kb/HT4627 https://discussions.apple.com/message/18484935 - "In order to change your Apple ID or password for your iCloud account on your iOS device, you need to delete the account from your iOS device first, then add it back using your updated details. (Settings > iCloud, scroll down and hit "Delete Account") When you delete your account, all the data that is synced with iCloud will also be deleted from the device (but not from iCloud), but will be synced back to your device when you login again."

  • Keep sprint number without breaking contract?

    I received an iPhone for Christmas and figured it would be great timing because my Sprint contract expires in just a few days (the beginning of January). I have been a sprint member and have had the same phone number for the past four or five years. I know that I can keep my current phone number and transfer it to AT&T, but I've heard a lot of conflicting information. Most people are telling me that I have to cancel my sprint contract in order to keep the number. Others are saying wait till it runs out and you will still be able to use the number. I'm not sure what to do--is there any way to transfer my current phone number to a new AT&T account WITHOUT breaking my sprint contract? Will letting the contract expire still allow me to have the number? Like I said, it's up in a few days anyway and there's no way I want to pay $200 to break it.

    You can port your number prior to the end of your contract, you must call Sprint and ask for a new number and let them know that your are porting your current number and that you are trying to do a change of responsibilty on the current service, you have 60 days to find a new customer, but if you don't find a new customer no big deal since your contract will expire before the 60 day period.

  • What is the best way to untangle myself from my parent's phone plan while keeping my number?

    I know what I would like to accomplish I just need to figure out the correct steps to take. So the situation at present is that I have a line which is tied to my parents Verizon account that I would like to take over. However, I do not wish to alter my parents plan since they are grandfathered in for an unlimited data plan. Additionally, I am trying to start a new plan with my fiancé who does not currently have Verizon phone.
    I have a series of questions so the answer to any of them would be greatly appreciated.
    1)  If do an assumption of liability for the line I currently use will it terminate my parents contract or result in any fees being charged to their account? Will they still have the same plan text, talk, data limitations? Will removing my line from their plan result in a price change for them (since it will be one less line on the plan) or will it remain the same because the plan they are enrolled in is no longer available?
    2) If I assume liability for the line does that count as initiating a new 2-year contract? If it does can I add a new line to the plan at that point? I’m also curious if I’m I eligible for the new 2-year contract pricing on a new phone if I assume liability for the line?
    3) Is my life going to be infinitely easier if we both just ditch our old numbers? Might it be a better (or even possible) alternative to get a new plan with 2 lines and port our old numbers? (Keeping in mind I don’t want to mess with my parents plan) For instance essentially trading the phone number I use on my parents line for whatever number is assigned the new plan I sign up for? And is it an incorrect assumption that my fiancé can keep her old number from Straight Talk?

    clarificationrequired wrote:
    I know what I would like to accomplish I just need to figure out the correct steps to take. So the situation at present is that I have a line which is tied to my parents Verizon account that I would like to take over. However, I do not wish to alter my parents plan since they are grandfathered in for an unlimited data plan. Additionally, I am trying to start a new plan with my fiancé who does not currently have Verizon phone.
    I have a series of questions so the answer to any of them would be greatly appreciated.
    1)  If do an assumption of liability for the line I currently use will it terminate my parents contract or result in any fees being charged to their account? Will they still have the same plan text, talk, data limitations? Will removing my line from their plan result in a price change for them (since it will be one less line on the plan) or will it remain the same because the plan they are enrolled in is no longer available? The AOL will not result in any additional fees on your parents plan, and will simply remove your line, leaving the rest of their plan intact.  The cost of your line will be dropped, as it is no longer part of the plan.  If they still have the unlimited data, then it sounds like the Nationwide plan, so your line would be either $10 or $10 + $30 if you have a smartphone.  That amount would simply drop off.
    2) If I assume liability for the line does that count as initiating a new 2-year contract? No.  Your contract remains the same as it was, with the same upgrade / contract end date.  If it does can I add a new line to the plan at that point? I’m also curious if I’m I eligible for the new 2-year contract pricing on a new phone if I assume liability for the line?  You can split off into your own plan, keep your number, and add a line for your fiance.  You can port your fiance's number from Straight Talk to the new account.  There's no reason to "ditch" your current numbers.  In fact, by starting a new plan with a new number and cancelling your current number on your parents plan, WOULD result in an ETF if the # is still in contract.  You would probably be eligible for 2 yr pricing on the new line for your fiance, and she likely would need a new phone to work on Verizon (ST may or may not work on a Verizon contract account, I'm not sure).  Your line would carry over with the same eligibility it has now.
    3) Is my life going to be infinitely easier if we both just ditch our old numbers? Might it be a better (or even possible) alternative to get a new plan with 2 lines and port our old numbers? (Keeping in mind I don’t want to mess with my parents plan) For instance essentially trading the phone number I use on my parents line for whatever number is assigned the new plan I sign up for? And is it an incorrect assumption that my fiancé can keep her old number from Straight Talk?

  • If I change phone can I still keep my number?

    I am planning on getting a new phone and want to know if i can keep my number. Also will my plan transfer onto the new phone?

    NessaS97, Gone are the days of having to get a new number with each new phone. You most definitely will be able to keep your number. And in most cases, your plan will also carry over. The only time this would change is if you are moving from a basic to smartphone or if you currently still have unlimited data. In which case, you will be required to move to current pricing. I hope that this information is helpful!     ErinW_VZW Follow us on Twitter @VZWSupport If my response answered your question please click the "Correct Answer" button under my response. This ensures others can benefit from our conversation. Thanks in advance for your help with this!!

  • Hi, I downloaded, activated, registered both on my laptop and desktop Adobe CC InDesign and Illustrator.   I am paying a monthly fee.  The problem is, when I start my program, it keeps asking me to register my program and it says my free trial is over.

    Hi, I downloaded, activated, registered both on my laptop and desktop Adobe CC InDesign and Illustrator.   I am paying a monthly fee.  The problem is, when I start my program, it keeps asking me to register my program and it says my free trial is over.
    Can you check into this for me.

    If you want Adobe to check it you'll need to contact them (use CHAT) but you could try checking whether you just need to SIGN IN to your apps.

  • I downloaded acrobat pro standard but for some reason I cannot activate the product, I pay a rental fee each month for the product and it keeps asking me for an activation serial number

    how do I get the original acrobat pro x back
    yesterday I download and got a version which is very difficult to work with

    Hi bobigene,
    bobigene wrote:
    no it keeps asking me for a serial number, all the links that were sent for download non are for English
    this is crazy
    The Links provided to you are in English language..Do you see them in any other language? (if yes, screenshot please. )
    OR do you mean you are looking for installer in English language? (If that's the case, then please download the installer using that link, as it is a Multilingual installation package.)
    If i have wrongly interpreted your issue, please revert back with more details.
    Moreover, Can you attach the screenshot of the Acrobat application window, so that we can guide you more accurately?
    Regards,
    Rahul

Maybe you are looking for