Help with trying to activate a nano sim

Hi. I bought an iPhone 5 from a work colleague and have now tried to have 3 different sims activated on the phone. All that shows is "No Service".
The phone is an unlocked one purchased direct from apple.
I have an additional contract that I took out for my wife which has the same sim type so I've put this sim into the phone that won't activate the sims and my phone accepts this and allows me to make calls so I think this rules out an issue with the iPhone I purchased.
I've spoken with numerous people from the network on the phone and also in their stores but they haven't been able to rectify the situation. They've changed my contract type to an iPhone contract, added the IMEI or whatever it is, had me doing hard resets, taking the sim out and I even wiped the phone and started again but nothing has worked.
I have now been close to 3 days without a phone - can someone please help?! :-(
Cheers
kd

Hi...
I've changed the custom code and used an embedded sql instead of a union but I still don't get the required info. I think it's down to the conditions. Can someone please help? Thanks.
This is the revised code:
select apps.fabg_depreciations.asset_id Asset_Number
,apps.fabg_depreciations.ytd_deprn YTD_Deprn
,apps.fabg_depreciations.deprn_amount Deprn_Amount
,apps.fabg_depreciations.accumulated_deprn Accumulated_Deprn
,apps.fabg_depreciations.reval_reserve Reval_reserve
,apps.fabg_acct_prds.period_name Period
,apps.fabg_asset_bks.original_cost Original_Cost
,apps.fabg_asset_bks.cost Cost
,apps.fabg_assets.asset_category_id Category_ID
,OD.accumulated_deprn Opening_Dep
,apps.fabg_asset_cats.description Description
from apps.fabg_depreciations
, apps.fabg_acct_prds
, apps.fabg_asset_bks
, apps.fabg_assets
, apps.fabg_asset_cats
,(select fabg_depreciations.asset_id, fabg_depreciations.accumulated_deprn, fabg_depreciations.period_counter from apps.fabg_depreciations) OD
where apps.fabg_depreciations.book_type_code= 'ASSETS CCA'
and apps.fabg_asset_bks.asset_id=apps.fabg_assets.asset_id
and apps.fabg_assets.asset_id = OD.asset_id
and apps.fabg_assets.asset_id=apps.fabg_depreciations.asset_id
--and apps.fabg_acct_prds.period_counter=apps.fabg_depreciations.period_counter(+)
and apps.fabg_assets.asset_category_id=fabg_asset_cats.asset_category_id
and apps.fabg_depreciations.period_counter=OD.period_counter(+)
and OD.period_counter = 24096

Similar Messages

  • Anyone had any luck with trying to get a nano sim from the carriers yet?

    These nano sims are a bit annoying seems like all the carriers in the UK, mine being Orange won't give me one till the 21st. That means I'll have my Iphone from Apple on the 21st but won't be able to use it as a phone because Orange refuse to give me a sim for it

    Hi,
    the BC 2.0 and the 2.1 update drivers are from late 2007, not Catalyst 8.8
    Two possibilities for you:
    Use this direct download link for the latest Mobility Catalyst Driver package (currently 8.8) http://ati.amd.com/online/mobilecatalyst/
    Or use the Mobility Modder found here http://www.driverheaven.net/modtool.php with the Desktop Caralyst Package found on AMDs website.
    Good Luck
    Stefan

  • HT5163 Hi, I'm trying to extract the nano sim tray on my new Ipad air. I know how it should come out but the tool does not seem to release the tray. Any ideas?

    Hi, I'm trying to extract the nano sim tray on my new Ipad air. I know how it should come out but the tool does not seem to release the tray. Any ideas?

    Thanks. It needed more pressure than I expected!
    Didn't want to break it when it's less then 24 hours old!
    BB

  • HELP WITH TRYING TO DO A FIXED ASSETS REPORT IN DISCOVERER

    Hi...
    I'll try and explain this simply as I can.
    I am trying to do a Disco report to basically list the asset numbers with the cost, the opening depreciation, the YTD depreciation, Accumulated depreciation and the remaining life of the asset.
    I can get most of the data from the FABG_DEPRECIATIONS table.
    The report will be run for a specific period say for example 05-2008. The problem I have is that for some of the assets there won't have been any depreciation for the year 2008 but I still need those assets to appear on the report showing the cost, opening depreciation etc.
    But because the report is being run for a specific period say 05-2008 in this example these assets that have no depreciation for the period are not being displayed on the report.
    As there isn't a field (I couldn't find one in any of the tables)that has the opening depreciation I have used a calculation for this which is Accumulated Depreciation - YTD depreciation. This is where my problem is. For those assets that have had no depreciation in the current year being reported on it should use the accumulated depreciation for say 12-2007 as the opening depreciation for the year 2008.
    So in the example of reporting for period 05-2008, it show the opening depreciation which would be the accumulated depreciation for 12-2007 and 0 (zero) for YTD depreciation.
    That is why I have attempted without success to use a union statement. The sql is below.
    I would be very grateful for some help with this please.
    select apps.fabg_depreciations.asset_id Asset_Number
    ,apps.fabg_depreciations.ytd_deprn YTD_Deprn
    ,apps.fabg_depreciations.deprn_amount Deprn_Amount
    ,apps.fabg_depreciations.accumulated_deprn Accumulated_Deprn
    ,apps.fabg_depreciations.reval_reserve Reval_reserve
    ,apps.fabg_acct_prds.period_name Period
    ,apps.fabg_asset_bks.original_cost Original_Cost
    ,apps.fabg_asset_bks.cost Cost
    ,apps.fabg_assets.asset_category_id Category_ID
    ,Null Period_Counter
    ,Null Opening_Dep
    ,apps.fabg_asset_cats.description Description
    from apps.fabg_depreciations
    , apps.fabg_acct_prds
    , apps.fabg_asset_bks
    , apps.fabg_assets
    , apps.fabg_asset_cats
    where apps.fabg_depreciations.book_type_code= 'ASSETS CCA'
    and apps.fabg_depreciations.period_counter =apps.fabg_acct_prds.period_counter
    and apps.fabg_asset_bks.asset_id=apps.fabg_depreciations.asset_id(+)
    and apps.fabg_assets.asset_id=apps.fabg_asset_bks.asset_id
    and apps.fabg_assets.asset_category_id=fabg_asset_cats.asset_category_id
    union
    select Null Asset_Number
    ,Null YTD_Deprn
    ,Null Deprn_Amount
    ,Null Accumulated_Deprn
    ,Null Reval_reserve
    ,Null Period
    ,Null Original_Cost
    ,Null Cost
    ,Null Category_ID
    ,Null Period_Counter
    ,decode(apps.fabg_depreciations.period_counter,24096,ytd_deprn,0) Opening_Dep
    ,Null Description
    from apps.fabg_depreciations
    , apps.fabg_acct_prds
    , apps.fabg_asset_bks
    , apps.fabg_assets
    , apps.fabg_asset_cats
    where apps.fabg_depreciations.book_type_code= 'ASSETS CCA'
    and apps.fabg_depreciations.period_counter=24096
    and apps.fabg_depreciations.period_counter =apps.fabg_acct_prds.period_counter
    and apps.fabg_asset_bks.asset_id=apps.fabg_depreciations.asset_id(+)
    and apps.fabg_assets.asset_id=apps.fabg_asset_bks.asset_id
    and apps.fabg_assets.asset_category_id=fabg_asset_cats.asset_category_id

    Hi...
    I've changed the custom code and used an embedded sql instead of a union but I still don't get the required info. I think it's down to the conditions. Can someone please help? Thanks.
    This is the revised code:
    select apps.fabg_depreciations.asset_id Asset_Number
    ,apps.fabg_depreciations.ytd_deprn YTD_Deprn
    ,apps.fabg_depreciations.deprn_amount Deprn_Amount
    ,apps.fabg_depreciations.accumulated_deprn Accumulated_Deprn
    ,apps.fabg_depreciations.reval_reserve Reval_reserve
    ,apps.fabg_acct_prds.period_name Period
    ,apps.fabg_asset_bks.original_cost Original_Cost
    ,apps.fabg_asset_bks.cost Cost
    ,apps.fabg_assets.asset_category_id Category_ID
    ,OD.accumulated_deprn Opening_Dep
    ,apps.fabg_asset_cats.description Description
    from apps.fabg_depreciations
    , apps.fabg_acct_prds
    , apps.fabg_asset_bks
    , apps.fabg_assets
    , apps.fabg_asset_cats
    ,(select fabg_depreciations.asset_id, fabg_depreciations.accumulated_deprn, fabg_depreciations.period_counter from apps.fabg_depreciations) OD
    where apps.fabg_depreciations.book_type_code= 'ASSETS CCA'
    and apps.fabg_asset_bks.asset_id=apps.fabg_assets.asset_id
    and apps.fabg_assets.asset_id = OD.asset_id
    and apps.fabg_assets.asset_id=apps.fabg_depreciations.asset_id
    --and apps.fabg_acct_prds.period_counter=apps.fabg_depreciations.period_counter(+)
    and apps.fabg_assets.asset_category_id=fabg_asset_cats.asset_category_id
    and apps.fabg_depreciations.period_counter=OD.period_counter(+)
    and OD.period_counter = 24096

  • I need help! Trying to activate Adobe Creative Suite 3! URGENT

    I am trying to activate my application and it's telling me to deactivate the application on an old computer. The old computer was cleaned off so I can't "deactivate" anything. I need help for an immediate project. HELP!
    I tried contacting Customer Service but couldn't get through to "chat".

    This is a user to user forum, not Adobe support... nobody here can help
    You must talk to Adobe for this problem
    Adobe contact information - http://helpx.adobe.com/contact.html
    Adobe Knowledgebase http://www.adobe.com/support/
    Help for Download & Install & Setup & Activation http://forums.adobe.com/community/download_install_setup
    Next link has a "Chat Now" button near the bottom
    http://helpx.adobe.com/x-productkb/policy-pricing/activation-deactivation-products.html

  • Need help with re-registering a 2nd nano

    Need help! I'm a new nano owner. I have 2 nanos (the 2nd is my boyfriend's). We have one computer. I unknowingly registered both under the same usename. How do I reinstall the 2nd under a new username so as to distinguish into 2 separate music libraries?

    Thank you for the help. However, I ran into another problem. I choose "method three" - create a separate iTunes library for each iPod. I did just that and created a new library, named and saved it. Worked great! However, now I can't find the first library, which contains all MY selections of music. Please help. I am not well versed with the computer, so please explain in detail. Thanks!

  • Help with voice-over on Ipod nano

    I'm totally blind and am using the 60g Ipod Nano with voice-over inabled. I am finding though even though the voice speaks the names of the menus, ie music, albums etc it doesn't speak the names of my albums or songs or tracks. What have I done wrong? I've tried connecting and leaving it to see if any voice tags are made, but nothing has happened. Any help would be welcome, it's driving me mad Many thanks from Lori.

    Try resetting your iPod.
    1. Toggle the Hold switch on and off. (Slide it to Hold, then turn it off again.)
    2. Press and hold the Menu and Center (Select) buttons simultaneously until the Apple logo appears, about 6 to 8 seconds. You may need to repeat this step.
    Tip: If you are having difficulty resetting your iPod, set it on a flat surface. Make sure the finger pressing the Select button is not touching any part of the click wheel. Also make sure that you are pressing the Menu button toward the outside of the click wheel, and not near the center.
    If the above steps did not work, try connecting iPod to a power adapter and plug the power adapter into an electrical outlet, or connect iPod to your computer. Make sure the computer is turned on and isn't set to go to sleep.
    Since you are totally blind, perhaps some one can double check your voice over settings to make sure everything is updated.
    The following information are links:
    iPod nano (5th generation): Enabling and updating VoiceOver
    Using Software Update for Windows to keep your Apple software up-to-date
    Every iPod comes with complimentary, single-incident telephone technical support within 90 days of your iPod purchase. _If you also purchased AppleCare, then your warranty is extended for technical support and hardware coverage for *two years* from the original purchase date of your iPod._

  • Help with where to send ipod nano back if its broken?

    My friend bought a green iPod nano from a shop while on holiday in Australia, she's crashed it and now I can't reset it for her. I've tried plugging it into USB port for hours, no sign of life even with a reset (its always worked on this machine before), even after several hours. No sign of it in Windows either.
    She can't find a guarantee or any leaflets in the small box, though I assume there must be a standard 12 month warranty with it?
    Can this be sent to Apple directly, or does she have to contact the retailer in Australia (we're in UK now).
    If anyone has any ideas, please let me know
    cheers
    Lee

    This would be a good place to start.
    http://depot.info.apple.com/ipod/
    Mort

  • Trying to activate my new sim but haven't received the pin code ?

    hello dunno if can help but i recived my new iphone today after lost old one and new sim. Ive tried to activiate the sim but i havent yet recieved a pin code? what do i do?

    Hi 
    Welcome to the EE Community!
    Id your SIM up and running now?
    Thanks. 

  • Help with trying to sync my IPhone 4 and IPad

    The IPhone cannot be synced. An internal device errpr occurred.
    A Folder was specified not a file. etc I am running Windows 7 have been with my Apple apps for over 2 years, this all started happening when I tried the latest Apple update, Patch have been delete installing adding moving stuff for over a week now still no luck. Help please absoultly frustrated.

    http://support.apple.com/kb/TS1567
    Regards.

  • Help with trying to install OS X ? on 2007 MBP 15.4

    I have  a MBP Late 2007, 4gb memory, 500gb HD and I can't get any other OS to install except Snow Leopard.
    I have tried many times and followed many recommendations from this discussion board but everything has failed.
    What would stop/freeze the instillation. I have no more options. Could it be the logic board stopping the instillation?
    Any new advise would be greatly appreciated.
    Thanks

    SMART errors indicate that the hard drive is going to fail soon, so don't install anything, get an external drive and make a Time Machine backup > http://support.apple.com/kb/HT1427 Then, take the iMac to an Apple Store to get the hard drive replaced.
    All hard drives stopped working with the use, so you shouldn't be worried about this if you have got a backup

  • Need some help with trying to stop blackberry be over written after sync. ...... had some numbers ect that i need back q

    Hi there am new to this but not new to Blackberry's in gen...ive had loads as had a fair few problems with the Torch 2's and Curve 3Gs...so Im now on the Torch 9800 and find that when ever I sync with my mac it keeps overwritting the contacts is there a way to stop this as I am getting increasingly annoyed with Blackerrys....I previously had an Iphone which was syncing well with my Mac (Apple Product.....shock...horror!) and that was fine it was only when I went to BlackBerry's as my friends said that it was much better...I wish I hadn't listened to them now....is there a way to stop the phone and mac to sync one way or the other for example Blackberry ----->Mac or Mac---->Blackberry as its really frustrating either reply to me here or use my bbm 

    Ok. We're not getting anywhere, are we?
    tombyford wrote:
    its on a mac as  I said the link you gave me was for windows 
    I know it is on a Mac, I gave you a link for Desktop Software ON A Mac. Not windows.
    And unless I am blind, you haven't pointed that out yet. I may be really really blind.
    You have yet to state, as I have asked now three times very clearly (I do see that I have) what are you syncing to ON the Mac... to what application ON the Mac? I will be more specific... Entourage, Office, Apple Mail? What?
    I'm glad to help here, but perhaps I am not the one who needs to handle this.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Help with trying to make a rollover button

    I'm trying to make a roll over button using this tutorial 
    http://www.pegaweb.com/tutorials/rollover-buttons/rollover-buttons.htm
    and it doesn't seem to do what the tutorial says it will do 2-3 steps in.
    The part where it says...
    Quote:
    - In the Channels window, Ctrl+Click the "Alpha" layer, to select its outline.
    - Go back to the Layers window, and create a new layer.
    - Choose the Gradient Tool. (Remember that it might be hidden under the Paint Bucket Tool.) Apply a gradient from the bottom of the image to the top.
    Mine does not create a gradient that looks like the image they have presented. 
    I just have the entire wood look, and then the outline of my button is just a little darker. I don't get the white background with the gradient applied to it in the button space.
    Would someone mind following the steps at this link and letting me know if it is missing something? It only took me 2 minutes to get to this point before I couldn't figure out why it wasn't doing what it was supposed to.

    When you create the button look in the upper left hand corner of the screen and see what type of object you are creating. Placing the mouse of the the three buttons will give you a tool tip of what they are.
    The one you want is the one on the right as it will create a pixel based rectangle. Make sure you put this rectangle on its own layer, then you can move it or delete it if necessary. Lock the transparency7 button at the top of the layers panel. The will make sure when you create the gradient it will put it inside the button you made and not outside of it.
    If you are seeing just a border I am thinking the middle button in the top tool bar is selected which creates a path. It is possible to fill that path and then create the gradient but you have to make sure that the lock transparency is not checked. Open the paths panel and at the bottom of the panel is a fill button. This creates a pixel based object which you can then create a transparency using the steps above.

  • Help with trying to make a app work

    i need help trying to make an app work ive updated everything all the requirements meet but it jus keeps freezing the app  is called pilot and wen i go to choose a plane it then jus shuts down the app

    So you have worked through each and every suggestion in this Apple support document including contacting the developer?
    iOS: Troubleshooting applications purchased from the App Store
    B-rock

  • Help with trying to locate Illustrator templates for CS version 1

    I'm trying to locate a copy of the templates that were issued as part of Illustrator CS version 1. Specifically, I'm looking for a file by the name of "flyer3.ait". I would, ideally, like to access all of the templates for CS, version 1, because I am reading the Adobe Illustrator CS, Idea Kit book by Jerome Holder & Barbara Mulligan. and they use these templates as starter files for their book. Thank you in advance.

    I really doubt that you are going to find them unless someone has a version of CS1 installed somewhere on an old machine. In the newer versions the template files are in a folder called Cool Extras which may or may not have been installed. Installation of this folder was an option in the newer versions. In AICS3, there is a template called flyer.ait in the above folder.

Maybe you are looking for

  • HOW CAN I FIND OUT HOW MANY SONGS I HAVE ON ITUNES?

    How can I find the total number of songs my itunes

  • Reading the contet via SQL

    Hello, I've created a file test.txt with some example content and uploaded it to xml db via ftp. When I execute SELECT r.RES.getClobVal() FROM RESOURCE_VIEW r WHERE equals_path(RES, '/LCS/order/V23184/test.txt') = 1; i get <Contents> <text>this is my

  • Create filter for Prcing Procedure in Business Object

    in the intial Download, I need to download Pricing procedure from r/3. but I need to give criteria, which are the tables i need to give criteria.    in intial dowload it overwrites the data or append? Please give the information asap.

  • Unable to create a technical system

    Hi I deleted a technical system and try to create the same but it is showing error CIM_ERR_ALREADY_EXISTS: Instance already exists: SAP_BCClient.CreationClassName="SAP_BCClient",Name="620.SystemName.SRD.SystemLicenseNumber.0020471770.SystemHome.dbd10

  • Monotonos en Illustrator

    Esta mañana trasteando con psh e ill he intentado colocar un psd "momotono" en un documento de ill. El documento de ill estaba en CMYK y al intentar colocar la imagen me decia que el formato de imagen no era correcto. He exportado el psd a eps (monot