Can't use custom ringtone after 4.4.2 update

hello,
what is **bleep** , before i had a custom folder with ringtones in my sdcard and it's now impossible to set them !!
all sdcard impossible to write !!
what happended ?

http://www.androidcentral.com/kitkat-sdcard-changes
see this
try force reset your phone...open sd card and sim card flap...push off button with tip of pen until phone reboot
Some will call me fatalist And some will call me freak
But hidden in my throwing fist The fortune that I seek-- Amon amarth

Similar Messages

  • Can't use convert option after paying fee and updating system

    I sign in to convert a PDF to word, it says system error, what's going on. I subscribed and updated reader. Help please

    Hi,
    Kindly refer to this below link to convert:
    https://cloud.acrobat.com/exportpdf
    Regards,
    Florence

  • Can I use custom query in DB Adapter with Polling

    Hi All,
    I am getting problem while using db adapter with polling. Can I use custom query in db adapter with polling.
    I am using 2 tables; table 1 and table2
    Structure of table1 is as:
    File_name
    Batch_id
    Creation_date
    Status
    Structure of table2 is as:
    Batch_id
    Employee_ID
    Last_Name
    First_Name
    Middle_Name
    Group_ID
    Site_ID
    Dept_Num
    Report_id
    I have to use below query while polling to table1
    Select count(*) as NOSEXP, Report_id
    from table1, table2
    where table2.batch_id =
    table2.batch_id
    and table1.Status= 0
    group by Report_id;
    I mean, when I use DB adapter to poll table1, I have to use above query.
    Can you Please suggest on this.
    Thanks in advance.

    I will check for existance not based on Primary key but based on three other fields in the table. I think , by default DB adapter configured for MERGE checks for existance based on PK. Can we change the Primary Key in the mapping file after the DB adapter is configured. In that case , will it check for existance based on the fields , I mention.
    Edited by: user12020809 on Sep 16, 2012 6:08 PM

  • Can LSMW use customer specific mapping program?

    Can LSMW use customer specific mapping program?
    I have created a LSMW project to migrate various objects (Material, pricing conditions, conditions) for our new division. I want to add another object – Purchasing Info records. We already have a customer specific mapping program that prepares the data for SXDB to complete the migration. After creating the new object in LSMW, I looked in step 1 (Maintain object attributes) but couldn’t see anywhere convenient to put the program name.
    I know that LSMW provides a mapping facility of it’s own, but can I avoid reinventing the wheel and instead own specific program?
    Slath

    Hi,
    I am afraid, that is not possible. It is possible to create your own BDC recording but not the way you want to do. LSMW needs to know your source and target structures and then you do the mapping from source to target within LSMW. It stores this mapping information in several tables and unless LSMW has those entries, it will not be able to generate the mapping(conversion) program. Also, LSMW creates a 'read' file and later a 'converted' file. Your mapping program may not be doing that, which means LSMW cannot execute it in later steps to actually create the Purchase Info Records.
    You will have to create your own BI or DI program or a business object and a BAPI, or an IDOC type and message type and then publish it to standard SAP, then may be it will be possible. But that will be lot of work, instead use the standard one availble to you.
    If you want to use your existing code then, when you get to the mapping part of it, just cut and paste the logic specific to each field in the appropriate place, or don't do any individual field mapping, but just paste all the mapping logic in the ENDOF_RECORD_ section.
    Regards,
    Srinivas

  • Can we use custom RFC in creating models in Visual composer??

    Dear Experts,
    Can we use custom RFC in creating models in Visual composer??
    If yes, kindly provide some documents or links which would guide me how to achieve it.
    Warm Regards
    Upendra Agrawal

    Hi,
    Yes,you can do it.
    Configure the rfc and use like others Standard BAPI procedure.
    [https://www.sdn.sap.com/irj/scn/wiki?path=/display/vc/connectivity]
    Regards,
    Govindu

  • How can we use Custom MessageBox in SelectionChangedEvent of LongListSelector for Windows Phone 8

    Dear Sir/Madam,
    How can we use Custom MessageBox in SelectionChangedEvent of LongListSelector for Windows Phone 8.
    Actually my problem is that When i am using Custom  MessageBox in SelectionChangedEvent of LongListSelector,when i am click Open(Left Button) it's working fine and navigated correctly,But when i am Click the No(Right Button) then it stayed in same page
    but all that page is in stuckup i mean that page is not working and not doing any event.
    My C#.net Code
    private async void userPageLongListSelector_SelectionChanged(object sender, SelectionChangedEventArgs e)
    if (e.AddedItems.Count > 0)
    if (userPageLongListSelector.SelectedItem == null)
    return;
    if (dbTenMin == null)
    dbTenMin = new Database(ApplicationData.Current.LocalFolder, "tenMInDBSchema.db");
    await dbTenMin.OpenAsync();
    var res = (sender as LongListSelector).SelectedItem as _10Min._10MinClass.minUserPages;
    var resIndex = (sender as LongListSelector).ItemsSource.IndexOf(userPageLongListSelector.SelectedItem);
    string selectedPageName = res.userPages.ToString();
    string selectedPageDesignUser = res.pageDesignUser.ToString();
    int selectedIndex = resIndex;
    CustomMessageBox messageBox = new CustomMessageBox()
    Caption = "Message...!",
    Message = "This form need offline datalist,Please load now.",
    LeftButtonContent = "Open",
    RightButtonContent = "No"
    messageBox.Dismissed += (s1, e1) =>
    switch (e1.Result)
    case CustomMessageBoxResult.LeftButton:
    string uidAndpwd = _10MinClass._10MinStaticClass.csUidAndPwd.ToString();
    _10MinClass._10MinStaticClass.csDataListPageDetails = selectedPageDataDetailsForSchema.ToString();
    _10MinClass._10MinStaticClass.csAllDataLists = offlineDataBaseDataListNam;
    _10MinClass._10MinStaticClass.csNotCreatedSchemaNameOfDBList = notCreatedDataLists;
    userPageLongListSelector.SelectedItem = null;
    if (dbTenMin != null)
    dbTenMin.Dispose();
    dbTenMin = null;
    NavigationService.Navigate(new Uri("/10MinformDataList.xaml", UriKind.Relative));
    else
    NavigationService.Navigate(new Uri("/10MinformDataList.xaml", UriKind.Relative));
    break;
    case CustomMessageBoxResult.RightButton:
    break;
    case CustomMessageBoxResult.None:
    break;
    default:
    break;
    messageBox.Show();
    Same custom messagebox code working in Phone_BackKeyPress event i am writing the code in Right Button that e.OriginalSource.ToString(); then it is working fine.
    But It is not working in Selection Changed Event in LongListSelector control in Windows Phone 8.
    Please help me,as soon as possible.
    Thanks & Regards,
    SrinivaaS.

    What happens if you leave the implementation for LeftButton empty as well , does the page gets stuck in that case also, if you press left button?
    i.e.
    CustomMessageBox messageBox = new CustomMessageBox()
    Caption = "Message...!",
    Message = "This form need offline datalist,Please load now.",
    LeftButtonContent = "Open",
    RightButtonContent = "No"
    messageBox.Dismissed += (s1, e1) =>
    switch (e1.Result)
    case CustomMessageBoxResult.LeftButton:
    break;
    case CustomMessageBoxResult.RightButton:
    break;
    case CustomMessageBoxResult.None:
    break;
    default:
    break;
    messageBox.Show();
    http://developer.nokia.com/community/wiki/Using_Crypto%2B%2B_library_with_Windows_Phone_8

  • Can we use XSLT mapping after graphical Mapping

    Hi,
    Can we use XSLT mapping after graphical mapping?
    My requirement is to generate two namespace attributes in the target output.
    So first I want to generate a structure using graphical mapping and then want to use XSLT mapping only to generate the second namespace XSI (leaving the rest of the structure as it is). Is it possible?
    <ns1:Test xmlns:ns1="wmdata.dwbi.interface" xsi:schemaLocation="wmdata.dwbi.interface w_interface_1.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    Please post some solution. (I will reward points)
    Br,
    Madan Agrawal

    Hi Madan,
    Can we use XSLT mapping after graphical mapping?
    To me it seems feasible...
    But to using the two mappings one after another you will have to use BPM .
    Use transformation step for this to use the mapping and change in structure.
    Regards,

  • Can we use custom subtype (9001) in 0105?

    Hi,
    Can we user custom subtype 9001 in 0105 to store the user ids for ESS&MSS?
    I know by default the standard function modules of ESS will look for a user id in 0105 with subtype 0001. But 0001 has been used by some other portal pointing the same back end. we cannot use the same user id for ESS.
    For ESS, can we use custom subtype for the user ids? Is there any configuration to handle this scenario? How do we link the new portal should validate the user ids in custom subtype.
    Advance thanks for your valuable input.
    cheers
    Jayanthi

    Hi Kirsten,
    Thanks for your feedback.
    Definitly I dont want to make changes to any of the standard programs. Changing the existing portal is also a major impact in the project.
    Is there any configuration option available for ESS to point to the custom subtype 0105? We are in requirement gathering phase,the DEV environment is yet to be ready.
    If you find any info, please let me know.
    cheers
    Jayanthi

  • How can I use custom repeating event in my iPad Air calendar iOS 8.0.2

    How can I use custom repeating event in my iPad Air calendar iOS 8.0.2?

    Unless something has changed, you can't. The iPad has limited ability to make repeats. However if you make the custom repeats in another program you can send them to or import them into your calendar and the iPad will respect the custom repeat.

  • I can't use Lr5.6 after update Lr5.5 to Lr5.6

    i can't use Lr5.6 after update Lr5.5 to Lr5.6 and Now it ask me serial number or 30day
    Please help me Thank u so much

    If you are running the LR 5 from Creative Cloud Photography Program, then try the procedure outlined, here:
    https://helpx.adobe.com/lightroom/kb/unable-launch-lightroom-55.html
    If you are running LR5 as a standalone serial-number-licensed version, then enter your serial number, again.

  • Using CS5.5 Master Collection for MAC, I can't use "Replace with After Effects composition"

    Using CS5.5 Master Collection for MAC, I can't use "Replace with After Effects composition" because I updated AE to CS6 (but only AE). Even that AE CS 5.5 is still installed, it won't connetct.
    How can that be fixed?
    Thanks a lot for any suggestions.

    Thanks for the answer: I tried different ways (after I read your suggestion) but it always changes back right away ... I can't change it.
    Am 16.01.2013 um 03:04 schrieb Jim Simon:
    Re: Using CS5.5 Master Collection for MAC, I can't use "Replace with After Effects composition"
    created by Jim Simon in Premiere Pro CS5, CS5.5, & CS6 - View the full discussion
    Maybe try associating AE project files with 5.5 instead of 6.
    Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/4997081#4997081
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/4997081#4997081
    To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/4997081#4997081. In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in Premiere Pro CS5, CS5.5, & CS6 by email or at Adobe Community
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • I can't use the wifi after 10 pm, but i can use it again at 7 am?

    so for some reason, i can't use my wifi after 10 pm. but in the morning when i wake up, i can use it again. is this some parental control or something? please lead me through it. i can't really ask my parents to do it, because they're not technologically advanced. they can probably give me the basic like the password and all, but that's it. how can i fix it? i'm using the wifi on an ipod touch. the wifi works perfectly fine on a regular computer but it doesn't work on my ipod during those certain hours. can someone please help me?
    the wifi icon shows up in the upper left corner, but its obviously not connected. there are no restrictions on the ipod at all.
    any other details you need, please ask. i really need this solved!
    Message was edited by: teedeexx

    i'd definitely say it was a wifi thing rather than an ipod thing. as far as i can think of there would be no way to tell an ipod to only access the internet between 7am and 10pm. - unless you were to restrict it using the router (i imagine this COULD be possible, but don't know if it actually is).
    everything which accesses the internet is given an individual 'mac address'. so if you have say, 3 computers, an ipod, a games console, all accessing a wifi network, that router will recognise them all individually by it's individual mac address. you can use mac filtering to give you an extra level of security to your network. so even if the correct network password is entered onto a wifi enabled piece of technology, if the router hasn't got the mac address entered as one that it should accept, you won't get access to the network.
    i must reiterate, i don't know if you can do this, but i would think it may be possible to restrict a certain mac address from accessing the network at certain times of the day (for example a young kid who may be playing with their ipod in bed, but should really be asleep!)
    if you go into the settings option on your ipod, general, restrictions, you can play around with your own restrictions and see what they do. mostly they restrict complete access, or the download of explicit content.

  • Can i use custom css ?

    can i use custom css in links or anywhere ? thank you

    Hi Krypton,
    You will not be able to able to alter the html generated via Muse and such practices are not recommended as well. In case you are absolutely sure what you are doing then you need to use custom JS to modify the html that muse renders. Again, the custom JS will be inserted using the options that I mentioned above in my previous post.
    - Abhishek Maurya

  • Can you make custom ringtone for iPhone 4 w/o using iTunes?

    My computer crashed and I had to redownload iTunes and all my music the other day. I plugged my iPhone 4 in to put a custom ringtone I made in iTunes on it and it says it wants to "erase and sync" my phone since it was connected to my old iTunes. Is there a way to fix this or is there a way to make a new custom ringtone for my iphone without using iTunes?

    about backup http://support.apple.com/kb/HT1766
    you're better off creating new ringtones.  Take a look at the first link I gave you, that will answer all your questions.

  • Exchange Synced Contacts Lose Custom Ringtones After 24 Hours

    Currently running iPhone 3GS with 3.1 against a Windows Exchange 2003 Server utilizing Active Sync. Once I assign custom ringtones to my contacts (that are synced from Exchange) after about 24 hours all ringtones are reverted back to Default.
    Anyone else having this issue or is there a solution?
    Magnum

    Actually, I thought a system update does do a backup and restore. I thought it wiped out the data, applied the system OS, then restored the data. Otherwise how would all of the settings, applications, and other data be in the same status as before the update? In any case, I wouldn't have thought that all contact data would need to be re-applied afterwards. But actually my main problem, aside from this, is that my contacts are consistently losing their custom ringtones. I use push services for my contacts, and I can understand why re-population of my contact data loses them since a ringtone isn't a maintained data field in Exchange, but this situation only makes it worse if I'll lose ringtones after every system update.

