Intrastat / EC sales reporting for Italy

Hi all. We have implemented a new company code for italy. Business is now requiring several country specific reporting, namely the intrastat and EC sales reporting. I tried going through some documentation but there are several reports available for intrastat, so i am not getting the whole picture or which report(s) i should be using. Does anyone know the sap note which describes the full intrastat reports or have any similar documentation?
thanks in advance for your help.

Hello Simon,
The below documents might be helpful to you,
http://www.scmexpertonline.com/downloads/Kees%20Intrastat%20download%201-23-07.doc
http://www.appliconsolutions.com/fileadmin/filer_solutions/pdf/White_paper/White_Paper_APM__v._2.9.pdf
http://mbs.microsoft.com/downloads/public/GP10Docs/EnhancedIntrastat.pdf
This is the last one for oracle,
http://download.oracle.com/docs/cd/A60725_05/pdf/gemmsin.pdf
br,
Pushkar

Similar Messages

  • Sales report for plant wise

    Dear All,
    I would like to know the sales report for plant wise, my client is having 1 sales org &  3 plants , will this do or can I go for more sales orgs? If so how will I get the plant wise report?
    Thmx&Regards,
    Ramu

    Hi
    You can view the list of sales orders in VA05 with plant as the selection criteria. Though Plant is not included in the Further Selection Criteria, you can add this by following the below steps.,
    Goto IMG - Sales & Distribution - Sales - Lists - Define Selection Criteria - execute
    In the screen - goto New Entries and add the following details..
    1. Program Name - SAPMV75A
    2. TRG (Transaction Group) - 0
    3. Display Group - K
    4. Event - SELK
    5. It - 8
    6. Field Name - WERKS
    Enter the details and save the changes. Goto VA05 and you can see the field PLANT in the Fur Sel Criteria.
    Thanks,
    Ravi

  • Plantwise Production & Sales report for Finished Goods

    Dear All,
                  Please let me know how to generate Plantwise Production & Sales report for Finished Goods. Is there any t code?
    Regards,
    Anil

    Dear All,
                         Thank you for the solutions. But can i draw the values in one single report. It will be more useful.
    Regards
    Anil

  • Sales Report for US Sales and Use tax

    Hi,
    I'm looking for t-code to extract detailed sales report having Gross sales, Exempt sales , Ship to state, Ship to County\ City,  Sales Tax collected. If I'm getting this report i can verify what my sales tax software is updating.
    When i extract  tcode - ZINVLIS i don't get much detail.
    Please help me in extracting complete sales detail which can be used for sales and use tax verification process and audit purpose.
    Thanks,
    Karthik

    Hi Karthik,
    There is no standard report available as per my knowledge.You may develop Z report to achive your requirment. Check some LIS report can give data (MC01 is transaction where you can check all type of key figure reports)
    Regards
    Mani Kumar

  • Sales report for current month and year a go month

    i could you please guide me builting report for current monthwise for current month and year a ago month
    report parameter month_year='06-2010'
    tables = sales and below are the table fields
    customer_id
    invoice_dt
    invoice_am
    thanks
    nhm

    Okay, Still you did not mention how you will pass value in report while generating.
    Anyway the query with UNION ALL will work. For Example.
    I am assuming that the parameter for date/month you will pass in range like 01-JUN-2010 to 30-JUN-2010
    SELECT customer_id, SUM(curr_value) curr_value, SUM(past_value) past_value
    FROM
    SELECT customer_id, NVL(SUM(invoice_amount),0) curr_value, 0 past_value
    FROM sales
    WHERE invoice_dt BETWEEN :P_FROM_DATE AND :P_TO_DATE  -- here P_FROM_DATE and P_TO_DATE will be the date range for current year as i showed above.
    AND  -- Any Condition goes here...
    GROUP BY customer_id
    UNION ALL
    SELECT customer_id, 0, NVL(SUM(invoice_amount),0)
    FROM sales
    WHERE invoice_dt BETWEEN ADD_MONTHS(:P_FROM_DATE,-12) AND ADD_MONTHS(:P_TO_DATE,-12) -- This add_months function for the previous year same month.
    AND -- Any condition goes here...
    GROUP BY customer_id
    GROUP BY customer_idNow using the above query you can design the tabular report as you showed the format.
    -Ammad
    Edited by: Ammad Ahmed on Jul 3, 2010 7:55 PM
    added GROUP BY

  • Sales Reports for Sales Amount and GP, Excluding Surcharge

    Hi All,
    my company is going to charge some customers delivery charge. It is implemented as a kind of surcharge on Sales Orders. The surcharge can be found as a condition type in FI document after posting.
    Our salesmen want to know the sales amount and GP (Gross Profit) of material, not include the surcharge.
    Could anyone suggest any Sales Reports that can show the GP of material excluding the delivery surcharge?
    Regards,
    Simon

    Hi............
                         Refer stock posting list report........
    regards,

  • Sales report for the month.

    Hi all,
    I am looking for some help with a query that I am trying to write for a customer. They have asked me for a report that shows them a date range of sales not including: Discount, Tax, and Shipping/Freight. They are wanting to be able to populate this using a date range and by business partner. The last thing they are wanting is to have this only include items that are in 2 specific item groups. If anyone has any suggestions it would be greatly appreciated. Thanks!
    Kind Regards,
    Jeff Haldeman
    Support One

    Hi Jeff ,
    lets make this simpler
    1. How do you identify as sales -- Is it Ar invoice or Sales order
    2. How is your user entering data for discount at row level or footer (header) level
    3. Since they need Item * sales Cost  ,looks like you have to calculate your own total so you cannot  use  system total unless you reverse (doctotal -tax -discount )
    4.  Date range means (you have to use parameter )
    5. Business partner range (parameter )
    6. Item with two group ( put a condition )
    Did you take a look at Sales Analysis report by Item with secondary selection customer and use filter function to take out some unnecessry field .May be that satisfied their need .
    Please update us more .then we can help you more
    Thank you
    Bishal

  • Query for Weekly Sales Report

    Dear Experts,
    I have developed the query for weekly sales report for the alert management to send out the report on every Monday as follow :
    SELECT T0.[CardCode], T0.[CardName], T0.[DocDate], T1.[ItemCode], T1.[Dscription], T1.[Quantity], T1.[LineTotal] FROM OINV T0  INNER JOIN INV1 T1 ON T0.DocEntry = T1.DocEntry INNER JOIN OITM T2 ON T1.ItemCode = T2.ItemCode WHERE T0.[DocDate] between GetDate()-8 and GetDate()-1
    The weekly report received on every Monday through email is without column total for the "Line Total".
    Can the Sum of column "Line Total" to be included in the query ?
    Thus, the auto send report on every Monday by alert management will display the total.
    Thanks in advance for all your kind assistance.
    Regards,
    Clara

    Ok you want it at the bottom.......
    then you must must try this if you are running query generator....
    Else a good option is Crystal Report.
    You need to only add Group Sum.......
    SELECT T0.CardCode, T0.CardName, T0.DocDate, T1.ItemCode, T1.Dscription, T1.Quantity, T1.LineTotal FROM OINV T0 INNER JOIN INV1 T1 ON T0.DocEntry = T1.DocEntry INNER JOIN OITM T2 ON T1.ItemCode = T2.ItemCode WHERE T0.DocDate between GetDate()-8 and GetDate()-1
    Union All
    Select '','',Null, '','Total',Null, Sum(T1.LineTotal) FROM OINV T0 INNER JOIN INV1 T1 ON T0.DocEntry = T1.DocEntry INNER JOIN OITM T2 ON T1.ItemCode = T2.ItemCode WHERE T0.DocDate between GetDate()-8 and GetDate()-1
    Regards,
    Rahul

  • Sales Reports with Partial Shipments

    Hello,
    I need to write a sales report for open orders. If the order has been partially shipped, I just need to pull what remains to be shipped and display this total.
    If the order has not been partially shipped, I need to pull the doc total.
    How do I specify if an order has been partially shipped or not? Is there any way to say, "If a line in RDR1 has been shipped or partially shipped, sum the totals of OpenCreQty * Price, else pull DocTotal"?
    I need to display the report in 1 line per sales order.
    Thanks in advance,
    Chris

    Hi Christine, 
    Without knowing the exact fields you are using you should be doing something like: 
    If {TABLE.OpenCreQty} NOT EQUAL {TABLE.Quantity} Then
         0
    Else {TABLE.Quantity};
    NOTE: WHERE IT SAYS NOT EQUAL TO should be LESS THAN and GREATER THAN symbols. They don't show up in here.
    So the If is checking what was shipped with the order's quantity.  If they are not equal then show 0 otherwise show the order's quantity. 
    Now you can do a summary and sum this formula and you should get the proper numbers. 
    Good luck,
    Brian

  • Sales report ship to party wise

    I want to see the sales report for each ship to pary wise.
    Sold to, bill to n payer remain same.
    Reg,
    Madhu

    For that in VF05 report, you need to have ship to party as one of your selection option which you can achieve as follows:-
    IMG --> Sales and Distribution --> Sales --> Lists --> Set Updating of Partner Index.  Here, maintain the following values.
    Transaction Group      Partner Function
               7                 SH
    Now go to VF05,  click on "Partner function" tab,  select SH and execute.
    thanks
    G. Lakshmipathi

  • A query to create sales information for a specific date.

    Hi,
    Please look at attached image, you will see how this query look like. This query will generate all sales from 1/1/2014 until today. I would like to see if the query can create the sales report for a range from 1/1/2014 until yesterday (does not included any sales for today). Any help will be appreciated.
    -Bill

    Hi Bill,
    The query attached looks like it is selecting results based on the salesorder name starting with the current year. As is written, it won't be able to filter out today.
    If you want to exclude today, you'll need to modify the current selectivity predicate for today to perhaps a BETWEEN predicate ( e.g. table.datefield BETWEEN '2014-01-01' and DATEADD(day,-1,GETDATE()) ) or add an exclusion predicate ( e.g. table.datefield <> DATEADD(day,-1,GETDATE()) ).
    Note that you'll need to have a field in the data that has the day. Your query does not have any schema information, and all it seemingly reveals is that a salesorder name starts with the current year.
    Hope this helps,
    Tyson

  • Material Type Vs Sales report.. Urgent

    my client requires materail type vs sales report for particaular period... is there any standard report for these.. or how can we do with a ABAPer.. wat fields we have give to ABAper.... to get the report....
    Kiran

    Hi Kiran,
    Please find the herewith the SAP SD Standard Reports.
    Reports: Reports consist of data, which is expected to be reveiwed or checked the transaction taken in said period. Reports are useful for analysis of decision taking for future activities.
    Some of the standard reports for SD & its configuration guide is as under:
    Standard SAP SD Reports:=
    Statistic Group:
    Purpose – To capture data for Standard Reports, we require to activate Statistic Group as under:
    --> Item category (Configuration)
    --> Sales document type (Configuration)
    --> Customer (Maintain in Master data)
    --> Material (Maintain in Master data)
    When you generate statistics in the logistics information system, the system uses the combination of specified statistics groups to determine the appropriate update sequence. The update sequence in turn determines for exactly which fields the statistics are generated.
    Configuration:
    IMG --> Logistics Information System (LIS) --> Logistics Data Warehouse --> Updating --> Updating Control --> Settings: Sales --> Statistics Groups -->
    1. Maintain Statistics Groups for Customers
    2. Maintain Statistics Groups for Material
    3. Maintain Statistics Groups for Sales Documents
    4. Assign Statistics Groups for Each Sales Document Type
    5. Assign Statistics Groups for each Sales Document Item Type.....
    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
    Please Reward If Really Helpful,
    Thanks and Regards,
    Sateesh.Kandula

  • Material type vs sales  report

    my client requires materail type vs sales report for particaular period... is there any standard report for these.. or how can we do with a ABAPer.. wat fields we have give to ABAper.... to get the report....
    Kiran

    Hi,
    You might get more help by posting this on the SD board as well.
    Steve B

  • Monthly Sales Report - Prior year comparison

    I am created a monthly sales report for Sales in Crystal 2011. I have a parameter prompting for a date e.g. 02/01/2014 to 02/28/2014. I would like to have the sales amounts beside this column for 2013.
    I found this formula but I can only get my results from 2014.Anyone have an idea how I can do this ?
    Thanks,
    debbie
    \\Current Period
    If pwformatdate({OEAUDH.TRANSDATE})
    in date(year(currentdate)-(if month(currentdate)<10 then 1 else 0),10,1)
    to currentdate
    then Amount Forumula
    else 0.00
    \\Prior Year Period
    If pwformatdate({OEAUDH.TRANSDATE})
    in date(year(currentdate)-(if month(currentdate)<10 then 2 else 1),10,1)
    to dateadd('yyyy',-(if month(currentdate)<10 then 2 else 1),currentdate)
    then Amount Formula
    else 0.00
    the parameter for my date is :
    pwformatdate({OEAUDH.TRANSDATE}) >= {?FromDate} AND
    pwformatdate({OEAUDH.TRANSDATE}) <= {?ToDate} AND
    ({ICITEM.ITEMNO}) >= ({?FromItem}) AND
    ({ICITEM.ITEMNO}) <= ({?ToItem}) and
    {OEAUDH.TRANSTYPE} <> 3

    Hi Debbie,
    1) Modify the Record Selection Formula to;
    {OEAUDH.TRANSDATE} IN [cdate(year({?FromDate})-1, Month({?FromDate}), day({?FromDate})) TO cdate(year({?ToDate})-1, Month({?ToDate}), day({?ToDate}))]
    OR
    {OEAUDH.TRANSDATE} IN [{?FromDate} TO {?ToDate}]
    This should give you current and previous year's data for the period chosen by the user.
    2) Assuming you have a group on the Date field set to print for each year, simply create a running total from the Field Explorer.
    Name it Current Year.
    Choose 'Sales Amount' as the field to Summarize.
    Choose 'Sum' as the Summary Operation.
    Under 'Evaluate', select 'use a formula' and use this code:
    date_field IN
    [cdate(year({?FromDate}), Month({?FromDate}), day({?FromDate})) TO cdate(year({?ToDate}), Month({?ToDate}), day({?ToDate}))]
    Set it to Reset at each Group For Year
    3) Create another Running Total and call it 'Previous Year'.
    Everything remains the same from Step 2 except the evaluate formula:
    date_field IN
    [cdate(year({?FromDate})-1, Month({?FromDate}), day({?FromDate})) TO cdate(year({?ToDate})-1, Month({?ToDate}), day({?ToDate}))]
    Hope this helps.
    -Abhilash

  • San Marino to be included for Italy Intrastat reporting

    Hello All,
    We have to include San Marino in EU Country Members for Italy Intrastat Reporting.
    San Marino should be visible in folder "INtrastat" under folder "EU Countries" after executiing transaction "ENGR".
    TX "ENGR"  > PERIODIC DECLARATION.
    we have already maintained SM (San marino) as a EU country in table T005.
    Regards,
    Ajit

    Ajit
    Did you try setting up SM in T Code VEB2- Special Rule Country / Region
    Generally check your Foreign Trade (FT) settings, especally here:
    SPRO/IMG/Sales and Distribution/Foreign Trade/Customs/Periodic Declarations/Control Data
    and
    SPRO/IMG/Sales and Distribution/Foreign Trade/Customs/Legal Control/Foreign Trade Data by Country of Destination
    Also there are several OSS notes if you search by keyword 'San Marino'. Check them out.

