Playlist created on pc cannot be modified on ipadmini

When using ipadmini, i hv issue with playlist.
I used to modify the playlist that were initially created in pc w/out any issues, now, only playlist created in ipad  will allow me to click on ´´modify'´ at the top left......

thx for yr reply. you seem to know yr stuff so I'm gonna ask again bcz I'm not sure I understand the 2nd part of yr answer.
I 'm sure I did that b4. Unless I modified the settings not too sure. I even called help desk and the girl seemed puzzled about it.... but then again... do they really know everything that's going on !?
tell me if this is right : could I create my playlist in pc, then sync with ipad, and then unclick the selection of the lists to sync in pc, and at that point I could modify the lists in the ipad ?? it's weird bcz I never went back and forth to click and unclick in my pc... I used to always sync the same lists for my dance classes and from time to time, modify them from the ipad if needed, until the nxt major chg using my pc to modify lists and then re-sync.
** I don't need the entire library in my ipad + not enuf storage also in ipâdmini. it's easier to create the list in pc for me but ideally I need to be able to modify the order of the songs sometimes
am I making any sense ?
and thx for yr time, Nancy

Similar Messages

  • How to create a secure & non editable PDF? So that it cannot be modified by any of the secondary too

    How to create a secure & non editable PDF? So that it cannot be modified by any of the secondary tools available online for security breaks and editing of PDF document
    I put all the security options but still there are tools to break the security (even password) leading to editing of document
    Need to avoid any such situation

    If the document is important, and there is something to be gained by modifying it - then someone will just make a new copy of it (e.g. print and scan, screen capture), and make a new document, then change it.
    If protecting the integrity of the document - proving it is unchanged - is the thing, look at digital signatures. Forget security, the signed file can be freely edited, but the signature will always show it is changed.

  • MOSS: Cannot set "Modified", "Modified By", "Created" and "Created by" fields in the publishing pages list without changing version?

    Hello everyone,
    I've got the task to programmatically import data to a moss web by add publishing pages to the pages-library with enabled moderation and major/minor-versioning.
    This is not really difficult but the main issue is to set the values for the fields "Created", "Created by", "Modified" and "Modified by".
    Also this is not relly difficult. By setting the internal field-properties "Author" for Created by and "Editor" for Modified by there values are set.
    But the main problem now is, that I have to approve the publish page. After that, the value of the "Modified"-Field is change to the current datetime which is not acceptable.
    If I redo an updating of the listitem, the file-version is increased to 1.1 which is also not acceptable. I do this by .UpdateOverwriteVersion(), which MSDN says of that it doesn't increase the version but indeed it does.
    Following an example code of my approach:
    using (SPSite spSite = new SPSite(SiteCollectionURL))
    using (SPWeb spWeb = spSite.OpenWeb())
    PublishingWeb publishingWeb = PublishingWeb.GetPublishingWeb(spWeb);
    PageLayout[] layouts = publishingWeb.GetAvailablePageLayouts(<Guid of my pageLayout>);
    if (layouts != null && layouts.Length > 0)
    PageLayout layout = layouts[0];
    PublishingPage newPage;
    // add new publishing page
    newPage = publishingWeb.GetPublishingPages(0).Add("test.aspx", layout);
    newPage.Title = "testpage";
    newPage.ListItem[SPBuiltInFieldId.Comments] = "test comment";
    newPage.Update();
    newPage.CheckIn("Checked in programmatically");
    SPListItem tmpListItem = publishingWeb.PagesList.GetItemById(newPage.ListItem.ID);
    string creationDate = "2009-11-05T22:35:10Z";
    string modifyDate = "2009-11-06T22:35:10Z";
    tmpListItem["Author"] = "1;#User 1";
    tmpListItem["Editor"] = "2;#User 2";
    tmpListItem["Created"] = creationDate;
    tmpListItem["Modified"] = modifyDate;
    tmpListItem.UpdateOverwriteVersion();
    // data is now alright set, now approve
    tmpListItem.File.Approve("Approve test");
    // publishingpage is now approved but modified-date has changed, try to reset data
    SPListItem updItem = spWeb.GetList(spWeb.Url + "/Pages").GetItemById(tmpListItem.ID);
    updItem["Author"] = "1;#User 1";
    updItem["Editor"] = "2;#User 2";
    updItem["Created"] = creationDate;
    updItem["Modified"] = modifyDate;
    tmpListItem.UpdateOverwriteVersion();
    // now all four values are correct but now version is 1.1 and approval status 'draft' again
    Also updating the listitem by ProcessBatchData doesn't do it becaue I couldn't successfully update the author/editor-fields.
    Do you have any working ideas or hints for me?
    Greetings from Germany,
    LoneSurvivor

    I think iv cracked it...
    Coppied straight from my code so the variable names dont match but the principal is there...
    $dstfile.ListItemAllFields["Author"] = ($author.ID.ToString() + ";#" + $author.LoginName)
    $dstfile.ListItemAllFields["Editor"] = ($modifier.ID.ToString() + ";#" + $modifier.LoginName)
    $dstfile.ListItemAllFields["Created"] = $srcfile.TimeCreated.ToLocalTime()
    $dstfile.ListItemAllFields["Modified"] = $last.ToLocalTime()
    # changes to editor have to be done by Update or UpdateOverwriteVersion
    $dstfile.ListItemAllFields.UpdateOverwriteVersion()
    if ($file.Level -eq "Published") {
    # publish not needed and overwrites 'Editor' so dont use
    # $dstfile.Publish($file.CheckInComment)
    # use .Approve() which updates the major minor versions too
    $dstfile.Approve($file.CheckInComment)
    # approve changes the dates so correct here
    $dstfile.ListItemAllFields["Created"] = $srcfile.TimeCreated.ToLocalTime()
    $dstfile.ListItemAllFields["Modified"] = $last.ToLocalTime()
    $dstfile.ListItemAllFields.SystemUpdate()

  • Internal parameter - The report parameter is read-only and cannot be modified.

    Hello,
    We have an SSRS report that has an Internal parameter for the user that is logged in (gets the Report.User!UserID in custom code and assigns to parameter called Login).  We would like it to remain internal as it is for security purposes - we filter
    data depending on whether or not the user has access.  We would not like it to be accessible from the URL.  The report has drill-through functionality where the user can click a link and the report is filtered on certain criteria.  This seems
    to work fine in SSRS 2005, but since i have upgraded the report to SSRS 2012, I am getting the error on the drill-through:
    The report parameter 'Login' is read-only and cannot be modified. (rsReadOnlyReportParameter) 
    The properties in Report Manager have the "Hide" option selected.  Any help would be appreciated.  Thanks.
     

    Hi Hhewson,
    In Reporting Services, if you create a hidden parameter, you can set values for it on a report URL or in a subscription definition. If you set a parameter to Internal, it is not exposed in any way except in the report definition. An internal parameter must
    have a default value, which can be null if the Allow null value option has been selected. Internal Parameters are not configurable by the end-user at run-time.
    In your scenario, I suggest you changing internal parameter to hidden parameter to check whether the issue persists.
    Reference:
    In SSRS, how does an “Internal” parameter differ from a “hidden” parameter?
    Hope this helps.
    Regards,
    Heidi Duan
    Heidi Duan
    TechNet Community Support

  • The report parameter 'param1' is read-only and cannot be modified. (rsReadOnlyReportParameter)

    hey guys..
    I'm trying to get the report that I need to be filtered by a parameter value (named Param1)
    I created a parameter in the data tab and tried to pass a value from my Web application to the report services.. now my report have that textbox that prompts me to enter the filtering value for the report I want.. everything works fine till this point..
    now I have another webpage that has a report viewer and a textbox for the user input the value they want.. and pass it to the report.. and I'm using the following code to pass the value to the report I made earlier..
    Dim par(0) As Microsoft.Reporting.WebForms.ReportParameter
    par(0) = New Microsoft.Reporting.WebForms.ReportParameter("paramSiteCode", TextBox1.Text.ToString)
    ReportViewer1.ServerReport.SetParameters(par)
    ReportViewer1.ServerReport.Refresh()
    however.. now I'm getting an error.. "The report parameter 'paramSiteCode' is read-only and cannot be modified. (rsReadOnlyReportParameter)"
    what am I missing here? I've been thru the help and forums.. and the code should work.. or so I hope it would.. thanks in advance..

    Details
    Product:
    sql server reporting services
    ID:
    rsreadonlyreportparameter
    Source:
    microsoft.reportingservices.diagnostics.utilities.errorstrings.resources.strings
    Version:
    8.00
    Message:
    The report parameter '{0}' is read-only and cannot be modified.
    Explanation
    This error occurs when you attempt to set a value for a parameter that is read-only. A parameter is read-only when the
    Prompt property for the parameter is set to false.
    User Action
    To set a value for a parameter, the Prompt property for the parameter must be set to
    true. You can set this property in two ways:
    Before publishing the report, provide a prompt string for the parameter. In Report Designer, you can provide a prompt by typing a prompt string in the
    Prompt text box in the Report Parameters dialog box.
    After publishing the report, set the Prompt User property for the parameter. In Report Manager, in report properties, click the
    Parameters tab, and then select Prompt User for the parameter.
    For more information about report parameters in Report Designer and Report Manager, see Books Online.
    In the release version of SQL Server 2000 Reporting Services, when Prompt is
    true and Prompt String is blank, the parameter is still available to the user in the report viewer. In SP1, when
    Prompt is true and Prompt String is blank, the parameter is hidden from the user.
    Note: Publishing a report over an existing report on the report server does not overwrite the parameter information. To update parameters for an existing report, either delete the report on the report server and republish, or update the parameter information
    for the report in Report Manager.
    I struggled with the same problem in VS 2010.
    After a long series of hoops to jump through, I modified the rdlc file by hand and added <Prompt>true</prompt>. This parameter cannot be set through the GUI - go figure.
    In my case, I was attempting to generate a sub report, and pass a parameter to the sub report.
    To get this to work, the sub report needed these two sections.
    <ReportParameters>
    <ReportParameter Name="Network_Id">
    <DataType>String</DataType>
    <Prompt>true</Prompt>
    </ReportParameter>
    </ReportParameters>
    <Variables>
    <Variable Name="Network_ID">
    <Value />
    </Variable>
    </Variables>
    I was then able to use the name "Network_Id" in the sub-report properties of the "sub report control" for the name of a parameter on the parameters tab. I then set it to the key value that I need in the subreport properties dialog.
    Prior to setting prompt to true, I kept getting the read-only exception.
    I'm not sure if I am being clear about this, but sub reports do work, and prompt can be manually added to the report definition file.

  • Please note that the quote/cart has already been placed as an order and cannot be modified.

    Hi All,
    Currently we are trying to create an istore order and while doing so when we add an item to the cart, the shopping cart throws the error "please note that the quote/cart has already been placed as an order and cannot be modified". This is happening with a particular user alone. We had created an order earlier and this got converted from quote to order. Now when we created a new one this error is appearing. Also  there are no records in the table IBE_ACTIVE_QUOTES_ALL for that user for any active carts.  Please provide the suggestions. I have cleared the cache bounced the istore server and logged out and logged in and still the issue is existing.
    Thanks

    Hello,
    Please confirm there is no active cart
    Confirm data in ibe_active_quotes_all 
    SQL>select active_quote_id, order_header_id, quote_header_id
    from ibe_active_quotes_all
    where party_id = &partyid
    and cust_account_id = &cust_id;
    To get values -
    select customer_id from fnd_user where user_name = <iStore username >    ==> value 1
    select person_party_id from fnd_user where user_name = <iStore username>
    select object_id from hz_relationship where subject_id = <above person_party_id>
    select cust_account_id from hz_cust_accounts where party_id =<above object_id>   ==> value 2
    Confirm data is in synch in the Quoting table aso_quote_headers_all :
    SQL> select order_id from aso_quote_headers_all
    where quote_header_id = &from above;
    If an active cart is found you can delete -
    delete from ibe_active_quotes_all where party_id = <value 1> and cust_account_id = <value 2> and record_type= 'CART';
    >> this will remove the active cart of the user, hence you can proceed with next cart.
    Reference related discussion:
    How To Delete Active iStore Shopping Cart For An User (Doc ID 1261926.1)
    Thank you,
    Debbie

  • ORA-12838: cannot read/modify an object after modifying it in parallel

    I am getting the above error when i hit this part in my load ....
    can somebody suggest me why it could be in this case ?
    MERGE INTO PART1 H
    USING (SELECT PA1,                              PART1,                                   CON1,                                   GEO1,                                   COUN1,                                   KIT1                          FROM W1 ) WH ON
                                       (H.PART1=WH.PART1)                                   --on PK darshan 01-03-2006
         WHEN MATCHED THEN
    UPDATE SET                                   H.CON1     =WH.CON1,                         H.GEO1     = FN_GETGEOCODE ( WH.GEO1 ),               H.COUN1     =WH.COUN1,                         H.KIT1     =WH.KIT1,                    H.DT1     =TO_NUMBER(TO_CHAR(FN_GETGMTDATE(SYSDATE),'YYYYMMDD')),                              H.DT_LAST1          = FN_GETGMTDATE(SYSDATE)
              WHEN NOT MATCHED THEN
         INSERT     (H.PART1,                                   H.PART2,                                   H.CON1,                                   H.GEO1,                                   H.COUN1,                                   H.KITD1,                                   H.DT1,                                   H.DT_1,                                   H.DT_LAST_1)
              VALUES(CASE FN_MERGE_COUNTER(gpi_inserting)
                   WHEN 0 THEN     WH.PART1 END,                         WH.PARTN1,                              WH.CON1,                              FN_GETGEOCODE ( WH.GEO1),                    WH.COUNT1,                              WH.KIT1,
              TO_NUMBER(TO_CHAR(FN_GETGMTDATE(SYSDATE),'YYYYMMDD')),                                   PKG_COMMONACTIVITIES.FN_GETGMTDATE(SYSDATE),                                        PKG_COMMONACTIVITIES.FN_GETGMTDATE(SYSDATE)
                                            );

    does this give you a clue?
    SQL> CREATE TABLE t AS
      2  SELECT owner, object_name FROM all_objects
      3  WHERE 1=0;
    Table created.
    SQL> INSERT /*+ APPEND */ INTO t
      2  SELECT owner, object_name
      3  FROM all_objects;
    8982 rows created.
    SQL> SELECT * FROM t;
    SELECT * FROM t
    ERROR at line 1:
    ORA-12838: cannot read/modify an object after modifying it in parallelI bet that you need a commit after loading w1.
    John

  • Error message: "Desktop cannot be modified."

    If I try to create files or an alias on the Desktop I receive an error message "Error... Desktop cannot be modified."
    As a result I am unable to save anything to the desktop. This problem just surfaced in the past couple of days. Any ideas how to remedy this problem?
    Thank you in advance.

    In your home folder, select the Desktop folder then press Command+I or Control+click to bring up the Get Info window. At the bottom of that window click on the reveal arrow labeled Details. The owner of the folder should be your short name with Read & Write Access, the Group is staff with read only access and others is also read only. If those permissions are different from that click on the padlock icon and enter your password then reset the ownership and permissions to match what I gave you.

  • The control collection cannot be modified during DataBind, .....

    The control collection cannot be modified during DataBind, Init, Load, PreRender or Unload phases.
    at System.Web.UI.ControlCollection.Add(Control child)
    at AjaxControlToolkit.ScriptObjectBuilder.RegisterCssReferences(Control control)
    at System.Web.UI.Control.LoadRecursive()
    I am getting the above error for the following code at last line while adding updatepanel to controls collection:
    protected override void CreateChildControls()
    base.CreateChildControls();
    UpdatePanel updatePanel1 = new UpdatePanel();
    updatePanel1.ID = "udpItemListingWebPart";
    updatePanel1.ChildrenAsTriggers = false;
    updatePanel1.UpdateMode = UpdatePanelUpdateMode.Conditional;
    this.Controls.Add(updatePanel1);
    What am I doing wrong? Thanks for any pointers.

    I think you need move your code in preInit or pageload. Also do you have script manager in your page through master page already?
    http://forums.asp.net/t/1165939.aspx
    http://blogs.msdn.com/b/mikeormond/archive/2007/03/15/dynamically-adding-an-updatepanel-to-your-page.aspx
    http://forums.asp.net/t/1184056.aspx?Programmatically+creating+UpdatePanel+and+creating+Triggers
    Thanks,
    Sohel Rana
    http://ranaictiu-technicalblog.blogspot.com

  • Duplicate Contacts app that cannot be modified?

    A while ago I created a few stacks to clean the Dock up a little, and in one (which corresponded to a folder I created in the Applications folder) I stupidly put/moved a native app, the Contacts one (which cannot be deleted or modified in theory), so it actually did not move it from the Applications folder, it stayed there, but it created a duplicate to go into my folder. Now, I don't use that folder/stack anymore, and have emptied it, but the Contacts app cannot be moved or trashed from there, despite being just a duplicate not the original one. It should recognise that the system one is the one in the Applications, so why doesn't it? I'm now stuck with a second Contacts app I can't touch, inside a folder I can't touch either! Is there a way to delete it? The system tells me it is needed and cannot be modified. Actually, how come it created a copy of it in the first place, if it cannot be modified?  Thank you!

    Normally you create stacks while in LaunchPad.
    However, I would not use Stacks to clean up my Dock. Simply drag the items out of the Dock that you do not frequently use. You can use Spotlight to quickly launch an app, or you can drag the Applications folder to the side of the Dock near the Trash and select your app from the popup. I suggest you put in List view. This will show your apps alphabetically. I have too many apps to use the other views.

  • HT1386 My latest playlist created in November is not syncing on my iPhone 4s. Can anyone give some tips? I have a MAC desktop and the latest version of iTunes.

    My playlist created on my MAC in iTunes is not syncing with my iPhone 4s. The problem started in November. I have rechecked the automatic syncing but nothing happens. What am I missing?

    Please read this article about snycing music using itunes. Please focus on what it speaks when outlining talking about syncing selected playlists artists and genres THAT is the setting you will need enabled to sync playlists to a mobile device.
    http://support.apple.com/kb/ht1351
    Good luck

  • Shuffle no longer syncs the playlists correctly and I cannot "see" the shuffle at all.  There is no "device" folder in the left column.  This may have occured after an Apple I-Tunes software update, but I am not sure. Software or hardware??

    Shuffle no longer syncs the playlists correctly and I cannot "see" the shuffle at all.  There is no "device" folder in the left column.  This may have occured after an I-Tunes software update, but I am not sure.  Is this likely a software issue or is the shuffle not working correctly?

    Shuffle no longer syncs the playlists correctly and I cannot "see" the shuffle at all.  There is no "device" folder in the left column.  This may have occured after an I-Tunes software update, but I am not sure.  Is this likely a software issue or is the shuffle not working correctly?

  • "Setup encountered a problem while validating the state of Active Directory: Exchange organization-level objects have not been created, and setup cannot create them because the local computer is not in the same domain and site as the schema master. Run se

    Team,
    I am trying to Install Exchange on my Lab, getting below error
    message.
    The Schema Role is installed on Root Domain and trying to install
    exchange on Child domain.
    1 Root Domain - 1 Child domain. both are located on single site.
    “Setup encountered a problem while validating
    the state of Active Directory: Exchange organization-level objects have not been created, and setup cannot create them because the local computer is not in the same domain and site as the schema master. Run setup with the /prepareAD parameter and wait for
    replication to complete.”
    Followed below articles:
    http://support.risualblogs.com/blog/2012/02/21/exchange-2010-sp2-upgrade-issue-exchange-organization-level-objects-have-not-been-created-and-setup-cannot-create-them-because-the-local-computer-is-not-in-the-same-domain-and-site-as-the-sche/
    http://www.petenetlive.com/KB/Article/0000793.htm
    transferred the schema roles to different server on root domain, still no luck.
    can someone please help me.
    regards
    Srinivasa k
    Srinivasa K

    Hi Srinivasa,
    I guess, you didn't completed the initial setup schemaprep and adprep before starting the installation. You can do it as follows:
    1. Open command Prompt as administrator and browse to the root of installation cd and run Setup.exe /PrepareSchema /IAcceptExchangeServerLicenseTerms
    After finishing this,
    2. Setup.exe /PrepareAD /OrganizationName:"<organization name>" /IAcceptExchangeServerLicenseTerms
    3. To prepare all domains within the forest run Setup.exe /PrepareAllDomains /IAcceptExchangeServerLicenseTerms. If you want to prepare a specific domain run Setup.exe /PrepareDomain:<FQDN of the domain you want to prepare> /IAcceptExchangeServerLicenseTerms
    4. Once you complete all of the 3 steps, install the pre-requisities for Exchange 2013
    5. Finally, run the setup program
    Hope this will help you
    Regards from Visit ExchangeOnline |
    Visit WindowsAdmin

  • Ned to back up files.  Trying to reformat a WD 1TB external hard drive but my utilities keeps saying "choose scheme from volume pop up menu.." also says cannot be modified.  What can I do?!

    Help would be appreciated! Before I upgrade my 10.6.8 OS X I need to back up files.  Trying to reformat a WD 1TB external hard drive but my utilities keeps saying "choose scheme from volume pop up menu.." also says "this partition cannot be modified."  What can I do?! Take it back to Currys!  Many thanks

    Select the Top Most Entry for that drive, it will be the drive model # and have the size listed, then go to the Partition tab and select One Partition from the Partition Layout area drop down. Then select Mac OS Extended (Journaled) as the format, if that is the format you want to format it AS. Then click the Options button near the bottom of that windows and select GUID as the Partition Table. Close the options screen and clcik the Apply button.

  • How do I randomize songs in a playlist created usint the New Playlist From Selection

    How do I randomize songs in a playlist created usint the New Playlist From Selection?

    I noticed this was missing too- I use some apps on my iPhone for running and when synced over bluetooth in my car, where the new "random button" and "up next" isn't a viable solution. I have to save a randomized playlist ahead of time since those uses don't support randomization through iTunes- they can only play in the playlist order.
    I like to have 5 copies of the same playlist each randomized weekly ahead of time and synced so that each time I go running, it's not the exact same order. Can't find how to do this in iTunes 11.

Maybe you are looking for

  • Quantity/value updation query

    hi all PR-RFQ/Quotation-Price comparison-PO-GR-IR, when I am doing this process I want only update quantity only, I don’t want to update value updation Pls tell how it is possible is there any configuration required in this scenario Pls tell me as ea

  • Combine putaway for goods reciept in WM

    For material A, the LE palletization QTY is 300 in material material data/WM2 view,for material B,the LE palletization QTY is 200 in material material data/WM2 view. There are one delivery No. like below delivery No.   delivery item     material    Q

  • ZEN 2GB hangs after starting

    I reset it and it goes right back and hangs anytime you try to play anything. I am running the firmware upgrade but its been running for 20 plus minutes and has not completed. Any ideas?

  • Why do i continuously get corrupted content message after installing newest updates?

    I use Project Free TV quite a bit. It was working great, but after I installed new updates for Firefox, most of the links don't work and gives me Corrupted Content message. The links work fine through Explorer. For example: '''Corrupted Content Error

  • Photoshop CS6 - 'Two computers at same time' question

    Hi guys. I've tried searching for this question before but I couldn't find a definitive answer to it in the threads (maybe that's for a reason!).  Now, clearly the TOS stipulate about using PS on one computer at a time.  I understand that, as otherwi