Download for XI content SAP_APPL has more versions than guide..

The Guide (page 15) shows up to SAP_APPL 603.
However the choices in the Support Portal shows:
Stick with the 3 in the Guide ?  Or go all out ?
Thanks,
Tim.

Copying the response from Ginger's team:
The guide refers the mandatory software component (PI Content) that are required for the standard interface to work. The one listed in the support portal is for all the different SP’s and Ehp’s of the respective SAP_APPL component on their on-premise SAP application ERP/CRM. So importing anything beyond what the guide says is up to the customer as they may have other non-C4C related interface. But for C4C standard integration we need all of the that are mentioned in the guide. Hope this helps.

Similar Messages

  • Does anyone know of a simple home accounting application? iBank does not seem to be that user friendly and has more features than I need. I would like something that will connect to my bank and will allow the creation of a budget that is simple.

    I am looking for a very simple home accounting application. iBank seems to not be very intuitive and it has more features than I need. I am looking for the ability to create a budget and keep a bank register with the ability to connect to my bank and do updates.

    I have a small business, I chose Quickbooks because anything else cost much more. That triggered the hiring of a bookkeeper who knew how to use it. It was not the cheapest choice after all.

  • My itunes library has more songs than my ipod will hold.

    My itunes library has more songs than my ipod will hold. What is the best way for me to choose what actually goes on the ipod?

    Or, when you are synching choose the songs you want on the IPod by checking them in the library, then tell it to only synch checked items.
    To be honest, the 'smart playlist' is probably a simpler way though. Go to playlists, click 'create new smart playlist' and choose your parameters from there. As you add new music to the library the playlist will update itself.

  • Study: Oracle database software has more flaws than SQL Server

    Hi,
    Study: Oracle database software has more flaws than SQL Server
    Microsoft is often unfairly slammed for security issues, says NGSS
    http://www.computerworld.com/action/article.do?command=viewArticleBasic&articleId=9005383&intsrc=hm_list
    Post your comments on this stupid artical.
    Thanks!
    M T

    This is a case where size does matter.
    When they say errors reported on oracle are about 4 times more than the ones reported on SQL server they forgot to say something like: SQL server is able to do... what a 10%, a 5% or whatever of what oracle can do.
    Anyway who sayd this forgot to say that they worked with microsoft trying to improve SQL sever security features as well.
    http://www.nextgenss.com/press-releases/ngs-and-the-sql-server-security-essential-guide/
    They have a reason to say it. Who would say "I made a bad job!"
    In my opinion there is no way yet to compare oracle to any other DBMS under any point of view.
    Bye Alessandro

  • My dad bought an iPhone 4S, and I have the exact same model. Neither of us have the iOS6 update. His phone has 4G, mine doesn't. He also has more features than I. Why is that?

    My dad bought an iPhone 4S, and I have the exact same model. Neither of us have the iOS6 update. His phone has 4G, mine doesn't. He also has more features than I. Why is that?

    Both of you should update to iOS 6 and then you will be
    the same if you have the same  model iPhone.

  • How can i get a free digital download for the Logic express 9 DVD version

    I recently bought an new Imac. There is no dvd player. What gets me frustrated is that i own almost all Apple products, but i can't seem to get my DVD version of Logic Express on my new imac. I tried to share the dvd drive of my macbook pro, but that doesnot work with copy protected software. So i can't install from that external dvd drive.
    So now i have a:
    Iphone
    Ipad mini
    Macbook pro
    Imac
    and ik can't use my officially purchased version of Logic. Microsoft offers a free digital download for registered version of Office for Mac. Is er there also a free digital download for Logic Express? Anybody?
    If there is not, i feel ripped off.
    Thanks.

    Why not ask in the Logic Express forums?

  • How to get items from a list that has more items than the List View Threshold?

    I'm using SharePoints object model and I'm trying to get all or a subset of the items from a SharePoint 2010 list which has many more items than the list view threshold (20,000+) using the SPList.GetItems() method. However no matter what I do the SPQueryThrottledException
    always seems to be thrown and I get no items back.
    I'm sorting based on the ID field, so it is indexed. I've tried setting the RowLimit property on the SPQuery object(had no effect). I tried specifying the RowLimit in the SPQuerys ViewXml property, but that still throws a throttle exception. I tried using the
    ContentIterator as defined here:http://msdn.microsoft.com/en-us/library/microsoft.office.server.utilities.contentiterator.aspx,
    but that still throws the query throttle exception. I tried specifying the RowLimit parameter in the ProcessListItems functions, as suggested by the first comment here:http://tomvangaever.be/blogv2/2011/05/contentiterator-very-large-lists/,
    but it still throws the query throttle exception. I tried using GetDataTable instead, still throws query throttle exception. I can't run this as admin, I can't raise the threshold limit, I can't raise the threshold limit temporarily, I can't override the lists
    throttling(i.e. list.EnableThrottling = false;), and I can't override the SPQuery(query.QueryThrottleMode = SPQueryThrottleOption.Override;). Does anyone know how to get items back in this situation or has anyone succesfully beaten the query throttle exception?
    Thanks.
    My Query:
    <OrderBy>
        <FieldRef Name='ID' Ascending='TRUE' />
    </OrderBy>
    <Where>
        <Geq><FieldRef Name='ID' /><Value Type='Counter'>0</Value></Geq>
    </Where>
    My ViewXml:
    <View>
        <Query>
            <OrderBy><FieldRef Name='ID' Ascending='TRUE' /></OrderBy>
            <Where>
                <Geq><FieldRef Name='ID' /><Value Type='Counter'>0</Value></Geq>
            </Where>
        </Query>
        <RowLimit>2000</RowLimit>
    </View>
    Thanks again.

    I was using code below to work with 700000+ items in the list.
    SPWeb oWebsite = SPContext.Current.Web;
    SPList oList = oWebsite.Lists["MyList"];
    SPQuery oQuery = new SPQuery();
    oQuery.RowLimit = 2000;
    int intIndex = 1;
    do
    SPListItemCollection collListItems = oList.GetItems(oQuery);
    foreach (SPListItem oListItem in collListItems)
    //do something oListItem["Title"].ToString()
    oQuery.ListItemCollectionPosition = collListItems.ListItemCollectionPosition;
    intIndex++;
    } while (oQuery.ListItemCollectionPosition != null);
    Oleg
    Hi Oleg, thanks for replying.
    The problem with the code you have is that your SPQuery object's QueryThrottleMode is set to default. If you run that code as a local admin no throttle limits will be applied, but if you're not admin you will still have the normal throttle limits. In my
    situation it won't be run as a local admin so the code you provided won't work. You can simulate my dilemma by setting the QuerryThrottleMode  property to SPQueryThrottleOption.Strict, and I'm sure you'll start to get SPQueryThrottledException's
    as well on that list of 700000+ items.
    Thanks anyway though

  • IP address has more numbers than Mac allows

    Hi,
    I'm trying to hook up a security camera system (for the barn), and I'm having trouble - I had it set up last year, can't remember what I did. Anyway, the unit hooks up to a router (the AE base station via ethernet), and I'm trying to use a PC laptop to watch from the house - I was given an IP address xxx.xxx.xxx.xxx, but it seems like it's more numbers than Mac likes. Also, I am trying to Port Map, since that's what the instructions say (5000 to 5003), but have no idea how to do this.
    Help?

    When setting up port mapping in a router you only use the last number (.xxx) on the right of the IP address. The first three numbers (xxx.xxx.xxx) are the same for all devices connected to a router.
    Message was edited by: Retired Engineer

  • Remember Phil Robertson?? How is firing someone for different belief make you more tolerant than him? Deleted Firefox. Too bad, I liked it.

    You are a bunch of hypocrites. I am amazed that you would not realize there a lot more traditionalists than there are homosexuals. In America everyone is entitled to an opinion, you could be pro Faggot and I would have continued to use your product, but since you chose to unload the CEO for having an opposing view, I am now unloading you. It is a shame because I really like your browser. Remember the Alamo... Today it is Remember Phil Robertson!! A lesson should have been learned there, Gays are less than two percent of the population, if you are willing to piss off the rest to put the gays on a pedestal, I can only hope you go down in flames, hope to see you in chapter 13

    Unfortunately many are assuming he must have been fired or forced out all due to his personal choice to leave for now versus going back to CTO or another role as the board members encouraged him to do.
    Please see these links to help clear your misconceptions up.
    *https://blog.mozilla.org/blog/2014/04/05/faq-on-ceo-resignation/
    *http://blog.gerv.net/2014/04/your-ire-is-misdirected/

  • Sound output has more bass than old model

    Hello
    I've just purchased a new MAC PRO. I've noticed that the sound in the headphones has a lot more bass presence than the old model.
    Anyone else found this
    In iTunes, eq is Flat or off. I can't find anything else that would changed the sound quality
    Thanks

    "- 16-bit, 44.1Khz - the sound was not quite as "wide" as the 24 bit files, but the kick drum, bass guitar, and even the snare sounded markedly more full and punchy. The bass line could be heard un-interrupted pulsing at the bottom."
    The "wide" is perfectly understandable since our perception of depth and width relies a lot on low-level ambient cues that could easily be lost in a 16-bit system vs a 24-bit system.
    The other part is harder...just another man's theory here, but if we were to take this to extremes...say a 3-bit system: off, soft and loud.
    It would be true then that anything over a certain input level threshhold would be assigned as a "loud" bit. Could that make certain characteristics and sounds appear more "punchy"? Obviously, there are 2 to the 16th power levels of resolution in a 16-bit byte, but I'm just wondering if this concept could affect the perception more so than with a 24-bit system.
    Another factor to consider is that 12-bit systems would generally have more distortion in the analog section than a high-end 24-bit converter. Distortion can definitely affect the perception of both loudness and 'punchiness'. Remember, the signal goes through analog circuits before it hits the converter chip. That analog portion is pretty critical to how the system sounds.
    That's why two a/d converters can use the same converter chips and even the same clocks, but still sound different.

  • Cant finish download on update for iphone 4 still has original version software help!!!!l on

    there is also an error when it downloads

    Hi angiegirl1107, I had the same problem, this is what worked for me.
    (This is assuming you are running a Mac with iTunes, not Windows... you haven't actually said..
    Also, I don't have any 3rd party security software, the only Firewall I have is the one that's included in Mac Operating System.
    1) go into System Preferences, select 'Security'
    2) select the Firewall tab.
    3) select the Stop button to turn off the firewall (you may be required to click the lock bottom left, and enter your password, to change this.)
    4) now go back to itunes and try your download. For me it worked.
    5) after download, go back to Security preferences and turn the Firewall back on.
    cheers JD

  • Do owners of the previous version of garageband need to pay $4.99 for full content on the new version?

    Hi guys, ilife 11 was included with my 2012 macbook air.  When the new versions of the ilife apps were released recently, I could upgrade imovie and iphoto to the new version in the app store.  However, garageband didn't show up as an update, but I could download the free version of garageband 10.  It seems like the full content isn't included and I need to pay the $4.99 in-app-puchase fee to get full content.
    I was wondering if this is what others have noticed.
    Are owners of the previous version of garageband supposed to get the new version 10 with the full content for free?
    Thanks so much

      It seems like the full content isn't included and I need to pay the $4.99 in-app-puchase fee to get full content.
    Where have you looked? I found all previous content in GB 10 without buying more contents.
    First of all, disable all filters. GarageBand 10 will by default come up with "Filter for more relevant contents" enabled and only display a few loops - at least, it did for me.
    Rebuild your Loop index from the pop-up menu at the top of the loop browser. Look for your previous instruments in the "Legacy" section of the Instruments panel in the Inspector. See my post here for a few screenshots of the controls and menus you need to be looking for:
    https://discussions.apple.com/message/23552307#23552307
    Regards
    Léonie

  • Free download for RSP owners - what about localized versions?

    As an RSP user I am looking forward to get my hands on LR v1.0. However, the German version will be made available on Feb 28, not Feb 19 like the English version. Does that mean that I will have to wait for the localized version if I ever want German labels/menus, or will I be able to download the English version first and then get a "German-language pack" or perhaps a free German language download later?
    Alexander

    I am very proud to be able to answer to a question posted by Thomas Knoll, it is like telling Leonardo da Vinci how to get the British Museum or to Mozart how to download "I fall in love too easily" chords on the Internet.
    Dear Thomas Knoll, the answer to your question is : RSP has never been localized...
    Now, would you please answer to M. Janke question. It is not a very crucial problem but, as a french photographer with a poor english, I would be interested by your answer.

  • N97 V2 music player has more bugs than a hundred y...

    My problem is back!
    This is what I have done in the past hour.
    Exported my contacts to vcf onto memory card. Removed the card.
    *#7370# - hard reset
    Went through all that... Then remembered I hadn't wiped mass storage.
    Wiped mass storage (Which it kept complaining it couldn't do until I removed all the default active apps on the front screen). After removing them it eventually formatted it
    *#7370# - hard reset
    Let it get settled...
    Connected to USB, did a firmware update check. 2.00.19, no update available. Disconnected USB.
    Removed all the front screen **bleep**, added shortcut 2, put my normal shortcuts onto it.
    Added my wifi destination
    Opened the browser, went to google.co.uk via my wifi, added that as bookmark
    Put the memory card back in (there are no apps on it, I never got round to using it for anything).
    Imported my contacts back from the memory card.
    Went into music player, zero tracks shown. Good.
    Connected USB, started Nokia Music PC application (latest version, had checked). Right clicked on one album 13 tracks.
    Let it send them over to the N97.
    Disconnected phone. Started N97's music player. It says music library corrupt, scanning... Says 13 tracks found.
    Artists shows one artist, 13 tracks. Albums shows 1 album. All looks good.
    Go into the album, pick on a track, starts playing.
    Volume control does nothing. Touch volume control does nothing. Headset remote control, volume, forward and reverse do nothing. Touch screen pause/play forward and reverse do work, but there is no way to control volume.
    I've screwed up this music player app before the Nokia system has even got round to sending me the Welcome text message (which I have seen too many times!).
    Okay, I'm going to write the next bit line by line as I do it... So bear with me... It's step by step. You never know, it might help anyone that gives a damn (Nokia hopefully), fix it!
    *#7780# - soft reset
    Front screen now just shows shortcuts1 and 2, but the shortcuts themselves have switched back to Nokia's defaults.
    Music player volume now works!
    Connect to USB, send another mp3 album. PC app says (and shows on the %age bar) transferring 5 tracks. Album has 18. Nokia Music system tray icon says complete after 5, but the little arrows shows things are still being transferred. Waited for them to finish. Click the N97 icon and it's showing both albums, with all 18 tracks the second one really does have.
    Disconnect USB
    Go into Music library on N97, no auto refresh message. Showing only the original album with 13 tracks.
    "Options\refresh library" nothing shows as scanning, just appear straight back at the artist,album,playlist option screen. Albums still shows just the first one.
    Option\music library details says 13 tracks
    Playback and volume still work.
    Using the file manager, mass storage, music there's my 2nd artist, the album, and all the mp3 files. I can click them and play them. Volume still works.
    Select original (found) album, select delete. Everything shows 0, even though 2nd album is there in the mass memory, file mgr shows it. First artist and albums folders are still there, but empty (Nice house keeping Nokia).
    Reconnect USB, Nokia Music just shows the "invisible" 2nd album, and will play it.
    Pick a 3rd album of 11 tracks... Send that to N97.. No progress bar or anything shown, just wait for the arrows to stop flashing and then confirm N97 is showing two albums (the invisible on and new one) on the PC app.
    Disconnect USB.
    Back on the N97... Apps, Music.. Says Music Library 11 songs (that's the 3rd album)... Go into it..
    Albums (no songs)
    All songs (no songs)
    Artists: The artist from 3rd album is shown... 11 songs!
    Click it... Shows the album name, 11 songs.
    Click the album, and click the first track to play it... Long delay of a few seconds...
    Starts playing... Volume not working again!
    Try refresh library... again, nothing, no progress bar...
    No change, no volume control.
    Now here's the really weird bit... If I go and find the mp3 file on the mass storage, and play it from there, volume control works! Come back through the music play app, play the same track, volume won't work.
    *#7780# - soft reset
    Welcome message, yeah yeah... Ooooh, very fast confirmation text message...
    Apps, Music, Music Library (11 songs), go into that, click Albums.... "Cannot perform whilst USB connected" **bleep**?I disconnected that ages ago when i said I did. After that every attempt to go into Albums dumps me back to the Music app showing "Last player - blank" "Music Library 11" etc etc...
    Exit all the way out and try to go back in...Artists does the "USB connected" error. Albums just dumps me out. Playlists says "File corrupt". All songs say "(no songs)". Podcasts and Genres say "USB connected", composers "General system error" and after that I get a couple of other system errors from other options and then it just dumps me back out.
    *#7780# - soft reset
    Ovi welcome... blah blah...
    Apps, music, music library (11 songs), go into it, option\refresh... Ooooh, something happens, a progress bar! 18 files added! That's 3rd album...
    Albums show both... Artists show both
    Pick one for playback... Volume control is back!
    Right... Time to try a different tack...
    Connect USB, mass storage mode this time (all previous attempts have been PC suite mode).
    Create a now folder in music for the artist name (as stored in ID3 tag), create subfolder in that for the Album name (as stored in ID3). Copy mp3 files.
    Eject USB device, wait for windows to confirm... It does.
    Disconnect USB cable.
    App\music\Music Library (29 songs - Thats the two previous albums). Go into it, previous tracks shown, playback/volume okay.
    Refresh library works again... Now 3 albums, volume works.
    Back to USB (mass storage mode).
    This time deliberately doing the storage structure wrong... \music\albumname\mp3s (normally \music\artist\albumname\mp3s).
    Music library still showing the 48 tracks from the first 3 albums... Seems to open a bit slower... Still works though.
    Refresh library... 13 files added...
    4 albums... All working...
    Looking with file mgr from badly arranged folder is still as I made it... I guess the Nokia Music PC app creates the tree format, and the N97 doesn't actually need it.
    Okay, proof of pudding test...
    Connect via USB (mass storage).
    Delete the album I created with the mangled folder structure.
    Copy 20 folders of mp3 albums across using just windows file manager to the mass storage drive's music folder.
    Eject USB storage device from windows....
    Oh... Up until now I was almost certain I would be able to use N97 as an MP3 player as long as I avoided the Nokia Music PC app...
    Apps\Music\music library shows 61 songs, which is what it had...
    Go into it, click albums and I'm getting the USB device connected message. It's not, and the icon isn't even showing on the phone, so I can't go into the player to see if volume works.
    Refresh isn't displaying anything, or doing anything I can see. Playlists say the file is corrupt...
    *#7780# - Soft reset
    Apps\Music\music library (61 songs).. go in, "Repairing corrupted library. Searching for music and podcasts"
    After a little while... 2 hundred and something found...
    Yup, all there...
    Guess what...
    Volume control is screwed again!
    Manually telling it to scan for new tracks doesn't do anything.
    *#7780# - Soft reset
    Apps\Music\music library (276 songs)... Go in "Repairing corrupted library....."
    2 seconds later "Search complete 0 file(s) added"
    All albums there, still no volume control.
    Okay, that enough... No more...
    Hopefully that is enough to give Nokia a clue as to what is wrong, and may I just make a slight suggestion.
    TEST WITH MORE THAN HALF A DOZEN TRACKS YOU **^(*&)(*)(*(*£$%^*(#!
    I'm off to buy a 7lb club hammer.

    Last night I had a thought...
    I wondered if the N97's Music player was getting upset when scanning my music because I had the jpg of the album cover in the folder with it (I tend to do that). As I hadn't bothered reloading any music since my last hard reset I thought I would give it a try.
    I removed all non-mp3 files from my music folders.
    Connected N97 in PC Suite mode
    Started Nokia Music PC app and transferred one album. Let it finish, closed the PC Nokia Music app, gave it a few seconds to settle, disconnected the N97 and had a look.
    It appeared in the music player and worked.
    Ooooh, right, in for a penny, in for a pound as they say... I connected it back up and sent over another 6 albums. Again closed the Nokia Music app... Waited a few seconds and disconnected the N97.
    Went and had a look... "Library corrupt, scanning.... blah blah"... Oh dear, here we go again. But no, a progress bar actually appeared, and after a minute it said "0 file(s) added", but they were all there. All the album art appeared (I'd already embedded that in the mp3 files days ago). All the albums, all the music.
    They played, and the volume worked!
    Yay! Thinks me... Solved... And goes to bed a happy man.
    I set my alarm (on the phone) for the morning and turn the phone off so nobody can phone me before my alarm (which really screws up my sleep!).
    This morning the alarm goes off.
    I hit stop. It asks if I want to turn the phone on, I say yes.
    It asks for my lock code (which I have enabled). I enter it. It says code correct.
    Flash of white on the screen... and it asks for my lock code again, which I enter... It says correct again.
    This time I get the Nokia tune.
    It comes up to the normal front screen, jumps itself onto the application screen, throws up a system error and reboots.
    It comes back up (without asking for a pin) and this time settles at the front screen looking for all the world like a working phone... A text message arrives to prove at least that's working.
    Hmmm... I wonder about my music...
    Well it's all there... But guess what... Volume control doesn't work again!
    Oh and clicking "Podcasts", of which I have zero, still produces, and has always produced (even straight after a hard reset), the message "Out of memory, please remove something"... Pressing it again produces "System Error". After that nothing in the Music Library menu works, all produce "System Error". You have to close it and restart to get anything in Music Library to "work".
    I wouldn't say I am short of memory. DeviceInfo (from moubail.com) Shows
    C: 32.68 MB free
    E: 30116.46 MB free
    F: (8Gig card) 7120.86 MB free
    RAM: 48.83 MB free.
    I keep my C: drive clear of everything. Even my text message storage has been switched to E: (not that I have may since all the hard/soft reboots. Most of them are the "Welcome to nokia" message. Anything that gives me the option to install to another "drive" gets put onto E:
    I haven't installed any of the 3 files offered in since the hard reset "SW Update", N-Gage, Nokia Messaging or Ovi Contacts.

  • Ipod has more space than computer!!!!

    Hello, I've run into a bit of a problem. I've recently bought a 30 G ipod w/ video, but my computer only has 20 G. Obviously less now, as I've had it for a few years... so lets say 3 G. Is there any way I can keep all my music on my ipod w/o [sync-ing it and keeping all the music on my hard drive]?
    Thank you much =]
    ~ musezilla

    You simply have to change the update option of your iPod to "manually manage music and videos". You can get details here: Managing content manually on iPod
    One major word of caution. If you delete songs from your PC and have no back up other than the iPod you will risk losing them permanently if your iPod fails or you find you have to restore it to solve a problem. You should consider investing in an additional internal or external hard drive to store/back up your music. Alternatively at the very least back up songs you can't replace such as iTunes downloads to CD or DVD. Forum member Buegie has compiled a very extensive procedure for backing up your music which you'll find at this link: Backing up iTunes
    Something else to be aware of when using an iPod in manual mode is that the "Do Not Disconnect" message will remain on the display until you physically eject the device. In that case use Safely Remove Hardware icon in the Windows system tray on your desktop or check this link: Safely Disconnect IPod

Maybe you are looking for