Maybe you are looking for

  • Help help!!!!! with iPhoto'11 9.4.3

    i got this problem with iphoto..i transfer my photos ussing the SD card, it finish and then i delete the contents everything good on this point, then iphoto close itself .. so then i open again iphoto and the pics that i transfer desappear,, what's w

  • Adobe Premiere Pro CS5.5 Crashing on Render/Encode

    So, this is a pretty non-complicated problem. I think I have narrowed it down. So basically it's this, I try and render footage that is about 10 minutes long. About 3/4's of the way through that Adobe Premiere Pro crashes. It just shuts down, no warn

  • Updating XML thru view table

    Given the following view table that i created CREATE OR REPLACE VIEW PO_DETAIL_VIEW ( PAYLOADID, ORDERNUMBER, LINENUMBER, SHIPPEDITEMQTY, COST, ORDEREDITEMQTY, ACTION, UOM, DESCRIPTION, SKU, STATUS, CURRENCY, PLANNEDRECEIPTDATETIME ) AS select extrac

  • Facebook freezing and froze updating apps

    ive jsut updated to IOS 6 on my iphone 3GS and when trying to sign in to facebook via the settings it says veryfying and it just freezes. i can press the home button and close settings and when i reopen settings it returns back to the frozen facebook

  • Lost signature password, removed "id" from security settings, now cannot create new signature

    I lost my digital signature password. I deleted the id in security settings However, when trying to create a new digital id I do not get a choice to enter a new password. There is only one password box. So, Acrobat X is still asking for the original