Which are the most popular reports in SAP BI for Purchasing and Sales

Hi Experts,
I'm looking to work on one completed BI content flow.
I wanted to work on 1 report from each module to activate the relevant objects.
Can anyone please let me know which reports in Purchasing and Sales are frequently used in SAP BI.
Thanks

Hi,
Please check table - RSRREPDIR       
Report names which are related to purchasing  - 0PUR_C0N_Q00Y, N and Y indicates number.
same for sales report names - 0SD_C0N_Q00Y .
Query tech names - 0PUR_C01_Q0021
Thanks

Similar Messages

  • I am a SAP Netweaver Consultant , want to know from all the SAP Experts out here that according to you which are the highest paying modules in SAP ? rank them.

    I am a SAP Netweaver Consultant , want to know from all the SAP Experts out here that according to you which are the highest paying modules in SAP ? rank them.

    Hi S. Vishwam.
    Many peoples says that BI , APO , BW and HANA are the highest paying modules.
    But with the passage of time the value of the professional decreases because many people go work with this modules then ...supply and demand = decreases.
    Only the people that really knows continue making lots of moneyand the characteristic of these people are the same:
    They always read the SDN community of his modules.
    They really study the sap help.
    They do not want to make lots of money early on.
    Hope helped you.

  • HT1657 What are the steps in watching a rental that was purchased and downloaded to your iphone 4?

    What are the steps in watching a rental that was purchased and downloaded to your iphone 4? or to watch on a home laptop?

    In order to watch it, just start playing it - if you've downloaded or synced it to your iPhone then it should be in the Videos app, or if it's on your computer's iTunes then it should be in the Movies section of your library. You have 30 days to start watching it from when you rent it, and once you start watching it you then have 48 hours (24 hours in the US) to finish watching it. As long as the film has been fully downloaded downloaded then you should be able to watch it without being online.
    There is a FAQ page about rentals here : http://support.apple.com/kb/HT1657

  • I would like to combine multiple profiles into a new computer. Which are the most important folder or files to migrate?

    The user profile in my old computer somehow became corrupted and I can no longer access it to log on. Unfortunately I was not aware of the Firefox sync feature at the time. I used a new profile and had to start from scratch to save new bookmarks and extensions/plugins. I did set up Firefox sync for this new profile. Now I have a brand new computer and desire to migrate the bookmarks to this new computer, including the original bookmarks in the old computer, as well as the bookmarks in the second profile. While I have located the profiles folder for each profile in my old computer (as well as extensions and plugin folders), the content of this folder is daunting. I would like to know which are the minimal folders I should select to migrate and would it be safe to simply copy and paste over the entire folder? Please note that I have also added new bookmarks into my new computer which I would not like erased. I hope these details are not convoluted.

    Firefox has two methods of bringing in bookmarks from another Firefox profile:
    * Restore a backup (JSON files in the bookmarkbackups folder): this completely replaces what you have, so is not the first step
    * Import from an HTML file: this is additive and will create an Imported Bookmarks folder or add them under Unsorted Bookmarks
    Restore is best if you tag your bookmarks because the JSON format preserves tags. If tags are not important, then it's easier.
    What I suggest is:
    (1) Export your current bookmarks to the HTML format; you can reimport these later. See: [[Export Firefox bookmarks to an HTML file to back up or transfer bookmarks]]. Open the file in Firefox (it's a web page) to make sure it looks complete before proceed.
    Next, get the bookmarkbackups folders from each of your old profiles that you want to restore, and look for the most-complete-looking JSON files (they will have the most recent dates and largest number of bookmarks indicated in the file name). Proceed from the smallest set to the largest, or oldest to newest; basically, restore the most important one last.
    (2) Restore a backup, then export to HTML. This article has the steps for a restore: [[Restore bookmarks from backup or move them to another computer]]. Then export to HTML and check for completeness.
    (3) Repeat #2 until you get to the last/most important restore. You don't need to export that one.
    (4) Import the HTML files you've made throughout the process.
    (5) In the Library dialog, reorganize. Firefox doesn't have a deduplicator, but you might find one or more extensions to do the job on the Add-ons site if you find a lot of overlap.
    Make sense?

  • Column report for purchase and sales

    Dear Experts
    I would like to create column report like Doc No, Item Description, vat 4%, VAT 12.5%, CST 2%, BED, CESS, HRCESS.
    The above mentioned report has to made tax wise purchase and sales.
    What is the table i have to take please help me.

    Hi Asupathy Raja,
    Check the thread
    Report -list of all the purchases - TAX Catg.wise/ Item Group wise
    *Close the thread if issue solved.
    Regards
    Jambulingam.p

  • Why are the creative cloud mobile apps only available for iphone and ipad? I need Android based apps

    Where are the android based mobile apps? Why do you people assume everyone uses a ipad or iphone
    I want android mobile apps!

    this didn't actually answer my question. The feature request link you sent me to didn't have the mobile apps for creative cloud listed Adobe Idea, Adobe Sketch and Ink and Slide they aren't available for android tablets and Android Phones. These aren't even available for Windows tablets. But they aren't available in the feature request section either.

  • Why are the most popular online games still written in Flash?

    Hi all,
    I am not a Java expert, but I notice that at http://www.miniclip.com and similar sites, most of the popular games are written in Flash. Why is this? Is it because of Flash's IDE? Or is there some other reason?
    If it is an IDE issue: Is there any Java IDE that makes basic Java game development as easy as basic Flash game development (drag-and-drop simple)?
    Regards,
    Jason

    popular doesnt mean quality. flash games generally suck IMO
    not to mention flash is easy as hell. any 14 year old with Limewire can manage to make half-decent flash movies with very basic ActionScript.
    even a few pro-made Flash games suck.. you can only do so much with vector-based graphics >_> (and let's not forget how SLOOOW the Flash interpreter is..)
    java requires actual programming knowledge - far beyond ActionScript's syntax. thus there are less people willing to put forth the effort really.

  • What are the most common designpaterns?

    Hello!
    I have been working with a designpatern before. But i have only used one of them.
    I have heard that there are many diffrent kind of paterns.
    Which are the most common? Is EJB a kind of designpatern?
    And does anybody know any good internetpage about designpaterns?
    Thank you.

    Hello!
    I have been working with a designpatern before. But i have only used one of them.If you've written Java, you've used a lot of patterns without knowing it. They're built into the language.
    I have heard that there are many diffrent kind of paterns.The first "design patterns" book, and arguably the best, is "Design Patterns" by Gamma, Johnson, Helm, and Vlissides. I'd read that if you haven't.
    Which are the most common? Is EJB a kind of designpatern?EJB itself isn't a "pattern", but it uses them. Since EJBs are based on RMI, it's using Proxy every time you call an EJB. The stub is a proxy for the remote object that lets your client speak to it as if it was in the same address space.
    And does anybody know any good internetpage about designpaterns?Core J2EE Patterns IS excellent. Doug Schmidt has done a lot of patterns work, too.

  • Which are the highly recommended JMS brokers for live deployment?

    Which are most widely deployed JMS messaging servers (brokers) in live applications?
    Which are the most recommended JMS servers for a new deployment?
    Any tips on these will be very helpful.

    function(){return A.apply(null,[this].concat($A(arguments)))}
    I have my dev server - I leave this on 512MB and that's fine for
    most of the stuff I do. We generally up this to a gig on our live
    servers (which only run 3-4 small sites), and historically we've not
    gone above this on our Shared servers (which host anywhere up to 400
    sites) because of the 32-bit limit.
    However, now we're running CF9 on 64-bit Server 2008, we've obviously got a lot more RAM available. The obvious choice is to ramp it up high, but I've also been heard that causes issues of its own - the Java GC then has far more work to do when it's called and as the memory fills it's harder to get a contiguous block of RAM, so performance can suffer.
    Leave the memory setting at the default value, until testing requires you to do otherwise, or your sites unravel some unforeseen memory demand. It's a risk our SysAdmin colleagues are prepared to take. With the coming of 64-bit, they've been on the alert, and have always cattle-prodded us whenever we've been tempted to push the button to go higher.
    Our defaults almost coincide with yours: 512 MB for 32-bit and just over 1GB for 64-bit. So what you yourself have just said is my own basic wisdom on the subject, too: if it aint broke, don't try to fix it.
    [postscript: I work full-time at one company, part-time at another. By pure coincidence, both use the same JVM memory settings.]

  • How to garantee IDOC types are the same on two communicating sap systems.

    Hi all:
        how to garantee IDOC types are the same on two communicating sap systems,  including segments and versions, using bd64?
        what's more, what bd64 using for besides generating parter profiles,  must we use bd64 for outbound idocs?
        Thank you very much
    best regards ?

    Hi jingying Sony 
    You can compare the Idoc type and Version between Sender System and Reciver System.
    Use TCode SCMP and Compare the Table EDIMSG in Both System.
    This will solve your issue.
    Thanks
    Ramesh

  • Which are the standard assignment blocks that should appear in SAP Product?

    Hello Guru's
    Currently I am creating some new products to check the fields available in every assingment block within the product, when I create my new transaction and add a new position (product) I went in the link to see the product information which are the following 4 standard assignment:
    - AB Product Details
    - AB Categories
    - AB Notes
    - AB Attachments
    I unmarked the pricing on the item category, because this is only a test and we don't have any pricing definition yet. So I was wondering if this is all the assignment blocks that I should be expecting inside the position or if I'm missing any step on the road.
    Also we just use the standard SET TYPES for the base hierarchy so I thougt that maybe all the assignment blocks that I shoud create them through COMM_ATTRSET route.
    Can anyone help me out confirming me if these are the only assignment blocks that SAP CRM Products contain or which else I should be expecting?
    Thanks in advance
    Sue M

    Hello Sue,
    First you should know which are the settypes and Reltypes that you want to add to your product category.
    Example for settypes would be COMM_PR_UNIT and COMM_PR_MAT in order to get Unit Of Measure related fields in UI.
    CRMM_PR_TAX for maintaining to product tax details.
    You can refer table COMC_SETTYPE to get a list of all available settypes.
    Example for Reltype is PRDBP, if you want to maintain BPs associated with products or ACCESS if you want to maintain
    accessories for product etc.
    You can maintain the settypes and Reltypes to product cateogry using txn:COMM_HIERARCHY under the tab
    'Set Types' and 'RelnTypes'.
    Once you maintain this, corresponding views you need to be added to product/service OVP like PRD01OV,PRD02OV etc.
    (PRD01OV/MaterialOV) in the configuation. If you open the configuration for view PRD01OV/MaterialOV,
    you can see the corresponding view in 'Available AB'. This you need to move it to ' Displayed AB', in order for this to available in
    CRM UI. (Eg: PRDIL/Accessories)
    Hope this helps!
    Best Regards,
    Shanthala Kudva.

  • Which are the steps to activate SAP WM

    Hi Experts,
    I'm MM consultant I'm looking for best form to active SAP WM in the system,  I mean, which are the step I suppose to do to active WM, I've got a document with WM customizing but I don't know what change in MM.
    Thanks.
    Paulo Afonso Cordeiro

    Please view the following links.
    Re: Plant as Full Warehouse
    http://help.sap.com/printdocu/core/print46c/en/data/pdf/LEWM/MMWM.pdf
    http://help.sap.com/bp_chem603/BBLibrary/Documentation/805_BB_ConfigGuide_EN_DE.doc
    You could find more links if you google them.
    Hope this is helpful.

  • Which macs are the most powerful versions that can still run 10.6.8 snow leopard?

    which macs are the most powerful versions that can still run 10.6.8 snow leopard?

    See this previous discussion:
    https://discussions.apple.com/thread/5050319?tstart=0

  • Which views are the most important for a dba admin?

    Hi I am new to oracle, and I am wondering which views are the most important to monitore.
    Can someone give me a usefull link?
    I know the views depend of wich kind of information you wanna retrieve.
    But I think about space left on tablespaces, segment information, backup information, status of the database.....
    So any help would be appreciated.For example I am wonering which views would an admin taking a new job and database would look?

    I would recommend you (if not already done):
    - first read the Concepts manual:
    http://download-uk.oracle.com/docs/cd/B19306_01/server.102/b14220/toc.htm
    - then the Administration Guide:
    http://download-uk.oracle.com/docs/cd/B19306_01/server.102/b14231/toc.htm
    At the end of each chapter of this document, there is a section named "Viewing Information About ..." such as http://download-uk.oracle.com/docs/cd/B19306_01/server.102/b14231/create.htm#sthref482
    that contains the related views.

  • Which are the standard classes for events in ALV and explain each class pls

    which are the standard classes for events in ALV and explain each class pls
    POINTS WILL BE AWARDED,
    REGARDS,
    jagrut bharatkumar Shukla

    hi,
    some links.
    www.sapgenie.com
    www.abap4u.com
    http://help.sap.com/saphelp_nw2004s/helpdata/en/5e/88d440e14f8431e10000000a1550b0/frameset.htm
    download the PDF from following link.
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCSRVALV/BCSRVALV.pdf
    The ALV object Grid methods allow the same functionality as ALV grid report function modules but are displayed within
    a screen (dialog program). SAP has provided a suit of programs which demonstrate how to For examples see standard SAP
    programs as detailed below:
    BCALV_EDIT_01 This report illustrates the simplest case of using an editable/noneditable ALV Grid Control.
    BCALV_EDIT_02 This report illustrates how to set chosen cells of an ALV Grid Control editable.
    BCALV_EDIT_03 In this example the user may change values of fields SEATSOCC (occupied seats) and/or PLANETYPE.
    The report checks the input value(s) semantically and provides protocol messages in case of error
    BCALV_EDIT_04 This report illustrates how to add and remove lines to a table using the ALV Grid Control and how to
    implement the saving of the new data.
    BCALV_EDIT_05 This example shows how to use checkboxes within an ALV Grid Control. You learn:
         (1) how to define a column for editable checkboxes for an attribute of your list
         (2) how to evaluate the checked checkboxes
         (3) how to switch between editable and non-editable checkboxes
    BCALV_EDIT_06 This example shows how to define a dropdown listbox for all cells of one column in an editable ALV
    Grid Control.
    BCALV_EDIT_07 This example shows how to define dropdown listboxes for particular cells of your output table.
    BCALV_EDIT_08 This report implements an ALV Grid Control with an application specific F4 help. The following aspects
    are dealt with:
         (1) how to replace the standard f4 help
         (2) how to pass the selected value to the ALV Grid Control
         (3) how to build an f4 help, whose value range depend on a value of another cell.
    Rgds
    Anversha

Maybe you are looking for

  • Can't Get Local NBC Affiliate w/Miglia HD TVMini on Macbook

    Anyone have any ideas why I can't access the local (Seattle, WA) NBC station (KING 5) with my Miglia HD TVMini on my Macbook? Otherwise, it works very well. What stumps me is that the other stations I do get broadcast from about the same distance and

  • Imported VOB clip only plays 8 secs on Timeline (should be much more) PrePro CS5

    I'm new to DVD files so please bear with me. I have a DVD disk of some VHS home movies. The footage was converted and put on DVD by a service that does that as a business. The service included a menu and a viewer to watch on a computer if desired. It

  • Re: slow speed & connection problems

    Connection for my broadband is really slow and i can't even fix it too.

  • Auto increment pseudo column

    Hi, If I have a sql statement like "select e.name from employees e", how can i add a pesudo column which is auto incremented for each row fetched? So something like incr_column name 1 Jack 2 Michael 3 Freud Thank you

  • ZipException when trying to deploy to AS

    Hi, I have a rather annoying problem ... I have a Struts-application which I have developed in Jdeveloper 9.0.3.3 and java 1.4.2_03. I deploy ear-files to a Oracle Application Server 10g, and everything has worked OK until now. All of a sudden I get