Limitation on the size of playlists within a tab?

Is there a limit on the number of files you have have within a specific tab's playlist? I've gotten a request for a project that would put about 500-550 small audio files into a playlist, but I'm not sure if iTunes U will let a list get that big.
We could break the playlist into smaller chunks, for this particular project, we'd rather not do that if we don't have to.

Ken,
The biggest I've ever seen is this:
http://deimos3.apple.com/WebObjects/Core.woa/Browse/csl-public.1401386812.014013 86819
161 items in a playlist.

Similar Messages

  • Is there a limitation on the Size of Attachments to SBO Documents?

    Hi, Experts.
    Is there a size limitation to the Attachments that you can Attatch to an SBO Document like an Activity?
    Does this depend only on the Hardware Specifications, or does SBO also limit the Size of Attachments?
    Any help would be appreciated.
    Thanks,
    Marli

    Hi Marli,
    There is no limitation on the size of attachment. Otherwise also, SBO stores only the name of the file and copies it to the attachment folder. Since, in SBO, only the name is stored, therefore the size of the attachment does not matter.
    Rahul

  • How to reduce the size of PlayList display slightly?

    I just want to see the selections at the very bottom which are cut off.

    Nope. I want to reduce the SIZE of the screen, because the very bottom is off the big screen and I can't scroll down to it!  I want to get the curser under the right lower corner to raise it, but I can't.

  • Limiting/controllong the size of the attachments

    Hi,
    I have developed a PDF form(which contains a SUBMIT button), and an application that processes it. As the PDF may contain files attached, the problem I face is: is there a way to limit or control the size of the complete PDF(including the attached files) that the user tries to send?
    I imagine it exits, but I'm not able to find it.
    Thanks in advance for your help.

    My research shows that there is no way to limit the size of attachments to a PDF. I suggest you enter it as an emhancement.

  • How to list the active Alerts used within a tab(report) within a Document

    Hello
    We have a number of tabs/reports within a single webi document. There are a couple of alerts within the webi document but only one is used within a given tab/report.
    Is there an API around that will help me query the alerts that are enabled within each tab/report within a given document instance?
    There is an IReportProcessingInfo class that is around for it looks like its not applicable for Webi documents.
    Regards
    Madhu
    BO XI R2 SP2 on Windows 2003

    Hi Madhu,
    Below is a sample code to traverse through the ReportStructure and get the Alerters from the cells.
    Hope this helps.
    Regards,
    Dan
    Main:
                /************************** RETRIEVING PARAMETERS **************************/
                // Retrieve the logon information
                String username = "username";
                String password = "password";
                String cmsName  = "cms name";
                String authType = "secEnterprise"; 
                // Retrieve the name of the Web Intelligence document to be used in the sample
                String webiDocName = "WebI Alerter Test";
                /************************** LOGON TO THE ENTERPRISE **************************/
                // Logon to the enterprise
                IEnterpriseSession boEnterpriseSession = CrystalEnterprise.getSessionMgr().logon( username, password, cmsName, authType);
                /************************** RETRIEVE INFOOBJECT FOR THE WEBI DOCUMENT **************************/
                // Retrieve the IInfoStore object
                IInfoStore boInfoStore =(IInfoStore) boEnterpriseSession.getService("InfoStore"); 
                session.setAttribute("SAMPLE.InfoStore", boInfoStore); 
                // Build query to retrieve the universe InfoObjects
                String sQuery = "SELECT * FROM CI_INFOOBJECTS WHERE SI_KIND='" + CeKind.WEBI + "' AND SI_NAME='" + webiDocName + "'";
                // Execute the query
                IInfoObjects boInfoObjects = (IInfoObjects) boInfoStore.query(sQuery);
                // Retrieve the InfoObject for the Web Intelligence document
                IInfoObject boInfoObject = (IInfoObject) boInfoObjects.get(0);
                /************************** RETRIEVE DOCUMENT INSTANCE FOR THE WEBI DOCUMENT **************************/
                // Retrieve the Report Engines
                ReportEngines boReportEngines = (ReportEngines) boEnterpriseSession.getService("ReportEngines");;
                // Retrieve the Report Engine for Web Intelligence documents
                ReportEngine boReportEngine = boReportEngines.getService(ReportEngines.ReportEngineType.WI_REPORT_ENGINE);
                // Retrieve the document instance for the Web Intelligence document
                DocumentInstance boDocumentInstance = boReportEngine.openDocument(boInfoObject.getID());
                ReportStructure boReportStructure = boDocumentInstance.getStructure();
                out.print(traverseReportStructure(boReportStructure));
                out.print("<HR>Process Complete!<HR>");
                boDocumentInstance.closeDocument();
                boReportEngine.close();
                boEnterpriseSession.logoff();
    Functions:
    String traverseReportStructure(ReportStructure boReportStructure) {
                String output = "";
                for (int i=0; i<boReportStructure.getReportElementCount(); i++) {
                            output += traverseReportElement(boReportStructure.getReportElement(i), 0);
                return output;
    String traverseReportElement(ReportElement boReportElement, int level) {
                String output = "";
                String padding = getPadding(level);
                if (boReportElement instanceof ReportContainer) {
                            output += padding + "Report Name: " + ((ReportContainer) boReportElement).getName() + "<BR>";
                } else if (boReportElement instanceof PageHeaderFooter) {
                            if (((PageHeaderFooter) boReportElement).isHeader()) {
                                        output += padding + "Report Header<BR>";
                            } else {
                                        output += padding + "Report Footer<BR>";
                } else if (boReportElement instanceof ReportBody) {
                            output += padding + "Report Body<BR>";
                } else if (boReportElement instanceof Cell) {
                            output += padding;
                            output += "Cell ID: " + ((Cell) boReportElement).getID() + " - ";
                            output += getAlerters(((Cell) boReportElement).getAlerters(), level+1);
                } else if (boReportElement instanceof ReportBlock) {
                            output += padding + "Block Name: " + ((ReportBlock) boReportElement).getName() + "<BR>";
                            output += traverseReportBlock((ReportBlock) boReportElement, level+1);
                } else {
                            output += padding + boReportElement.getClass().getName() + "<BR>";
                for (int i=0; i<boReportElement.getReportElementCount(); i++) {
                            output += traverseReportElement(boReportElement.getReportElement(i), level+1);
                return output;
    String traverseReportBlock(ReportBlock boReportBlock, int level) {
                String output = "";
                String padding = getPadding(level);
                Representation boRepresentation = boReportBlock.getRepresentation();
                output += padding + "Block type is [" + boRepresentation.getClass().getName() + "].<BR>";
                if (boRepresentation instanceof SimpleTable) {
                            SimpleTable boSimpleTable = (SimpleTable) boRepresentation;
                            output += padding + "Processing SimpleTable...<BR>";
                            output += padding + "Block Header<BR>" + traverseCellMatrix(boSimpleTable.getHeader(null), level+1);
                            output += padding + "Block Body<BR>" + traverseCellMatrix(boSimpleTable.getBody(), level+1);
                            output += padding + "Block Footer<BR>" + traverseCellMatrix(boSimpleTable.getFooter(null), level+1);
                } else {
                            output += padding + "Unhandled Block Type...<BR>";
                return output;
    String traverseCellMatrix(CellMatrix boCellMatrix, int level) {
                String output = "";
                String padding = getPadding(level);
                if (boCellMatrix.getRowCount()>0) {
                            TableCell boTableCell = null;
                            for (int i=0; i<boCellMatrix.getColumnCount(); i++) {
                                        boTableCell = (TableCell) boCellMatrix.getCell(0, i);
                                        output += padding + "Column: " + i + " - " + boTableCell.getText() + " - ";
                                        output += getAlerters(boTableCell.getAlerters(), level+1);
                } else {
                            output += padding + "No Cells.<BR>";
                return output;
    String getAlerters(Alerters boAlerters, int level) {
                String output = "";
                String padding = getPadding(level);
                if (boAlerters.getCount()<=0) {
                            output += "No alerters.<BR>";
                } else {
                            output += "Alerters found!<BR>";
                            Alerter boAlerter = null;
                            for (int i=0; i<boAlerters.getCount(); i++) {
                                        boAlerter = boAlerters.getAlerter(i);
                                        output += padding + "<B>" + boAlerter.getName() + "</B><BR>";
                return output;
    String getPadding(int level) {
                String output = "";
                for (int i=0; i<level; i++) {
                            output += "     ";
                return output;
    Edited by: Dan Cuevas on May 25, 2009 9:45 PM

  • How to change the size of playlist icons

    I find the bigger sized icons for playlists in iOS 7.0.3 to be way too big-this causes lots of wasted space and is impossible to see all your playlists at one time. Is there any way for me to resize them?

    Click on the Finder/Desktop
    From the View menu > Show View options.
    This is as large as they go
    If your having trouble seeing when web browsing I have a alternative for that.
    Firefox + NoSquint + Theme Font & Size Changer

  • How do I increase the size of icons within Word and other apps on my MacBook Pro

    Trouble reading icons on top of menu bars etc...ie Microsoft Word and even Apple software.   How can I get the text  larger over all on my 15" MacBook Pro?
    ?

    The icons in the menu bar and text can be increased by using a different display ratio. System Preferences>Displays. Try 1344x840 or 1280x800.

  • To Limiting the size of the attached document in a "Purchase order"

    Does anyone knows how to limit the size of the document indexing in an "Purchase order"?
    Let me explain:
    By the tcode me23n I can create an annex to attach a file to the Purchase order,
    right now there is no limitation on the size of it,
    is there any way to limit that someone attach a giant file to a purchase order and leave me the Database trembling?
    thanks in advance.

    No cross posting
    Read the "Rules of Engagement"

  • What are the size limitations, if any? Best practices?

    Are there any limitations on the size of the Spiceworks database (including knowledge base), outside of the system it lives on, or a point at which it might begin to affect performance?  If so, is there an archive feature, or is the solution deleting old tickets and kb articles?  
    This topic first appeared in the Spiceworks Community

    Hi Astrid,
    Thanks for reaching out.It could be a out of memory issue.
    If you increase the memory that SAP Predictive Analysis is allowed to consume.
    Go to the location where SAP Predictive Analysis was installed. In my case it is:
    C:\Program Files\SAP Predictive Analysis\Desktop
    Here you find a file "SAPPredictiveAnalysis.ini" - open this in Notepad and change the
    "-Xmx" parameter to approximately half of our PC/laptops memory.
    For instance in your case you could try with: -Xmx4096m
    I have outlined this is a few more steps here:
    http://scn.sap.com/message/15099575#15099575
    Hope it works for you.
    Best regards,
    Kurt

  • How do I find out the size of each individual element within a photoshop file as need to replace some elements?  Thanks :)

    How do I find out the size of each individual element within a photoshop file as need to replace some elements?  Thanks

    What do you mean by "Elements"?
    Elements in a flat image or Layers?
    Could you please post a screenshot with the Layers Panel visible?

  • What are the size limitations in Predictive Analytics - regression charts

    I'm trying to display the trend chart for an Exponenential Regression Prediction and I got the following error.  The Regression itself runs OK and provides a summary, but I can't display the data on a chart.
    There's only 1 other related posting- Error PAS10066 and it doesn't provide much more info than is in the error itself.
    Does anyone have extra info on what the size of the limitation is?  Is it something that can be overcome with extra RAM etc?
    I'm using the desktop version of PA 1.19, and I'm on a 64 bit installation of Windows 7 with 8GB of RAM, processing a csv file with 1.1 million rows.
    I've used some filters in the Prediuct workflow to cut down on the amount of data being processed, and I got past the PAS10066 error and am now getting a max call stack size error - can't find anything related on SCN for this one.
    Many Thanks
    Astrid

    Hi Astrid,
    Thanks for reaching out.It could be a out of memory issue.
    If you increase the memory that SAP Predictive Analysis is allowed to consume.
    Go to the location where SAP Predictive Analysis was installed. In my case it is:
    C:\Program Files\SAP Predictive Analysis\Desktop
    Here you find a file "SAPPredictiveAnalysis.ini" - open this in Notepad and change the
    "-Xmx" parameter to approximately half of our PC/laptops memory.
    For instance in your case you could try with: -Xmx4096m
    I have outlined this is a few more steps here:
    http://scn.sap.com/message/15099575#15099575
    Hope it works for you.
    Best regards,
    Kurt

  • In itunes for windows how can I find out the size of a playlist I created?

    In Windows using the latest iTunes, how do you bring up the size of a playlist you created in MBs?

    Use CTRL / to display the Status Bar at the bottom of the iTunes window.

  • How to judge the size of a playlist to burn to disc?

    does anyone know how to judge the size of a playlist to burn to disc?

    Click View>Show Status Bar
    Select the tracks you want to burn.
    The Status Bar will show you the info for the selected tracks, so you know if it'll fit or not.
    Clicking the info in the Status Bar will "toggle" between general and detailed view.

  • How can i find the size and contents of playlist created by genius?

    How can i find the size and contents of i-tunes playlist created by genius?

    Have a look at this article written by the CEO of our company (MoviMED):
    http://www.qualitymag.com/articles/91010--d-imaging-enters-the-machine-vision-world?v=preview
    What is the object you are going to be making with the CNC?  Is it a cube? Is it an intricate statue?
    Are you making an object with a CNC, or just mounting a camera to a CNC to image the object?
    www.movimed.com - Custom Imaging Solutions

  • HT1349 How can i find out the size and length of my playlist?

    How can i find out the size and length of my playlist? Anybody?

    It shows up in iTunes on your computer as seen here:

Maybe you are looking for

  • How can you get back a lost high score after a partial sync?

    I was playing a Temple Run game, which I was currently getting a high score on, when I plugged it into my computer to charge. Since it was the first time I had plugged it in, the Mac asked me to do some stuff. After my iPod started to sync, everythin

  • Can't drag movies into iTunes v8

    or should I rather say, I can drag 'em, but the do not land there. When dragging a .avi-movie in Vista, the thumbnail is shown, but the LIBRARY tab does not highlight, when dragging the movie over it (as it is, when dragging an MP3 there) Dropping th

  • Cannot share w Vimeo

    Using QT 10.1: cannot share w Vimeo since prompt says incorrect name altho I know info is correct (email + pass).

  • Saving Project Properties as Defaults-It Always Opens in NTSC and Not PAL.

    Whenever I open LiveType the Project Properties are set to the default NTSC 40:27. All my work is done in PAL 4:3. I have selected File>Settings>Remember Settings but still when I open LT I find it has reverted to NTSC. Am I doing something wrong or

  • IChat asking for my Google Talk password but I don't have one

    I can't log on to iChat.  When I launch it I get a window that says iChat can't log into my email addres because my login ID or password is incorrect.  I don't have a talk.google.com password because I've never signed up for this service.  When I hit