Is it possible to create a playlist and share it with another itunes user?

Is it possible to create a playlist and share it with another itunes user?

try this out
Select distinct   
v_R_System.Netbios_Name0 AS [Computer Name],  
v_GS_COMPUTER_SYSTEM.UserName0 AS [User Name]
 from v_R_System
left join v_GS_COMPUTER_SYSTEM on (v_GS_COMPUTER_SYSTEM.ResourceID = v_R_System.ResourceID) 
inner join v_fullcollectionmembership as b on (b.ResourceID = v_R_System.ResourceID) 
left join v_GS_SYSTEM_CONSOLE_USAGE_MAXGROUP ON v_GS_SYSTEM_CONSOLE_USAGE_MAXGROUP.ResourceID = v_R_System.ResourceID
        inner join v_GS_SYSTEM e on e.resourceid = b.resourceid
 Where
b.CollectionID = @collectionid
Blog: http://theinfraguys.com
Follow me at Facebook
The Infra Guys Facebook Page
Please remember to click Mark as Answer on the answer if it helps you in anyway

Similar Messages

  • How to create a spreadsheet and share it with another users?

    Hello.
    I want to create a weekly report spreadsheet, like excel file, for me and my colleagues. Therefore it is needs to have a public access among another users.
    Is it possible?
    Thank you !

    If you mean create the Excel file and then email it to others, just create and save the file to your drive. Then attach the file to an email and send it.
    If you mean having a file somewhere and several people being able to access and work on the file, that is not in the scope of Thunderbird or any other email client. You might get help with a solution from Microsoft support forum.

  • When I create a playlist and sync it to my iPhone not all of the playlist transfers over.  All of the songs are there and are playable they just do not show up on the playlist.

    When I create a playlist and sync it to my iPhone not all of the songs on the playlist transfer over.  All of the songs are there and are playable they just do not show up on the playlist.  For example, in itunes on my computer a playlist has over 100 songs, but when I sync my phone, my iphone only shows 60 songs.  I can go into my phone and add the missing songs to the playlist, but the next time I sync my phone the songs are gone again.

    Wondering if you haven't been bitten by the new "feature" of iOS 5, as was my son. turingtest2 explained it very well in reply to my own query about "missing" songs in playlists.
    Here's that thread...
    https://discussions.apple.com/message/16903613#16903613

  • Is it possible to create a thread and run it in background in nokia ??

    Is it possible to create a thread and run it in background in nokia series 40 mobile phones using j2me ??

    Probably a good question for ForumNokia. If you mean start up a thread and run in the background while your MIDlet UI does other things, then sure, why not. If you mean that you want to exit your MIDlet, but leave a thread running in the background, then I don't believe you can do this on series 40. S60 is another story since it supports multiple tasks.

  • Is it possible to create a playlist, automatically, that contains recently added podcasts for the iphone 4s?

    Is it possible to create a playlist in itunes on the iphone 4s, that automatically contains recently downloaded podcasts?

    Is it possible to create a playlist in itunes on the iphone 4s, that automatically contains recently downloaded podcasts?

  • How the heck do i create a playlist and put it ON my ipod?

    ok, hi... im sorry if this is a novice question...
    but i have scoured google search results for way too long... you are my last hope.
    i can create a new playlist, and it shows up in itunes. i can sequence the songs to any order i please within that playlist and i love it -- but for the love of god -- how do i put the PLAYLIST (song order) on the shuffle itself so i can sequence songs for it?
    as i said, im sorry if this seems like a stupid question... i suspect im over looking something simple. but here i am...
    thanks!
    Message was edited by: thisismyname1234

    Not a stupid question at all...I am looking for the answer to that very question myself!!! Only difference is that I have a 1st generation shuffle. Would someone please help? FYI, I'm working on a new MacBook with the latest version of iTunes loaded...Does that have anything to do w/ my not being able to get the playlist copied (in the correct song order) onto my shuffle? Also, can I have more than one playlist and random other songs on my shuffle at the same time? Please help us both!

  • After an "event" on my computer, all of my playlists were deleted. All of my music is still there, but I am concerned about synching my idpod, as many hundreds of hours were involved in creating the playlists and I do not want to lose them. Suggestions?

    After an "event" on my computer, all of my playlists were deleted. All of my music is still on iTunes on my computer, but I am concerned about synching my idpod, as many hundreds of hours were involved in creating the playlists and I do not want to lose them. Suggestions?

    Empty/corrupt library after upgrade/crash
    Hopefully it's not been too long since you last upgraded iTunes, in fact if you get an empty/incomplete library immediately after upgrading then with the following steps you shouldn't lose a thing or need to do any further housekeeping. In the Previous iTunes Libraries folder should be a number of dated iTunes Library files. Take the most recent of these and copy it into the iTunes folder. Rename iTunes Library.itl as iTunes Library (Corrupt).itl and then rename the restored file as iTunes Library.itl. Start iTunes. Should all be good, bar any recent additions to or deletions from your library.
    See iTunes Folder Watch for a tool to catch up with any changes since the backup file was created.
    When you get it all working make a backup!
    tt2

  • Create a Playlist from external folder with tracks already existing in iTunes

    I was just wondering if its possible to create a playlist from an external folder (on my desktop) with tracks that already exist in iTunes.
    I basically have a folder on my desktop that i use with Serato, i was wondering if it'd be possible to sort a playlist in iTunes with the tracklist from the folder? I already have all the tracks on iTunes so i don't want to add them onto iTunes again just to put them into a playlist as i'd have to sort through all the duplicates to delete the non playlisted tracks (theres around 1500 so it wouldn't be a quick task).
    Would be much appreciated if anybody can help!

    Hi,
    I have an AppleScript that does this.
    This script need Spotlight metadata, all files in the folder that you use with Serato should be indexed.
    Works well if the tags (name and artist) are defined
    In this script :
    it will display a dialog to select your folder
    iTunes search track from the library playlist according to (artist, album and title in the Spotlight metadata of each file).
    If iTunes found a track, iTunes will add this track to the new playlist.
    The script takes 35 seconds for 1000 files on an old machine (PowerMac G5 2 X 1.8 GHz) .
    This should take less than 100 seconds for 3500 files on the new machine
    Here is the script :
    -- this script need Spotlight metadata, files in the folder should be indexed
    set folderPath to (choose folder with prompt "Select the  folder that you use with Serato")
    set f to quoted form of POSIX path of folderPath
    my makePlaylist(do shell script "/usr/bin/find " & f & " -type f \\! -name '.*' -print0 | /usr/bin/xargs -0 /usr/bin/mdls -name kMDItemTitle -name kMDItemAlbum -name kMDItemAuthors | /usr/bin/sed 'H;$!d;x;s/\\n[^k]//g'")
    on makePlaylist(t)
          script o
                property L : paragraphs of t
          end script
          set tc to (count o's L)
          tell application "iTunes"
                set newPlaylist to make new playlist with properties {name:"Serato"}
                set masterLibr to (get first playlist whose special kind is Music)
          end tell
          repeat with i from 2 to tc by 3
                set {tAlbum, tArtist, tTitle} to my getvalue(items i thru (i + 2) of o's L)
                tell application "iTunes" to try
                      set t to (get first track of masterLibr whose name is tTitle and artist is tArtist and album is tAlbum)
                      duplicate t to newPlaylist -- add founded track from the library playlist to the  new playlist
                end try
          end repeat
    end makePlaylist
    on getvalue(tList)
          set oTID to text item delimiters
          set text item delimiters to "\""
          set {alb, aut, title} to {"", "", ""}
          try
                repeat with i in tList -- if line does not contains a double quote then the tag is  empty -->  = (null)
                      if i starts with "kMDItemAlbum" then
                            tell i to if it contains "\"" then set alb to text item 2
                      else if i starts with "kMDItemAuthors" then
                            set text item delimiters to "(   "
                            -- if artist contains one word, it doesn't contains double quote
                            tell i to if it does not contain "(null)" then
                                  if last text item starts with "\"" then
                                        set aut to text 2 thru -2 of (last text item)
                                  else
                                        set aut to (last text item)
                                  end if
                            end if
                            set text item delimiters to "\""
                      else --kMDItemTitle
                            tell i to if it contains "\"" then set title to text item 2
                      end if
                end repeat
          end try
          set text item delimiters to oTID
          return {alb, aut, title}
    end getvalue

  • Is it possible to create a menu structure within iWeb with a so called tree layout? iWeb only provides automatically a horizontal layout

    Is it possible to create a menu structure within iWeb with a so called tree layout? iWeb only provides automatically a horizontal layout

    Not in iWeb itself.
    You have to create these menus yourself. Start here :
         A List Apart: Articles: Suckerfish Dropdowns
    Also, see podcast episode 9 of
         CSS Tricks and Tips
    and then add them to a webpage with the HTML Snippet.
    Or add the menu to the webpage with a JavaScript.
    Here's a sample page :
         http://www.wyodor.net/mfi/roodhout/
         http://www.wyodor.net/mfi/spelling/
         http://www.wyodor.net/mfi/Maaskant/Some_Menus.html
    The how-to-do page are here and here.
    More sample pages on my Made for iPad with iWeb pages.
         http://www.wyodor.net/mfi/
    You may have to learn HTML, CSS, JavaScript, AJAX, DOM and how iWeb creates its pages.

  • Is it possible to create in R/3 the invoices with status u0091parkedu0092?

    Hi ppl.
    We are working in EBP with extended classic scenario.
    We want to create invoices in EBP, but we want to create all invoice documents via EDI with status ‘parked’ in R/3.
    We read note 501524 (EDI: Generally parking incoming invoices). The note describes all that we want to do, but the problem is that the Function exit ‘EXIT_SAPLMRMH_014’ does not work for ‘BBPIV’ message type and the ‘IDOC_INPUT_BBP_IV’ function module.
    Is it possible to create in R/3 the invoices with status ‘parked’ for all incoming invoices created in EBP?
    Thanks and regards.

    Raul,
            Did you find a solution for this.
    We want to do the same here.
    thanks
    Sanjay

  • I have created an iTunes account on my current computer for my daughters ipod touch and tried connecting my ipod nano and it won't sync and says that it is associated with another iTunes library so how do I merge the two libraries?

    I have created an iTunes account on my current computer for my daughters ipod touch and tried connecting my ipod nano and it won't sync and says that it is associated with another iTunes library so how do I merge the two libraries?

    You do not merge libraries.
    iDevices sync to one and only one computer.
    If you want a single library, you manually move the content from one library to another... all content will still be associated with the Apple ID it was acquired with.

  • Creating SSL certificate and configuring it with JBOSS 4.0.1

    I have to post some data to a secured site from my application.
    For this, I am creating connection to that site using URLConnection and to send data I create OutputStream using the connection.
    But, while creating the stream it is showing SSLException and message is No trusted certificate found.
    For this, I need to create SSL certificate (mostly using keytool command) and configure it with my application server which is JBOSS 4.0.1
    Now, my problem is that I don't know the exact steps to create a certificate and configure it with JBOSS. Please provide the steps in detail.

    I think you have this back to front. Unless this exception came from the server, in which case it is misconfigured, you don't have to create a certificate, you have to import the server's certificate, or that of one of its signers, into the client's truststore, and tell Java where the truststore is if it's in a non-standard location.
    See http://java.sun.com/j2se/1.5.0/docs/guide/security/jsse/JSSERefGuide.html. You'll have to ask about the JBoss part in a JBoss forum.

  • Can I create a second calendar and share it with my wife computer

    Did know if I could create a second calendar and share it with my wife computer and iPhone? We both have our own separate iTunes accounts and computers and iPhones

    You should each sign up for iCloud (free):
    http://www.apple.com/icloud/get-started/
    You can then each sync your calendars to iCloud by going to System Preferences>iCloud and checking 'calendars'.
    Now one of you can privately share a calendar with write privileges to the other:
    http://help.apple.com/icloud/#mm6b1a9479 and expand 'Share a private calendar or reminder list with specific people'.

  • Create Multiple Signature and Date fields with a custom Toolbar Button

    First off, thanks in advance!  I am a scripting newbie and I am trudging my way through with very little experience with scripting of any kind.  I am good at taking other's scripts and forming them into something I need, but I can't seem to find anything to do what I want.
    Using Adobe Acrobat X, I am trying to create a toolbar button that I can press to create multiple signature and date fields with predetermined locations.
    Below is the script I have that is working to create just a single signature box, but I can't seem to figure out the exact syntax to have that same button create multiple fields.  In total it is 9 signature fields and 9 date fields need to be created.  If you can just give me an example of what the button would look like with multiple scripts?  I was assuming I would set up multiple variables and then in the cExec property of the toolbar button I could just call out all of those variables? 
    var sigswm = "addField('sigSWM', 'signature', '0', [108, 198, 494.64, 72])"
    app.addToolButton({cName: "dotbutton", cExec: sigswm, cLabel: "Place Signature and Date Blocks",});
    Thanks in advance for any help you can provide.
    Billy Sweeney

    Thanks!  That was probably the only thing I didn't try.
    I do have one more question.  What I want is when the signature field is clicked it fills out a specific date field. I beleive the script I want would be:
    var currentTime = new Date()
        var month = currentTime.getMonth() + 1
        var day = currentTime.getDate()
        var year = currentTime.getFullYear()
        var signingTime = day +"/"+month+"/"+year
        var f = this.getField("dateSWM"); 
        f.value = signingTime;
    I found this on another thread that mentioned it could be placed in the Signed tab of the signature properties dialog.  I am assuming it would be placed in my button script file as a setAction script for each signature, but I am not real sure exactly where or how?

  • PLAYLIST PROBLEM: I did a playlist and after synchonising with my ipod, the order of the songs changed both in itunes and in the ipod. In itunes the order came alphabetically and in ipod randomly. I wanted that playlist for a party. HELP! THX

    PLAYLIST PROBLEM: I did a playlist and after synchonising with my ipod, the order of the songs changed both in itunes and in the ipod. In itunes the order came alphabetically and in ipod randomly. I wanted that playlistto be played in the order I made it for a party.
    Now I don't know what to do.
    Thank you very much

    Plug your iPod in and when it appears in iTunes, click on it from under Devices in the left hand pane.  This brings you to the Summary tab.  Locate and click on the Music tab.  What configurations do you have made from under this tab?  Is your iPod configured to sync those playlists?
    B-rock

Maybe you are looking for

  • Selection does not contain characteristic combination

    Hi Gurus, I am very new to Planning module. When i have created planning sequence on Aggregation level for 0INM_RC02 Cube, system gives error message "Selection does not contain characteristic combination". Can any one help me what is this error msg

  • Report on which computers have which version of Internet Explorer?

    Hi, Does anyone know of a simple report or way of reporting on which computers have which version of Internet Explorer? e.g. I expect to mostly find 7, but checking also for 6 & 8). As its integrated into the OS this isn't as easy to determine as wit

  • RCV file adapter error:

    hello all, i am trying a simple jdbc to file scenario. the jdbc adapter picks up a record from the db table successfully, but the file is not posted. 1. in the adapter monitor, i see this msg: Receiver Adapter v2307 for Party '', Service 'x1s': Confi

  • Max Buffer

    Hi Please Guide me... How can i find which query , procedure or function using maximum resources in a DB? Thanx in Advance Mani

  • Tree Component Drag and Drop

    Hi, I've been playing around with a trail version of flex and was interested to know if anybody had tried to implement the drag and drop functionality of the Tree component to a TileList? After much messing about I noticed the format of the Tree data