Experia M dual c2005 unable to get data roaming since update to android 4.3

Hi,since the phone was updated (automatically) to android 4.3 i canty get any data roaming. any suggestion?

I have the same problem with my Xperia M Dual C2004. I cannot get data to work when I'm abroad. Data works fine when I'm on my national network but as soon as I cross a border and roam on a different network a warning triangle shows in the notification line on top of the phone: Data transmission is turned off - no connection! All the right boxes are ticked off and International Roaming has been chosen before I left my home network. Voice calls and SMS works fine while I'm abroad. It has not been a problem for me before as International Roaming from your home service provider has been prohibitively expensive. Part of my reason to buy a Dual SIM phone was the ability to use a local SIM for Data in slot one. But as International Roaming prices are comming down I would like to be able to use this option. I have used it with SIM cards from US T-mobile and German LIDL as well as a couple of Danish service providers. They alle work fine as long as no borders are crossed. Android version is 4.3 and Version Number is 15.5.A.1.5. The latest and final update. I'm looking into a possible downgrade to 15.2.A.2.5 as mentioned above. Can anyone point me to where I can find this for a C2004? I have been able to find it for a C2005. But for C2004 the best I can find is 15.2.A.1.12 something called Storefront.    

Similar Messages

  • DropDrown unable to get data in ALV

    Hi,
    I'm trying to put an dropdown by key (or index) into an ALV but I'm unable to get data in the dropdown. Can someone please help me with this?
    I was watching this threads on topics at the forum, but I can not solve this problem.
    Copy my code.
      DATA: lr_col                            TYPE REF TO cl_salv_wd_column,
                 lr_dropdown                  TYPE REF TO cl_salv_wd_uie_dropdown_by_key,
                 l_cmp_usage                TYPE REF TO if_wd_component_usage,
                 l_alv_model                   TYPE REF TO cl_salv_wd_config_table,
                 l_ref_interfacecontroller  TYPE REF TO iwci_salv_wd_table.
      l_cmp_usage = wd_this->wd_cpuse_doc_measure( ).
      IF l_cmp_usage->has_active_component( ) IS INITIAL.
        l_cmp_usage->create_component( ).
      ENDIF.
      l_ref_interfacecontroller = wd_this->wd_cpifc_doc_measure( ).
      l_alv_model = l_ref_interfacecontroller->get_model( ).
      l_alv_model = l_ref_interfacecontroller->get_model( ).
      l_alv_model->if_salv_wd_table_settings~set_read_only( abap_false ).
      lr_col = l_alv_model->if_salv_wd_column_settings~get_column(
        id = 'VALEUR_DIFF' ).
      CREATE OBJECT lr_dropdown
        EXPORTING
          selected_key_fieldname = 'VALEUR_DIFF '.
      lr_col->set_cell_editor( lr_dropdown ).
      DATA:
      lo_nd_ctx_tab TYPE REF TO if_wd_context_node,
      lo_ndinfo_ctx_tab TYPE REF TO if_wd_context_node_info,
      lt_value_set TYPE TABLE OF wdr_context_attr_value,
      ls_value_set TYPE wdr_context_attr_value.
      ls_value_set-value = '01'.
      ls_value_set-text = 'One'.
      APPEND ls_value_set TO lt_value_set.
      ls_value_set-value = '02'.
      ls_value_set-text = 'Two'.
      APPEND ls_value_set TO lt_value_set.
      lo_nd_ctx_tab = wd_context->get_child_node( 'DOC_MEASURE' ).
      lo_ndinfo_ctx_tab = lo_nd_ctx_tab->get_node_info( ).
      lo_ndinfo_ctx_tab->set_attribute_value_set(
        name = 'VALEUR_DIFF' value_set = lt_value_set ).
      DATA: lt_valueset TYPE TABLE OF wdr_context_attr_value,
                ls_valueset TYPE wdr_context_attr_value,
                lr_node TYPE REF TO if_wd_context_node,
                lr_nodeinfo TYPE REF TO if_wd_context_node_info.
      lr_node = wd_context->get_child_node( 'DOC_MEASURE' ).
      lr_nodeinfo = lr_node->get_node_info( ).
      lr_nodeinfo->set_attribute_value_set(
      EXPORTING
        name = 'VALEUR_DIFF'
        value_set = lt_valueset
    Thanks.
    Matías.

    Hi,
    In your code, you are trying to do set_attribute_value_set twice. If you read your code carefully, you are setting the values once using lt_value_set where you have correctly filled the values. But after this, you are again trying using lt_valueset without filling any values. This is why your previous value-list gets overwritten and you see nothing in the dropdown. Remove the following lines in your code and it will work fine.
    DATA: lt_valueset TYPE TABLE OF wdr_context_attr_value,
    ls_valueset TYPE wdr_context_attr_value,
    lr_node TYPE REF TO if_wd_context_node,
    lr_nodeinfo TYPE REF TO if_wd_context_node_info.
    lr_node = wd_context->get_child_node( 'DOC_MEASURE' ).
    lr_nodeinfo = lr_node->get_node_info( ).
    lr_nodeinfo->set_attribute_value_set(
    EXPORTING
    name = 'VALEUR_DIFF'
    value_set = lt_valueset
    Please get back if you are facing any more issues.
    Regards,
    Nithya

  • Table are not prefixed with Schema in  SQL request - Unable to get Data

    I began this new thread because I closed the [previous one|Unable to get data (DSN connection); a little bit early, I believed it was OK but no the problem still here.
    First my architecture :
    Oracle 9g
    +500 Reports made under CR developper 8.5 or 9.0
    Report opened in VB .net application, framework 2.0 using CR runtime 8.5 and 9.0
    We want to upgrade CR version to 2008, so modification of reports will be done with CR 2008 Developper, and we want to
    use only CR 2008 runtime.
    The problem :
    Everything works fine in CR Developer, but the same report with the same parameters failed when called inside .net.
    The error is "Unable to get data", the database connection is OK but the queries mades from inside the report are wrong :
    The tables/views in the from statement are not prefixed with the Schema, so Oracle don't find them.
    Example (SQL monitoring done with TOAD)
    Execution of postes.rpt report directly in CR :
    Timestamp: 10:30:03.881
    Successful logon attempt (session tag: 0x6464CB8)
    username: 'APPLI_HUET'; database: 'DEV'
    SELECT ...
    FROM  "COMMUN"."ETAB" "ETAB" INNER JOIN "GESTION_DES_TEMPS"."POSTES" "POSTES"
    ON "ETAB"."N_ETAB"="POSTES"."N_ETAB"
    WHERE  "POSTES"."N_ETAB"=2 ORDER BY "POSTES"."N_POSTE"
    Timestamp: 10:50:29.178
    Logoff (session tag: 0x6464CB8).
    Same report, same authentication but throught .net program :
    Timestamp: 11:01:24.569
    Successful logon attempt (session tag: 0xA93FC38)
    username: 'APPLI_HUET'; database: 'DEV'
    SELECT ...
    FROM   "ETAB" "ETAB" INNER JOIN "POSTES" "POSTES"
    ON "ETAB"."N_ETAB"="POSTES"."N_ETAB" WHERE  "POSTES"."N_ETAB"=2 ORDER
    BY "POSTES"."N_POSTE"
    Runtime error occurred: 942 (ORA-00942: Table ou vue inexistante)
    The .net code :
    Dim _report As New ReportDocument()
    _report.Load("report.rpt", OpenReportMethod.OpenReportByDefault)
    Dim myConnectionInfo As ConnectionInfo = New ConnectionInfo()
    myConnectionInfo.ServerName = "DSN_file"
    myConnectionInfo.UserID = p_Userid
    myConnectionInfo.Password = p_Password
    ' to see code in this method se my original post
    SetDBLogonForReport(myConnectionInfo, _report)
    SetDBLogonForSubreports(myConnectionInfo, _report)
    Dim frmViewer As New CrystalReportViewer
    frmViewer.CrystalReportViewer1.ReportSource = _report
    frmViewer.Show()
    Any ideas ?

    Thanks for the and sorry but I don't understand.
    I've made a research of Location on this forum the more intersting thread I've found is rpt-files do not function anymore after deploying to a different database, but I still don't understand.
    I take a look at all code sample and I can't found anything.
    You say that .Location need to be set, indeed Location property of CrystalDecisions.CrystalReports.Engine.Table object only contains table name.
    I tried to overrides this value by the fully qualified table name (ie Schema.Table, for example GESTION_DES_TEMPS.POSTES), and it work  BUT it wouldn't be the solution, my code is designed to be generic, I can't have a database to know wich schema add before differents table name.
    Why when we execute the report directly in CR 2008 developper we don't have to redefine the table location ?
    Another test :
    I've made a new report directly in CR 2008 with a DSN, launch it in .net with the same DSN (server) : OK
    Then I launch it in .net with another DSN, it work also.
    Why report done with Crystal 8.5 or 9.0 have this problem ?
    I'me gonna be mad....
    Edited by: Yoann DAVID on Jan 8, 2010 3:32 PM

  • Unable to get date in yyyy.MM.dd format

    Hi All
    I am unable to get date in yyyy.MM.dd format.
    I tried everything said in the previous postiongs.Nothig seem to work.
    I am getting date in yyyy-MM-dd
    This needs to be changed in said format. Also datatype should be date only.
    Regards
    Pratyush

    You can solve the problem in two ways
    First way;
    Format formatter = new SimpleDateFormat("yyyy.MM.dd");
    String s = formatter.format(date);
    OR
    Assuming your context attribute name is Date
    IWDAttributeInfo attributeInfo = wdContext.getNodeInfo().getAttribute("Date");
    attributeInfo.getDataAttribute().getScalarType().format("yyyy.MM.dd");
    Second way;
    By changing the default Language of your browser. You have to check the format of each language and choose the language that gives the date in yyyy.MM.dd format.
    Rgs,
       Dni

  • Unable to print PDF files since update. Get "prop res DLL not loaded" message

    Unable to print PDF files since update. Get "prop res DLL not loaded" message

    This problem has been reported to occur with certain Lexmark and Dell printers. These printers include the following:
    Lexmark Z700-P700
    Lexmark X1180
    Lexmark X1170
    Lexmark X1150
    Lexmark P706
    Lexmark Z25
    Dell A940 (Personal All-in-One)
    Microsoft has several possible solutions here
    http://support.microsoft.com/kb/918730

  • HT4061 How do I unlock my iPad? Unable to get serial number since I can't open iPad to get serial number to get help fixing problem.

    How do I unlock my iPad? Unable to get serial number since I can't open iPad to get serial number to get help fixing problem.

    What do you need the serial number for to unlock the iPad? If the iPad is locked because you forgot the Passcode, you have to restore the device.
    What are you trying to unlock?
    Your serial number is written on the back of the iPad and on the box that the iPad came in.

  • Unable to get data (DSN connection)

    I've got a report file, created using ODBC connexion with DSN File
    These report work fine in design mode using crystal report full (not Visual studio)
    When I try to open this report in a .net application I've got the following error :
    Crystal Reports Windows Forms Viewer
    Impossible d'extraire des données de la base de données.
    Détails : 
    Impossible d'extraire des données de la base de données.
    Erreur dans le fichier Postes {A47B5908-2F0A-4A3D-A2A5-A708FEB329EB}.rpt:
    Impossible d'extraire les données de la base de données.
    Détails : 
    Which can be translate by :
    Unable to extract datas from database
    Details:
    My database is Oracle, error code 942 means table or view does not exist
    In my .net code I use DSN connection (the same as in design mode) like this :
    Dim myConnectionInfo As ConnectionInfo = New ConnectionInfo()
    myConnectionInfo.ServerName = "my_dsn_file"
    For your information this report has been made with CR 9 and converted to CR 2008
    In CR 9 everything worked fine.
    Any idea ?
    Thanks

    This Forum edito  is buggy ? I had to split my answer otherwise the format is broken
    Also you wrote: "User used to create connection (throught DSN) is a generic user, not the user associated with the schema containing the view accessed by the report"
    It's odd that this works in CR, CR repsects DB security so if it's not in a schema that user should not have access to anything in Oracle, I'm surprised it works at all. Possibly this is a bug in CR 8.5 and 9 that finally got fixed.
    Work arounds, what is the reason you can't add that user account to a schema? Or use an account that has access?
    I problably don't use the correct words (I'me not Oracle DBA + translation approximation).
    Of course our user "application_user" has right on all the schema of the database, what I want to say it's when you connect to Oracle with a user "application_user" you're connected in the schema corresponding to these user (so "application_user" schema).
    And if you want to make request on a table / view from another schema you need to prefix table/view with the corresponding schema (Sale in my previous fictive example)
    So in my case CR try to access "CommercialDocument" view in "application_user" schema but this view is not in  this schema, it is in "Sales" schema.
    The correct way to access it is Sales.CommercialDocument, that what CR throught .net don't do, but do when run directly in CR developers.
    Here is real example (fench name inside), those SQL request have been monitoring througt SQL monitor tools of TOAD :
    Execution of postes.rpt report directly in CR :
    Timestamp: 10:30:03.881
    Successful logon attempt (session tag: 0x6464CB8)
    username: 'APPLI_HUET'; database: 'DEV'
    Timestamp: 10:30:03.881
    SELECT VALUE FROM SYS.NLS_DATABASE_PARAMETERS WHERE PARAMETER = 'NLS_CHARACTERSET'
    Timestamp: 10:30:03.896
    SELECT VALUE FROM SYS.NLS_DATABASE_PARAMETERS WHERE PARAMETER = 'NLS_NCHAR_CHARACTERSET'
    Timestamp: 10:30:03.975
    SELECT "POSTES"."N_POSTE", "POSTES"."LIB_POSTE", "POSTES"."N_ETAB",
    "POSTES"."N_ATELIER", "POSTES"."TPSID", "POSTES"."DT_DEB_ACTIF",
    "POSTES"."DT_FIN_ACTIF", "ETAB"."ETAB" FROM   "COMMUN"."ETAB" "ETAB" INNER JOIN
    "GESTION_DES_TEMPS"."POSTES" "POSTES" ON "ETAB"."N_ETAB"="POSTES"."N_ETAB"
    WHERE  "POSTES"."N_ETAB"=2 ORDER BY "POSTES"."N_POSTE"
    Timestamp: 10:50:29.178
    Logoff (session tag: 0x6464CB8).

  • HT201415 My data connection works when its in an andriod phone but when I switch it over to the iphone 4 unable to get data connection?

    I have just swapped from Galaxy 3 to the iPhone 4 but once I swap the chip card over I do not get Data Connection?

    Most carriers diferentiate between regular data plans and iPhone data plans. Also, if you go into Settings, is celluar data turned on? Check with your carrier.

  • In Pages 5, how to get date to automatically update upon opening a template?

    I'm using Pages 5.2. In prior versions of Appleworks and Pages I was able to construct and save a template in which the date would automatically update to the current date when the template was opened. I have tried "Insert Date" and I can click on that to update to current date, but I don't always remember to do that and therefore, some of my documents are dated several months prior.
    Can't seem to find how to do it under Pages 5.2 Anyone have help or a work around?

    I have the same problem.
    What confuses me is that all the apple provided templates in pages seem to auto update their time and date upon opening.
    So there MUST be a way to do it... although I've been unable to work out how...
    Amnon

  • Is it possible to get Data Roaming in South Korea?

    I have a Verizon Iphone 5. I travel to Asia quite frequently. My stops always include Japan and Korea. When I am in Japan, I am able to use my phone via 3G to surf the web, email, etc. It's not the fastest connection but sufficient. However, the moment I step foot in Korea, my data goes dead. I will be in the heart of Seoul, the largest city in Korea, and I will have no access to data outside of a wifi connection. When I use Korean smartphones, the network is extremely quick, faster than my phone on it's home 4g connection. According to Verizon coverage maps and Verizon tech support, my phone should work. However, I can't get any data, not even a slow one. I've tried messing with all the settings, power cycle, etc. still nothing. Is my phone even capable of data roaming in Korea? If so, how come my data works fine in Japan and then 2 hours later doesn't work at all in Korea?

    In the past I've spoken with the Verizon global support and made all the necessary recommendations. However, as I said in my previous post, I am am to surf and access data in Japan with ease. It works fine in Kyoto and Tokyo, even in the subways and in certain spots along the Shinkansen. However, as soon as I touch down in Korea flying from Japan, my phone becomes a paper weight. Voice and text functions work, however due to the high toll rates, I avoid using them. You say I should have access to 1x and even 3g data, however, in downtown Seoul, which would probably be the Korean equivalent of downtown Manhattan, Needless to say every carrier has above average coverage in a major city like NY. I have no access to data at all. I would walk blocks thinking I'm not hitting the right tower or what not and nothing. No data whatsoever, not even 1x. From my own research, South Korea has one of the best cellular networks in the world. However, without access to emails and google functions like maps, it becomes increasingly difficult to travel with Verizon. I'm constantly looking for a Starbucks or some other venue offering wi-fi so I don't get lost while traveling the city. If Verizon is supposed to have roaming data in Korea or specifically Seoul, which carrier are they linked to?

  • Native Mail app unable to get new mail after updating to iOS 5.0.1

    Just after I installed 5.0.1 (OTA) I've noticed that native ios mail client is unable to get new mail messages anymore. I have three seperate mail accounts (Gmail, Hotmail, iCloud) connected to my iPad2 and none of them works after this software update. All I get is three seperate error messages (Cannot Get Mail) one after another for each account, same kinda of messages as you get once you try to open your Mail app with no internet connection, but this time it's not an issue as my iPad is connected to my home WiFi which is working just fine.
    I've tried to restart my device, checked mail settings, made sure all the passwords are ok by typing them once again for all the accounts and I managed to get confirmation that they're ok with no difficulties using the same device.
    All other apps that uses internet connection seems to be working with no problems as well.
    Screenshot: http://i4.photobucket.com/albums/y103/pauliaK/9c9c6d0c.jpg
    Any ideas?

    Once I got new mail messages to each mailbox it seems that everything got back to normal.

  • IPhone 4s in Recovery Mode, Unable to get serial number or update OS due to Firmware.

    Hey Guys,
    Rrally stuck here, this is my old iPhone 4s that i had sold to a family friend, it has been working fine when i had it but since handing it over it seemed to keep resetting itself, it was on 7.1.1. They gave the phone back to me to do a restore from my back up on my mac, this i did and no problems but the new 7.1.2 was attempted to be installed.
    I got the error (29) message at about 60% when installing but now its stuck in recovery mode. I am unable to get the serial number, they have the box and i can't get it off the recovery mode. Obviously the serial number is to chat to apple to try and resolve it, but if you have any suggestions I'm open.
    Cheers
    James

    Resolve iOS update and restore errors
    Check for hardware issues
    Related errors: 1, 3, 10, 11, 12, 13, 14, 16, 20, 21, 23, 26, 27, 28, 29, 34, 35, 36, 37, 40, 1000, 1002, 1004, 1011, 1012, 1014, 1667, or 1669.
    These errors mean that your device or computer may have a hardware issue that's preventing the update or restore from completing.
    Check that your security software and settings aren't preventing your device from communicating with the Apple update server.
    Then try to restore your iOS device two more times while connected with a cable, computer, and network you know are good.
    Confirm that your security software and settings are allowing communication between your device and update servers.
    If you still see the error message when you update or restore, contact Apple support.

  • Data overages since updating to iOS 6 - fixed and solution

    How do I go from 300mb per month for the past year to 3 gigs in one month? iOS 6 and podcasting being removed from the OS.
    After updating my 4s with iOS 6, my data usages more than quadrupled from 300-400mb per month in the past year to 3 gigs in a month since updating. My usage was the same. So I decided to monitoring my daily usage and made it a point not to use the 3g and was getting 100-200 mb a day in usage still.  Then I realized that ever since podcasting was removed from the OS and made into an seperate app it was checking and downloading podcasts automatically even when wifi wasnt available
    I did the following and my usage is back to normal again.
    Setting>Podcasts> Turn off Sync Subscription and Turn off Use Cellular Data (I had this turn off, even when I was getting overages)
    Also do the following:
    Launch the Podcast App
    Go to Library>>For each podcast> Expand the settings by clicking the "right arrow" next to podcast name and uncheck auto-download. There seems to be a bug that when "Auto-Download" is check it downloads whenever a podcast is available even though iOS 6 was told not use cellular data for downloading in the setting above. I also think the app is refreshing and check for new episodes through the 3G as well
    I now go into each Podcast and manually download each new episode when I am near a wi-fi connection (Make sure the 3G icon is replace by the wifi icon on your iphone).
    You can still force the podcast to use 3G by manually downloading them when wifi isnt available.
    Hope this helps and they fix it.
    AT&T told me before I figured it out, it was not their problem and apple told me there are no issues with sudden overages with iOS 6.
    Happy Podcasting,
    Bang P.

    Apple told you there are no excessive data usage issues with IOS6?  Haha, that's typical, did you tell them to simply search their discussion forums for "IOS6 excessive data usage"?  They'll discover massive amounts of people complaining about this very issue, including myself.  But that's Apple for you, never admitting to a problem, always pretending to be perfect.  Meanwhile, millions of users are going to be shocked when they get their November bills and notice they've incurred excess data charges.  Thanks Apple, after the maps fiasco I thought you couldn't get any worse, I guess I was wrong.

  • Unable to open e-mail since updating firefox yesterday

    updated firefox yesterday. since updating i have been unable to open e-mails in my account. I am able to open emails using google chrome. but would prefer to use firefox, when i log into my account it states i have undeffined mail and will not allow me to open my inbox

    @st3lla 
    ‎Thank you for using HP Support Forum. I have brought your issue to the appropriate team within HP. They will likely request information from you in order to look up your case details or product serial number. Please look for a private message from an identified HP contact. Additionally, keep in mind not to publicly post ( serial numbers and case details).
    If you are unfamiliar with the Forum's private messaging please click here to learn more.
    Thank you,
    Omar
    I Work for HP

  • Podcasts 2.1.1: Huge data cellular data consumption since update

    Hi,
    Since updating iOS Podcasts app to 2.1(.1), I have noticed huge cellular data consumption... Despite having disabled cell data for iOS Podcasts, the new iOS podcasts seem to be downloading again podcasts episodes that have already been downloaded and are shown as is in the app... I have lost over 1GB out of 3GB for a month among the past few days, which is pretty unusual... Seems like I am not the only one: https://twitter.com/mattdenholmross/status/469131198162558976https://twitter.com/mattdenholmross/status/469131198162558976https://twitter.com/mattdenholmross/status/469131198162558976
    iOS Podcasts now often asks for using temporarily the cellular data even for podcasts episodes that are shown as downloaded.
    Have you noticed the same?
    Best,

    It is because v2.1.1 does not delete played podcasts for a 24hr period. That holds storage that prevents you from storing new podcasts or other files.
    Discussed at:
    https://discussions.apple.com/message/25828362

Maybe you are looking for

  • My story about the Blackberry 9320

    My story about the  Blackberry 9320.... I have asked question's about buying a Blackberry for my Mom/Me for personal use from a few people and all very knowable in the IT world, and from one i know who uses a Blackberry as well manage there enterpris

  • Invalid number error when using case when

    I have table called NATIONAL_RARE_ECOSYSTEMS which has 1 column called TEST_COLUMN (data type: varchar2): TEST_COLUMN rare ecosystem rare 0 0 (null) (null) what I want is a query which will add a column called NRE_SCORE which will give each row insta

  • SAP Solution Manager 3.2 SP09

    Hi All, I am totally new to this field so if any body could mail me a step by step tutorial or guide to know the basics of SolMan version 3.2 excluding help.sap links. I will reward points for sure. Thanks Prakhar

  • How to limit ALL data transmission except for WhatsApp in Z10?

    Hello, My prepaid carrier allows me to use WhatsApp with no data limits, so I want to use data packs for WhatsApp and WhatsApp ONLY, is there a way to block ALL data transmission except for that used by Whats App? To clarify more: my carrier debits m

  • ACS View Application exceeded its maximum allowed disk size

    This is the error message I am getting on our ACS 5.1 appliance - is there anyway to purge the database or compact the file? regards