What's a good fit for me?

I want to know which SAP module is the best fit for me. I have a masters in IT and an MBA in finance. I am currently working in BI (for a while now) and I like it. But I want to better utilize my MBA and stay in SAP. Finance interests me a lot. However I did not find the FICO module interesting, it seemed more Accounting. Any other modules that are a good fit for finanace graduates? Thanks.

figured it myself.

Similar Messages

  • Advice needed: is BDB a good fit for what I aim at?

    Hello everyone,
    I'm not a BDB user (yet), but I really think that this the BDB library
    IS the perfect fit for my needs.
    I'm designing an application with a "tricky" part, that requires a very fast
    data storage/retrieval solution, mainly for writes (but for reads too).
    Here's a quick summary of this tricky part, that should at least use
    2 databases:
    - the first db will hold references to contents, with a few writes per hour
    (the references being "pushed" to it from a separate admin back end), but
    expected high numbers of reads
    - the second db will log requests and other events on the references
    contained in the first db: it is planned that, on average, one read from DB1
    will produce five times as much writes into DB2.
    To illustrate:
    DB1 => ~25 writes / ~100 000 reads per hour
    DB2 => ~500 000 writes / *(60?) reads per hour
    (*will explain about reads on DB2 later in this post)
    Reads and writes on both DBs are not linear, say that for 500 000 writes
    per hour, you could have the first 250 000 being done within 20 minutes,
    for instance. There will be picks of activity, and low activity phases
    as well.
    That being said, do the BDB experts here think that BDB is a good fit for
    such a need? If so or if not, could you please let me know what makes you
    think what you think? Many thanks in advance.
    Now, about the "*(60?) reads per hour" for BD2: actually, data from DB2
    should be accessed in real time for reporting. As of now, here is what
    I thing I should do to insure and preserve a high rate throughput not to
    miss any write in DB2 => once per minute another "DB2" is created that will
    now record new events. The "previous" DB2 is now dumped/exported into another
    database which will then be queried for real-time (not exactly real-time,
    but up to five minutes is an acceptable delay) reporting.
    So, in my first approach, DB2 is "stopped" then dumped each minute, to another
    DB (not necessarily BDB, by the way - data could probably re-structured another
    way into another kind of NoSQL storage to facilite queriing and retrieval
    from the admin back end), which would make 60 reads per hour (but "entire"
    reads, full db)
    The questions are:
    - do you think that renewing DB2 as often would improve or strain performances?
    - is BDB good and fast at doing massive dumps/exports? (OK: 500 000 entries per
    hour would make ~8300 entries per minute on average, so let's say that a dump's
    max size is 24 000 rows of data)
    - would it or not be better to read directly into the current DB2 as it is
    storing (intensively) new rows, which would then avoid the need to dump each
    minute and then provide more real-time features? (then would just need a daily
    dump, to archive the "old" data)
    Anyone who has had to face such questions already is welcome, as well as
    any BDB user who think they can help on this topic!
    Many thanks in advance for you advice and knowledge.
    Cheers,
    Jimshell

    Hi Ashok
    Many thanks for your fast reply again :)
    Ashok_Ora wrote:
    Great -- thanks for the clarification.Thank YOU, my first post was indeed a bit confusing, at least about the reads on DB2.
    Ashok_Ora wrote:
    Based on this information, it appears that you're generating about 12 GB/day into DB2, which is about a terabyte of data every 3 months. Here are some things to consider for ad-hoc querying of about 1 TB of data (which is not a small amount of data).That's right, this is quite a huge lot of data, and will keep growing, and growing... Although the main goal of the app is to be able to achieve (almost) real time reporting, it will also need to be able (potentially) to compute data over different time ranges, including yearly ranges for instance - but in this case, the real time capabilities wouldn't be relevant, I guess: if you look at some data on a year span, you probably don't need it to be accurate on a dayly interval, for instance (well, I guess), so this part of the app would probably only use the "very old" data (not the current day data), whatever it is stored in...
    Ashok_Ora wrote:
    Query performance is dramatically improved by using indexes. On the other hand, indexing data during the insert operation is going to add some overhead to the insert - this will vary depending on how many fields you want to index (how many secondary indices you want to create). BDB automatically indexes the primary key. Generally, any approach that you consider for satisfying the reporting requirement will benefit from indexing the data.> Thanks for pointing that out! I did envisage using indexes, but my concern was (and you guessed it) the expectable overhead that it brings. At this stage (but I may be wrong, this is just a study in progress, that will also need proper tests and benchmarking), I plan to favour write speed over anything else, to insure that all the incoming data is indeed stored, even if it is quite tough to handle in the primary stored form.
    I prefer to envisage (but again, it's not said that it is the right way of doing it) very fast inserts, then possibly re-process (sort of) the data later, and (maybe? certainly?) elsewhere, in order to have it more "query friendly" and efficient for moderately complex queries for legible reports/charts.
    Ashok_Ora wrote:
    Here are some alternatives to consider, for the reporting application:
    - Move the data to another system like MongoDB or CouchDB as you suggest and run the queries there. The obvious cost is the movement of data and maintaining two different repositories. You can implement the data movement in the way I suggested earlier (close "old" and open "new" periodically).This is pretty much "in line" with what I had in mind when posting my question here :).
    I found out in several benchmarks (there are not a lot, but I did find some ^^) that BDB amongst others is optimized for bunch queries, say that retrieving a whole lot of data is faster that, for instance, retrieving n times the same row. Is that right? Now, I guess that this is tightly related to the configuration and the server's performances...
    The process would then feed data into a new "DB2" instance every 60 seconds, and "dumping"/merging the previous one into another DB (BDB or else), which would grow until some defined limit.
    Would the "old DB2" > "main, current archive" be a heavy/tricky process, according to you? Especially as the "archive" DB is growing and growing - what would be a decent "limit" to take into account? I guess that 1TB for 3 months of data would be a bit big, wouldn't it?
    Ashok_Ora wrote:
    - Use BDB's SQL API to insert and read data in DB1 and DB2. You should be able to run ad-hoc queries using SQL. After doing some experiments, you might decide to add a few indices to the system. This approach eliminates the need to move the data and maintaining separate repositories. It's simpler.I read a bit about it, and this is indeed very interesting capabilities - especially as I know how to write decent SQL statements.
    That would mean that DB2 could grow more than just within a 60 seconds time span - but would this growing alter the write troughput? I guess so... This will require proper tests, definitely.
    Now, I plan the "real" data (the "meaningfull part of the data"), except timestamps, to be stored in quite a "NoSQL" way (this term is "à la mode"...), say as JSON objects (or something close to it).
    This is why I envisaged MongoDB for instance as the DB layer for the reporting part, as it is able to query directly into JSON, with a specific way to handle "indexes" too. But I'm no MongoDB expert in any way, so I'm not sure at all, again, that it is a good fit (just as much as I'm not sure right know what the proper, most efficient approach is, at this stage).
    Ashok_Ora wrote:
    - Use the Oracle external table mechanism (Overview and how-to - http://docs.oracle.com/cd/B28359_01/server.111/b28319/et_concepts.htm) to query the data from Oracle database. Again, you don't need to move the data. You won't be able to create indices on the external tables. If you do want to move data from the BDB repository into Oracle DB, you can run a "insert into <oracle_table> select * from <external_table_in_DB2>;". As you know, Oracle database is excellent database for all sorts of applications, including complex reporting applications.
    This is VERY interesting. VERY.
    And Oracle DB is, you're, a very powerful and flexible database for every kind of processes.
    I'll look into the docs carefully, many thanks for pointing that out (again!) :)
    I have not yet decided if the final application would be free nor open source, but this will eventually be a real question. Right now, I don't want to think of it, and just find the best technical solution(s) to achieve the best possible results.
    And BDB and Oracle DB are very serious competitors, definitely ;)
    Ashok_Ora wrote:
    Hope this was helpful. Let me know your thoughts.It definitely is so much useful! Makes things clearer and allow me to get more into BDB (and Oracle as well with your latest reply), and that's much appreciated. :)
    As I said, my primary goal is to insure the highest write throughput - I cannot miss any incoming data as there is no (easy/efficient) way to re-ask for what would be lost and get it again being sure that it hadn't changed (the simple act of re-asking would induce data flaws, actually).
    So, everything else (including reporting, stats, etc.) IS secondary, as long as what comes in is always stored for sure (almost) as soon as it comes in.
    This is why, in this context, "real" real-time is not really crucial, an can be "1 minute delayed" real time (could even be "5 minute delayed", actually, but let's be a bit demanding ^^).
    Ashok_Ora wrote:
    Just out of curiousity, can you tell us some additional details about your application?Of course, I owe you a bit more details as you help me a lot in my research/study :)
    The application is sort of a tracking service. It is primarily thought to serve the very specific needs of a client of mine: they have several applications that all use the same "contents". Those contents can be anything, text, HTML, images, whatever, and they need to know almost in real time what application (used by which external client/device) is requesting ressources, which ones, from where, in which locale/area and language, etc.
    Really a kind of "Google Analytics" stuff (which I pointed out at the very beginning, but they need something more specific, and, above all, they need to keep all the data with them, so GA is not a solution here).
    So, as you can guess, this is pretty much... big. On the paper, at least. Not sure if this will ever be implemented one day, to be honest with you, but I really want to do the technical study seriously and bring the best options so that they know where they plan to go.
    As of me, I would definitely love it if this could become reality, this is very interesting and exciting stuff. Especially as it requires to see things as they are and not to fall into the "NoSQL fashion" for the sake of being "cool". I don't want a cool application, I want an efficient one, that fits the needs ;) What is very interesting here is that BDB is not new at all, though it's one of the most serious identified players so far!
    Ashok_Ora wrote:
    Thanks and warm regards.
    ashokMany thanks again, Ashok!
    I'll leave this question opened, in order to keep on posting as I'm progressing (and to be able to get your thoughts and rewarding comments and advice above all :) )
    Cheers,
    Jimshell

  • What's a good book for getting started?

    I've been doing web design in HTML and ColdFusion for almost 3 years. It's clear that ColdFusion is on it's way out and I need to learn J2EE/Java/JSP etc. I have a few questions:
    Java is a term I've heard associated with C++ and other types of programming as well as Web design. Are the Java/C++ Java and the Web Java basically the same type of language? Is the Web Java and JavaScript the same thing? I'm very confused!
    What is a good book for getting these types of questions answered and getting started in J2EE/Java/JSP? There are quite a few variations of script languages out there and I want to make sure I learn the right stuff, ie the stuff that employers are going to be needing.
    Thanks!

    Here is a free online version of a good book:
    http://pdf.coreservlets.com/Core-Servlets-and-JSP.pdf
    Print it off or read from the screen. Otherwise, there are several good Java books out there. What I would do is go to the bookstore and thumb through a few books. Depending on what type of book you want (example based or theory) find the books that you think would satisfy your learning style. Write down the names and authors, go home and buy them used online at Amazon for tremendous discounts. This way you can buy several versus just one.

  • What is a good strategy for keeping the OEM GRID up and running?

    Hi,
    What is a good strategy for keeping OEM GRID up and running? Currently, we have grid installed on one linux64bit box with 4 cpus and 8 gigs of RAM, oms 10204, repdb 10204, agent 10204. In addition to using this oem grid for notifications and performance monitring, we are also using this oem grid for scheduling over 700 jobs running over 30 targets.
    What is a good strategy to have to backup the grid so that when this box goes down, we can restore and then recover the grid? Please lead to white papers or documentations. Thank you.

    Take a look at Oracle Maximum Availability Architecture, a set of architectural recommendation on setting Oracle software up for high availability.
    The information is available on this page:
    http://www.oracle.com/technology/deploy/availability/htdocs/maa.htm
    Look under HA Best Practices for Grid Control.
    Chung Wu
    [Application Management Blog|http://www.appmanagementblog.com/]

  • What is a good replacement for the Adobe Flash Player for my iPad?

    What is a good substitute for Adobe Flash Player for my iPad? I would like to download a flash player for games but not sure what to get. Any suggestions, please?

    <http://store.apple.com/us/product/MC742ZM/A/ati-radeon-hd-5770-graphics-upgrade- kit-for-mac-pro-(mid-2010)>

  • Analog to Digital Converter-- What's A Good Product For My System?

    What would be a good analog to digital converter for Final Cut Express HD 3.5 on a Mac OSX 10.4 system? I've used a Canopus on a MacPro with Final Cut Pro before and liked it, but wasn't sure what would be a good product for my macbook. I've looked at the Canopus advc-110 and 55 but am not clear on the difference and if it would work with what I have.

    The ADVC-55 is capture only. It includes composite & s-video inputs and stereo audio inputs. Firewire output.
    The ADVC-110 is bidirectional (meaning you can both capture and output through it - this is a very good way to monitor your video during production as you can see the actual quality on a monitor/TV rather than just your computer screen, which has limited capability to show you the actual video quality.) It includes composite & s-video inputs and outputs; stereo audio inputs & outputs; Firewire input & output.
    The ADVC-300 is also bidirectional and includes composite, s-video and component video i/o (D1 connector) inputs & outputs; stereo audio inputs & outputs; Firewire input & output; and software that enables you to tweak its video settings. Helpful in cleaning up particularly bad analog videos.
    I've used these things for years and they all work great. I do not believe there is any difference in the internal conversion hardware ... The primary differences are support for one-way vs. bidirectional conversion; input/output connectors; and the software that comes with the ADVC-300.
    If you have basically clean analog video, any of these units will be fine. You can use any analog source (VHS deck, camcorder, DVD player, etc.) and would typically use iMovie or Final Cut Express to capture your video on a Mac.

  • What is a good extenstion for pop up menus?

    I recently created a site in Fireworks that used pop up menus
    but then found out later that they don't work on Internet Explorer
    (you can view the site at www.caspre.com it is the very last menu
    item at the end called "about cascade"). What I need to know is if
    there is a good extension for dreamweaver (or fireworks) that won't
    cause problems in ie. It should be noted that the pop up menu works
    great in Firefox.

    "Paevo Kelley" <[email protected]> wrote in
    message
    news:fl1dh0$ck5$[email protected]..
    > Or Plugin Lab (much better in my opinion)...
    Mind to qualify your opinion in terms of code quality,
    accessibility, and
    support? I'm sure that would be quite helpful information for
    lots of folks.
    Al Sparber - PVII
    http://www.projectseven.com
    Extending Dreamweaver - Nav Systems | Galleries | Widgets
    Authors: "42nd Street: Mastering the Art of CSS Design"

  • What is a good design for remote Views?

    Hi All,
    I am thinking how would I design my process for performance consideration in retrieving dynamic values of table/view data.
    The requirement is like this:
    1. We have 50 databases residing on each own server counterpart (50 servers).
    2. Each database has table Patch_LeveL (apps_name, patch_level), which contains  just one row only to reflect the latest patch level applied for the apps on this database. Note that are we constantly on applying service packs for this apps.
    3. On our central monitoring server (db). I create 50 database LINKS for each of the 50 databases.
    4. I created 50 views over these links to make  it centralized to represent  the 50 Patch_Level tables. As   patch_level_view1, 2, 3.....patch_level_view50.
    5. I then create a central view as .... as  union of the 50 individual views Actually I am just planning to do the above activity.
    My question is....is this a good design for performance? Can you share be a better approach?
    Is there a limitation of joining "union" of 50 views?
    Thanks a lot,

    Is there a limitation of joining "union" of 50 views?What can happen is if the connection to one of these servers is interrupted, the big "union" view will not work. As said by above poster MV, with lets say an hourly refresh, helps with this situation as you have the data that was gathered last time (and most likely it is still valid).

  • Looking for clip art pictures for birthday invitation. What is a good spot for that?

    Looking for clip art pictures for Birthday invitations. What is a good spot to find these or how do I acess this on my mac.  New to mac.
    Thanks

    Do a search for clip art using your favorite search engine - Google or Bing are good places to start. 

  • What are some good cases for the ipad 2?

    what are good cases for the ipad 2?

    I bought an Adesso case/keyboard model WKB-2000CD http://www.adesso.com/en/component/content/article/49-coming-soon/455-wkb-2000cd .html Works great & looks good. Do a Google search using the model number to get the best price.
     Cheers, Tom

  • What's a good codec for working with Sony HDCAM 24P  How much storage space

    cutting a short film shot with Sony HDCAM 24P Is there a sequence setting foe 24P and should I keep it 24P? What's the storage requirements for this or where can I look it up? Thanks!

    dvcProHD is also a great offline low demand codec and you can maintain 23.98 frame rate

  • What's a good solution for cataloging DNG raw photo files for creative teams?

    Does anyone know of a good solution for cataloging DNG raw photo files for creative teams? I'm looking for something that will extract previews as well as be searchable by category and keywords?

    Does anyone know of a good solution for cataloging DNG raw photo files for creative teams? I'm looking for something that will extract previews as well as be searchable by category and keywords?

  • What are some good apps for changing the pitch of my music? I currently use djay. Is there anything better?

    I like shifting the pitch of songs, it makes it sound new to me. what are some good apps that can do this? right now I use djay

    I like shifting the pitch of songs, it makes it sound new to me. what are some good apps that can do this? right now I use djay

  • What are some good resources for title backgrounds and graphics to support titles?

    Like you know when a video plays and a person name appears as they are speaking. Sometimes there is a graphic like bar behind the name. Just to give it some life. I know I can easily make a simple bar but is there a place I can find graphics for video like this?
    Maybe with some animations?
    Or in general some good tools for video editors.
    Thanks!

    Hi Kg_himself,
    You may want to learn how to do such things in After Effects. There are lots of tutorials around the internet on how to do that. Specifically, check out the "Fractal Noise" effect. You can make a wide variety of background very quickly with that effect.
    Thanks,
    Kevin

  • What's a good deal for renewing my Broadband?

    My phone and broadband contract is up for renewal soon.
    Last time I  renewed my BB contact for 12 months, and the deal was as follows.
    "Talk & Surf Plus" Package on option 1 at a cost of £14.99 per month, plus a one-off discount of £24.
    The package includes unlimited anytime call plan, and also a new hub [which I did not ask for, and do not really need]
     I do not do much heavy downloading of video or music and am not really interested in taking on BT Vision.
    Can anyone offer advice as to what a good deal would be from BT for a further 12-18 month contract?

    Sorry to bump this.
    Anyone got a good case and can tell me who made it?
    Cheers

Maybe you are looking for

  • Show another page in the same page

    Hello I have the following case : Trinidad Page it includes A trinidad table of urls and in the same page i have an iframe .when the user select a row from the table : - the screen is submitted and display the selected URL in the iframe. What is the

  • Pages won't print Word documents

    All of a sudden I can't seem to get Pages to print Word documents. Pages documents print fine, but if I send a Word document to the printer, the printer seems to start, but then never prints. I have an Epson Stylus C86. This problem only happens in P

  • Hi, when I open firefox, there's a box in the middle the screen that says:"Thanks for choosing Firefox! To get the most out....".

    Is there any way to remove that annoying box ? thanks Sonny

  • Strange behavior with axis2

    Hi, few days ago I stated to code a new web service based on Java / axis2. To test and debug the service I have a main(String[] args) method in my class, publish on the webserver. In my mail retriever class I set session.setDebug(true); If I run my c

  • About exporting query result to excel

    Hi all, I take the report result to an excel file and at this point I am being asked for my user name and password of BW login, repeatedly for many times, based on the amount of data it contains. Its quite irritating, as i need to fill that each time