Inbuilt SD reports

hi gurus,
can u tell some inbuilt sd report tcodes.
regards,
ram

Hi
All Standard Reports which are available are as under:
SAP Easy Access: Information Systems -> Logistics -> Sales and distribution ->
1. Customer -> Incoming orders / Returns / Sales / Credit memos / Sales activities / Customer master / Conditions / Credit Master Sheet
2. Material -> Incoming orders / Returns / Sales / Credit memos / Material master / ...
3. Sales organization -> Sales organization / Sales office / Sales employee
4. Shipping point -> Deliveries / Returns
5. SD documents -> Orders / Deliveries / Billing documents ...
& so on.
Some of the Standard reports in SD are:
Sales summary - VC/2
Display Customer Hierarchy - VDH2
Display Condition record report - V/I6
Pricing Report - V/LD
Create Net Price List - V_NL
List customer material info - VD59
List of sales order - VA05
List of Billing documents - VF05
Inquiries list - VA15
Quotation List - VA25
Incomplete Sales orders - V.02
Backorders - V.15
Outbound Delivery Monitor - VL06o
Incomplete delivery - V_UC
Customer Returns-Analysis - MC+A
Customer Analysis- Sales - MC+E
Customer Analysis- Cr. Memo - MC+I
Deliveries-Due list - VL04
Billing due list - VF04
Incomplete Billing documents - MCV9
Customer Analysis-Basic List - MCTA
Material Analysis(SIS) - MCTC
Sales org analysis - MCTE
Sales org analysis-Invoiced sales - MC+2
Material Analysis-Incoming orders - MC(E
General- List of Outbound deliveries - VL06f
Material Returns-Analysis - MC+M
Material Analysis- Invoiced Sales - MC+Q
Variant configuration Analysis - MC(B
Sales org analysis-Incoming orders - MC(I
Sales org analysis-Returns - MC+Y
Sales office Analysis- Invoiced Sales - MC-E
Sales office Analysis- Returns - MC-A
Shipping point Analysis - MC(U
Shipping point Analysis-Returns - MC-O
Blocked orders - V.14
Order Within time period - SD01
Duplicate Sales orders in period - SDD1
Display Delivery Changes - VL22
Regards

Similar Messages

  • Ledger Report In Crystal Reporter

    Dear SAP B1 Experts.
    I generated a Ledger report in SAP B12007 B Inbuilt Crystal Reporter Addon , by linking JDT1 Table and OACT table. I am able to run report based on the From Date and Todate parameter and the informations are showing currectly.
    But the problem is I am not able to fetch the opening balnce for the sepecified account.
    For Eg :
    Ledger Report for Cash Account ,  Parameter is 01/05/09 to 31/05/09 . So as per my reports, it is taking only the trasnaction in between the parameter Date. Here if i able to fecth the opening balance (Sum(jdt1.Dr) - Sum(jdt1.Cr) which is less than the From Date. 
    Opening Balance = Sum(jdt1.Dr) - Sum(jdt1.Cr where Jdt1.RefDate < From Date Parameter.
    So in this scenario, what kind of formula should write to fetch the opening balance .
    Can anybody help me to sort out this issue.
    Thanks
    Regards

    declare @fr char(7)
    declare @to char(7)
    /select t.Refdate from ojdt t where t.refdate between '[%0]' and '[%1]'/
    set @fr=convert (char(7),[%0],20)
    set @to=convert (char(7),[%1],20)
    declare @PrCl dec(19,6)
    declare @de dec(19,6)
    declare @cr dec(19,6)
    declare @acc char(20)
    declare @Pracc char(20)
    Create table #W
      (Acc char(20), M char(7), Op dec(19,6),De dec(19,6),Cr dec(19,6),Cl dec(19,6) )
    Insert into #W (Acc,M,Op,De,Cr,Cl)
    SELECT T1.[Account],convert (char(7),T1.[RefDate],20)Mo,
      0,sum(T1.[Debit])De , sum(T1.[Credit])Cr,0
    FROM OJDT T0 INNER JOIN JDT1 T1 ON T0.TransId = T1.TransId
    Group by T1.[Account],convert (char(7),T1.[RefDate],20)
    Order By T1.[Account],convert (char(7),T1.[RefDate],20)
    Declare cu cursor for
    Select acc,de,cr from #W
      for update
    set @PrAcc=''
    Open cu
    Fetch next from cu into @acc,@de,@cr
    While @@FETCH_STATUS = 0
    Begin
    If @acc!=@PrAcc set @PrCl=0
    Update #W
       set op=@PrCl,
           cl=@PrCl-@Cr+@de
      where current of cu
    set @PrCl=@PrCl-@Cr+@de
    set @PrAcc=@acc
    Fetch next from cu into @acc,@de,@cr
    End
    deallocate cu
    Select * from #w
    where M between @fr and @to
    Drop table #W
    Run the above query

  • How to deploy crystal reports in Windows Azure

    I have developed a web application using VS 2008 and also developed some crystal reports for the appliation, now my task is to  migrate the web application to windows azure and to migrate to Windows Azure we have to convert the application to VS 2010 but in VS 2010 there is no inbuilt Crystal reports now my question is how should i migrate my crystal reports to windows Azure, kindly help me.
    Thanks in Advance
    Ramakrishna Reddy

    Hi,
    Installing [CR for VS 2010 |http://downloads.businessobjects.com/akdlm/cr4vs2010/CRforVS_13_0.exe]on top of visual studio 2010 will give you a bundled crystal designer available inside visual studio 2010 IDE. Apply [SP2 on CR for VS 2010 |http://downloads.businessobjects.com/akdlm/cr4vs2010/CRforVS_13_0_2.exe]Upgrade the reports in the bundled designer and compile / build your application.
    Take a look at the Deployment section of [CR for VS 2010 Developer guide |http://help.sap.com/businessobject/product_guides/sapCRVS2010/en/crnet_dg_2010_en.zip]for recommendded deployment procedures.
    The [MSI (Redistributable runtimes)|http://downloads.businessobjects.com/akdlm/cr4vs2010/CRforVS_redist_install_32bit_13_0_2.zip] is meant to install manually on the app server / client machine.
    Search the forum for 'cr for vs 2010 deployment' you will find many useful threads, kbases, wikis.
    Hope this helps,
    Bhushan.

  • Commission report Query Question

    The inbuilt Commission Report is run by the following query:
    SELECT T0.DocNum, T0.DocType, T0.DocTotal, ( T0.DocTotal - T0.VatSum) As "Net Income"  , T1.SlpName, T1.Commission, ( ( T0.DocTotal - T0.VatSum)*( T1.Commission/100)) As "Sum_Commissions" FROM OINV T0  INNER JOIN OSLP T1 ON T0.SlpCode = T1.SlpCode WHERE T1.SlpName  = N'[%0]' AND T0.DocDate >= '[%1]' AND  T0.DocDate <= '[%2]'
    However, I have a need to change this query to solve a problem:
    If AFTER the Invoices are added to the system, I go back to the Invoice and change/add the Employee Name to the transaction line, the query ignores these additions made. Can I change the query so the Commission Report takes into account changes made to the employees' field AFTER invoices are posted to the system (SAP allowes me to make such changes to the employee)
    In other words I would like the Query to look at the Emploee field AFTER I make changes and give me an updated report.
    i am aware that SAP does not allow changes to the Invoice AFTER posting them to the system but it seems to allow changes to the Commission/Employee field, so I should be able to run a Commission report after I make these changes.
    Thank you
    Robert

    Hi SUDA,
    Yes I mean SALES EMPLOYEE. It seems strange to me as well that this report will ignore the information in this field. I have checked this again and what seems to happen is as follows: Say I have invoice no 712 marked to Employee=Erica and I run the commission report for Erica and invoice 712 correctly appears on the report. Then I go back and change the Employee Name on the Invoice 712 (on each line) to Robert and I run the report again. I would expect that Inv 712 will be included in this report (commission report for Robert) but for some strange reason, IS NOT.
    In fact INV 712 is still associated with ERICA although I have changed the SE to Robert- please check this out?
    Thanks
    Robert

  • Set MS Report to obtain data from programmatically created dataset?

    Greetings everyone!
    My problem: I decided that I should add a bunch of reports in the app develop for a hospital. I programmatically coded a search from a Mysql database and added a dataset (let me call it "patients_search) as usual. Then I created a DataGridView and used
    the created Dataset as its data source, this works properly, no problem.
    But as of recent, I decided that I should quit using datagrid for my reporting and use the VS 2013 inbuilt MS Report Viewer. I would like to create a report and let it pick its data from the existing dataset ("patients_search") which is created programmatically.
    So instead of binding my dataset to a datagridview, now I want to bind it to a report.
    But it seems the MS Report wants me to use a dataset created with the designer, not programmatically created dataset -and I don't want this.
    I have searched many places online, I have not seen anyone do that. I have seen some people say that it is impossible to link the MS Report to a programmatically created dataset.
    I have come here to ask for more experts help. Is there a way I can do this inside VB.NET? Please help.
    If this is not possible, then what's the other possible way of creating reports? I can't purchase Crystal Reports.
    Any help is appreciated.
    Thanks,
    Frank.
    "I can do all things through Him who strengthens me"

    Hi savedlema,
    As your issue is related to reports, I'm moving your post to Reports forum for better supports. Thanks for your understanding.
    Best regards,
    Youjun Tang
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Add-on Failure

    Hey Gurus,
    We have developed an Add-on using the Add-on code generator wizard from the B1DE. The Add-on runs fine on machines, where Microsoft Visual Studio .Net 2005 is installed. But it crashes on the PCs, where .Net Framework 2.0 is installed properly and do not have Microsoft Visual Studio .Net installed.
    Below are the few information that can help you to track down the issue.
    System: SAP Business One 2005 A (6.80.318) SP:01 PL:10
    SQL: SQL 2005
    .Net Framework: 2.0
    Add-on created using: B1DE Add-on Wizard
    Error Message:
    System.Reflection.ReflectionTypeLoadException
    Message: "Unable to load one or more of the requested types. Retrieve the LoaderExceptions property for more information."
    Source: "mscorlib"
    I did rebuilt the add-on using B1DE, copied my code in the new solution file and the Add-on worked for few days, now it started giving me the problem again
    Any help in this regards will be rewarded.. I mean will be highly appreciated..:)
    Thanks & Regards,
    ~Bibs

    Hi Edward,
    I have upgraded the system to PL 44 and did build the add-on but the error still persists&#61516;, after a detailed research I came to the solution that it is because of the crystal report used in my solution.
    After removing the crystal report and all its reference I was able to build my add-on and it is working fine. Now I don’t understand how to include the crystal report in my solution
    Any help in this regards will be appreciated
    Thanks & Regards,
    Bibish
    PS: I have used Visual Studio 2005 for my solution and have used the inbuilt crystal report of .Net for my reports.

  • How to dynamic order of groups & How to fetch data at runtime from database

    Post Author: ferikpatel
    CA Forum: Formula
    I am using visual studio .net application having inbuilt crystal report feature. Now, what I want to do is, i have create 5 groups in crystal report, but dynamically want to change the order of those reports as per user's selection.
    How to do that?
    Also, how to fetch database item on runtime which is not selected through data expert as its relation is depends on situation. Say if one field's value is 5 than i want to get name of customer, but if same field's value is 6 than i want to get name of suppliers. In database both supplier and customers tables are different however they are connected with base table.
    I'm bit new in crystal report. Please help me out if it is possible.

    Post Author: Charliy
    CA Forum: Formula
    You don't actually change the order of the groups.  You group on a formula and change contents of the formula based on the parameter.
    IF {?Group1} = "Manager" then {table.Manager}
    else if {?Group1} = "Invoice Date" then Totext({table.InvDate},"yyyyMMdd")    note all options must be the same date type, so numbers and dates are converted
    else . . .

  • Integration between CRM OnDemand and OBI EE

    Does Oracle provide out-of-the-box ETLs, data mapping and everthing else required from the Siebel CRM OnDemand application to the Oracle Business Intelligence applications ? What does the customer need to do pull out data from the Siebel CRM OnDemand and use the data from the OBI platform?

    CRM On Demand has an inbuilt Analytics reporting object which is developed off OBIEE or the traditional Siebel Analytics. Having said that, it is not possible for you to run complex SQL queries and get complex reports within the CRMOD UI. R16 of CRMOD does have some more added features but I wouldn't think you can do things like - built complex SQL Structures, or schedule a report etc.
    If you want to use OBIEE and to pull data out of CRMOD, I would suggest use the existing WSDL's provided within CRMOD and develop web services that would dump the data into the OBIEE data structure and use OBIEE for all your report needs.
    Hope this helps. If you find a better way, please let me know. I would like to explore that.

  • Can we put additional Crystal report in menu with rights?  Is it inbuilt ?

    dear all
    one of my clients want crystal reports in menu with user rights. is it possible. if yes how.
    regards
    sri

    Hi Sri......
    It is possible if you have SAP 8.8 and above version.
    Once you designed Crystal Report and Import it to certain menu then please go to Authorization and give it permission accordingly......
    Regards,
    Rahul

  • Generating a report based on two analytics(for ex:PO and PR)

    I have a question regarding generating reports on two analytics.
    In our scenarios,
    We need to generate a report based on Purchase order and Purchase request.Is it possible in OBIA?
    if yes,please provide the solution.
    Thanks in advance

    Hi ,
    Thanks for your valuable time.
    We are in designing phase of the project. we need to know ,Is there any inbuilt dashboards or reports built using both PO and PR repositories?
    I would like to explain with ex:
    Let's say we need a report or dashboard containing few fields from PO and few fields from PR.Let's assume both PO and PR data available at same granularity.
    Do we have any such inbuilt reports or dashboard?
    If not,could we customize the report generation using both PO and PS tables?
    Please provide the solution.
    Thanks in advance.
    Edited by: user3561029 on Aug 31, 2008 9:03 PM

  • Stock Aging Query/Report

    Dear all,
    We are on SAP B1 2007 PL42 and using Moving average as our cost valuation method.
    It doesn't have an inbuilt stock aging report, I have searched through the forum but none of the queries arebshowing the correct aging of stocks. Could anyone have a query/report/addon for stock aging?
    Kind Regards,
    Asif

    Hi,
    Try this one,with warehouse code as input parameter
    select b.code, b.name, b.Wh, b.Bal, b.Val,
    isnull(case when b.days <30 then b.bal end,0)'0-30 Days' ,
    isnull(case when b.days between 30 and 60 then b.bal end,0) '30-60 Days',
    isnull(case when b.days between 60 and 90 then b.bal end,0) '60-90 Days',
    isnull(case when b.days between 90 and 120 then b.bal end,0) '90-120 Days',
    isnull(case when b.days between 120 and 150 then b.bal end,0) '120-150 Days',
    isnull(case when b.days between 150 and 180 then b.bal end,0) '150-180 Days',
    isnull(case when b.days >180 then b.bal end,0) 'Above 180 Days'
    from (
    select a.code,a.name,a.wh,a.bal,a.val,datediff(dd,dt,getdate())'days'
    from (
    select max(t0.itemcode)'Code',max(t0.Dscription)'Name',
    max(t0.Warehouse)'Wh',
    sum(t0.inqty-t0.outqty)'Bal',sum(t0.transvalue)'Val',max(t0.docdate)'dt'
    from oinm t0 inner join oitm t1 on t0.itemcode=t1.itemcode
    where t0.warehouse='[%1]'
    group by t0.itemcode
    )a
    )b order by code

  • MC$4 report shows PO value in wrong currency

    MC$4 report shows PO value in wrong currency EUR (EURO) eventhough PO
    was created with SEK (swiss) currency. Report picks data from info
    table S012 that also reflects wrong currency.
    Please check attached example....
    Currency is getting picked up in table S012 info-structure from company
    code table T001 (PO belongs to) not from purchase order.
    This is certainly bug in standard SAP LIS report. This is inbuilt LIS feature given by SAP & we cannot do any fixing.
    Can you provide solution how we can correct this error. How to display correct currency in report & info-structure S012.

    hi
    in the report the system might be taking the co code currency
    what u have to do is go to  MC$4  press ctrl+F7
    u will get the currency change option change it to what u want
    regrads
    kunal
    awrad if helpful

  • Email Service report to Customer

    Hi,
    I need to send a PDF Service report document to the customer. Email is mentioned into the customer master record.
    PDF Service report document is sitting into Archive server which is placed by third party tool.
    Can you please let me know the necessary steps to develop this scenario?
    Regards,
    Sachin

    Sachin,
    First of all, you need to create a spool request (click on the print option when the report gives a output, remove the tick from "print immediately" option.....alternatively you can also ask your abaper to create a new option as "Create PDF"...now take the spool number by using T.Code: SP01
    now go to T.code: SE38/SA38...enter program RSTXPDFT4..and execute/F8...enter that spool number..system will ask you the destination..you can save the file on your local PC by your own nomenclature (inbuilt written in the program) .
    You can explain this process to your ABAPer, he will be able to write the relevant program
    Customer email address table is ADR6, just cross check on this one.
    I hope the information if of help to you
    Regards,
    N

  • Email a Report to Customer in AR

    Hi,
    I have a requirement to send an email of report to the customer while i run the concurrent program. It is not an XML report. Please advise me to do.
    Thanks in Advance,
    Pradeep
    Edited by: user11165897 on Dec 7, 2012 1:27 AM

    Sachin,
    First of all, you need to create a spool request (click on the print option when the report gives a output, remove the tick from "print immediately" option.....alternatively you can also ask your abaper to create a new option as "Create PDF"...now take the spool number by using T.Code: SP01
    now go to T.code: SE38/SA38...enter program RSTXPDFT4..and execute/F8...enter that spool number..system will ask you the destination..you can save the file on your local PC by your own nomenclature (inbuilt written in the program) .
    You can explain this process to your ABAPer, he will be able to write the relevant program
    Customer email address table is ADR6, just cross check on this one.
    I hope the information if of help to you
    Regards,
    N

  • Crystal Report not running from Addon in the Front End.

    Dear All ,
    There is a Crystal report , .rpt File inbuilt in the Add-on .
    This report runs well from the Source Code .
    But i am facing problem , since it is not Opening at the Front End after registration of the Add0n.
    Suggest what to do ?
    Thanks
    Ashish

    Dear Rahul ,
    In my system , there is a Addon , which has some crystal Report file inbuilt .
    Which run on the Button Click event in the Form at the Front End (SAP GUI).
    When we debug the Source Code and pass the event . . Report Open with no hurdle.
    But the Same thing when we do at the From END of SAP , then it is not Returning any Report.
    Thanks
    Ashish

Maybe you are looking for

  • ITunes won't open. Error (-200)?  9/30/11

    I now have Lion and am totally updated, but I keep getting this error message (-200). I've read other similar reports od people who tried every normal thing to no avail, but I haven't found an answer yet. Can someone help? Thanks

  • Wireless connection to HP officejet d145

    I have a Linksys wireless router and print server working fine for my PC. The iMac links wirelessly to the router but not to the print server. I can get the iMac to ping the printserver but it just prints garbage. There was no print driver for the d1

  • Adobe Form is not opening after saved the form locally

    Hi Experts, I have implemented the adobe form using webdynpro java using ACF. The scenario is initially the form is loading with input fieIds and dropdown boxes after that the form data has to be submitted into backend. I have encountered the problem

  • Linked to Oracle Server.

    I am working on a project that requires me to link SQL Server 2008 R2 to Oracle 11g. I have installed the Oracle client on the SQL Server and made several test connections. I am able to list data from Oracle in the SQL Server Manger. I want to make s

  • Compiling a form with Dblink makes Builder close unexpectedly

    I got Windows XP, Patch 18 installed and anytime I try to compile a form that uses a DBLINK, as soon as I try compiling the form, my form builder closes to desktop (no error, message, nor anything). I tried FORMS COMPILER --> Compile ALL and nothing