Need BPS advice

Hi all there,
Im totally new to SAP BW and BPS and my employer gave me job to draft a CRM-BW based system for our internal CRM.
Tasks are:
1) for a business opportunity defined in CRM attach a  business plan (something like cash flow for that project). Do some basic analyses against time (overal project cost in a month etc..)
2) In ideal case system automatically divide the business plan into milestones (billing dates) depending on defined project phases.
3) maybe will be requested basic business simulation
I've been thinking about using SAP BW BPS feature to accomplish this throught customization CRM modul.Are there any other ways how to solve this? (SAP-SEM or anything else?)
Thank you for your help (and sorry for my poor english).

if it involves only analysis then BW should be enough.
if it involves data getting updated in BW using an interface. you need to change the data regularly then BW-BPS should be a good idea.
i am not sure sem would help you. sem typically has BCS (business consolidation) and CPM (corporate performance monitor) and SRM (Stakeholder relationship management)
Regards,
BWer
Assign points if helpful.

Similar Messages

  • Need expert advice on buying new macbook pro 15 inch

    Hi I Am a digital textile designer and  planning to buy my first retina macbook pro. I need expert advice, which model should i buy 15 inch base model or with dedicated graphics card. i will use macbook for digital designing on Adobe photoshop and multi tasking. so now really confused is intel iris pro graphics will handle heavy files on photoshop or Nvidia GT750 m will good for heavy work. I am working on very large resolution file like 10 to 15k in resolution approx 1 GB in file size with lot of filters is being use while designing. Which model will handle above task well and last longer.

    Look at the specifications here:
    http://store.apple.com/us/buy-mac/macbook-pro
    You may be confusing the quad core CPU with the Graphics processor.
    It should have no difficulty in running Adobe Photoshop.
    Ciao.

  • In need of advice/help.

    I am having some serious issues with my MacBook.
    First, I think it is overheating. I can not run my computer for longer then an hour without it getting hot. My keyboard is getting hot along with my charger. I am not sure if this is a normal MacBook thing but it is slowing down my computer is so many ways.
    Another thing is I cannot run more then one application at a time. I am a graphic design major and I need to be able to run Adobe CS2 programs. For example, Say I am running In-Design and I need to make a fix in Photoshop, In-Design will quit. I have tried so many things to fix this but nothing works.
    I have alot of problems of running Safari also. I am very dissapointed and frustrated and I need some advice.
    Please. I have been having issues for awhile and thought it was just how these computers run, but I think I was mistaken. This is my first Apple computer.
    Thank you for reading and your input.
    MacBook   Mac OS X (10.4.8)  

    Stacey, I pointed you to an app called Temperature Monitor that will give an accurate temperature reading of your MacBook.
    Never EVER use your MacBook on a pillow or a blanket that can block airflow. I have no doubt that is adding to the problem.
    Download and install the firmware updates as well as Temperature Monitor found HERE. That way we can know what temps we are talking about. There is no way to tell if they are high if you cannot give us a reading.

  • Need Expertise Advice

    Hai,
    IDOC to JDBC (Staging table)
    IDoc is pushed in to XI.
    XI maps IDoc to staging table structure
    XI does the look up of other database tables while mapping.
              How to do the database look up???
    XI inserts data in to staging table with the status ‘new’.
    Scenario 2
    JDBC to JDBC
    XI selects the data from staging table.
    XI maps the data from staging table to the Actual table.
    XI inserts data in to the Actual Table and sends the status to SAP “Processed successfully”
    If it fails in this mapping it needs to send the status as “Error with the message to SAP”
    I want to do this as single scenario using BPM  and I want to send status to SAP once the data is successfully loaded in to the actual table or it fails in mapping at any stage.
    Need expertise advice to do this and how to do the database look up?
    Thanks in Advance

    Hi,
      Almost every thing has been said, you can also refer to this for Lookups,
    http://help.sap.com/saphelp_nw04/helpdata/en/cf/406642ea59c753e10000000a1550b0/content.htm
    For the second part, you may consider an alert.
    /people/michal.krawczyk2/blog/2005/09/09/xi-alerts--step-by-step
    /people/michal.krawczyk2/blog/2005/09/09/xi-alerts--troubleshooting-guide
    /people/aravindh.prasanna/blog/2005/12/23/configuring-scenario-specific-e-mail-alerts-in-xi-ccms-part--1
    This weblogs might help you.
    Regards,
    Anirban.

  • Business Delegate pattern - need some advice

    Hi. First let me apologize for the long post. I could see no other way. I�m building a system that quite large and I need some advice. The system is a type of transaction system, let�s suppose a shopping cart. I�m using struts taglibs and tiles for presentation, struts proper for controller, and POJOs for business logic. Also I�m using OJB for my data tier.
    Now I�ve been reading Pro Jakarta Struts (Apress), which BTW is a recommended read to anyone with novice experience in struts and related technologies. I�ve assimilated most of the techniques and patterns described in the book, and most of them make sense to me. However, I�ve hit a snag while reading the Business Delegate and Service Locator patterns.
    The way I had though of building my application before reading the book, was to have a wrapper class, such as the following:
    public class ShoppingCart {
      private IAuthenticationService authenticationService;
      private ITransactionService transactionService;
      public ShoppingCart() {
         authenticationService = new DBAuthenticationService();
         authenticationService = new DBTransactionService();
      public login(String username, String password) {
         String sessionToken = authenticationService.logon(username, password);
         return sessionToken;
      private boolean isValidUser(sessionToken) {
         bolean validUser =  authenticationService.isValidUser(sessionToken);
         return validUser;
      public performTransaction(sessionToken, TransactionVO) {
         if (!isValidUser(sessionToken) {
              throw new AuthenticationException();
         transcationService.performTransaction(TransactionVO);
      public editPreferences(sessionToken, PreferencesVO) {
         if (!isValidUser(sessionToken) {
              throw new AuthenticationException();
         authenticationService.performTransaction(PreferencesVO);
    }My idea was that my wrapper class would isolate all the business logic and could perform login service in case my application was ever to be used with other presentation layer than struts (standalone client, web services). However I believe that this overlaps the Business Delegate pattern and maybe even totally implements it. The way I understand the code I�m reading in the book, they suggest having a BD for each major service such as AuthenticationServiceBD, TransactionServiceBD, etc� However this would break my single point of entry for authenticating users. I really need some advice on my design and how it fits with the BD and SL patterns (or others). I would also like to know what you think/recommend of my authentication strategy.
    thanks in advance
    Raphael

    Thanks for your reply. This however, I understood. My concern is regarding my application in regards to business delegate pattern. You see I have this class (simplified for clarity):
    public class ShoppingCart {
       private ILoginService ls = new DBLoginService();
       private ITransactionService ts = new DBTransService();
       // and so on for all services I offer.
       //  then I mirror all the calls of my private interfaces
       //  and pass them through internally
       public String sessionToken login(String username, String password) {
            ls.login(username, password);
       public boolean addToCart(sessionToken, itemNo) {
            // check session
            ts.addToCart(sessionToken, itemNo);
       //  and so on
    }Multiple questions for this one:
    1) Am I not already implementing the Business Delegate pattern with my ShoppingCart class since all interfaces are private and all calls are mirrored from the wrapper class (ShoppingCart) to the private interfaces? All services are implemented as POJOs and I am not using JNDI at the present so I don't use the ServiceLocator pattern.
    2) I store a reference to the wrapper class (ShoppingCart) in the ServletContext so I can grab it from my Action classes. What do you think of this approach?
    3) How many BDs should an application contain. In my case I use just one. What is the advantage of using more?
    4) I create my own session tokens in case I ever want to use to business code in a non-web applications where sessions are not available readily. This brings about the problem that I can't pass the interfaces directly to the Action classes because the login session needs to be checked before any calls to services. So all methods include a sessionToken parameter which I use to check the session. This way, if I want to expose some of the services through web services, I can still use a login. What do you think of this approach.
    5) Any other remarks are very welcome...
    I really need help with this from an experienced programmer. Most things I can handle on my own but with this type of design issue, books just don't cut it. I need experience. I would really apreciate some feedback.
    Raphael
    ps: I would give all my Duke dollars for this (I only have 30), but I'm not sure how. If you want them I can create a dummy question and give them to you.

  • Need Network Advice: Multiple IP numbers.

    Hello I need some advice on setting up my office's network. I have a small amount of network knowledge, mostly just setting up my home networks and our offices simple existing network. Right now we have Verizon internet. The network looks like this -
    1 static IP -> Verizon Modem/Router -> 24port gig switch -> wired to 8 offices -> connected to 8 computers.
    We are canceling Verizon and getting Comcast with 5 IP addresses. Our goal is to continue using a network like we have, but add a server on the side for clients and remote employees to drop files. We have 2 mac mini's ready for the task of being servers with OSX Tiger on them. I would like to set one or both of them up as FTP servers, so we can hand out login/pass info and people can ftp into them to drop stuff or pick stuff up.
    Anyone have any advice for how to setup a network with multiple IP addresses? Do I need more than 1 router? Which router is best for Mac, because we will need a new one to replace verizons. Any advice on where I can find information on setting up the FTP server on our mac mini with Tiger? I've looked around, but I don't think the sites I found were using Tiger, menus weren't exact and I couldn't get it to work.
    Thanks for the help!
    Our office is ALL mac, 5x_8-core 2x_imac 2x_macpro 2x_mini

    You don't need a "Gigabit router". It's way, way overkill (and $$$$$$) for your network.
    The Comcast link is going to max out at about 15-20mpbs, so any router with 100mpbs links is going to be more than sufficient.
    As it happens, I wouldn't get a router anyway. Comcast are going to provide you with a router (they need to in order to terminate the RG-58 cable connection they drop and provide an ethernet port (that ethernet port, BTW, will be 100base-T).
    What you really need is a firewall. One that can handle multiple public IP addresses and allow specific incoming traffic (e.g. the FTP servers).
    I would recommend something from NetScreen. You may be able to pick up one of their NetScreen 5GTs pretty cheap now they're end of life (I have several of these around my network, including one in the exact same configuration you're talking about here). Failing that the SSG-5 would be sufficient.
    They also have the advantage of being able to run as a VPN endpoint should you need that functionality.
    At the end of the day your network topology would look something like:
    Comcast router -> (NetScreen) Firewall -> Switch -> Clients
    All the clients will connect to the switch and can talk amongst themselves at gigabit speeds. Any internet traffic would pass from the switch to the firewall and out to the big bad world.

  • I need some advice...

    Hi, I'm not quite sure where this topic should go exactly as it isn't about a specific topic. So plz fogive me if it's wrongly placed in your opinion.
    Anyway, I've been a long time fan of Linux and I don't want to have to stop using it. I've just recently converted my whole computer to a linuxbox only system, as I was running winxp(uke) before and couldn't stand it. It would lag during simple tasks like going from one directory to another and for no apparent reason, which aided me in my conversion. Enough about winblows, I don't need to tell you guys why it sucks, we all have our reasons. But there is just one thing bothering me now... and that is gaming. I am a huge fan of gaming and have been doing so for quite some time now (years) and well... gaming on linux hasn't been too pleasant for obvious reasons.
    1) the games I play except for quake3 are written and made to run solely on a winblows workstation.
    2) Wine and Winex3 have limited, but growing support for a range of games.
    3) Lastly the main game I would like to play (Steam CS 1.6) doesn't like to run on linux due to its constant updates, which throws WInex3 out of wack. Where it could have been working the day before but due to the update it no longer runs.
    I'm thinking of just making a partition for winxp(uke) so that I can game, but this isn't something I'm totally willing to do.
    Basically I need some advice and/or suggestions that anyone is willing to share with me.
    Thank you in advance.
    BTW: I'm not new to linux, I've been using it for almost 2 years now and have tried ALL of the distro's you can think of. (Arch is my distro of choice at the moment, along with slackware.)

    Enemy Territory is an excellent game, and it is totally free.
    I haven't played the free game from the US Army, but heard it is really good, and is totally free.
    I bought Return to Castle Wolfenstein, which plays perfectly in Single player mode, but I have some trouble in multiplayer mode (and I'm not an expert either).
    I bought Unreal Tournament 2004, which plays perfectly in both single player and online, but I simply suck at the game.
    I bought Never Winter Nights because I know the company has a linux version you can download once you have a registered copy.  I havent installed it yet, though, been playing UT2004.
    Doom3 is supposedly going to have a linux installer on the CD's, like UT2004 does.
    Anygame that uses OpenGL graphics instead of DirectX will prolly run under WINE or WINEX, or be easy for the original company to port (if they choose to).
    There are some "up and coming" linux only OpenGL games, light flightgear (a flight simulator), and a couple of 'massive online games".
    Betweet RTCW, EnemyT, Never Winter Nights, UT2004, and soon Doom3 - I have enough games to play, and thats without buying winex.
    Fergettabout Windows! You simply don't need it anymore.
    If you are determined to run Windows, get a removeable drive bay, and just swap boot drives when you want to swtich.  Or use GRUB if you want to select from multiple OS's.
    thx

  • I need some advice about the macbook pro and iPhone 5. I took a video on my iPhone and tried to email it it said it was too big to send? So i downloaded it to my macbook pro and tried to mail it to no avail? The macbook tells me the server won't let it th

    I need some advice about the macbook pro and iPhone 5.
    I took a video on my iPhone and tried to email it it said it was too big to send? So i downloaded it to my macbook pro and tried to mail it to no avail? The macbook tells me the server won't let it through other mail goes through any ideas how to resize it or what it might take to send it?

    I agree with LowLister, the best option for you to share the video online is to upload it to your online storage account for example : Box, Dropbox, SkyDrive (All of them provide free storage beginning from 2GB).
    You can upload the files which you want to share in this online storage and then they have sharing options in which you'll will get the link of the file to be sent and send the email. You're good to go!
    Tip : You can store multiple files for backup purposes.

  • Need your advice on making family videos without losing quality

    I need your advice.  I don't know where to put my question because I don't know which piece of software I need (so I am posting this in a few places on the forum: sorry).  That is exactly the question, I guess.
    I have a couple of digital cameras that I use to make family videos.  They both produce .avi files.  Sometimes I use an iPhone that produces .mov files.  So after my children and grandchildren visit, I end up with a bunch of these little videos.  I want to combine them into longer videos that I can watch more conveniently on my Apple TV 2 or put on a DVD to send my kids or to my elderly mother-in-law to watch.  I know how to combine them using iMovie HD, but that process seems to radically degrade the resolution and/or image quality.  The original .avi files are 1024x768 and are very clear and sharp.  I can't watch these .avi files on my ATV2 so I've been using Quicktime Player 10.0 to open them and then save them as .mov files.  Once I import these files into iTunes, I can watch them on my ATV2 and they too look great on my tv (since they have the same resolution as the original .avi files): sharp and clear.  But after I use iMovie HD to combine them (the .avi files) into an .m4v file, they're down to 640x480, and don't look near as good.  And the DVD made from this file using iDVD looks equally bad and blocky. 
    I think what I want to know is, can I change some parameters on iMovie HD to produce files that are as high quality as the original .avi and .mov files?  Or if not, what software do I need to accomplish this?  I'm not interested in "fancy" movies.  These are just home movies, but they are important to us.  Should I upgrade my iMovie to do this?  Or get Quicktime Pro?  Or what?  I'd appreciate your advice.  I'd like to keep the process as simple as possible.

    This is my workflow. I'm sure you will get a variety of opinions, but all I can say for my AVI clips, I've had excellent results for viewing on AppleTV.
    I use iMovie HD 6 for organizing the clips into short movies, 15 minutes +/-.  Clips are imported into iMovie as DV files. Once the movies are completed, I Export from iMovie as Full Quality, which results in a my-movie.dv file.
    I then open the dv file in MPEG Streamclip. There I use the MP4 and iTunes settings for screen ratio and bit rate. 4:3 for Standard Def and 16:9 for High Def. Sounds complicated, but once you open MPEG Streamclip, the settings are simple to figure out.
    The main thing to remember about quality is not to upscale your video. If the resolution is 640x480 SD, do not export higher than 640x480.
    Here are a couple of screenshots using MPEG Streamclips "Export to MP4" setting:

  • Plan on going to Manila for vacation and going to bring my iPad 4. Need your  advice what to do.

    Plan on going to Manila for vacation and going to bring my iPad 4. Need your  advice what to do.

    Hello Aongtan051,
    Thanks for using Apple Support Communities.
    For more information on this, take a look at:
    About Apple World Travel Adapter Kit
    http://support.apple.com/kb/HT4341
    The World Travel Adapter Kit includes a USB power adapter, a 30-pin to USB cable, and a set of six AC plugs with prongs that fit different electrical outlets around the world. For world travelers, this is the perfect kit to ensure power connectivity in most countries you may travel to.
    Best of luck,
    Mario

  • When I burn a disc from a playlist in iTunes, the track names and artist info does not display on the disc when friends view/listen to it. This probably is an easy fix, but I need some advice.

    When I burn a disc from a playlist in iTunes on my MacBook, the track names and artist info does not display on the disc when friends view/listen to it. This probably is an easy fix, but I need some advice.

    No, this standard has been implemented for several decades.
    How iTunes remembers audio CDs - http://support.apple.com/kb/TA27785
    It is just conceivable you burned a CD that exactly matched one already in the Gracenote database.  Gracenote uses track count and duration to decide what CD it is you have in a computer.  If you have one that matches that it will label it.  You could conceivably even have one that matches it that is not the correct one.
    This script will only work on Macs:
    http://dougscripts.com/itunes/scripts/ss.php?sp=cdtexttocdinfo - script to use CD-text file on CD to label CD in iTunes

  • Weird Access Problems - Really Need Your Advice

    This is complex and confusing, and I am not an IT expert. Let me provide background and symptoms:
    1) I recently moved and transferred ISP providers from Cox to Adelphia.
    2 My setup consists of Mac G5, a Powerbook, and an Airport Station. The internet cable from Adelphia runs into the Airport Station. A cable then runs from the Airport Station to the G5, and the connection to the Powerbook is made via wireless. This setup worked very well when Cox was my ISP
    3) My Apple Mail client accesses mail servers at Cox, Adelphia, Gmail, and .Mac,
    4) When I made the hookup described in 2) I was no longer able to access Gmail from Safari. However, when I directly connected the Adelphia cable to the G5 (cutting the Airport out of the loop) I was able to access Gmail.
    5) Upon review from Adelphia they suggested that I make sure that there no static entries had been placed in the DHCP field. I checked the field using the Airport software and cleared the field (I am not sure if this was static entry or had been placed there by Adelphia).
    6) I hooked the computers and Airport up as in 2). Now the Gmail could be accessed from Safari. HOWEVER, now I could not access Adelphia's mail from Safari. Also I found that I could not access some the the web pages that came up as a result of Google searchs. This has never occurred before.
    7) Additionally, I found now when directly connected the G5 to the Adelphia cable I could still get Gmail, but I no longer could access .Mac from Safari.
    Note: I have gone through the same steps above using Foxfire and get similar results
    BASIC SUMMARY: 1) When Airport is in the connections cannot get access .Mac from Safari (but can access Gmail and Adelphia). 2) When the Airport is connected I cannot access Adelphia from Safari (but can access Gmail and .Mac).
    WHAT SHOULD I DO NEXT???: 1) Should I reset the Airport to its original factory settings and reinstall?. 2) Should I clear out the cookies?. 3) Since these are all related to various mail accounts (Gmail, .Mac, and Adelphia) is there something that could be done with the Apple Mail client???
    Need your advice!
    Mac G5   Mac OS X (10.3.9)  

    PLB11,
    pretty complex indeed.
    I would start by running Network Diagnostics with your standard configuration (i.e. the one with the Airport).
    In the Apple menu, select System Preferences, Network, then click on the "Assist me..." button on the bottom. That should give you two options: "Diagnostics" and "Assistant".
    Try Diagnostics first. If that doesn't solve your problem, run it again without the Airport. If the problem persists, run Assistant and set up a new configuration from scratch, using the original layout with the Airport.
    Please post back the results. Good luck!

  • Need a advice...

    Guys I need some advice regarding Rooting of the device....My phone is just 1 month old right now, thats y I am not sure whether I shud root it or not...
    nd What are the risk associated with rooting
    Plz advice....

    why do you want to root your phone? is there an specific app that you want to root? which Android version and build number do you have?
    check this thread
    http://talk.sonymobile.com/thread/38251
    Don't forget to mark the Correct Answers & Helpful Answers
    "I'd rather be hated for who I am, than loved for who I am not." Kurt Cobain (1967-1994)

  • Having some serious issues with my iPhone and need some advice

    I'm going to these two issues which have been occuring with me for the past weeks-
    1.) I am facing a problem with my iPhone 5's lightning port or the cable. This started happening all of a sudden; one second my phone is charging, and the other it is not. Even if it is slightly moved from its position, it would stop charging, and further shaking starts it again, so on and so forth. At first I thought the issue might be with my cable, so I asked my friend to bring his lightning cable to my house so we could test that. It happened again- one shake the phone will charge, another shake stops it. (Note that any kind of movement does this, not only shaking) I'm a bit skeptical about his (my friend's) cable too, though- it shows NOT CHARGING on his iPad while it is in fact actually charging. His cable is only 3-4 weeks old though, so this confuses me even more. I think the issue might be with my port, but as of now I cannot draw a valid conclusion to my problem.
    2.) The second problem is that I've noticed my battery drains a **** lot faster now- ever since the first issue started. I manage to get my phone charging by placing it very carefully on the table and it charges overnight. However, when I pick it up in the morning, and read some news, it drains from 100% to 99% in ~60 seconds. This never happened before. Before this, it used to be at 100% for at least 10-15 minutes (might be even more). If I reboot my phone, it shows 100% again, but it still drains a lot faster now. I know because I've been using this phone for the past 4 months now, and I know when it drains and when it does nots
    Please, help! I need some advice as to how I should approach this problem. My phone is in the warranty period, however, I would like to have an expert's opinion first.

    Hello,
    First: I've experienced the same problem with my iPhone 5. I've bought a new charger and it still did the same thing. I went to the Apple Store to get my iPhone checked out and they said that the pins inside my iPhone we're damaged, and I had to get a replacement.
    ~ Josh

  • Help!!! in need of advice power supply is dead

    Hey everyone i need some advice, i live in the uk and i have a 2 year old mac book pro and the power supply cable has heated so much that it has melted and stop working, what should i do?? should i just buy a new one or complain to apple and try to and get a replacement ??

    This has happened to me before.
    Just take the power supply and your laptop to your apple store (make an appointment at the genius bar) and they'll swap it out free of charge as long as ur still under warranty (or apple care)