Maybe you are looking for

  • HT3051 can you change your Change Your Displayed Name if you have multiple devices attached with the same apple id?

    We have both a Iphone 4s and a 4th Generation Ipod Touch both with the latest available IOS software on them. Since the Ipod touch was given to a preteen for Christmas and they aren't old enough to have their own email account or apple id 11 years ol

  • Web Service Request Collection/Complex Objects doesn't work

    I am unable to call a .net web service using Adobe LiveCycle Designer 8.0. My test web service accepts either a complex object or a collection of the same object. EX) [WebMethod] public string CostChange(CostChangeNotificationItem change1, CostChange

  • Iphone 4 is incredible slow with os7

    Hi, after updating to OS7 my iPhone 4 is incredible slow. Sometimes it takes 10s just to unlock. Calendar, switch between views is so slow, that I start to hate the device eveytime I use it. It was a big mistake to update and I would not have done it

  • Getting forms url at runtime

    hi, I have the requirement to get at runtime the url that the user entered in the browser window to access he forms application. Is that possible? my applications run in a separate window. i'm using forms services 10.1.2.3 thx Edited by: miguellima o

  • Using Guitar Rig

    Think I found some limitations on using Guitar Rig with Mainstage. I have also posted this on NI's forums for some sort of resolution. It appears, even though you can control just about every other parameter of GR in Mainstage, you are not able to as