Maybe you are looking for

  • 10g report form Forms and 11gDB

    I am using 10g Forms and 11g DB. I am not able to run report from Forms. The browser hangs. Report server is working. I can see the status in report server againtst the Job ID Status: "Opening the report". I enabled the trace log. 2009/12/9 6:5:41:98

  • New iPad wont open a PDF attachment.

    Hi, I recently bought a new iPad 64GB. It has worked perfectly until yesterday when I tried to open a PDF email attachment. The attachment sort of twitches and then does nothing. This happens everytime I try to open it. I have tried: restart, hard re

  • Ipod Not getting recognized by itunes

    My itunes is not letting my ipod show up. It says "Please reinstall itunes to install ipod software." It says my software is not installed correctly. And I've installed ITunes and my IPod Update SO many times..it's really annoying!!!! Can i fix it? O

  • Using Photoshop files with layers in iDVD

    I prefer using my old DVD Studio Pro to iDVD, but since newer versions of Quicktime can't export to mpeg2 I'm forced to either use iDVD or buy a new version of DVDSP. Given that iDVD is already on my computer and DVDSP requires the purchase of the Fi

  • ConnectionServer is not getting started

    Hello, I've some problems with the ConnectionServer, I can't start it. If I try to start the connection server it creates a lot of core-files and in the logfiles I can find the following entry: connectionserver_bobSIAN.ConnectionServer_ncs.trc: trc f