Table ES340_OPEKEY for Model 340 - Spain Tax report

Dear All,
This is with regard to Model 340 tax requirement for Spain. As we all know that there are notes already released for this change, but due to lower support pack level in our  system we are develpoing new program for model 340 spain tax report.
As we know that table 340_Operation key filter data of the report. Does any one have any information about this table. Mostly about the logic on the base of which data can filtered and displayed in that report.
I also have one query on the way data get displayed in model 340. Does any know what should be displayed in this report. I mean other then input and output tax line item, what else should be displayed in the report? For e.g. If I have one document posted as shown below.
Dr....Vendor Account                  200075              E2 Tax code     1000.00
Cr....Material GL Account            4631000            E2 Tax code     925.92
Cr....Output Tax GL Account       2013000            E2 Tax code     64.82
Cr....Clearing tax GL Account      4306000            E2 Tax code     9.26
E2 tax code is set against MWS (Output tax) and ASB(Clearing tax) account key
Now under table ES340_OPEKEY If i select VAT Code 'Yes', IGIC 'NO' and Operation Key as 'None' then under Model 340 report only line item will be displayed.
Total Base Amount: 925.92
Total Tax: 74.08
Total Invoice: 1000
And if under that table If i select VAT Code 'No' IGIC 'No' and Operation Key as 'None' then three line item get displayed.
Total Base Amount: 925.92
Total Tax: 64.82
Total Invoice: 990.74
I want to understand what would be correct output for this document?
Please guide.
Regards.
Vishal.

Hola Eduardo!
La clave de operacion ya está parametrizada en la tabla ES340_OPRKEY.Este no es el problema.
Lo que necesitamos es poder incluir dos Tipos de libros .
El estándar de sap solo saca dos tipos de libros
Libro de facturas expedidas.
Libro de facturas recibidas.
que están identificados en el reporte con las claves de tipo de libro E y R.
Necesitamos que el reporte obtenga tambien los libros de
Libro de determinadas operaciones intracomunitarias.
Libro de bienes de inversión.
Cuyas claves de tipo de libro son: U y S
Estas claves No tienen nada que ver con la clave de operacion.
Este es un requerimiento a la hora de presentar el reporte y SAP no  aporta solucion.

Similar Messages

  • How to add additional field into output table for RFIDYYWT(Generic Withholding Tax Reporting)

    Hi Experts,
    How to add additional field into output table VENDORS/WH TAX TYPES AND CODES in RFIDYYWT(Generic Withholding Tax Reporting).
    I have no idea how to start with, please give some advice.
    Thanks!
    Ice

    Dear Ice,
    Use Append structure, see given link:
    https://help.sap.com/saphelp_nw04s/helpdata/en/cf/21eb61446011d189700000e8322d00/content.htm
    Regards,
    Abbas.

  • Tables used for a Stock-In-Hand Report ?

    Hi,
    I need to generate a stock in hand report. For this report I only need to consider Purchasing Inventory Stock and not the Sales Order Stock. What tables do I have to use?, if possible the query!
    Thanks,
    Kishan

    Hi Kishan,
    Try and use FM 'BAPI_MATERIAL_AVAILABILITY'. I have used this FM in the past for Stock on Hand reports. Only drawback is that it only runs for one material / plant at a time!
    You cold also use FM 'AVAILABILITY_CHECK':
    Structure to hold ATP Controller: Control Parameters
      DATA: BEGIN OF st_atpca.
              INCLUDE STRUCTURE atpca.
      DATA: END OF st_atpca.
    Table to hold ATP: Requirements to be Checked/Considered
      DATA: BEGIN OF tbl_atpcs OCCURS 0.
              INCLUDE STRUCTURE atpcs.
      DATA: END OF tbl_atpcs.
    Table to hold ATP Server: ATP data for display
      DATA: BEGIN OF tbl_atpds OCCURS 0.
              INCLUDE STRUCTURE atpds.
      DATA: END OF tbl_atpds.
    Table to hold ATP Server: Material Table
      DATA: BEGIN OF tbl_atpmat OCCURS 0.
              INCLUDE STRUCTURE atpmat.
      DATA: END OF tbl_atpmat.
    Populate ST_ATPCA
      CLEAR st_atpca.
      st_atpca-anwdg  = '8'.    "Calling App - Explaination
      st_atpca-azerg  = 'T'.    "ATP Display Result
      st_atpca-rdmod  = 'A'.    "Read Mode - Totals
      st_atpca-xenqmd = 'N'.    "Do not read Blocks
    Populate TBL_ATPCS
      CLEAR tbl_atpcs.
      REFRESH tbl_atpcs.
      tbl_atpcs-matnr  = p_matnr.  "Material
      tbl_atpcs-werks  = p_werks.  "Plant
      tbl_atpcs-prreg  = 'A'.      "Checking Rule for Avail Check
      tbl_atpcs-chmod  = 'EXP'.    "ATP: Check mode
      tbl_atpcs-delkz  = 'VC'.     "MRP element indicator
      tbl_atpcs-bdter  = sy-datum. "Requirements date for the component
      tbl_atpcs-xline  = '1'.
      tbl_atpcs-trtyp  = 'A'.      "Transaction type - Display
      tbl_atpcs-idxatp = '1'.
      tbl_atpcs-resmd  = 'X'.      "Mode for Results of Check - Proposal
      tbl_atpcs-chkflg = 'X'.
      APPEND tbl_atpcs.
      CALL FUNCTION 'AVAILABILITY_CHECK'
           TABLES
                p_atpcsx  = tbl_atpcs
                p_atpdsx  = tbl_atpds
                p_atpmatx = tbl_atpmat
           CHANGING
                p_atpca   = st_atpca
           EXCEPTIONS
                error     = 1
                OTHERS    = 2.
    Would recommend giving both these FM's a go and see if they have what you want.
    Cheers,
    Pat.
    PS. If you find these suggestions helpful, kindly award Reward Points appropriately.

  • Text Table entries for 0Material not visible in report

    Hello All,
    I have been executing a report to evaluate the forecast error. In this report, when I drilldown via Material, I get the description of the material for few of them and for remainder, just the key is displayed in the description as well as the key of that material.
    I checked the text table for entries of such materials and to my surprise, the text entries do exist in the cube for these materials as well. But it is not being displayed in the reports.
    I also checked the property for Material in the query nd it is being displayed as 'Text and Key'. So there seems to be no issue in the query as well.
    Can someone put some light on this and help me reach the solution?
    Thanks in advance.
    Regards,
    Chaitra

    Dear Chaitra,
    When displaying a characteristic by key and text, the BEx Query Designer automatically displays the shortest available text from the InfoObject's text table. BEx automatically selects the shortest text available from an InfoObject’s text table when displaying a characteristic by key and text. When a text table has a short, medium, and long text field, the short text displayed.
    Try by changing it display as property to long/medium text.
    Plz revert back for if still had any doubt.
    Regards,
    RK

  • New Spanish Legal Requirements -- Model 340 and VAT Date

    Dear Team,
    This is with regard to program RFIDESM340. SAP recently released notes for model 340. We would like to see structure of file generated by using program  RFIDESM340.
    Request you to guide if anyone know about structure of the file.
    Thanka and Regards,
    Vishal.

    Hi,
    I think that SAP doesnt support this release, so you don't have implement it.
    Please, check before if you have the field VATDATE in table BKPF. Search notes with the string VATDATE.
    Regards,
    Eduardo

  • Tax report for Spain - Sequential Number

    The layout that I have prepared for the Tax report (RFUMSV00, Tx: S_ALR_87100833) shows the column "Sequential number." Thus, I have a relationship without jumping straight to the numbering of all invoices with VAT.
    The system assigns a "Sequential number" for SAP document number. The "problem" arises when there is a bill, a SAP document, with more than one tax indicator of VAT. Then some lines appear in the Declaration of VAT with the Sequential number field in blank and that is because the number of the document (this bill) is already listed in the Declaration in another line with its own Sequential number .
    How do you work with it? Can I somehow avoid that remove this Sequential number blank?

    Hi (again)
    After reading the SAP note number 1628714 ( https://websmp107.sap-ag.de/~form/handler?_APP=01100107900000000342&_EVENT=REDIR&_NNUM=1628714&_NLANG=E ), I think that there isn't an SAP-standard solution.
    Best regards.
    Paco M

  • Advance payment from clients Model 340 ( report RFIDESM340)

    Hi gurus.
    i have a problem with my tax declaration for Spain ( model 340)
    The thing is that i would like to declarate in this report my advance payment from clients.
    The correct form to do it in Spain in to declarate them at the date of receiving in positive and at the date of the delivery of the machine to declarate the in negative.
    How could i solve my problem?
    Thnaks in advanced!

    Hi Nerea,
    Are you using down payment or milestone billing? If the answer is yes, see note 213852 - Analysis of down payment processing with FI as a checklist.
    I hope this helps you
    Regards
    Eduardo

  • Modelo 340 RFIDESM340 no operation key "I" in tax report

    Dear All,
    From 2011 we have to change the parametrization for the presentation to the Spanish tax authorities for the MODELO 340 (RFIDESM340)
    In our company we decided to create new tax codes for 2011, 3 Tax codes of acquisitions of goods/svs, to their proper value in the EU. Code (5, 7 or 8)
    One of the requirements its that all operations related to these 3 new indicators have to drag operation key "I" (Latin capital letter I), indicating that they are a operating reverse charge invoice.
    What i have done, its to inform in transaction FTXP, the new tax codes with
    a.ESA Acquisition Tax Cred at 18%
       ESE Acquisition Tax Deb.  18%
    b. Do not define the line of 0% VST, since they no longer should appear the supplier's invoice without the VAT
    and Exclude VAT charged line of Model 340, excluding in the transaction lor the GL account at TCODE_RFIDESM340 - TRANSACTION CODE FOR RFIDESM340
    but still, i get the report with the operation key in blank, can you please tell me if i am missing somethig?
    thanks in advance

    I was missing a entry in custo
    Financial accounting  Global settings  Tax on sales and purchases  Basic Settings  Spain  Define operations keys for Model 340

  • 340 and 347 tax reports

    Hello,
    There are some changes needed to be applied for doing 340 and 347 tax report in Spain from Febrary 2012.
    Is there any note to apply this changes?
    Thanks a lot

    Hi
    Check this link,
    https://issues.openbravo.com/print_all_bug_page.php
    check this note 0018738, 0018976, 0018974, 0018824, 0017140, 0012436, 0019450, 0019457,0019453,0019444,0019259,0019420,

  • Development class for program RFIDESM340 ( Model 340 )

    Hello everyone ,
    I have implemented all the notes pertaining to Model 340 .
    I have a doubt regarding the development class for report  RFIDESM340 .
    In the system the development class for report  RFIDESM340   is ' BUPA_TAX ' .
    I want to confirm if this is the right one or should we change the development class to ' ID-FI-ES '.
    Thanks ,
    Lalitha Iyer .

    Hola Eduardo!
    La clave de operacion ya está parametrizada en la tabla ES340_OPRKEY.Este no es el problema.
    Lo que necesitamos es poder incluir dos Tipos de libros .
    El estándar de sap solo saca dos tipos de libros
    Libro de facturas expedidas.
    Libro de facturas recibidas.
    que están identificados en el reporte con las claves de tipo de libro E y R.
    Necesitamos que el reporte obtenga tambien los libros de
    Libro de determinadas operaciones intracomunitarias.
    Libro de bienes de inversión.
    Cuyas claves de tipo de libro son: U y S
    Estas claves No tienen nada que ver con la clave de operacion.
    Este es un requerimiento a la hora de presentar el reporte y SAP no  aporta solucion.

  • Activate tax reporting date (VAT due date) Spain

    Dear all,
    My Spanish customer should start using electronic VAT book, Modelo 340. If I understood correct VAT due date (activate tax reporting date) is a prerequisite for this? If I activate this functionality in their system, what affect will this have except a new field?
    Is it possible to do this during a year or should it be done in the beginning of a new year, from 1st of January? Does it matter?
    What affect will it have on already existing documents?
    If they start to use electronic VAT book, do they not need to use the ordinary Tax report, transaction S_ALR_87100833, then and use only this instead?
    Please help me to understand how to tell the customer of how this will affect them.
    BR L

    Hi Paul,
    I have already red these notes but don´t think that my questions are answered by these. Escpecially the question if ordinary tax report, program RFUMSV00 (transaction S_ALR_87100833) are replaced by Modelo 340, is not answered.
    Could you please help?
    BR L

  • Withholding Tax Report Spain Authorities

    Hello masters,
    I have the following problem, may be you can help me.
    I Activated Extended withholding Tax for my company code to make a new withholding tax, all my withholding tax configuration is complete, I modify a vendor master record and informing the new withholding tax. I posted some bills vendors and everything is working fine in FI
    The problem is when I use the Withholding Tax Report Spain Authorities (program: RFKQSE10) no register are found with the new withholding Tax.
    Thanks for your help,
    Luis
    Edited by: Luis Palomino De La Gala on Sep 8, 2008 6:16 PM

    Hello Satish Muvva,
    No errors description, just the report has some registers but no one with the new Withholding Tax,
    I post many vendor bills with the new Withholding Tax Before lunch the Report to Spain Authorities.
    Thanks for your help,
    Luis

  • Table required for GRN tax amount before invoice

    Dear guru's
    In which tabels we can split of basic value & taxes separately after GR is done for a Purachse order.
    I can see the total value in the material document in amount in Lc, but i need the split of total value into basic price & tax for preparing a report.
    Regards
    Praveen

    So now you only tell us that based on the GR can we find any table where these value will automatically get distributed....here i think you have to go for some indirect logic like for VAT or CST from the table KONV you can get the non-deductable tax amount for each po line item...now from MSEG you can get the PO and its line item & gr quantity..for the same PO & line item you can find out the original ordered quantity from EKPO as well as the non-deductable tax from KONV...so in the report in one column you can fetch the total amount from MSEG-DMBTR...in the tax column you enter a formula that (non-deductable tax from KONV / original ordered quantity from EKPO) * gr quantity...the last column for the amount without tax can be (Column1 - column 2)
    For service related you have to check each service line quantity & price from ESLL table
    I am not sure whether this will work or not but you can check & discuss the same with your ABAP person...also check for some expert comments
    Regards,
    Indranil

  • Table names for with holding tax

    Hi all,
    please can any body tellme  few  table names  for withholding tax
    thanks

    hii...
    you can use...
    A399                           Withholding tax code - country-specific
    others are
    /CCEE/FISISTGRD                Reasons for Reversal enabling to change t
    /CCEE/SIFICUSTPR               Mapping table for customer procedure numb
    A399                           Withholding tax code - country-specific
    BSIUDTT                        HR-US: BSI test data (tax record)
    BTXEMPT                        BSI: Employee tax results
    BTXERES                        BSI: Employee/Employer tax
    CIMSYN                         Syntax Description for Extensions
    COMC_R3_FIELDS                 Assignment of R/3 material master fields
    CRMRDTRMSG                     Check Results Management: Texts of Messag
    DFKKARREPCONTST                ARGENTINA: Legal report sales tax control
    EDISYN                         Syntax Description for Extended Basic Typ
    EDSYN                          IDoc syntax after 3.0
    ETXDCH                         External tax document: header info
    ETXDCI                         External tax document: line item info
    ETXDCJ                         Ext. tax document: tax rates and amounts
    regards

  • Table T5UXY - Tax Reporter

    Hi,
    Does any how this table T5UXY gets updated ? This is a control table for Tax and it is unclear how/when this gets updated.
    Any update is appreciated.
    Thanks,
    Ravi

    Hi
    This table is updated when the tax reporter is run.
    For more information, please use the link below:
    http://service.sap.com/~form/sapnet?_SHORTKEY=01200252310000080065&_SCENARIO=01100035870000000112&_OBJECT=011000358700000770032007E
    Thanks
    Baburaj S Avanathan

Maybe you are looking for

  • Firefox won't open,downloaded new version, still won't work

    Firefox will not open,I get a message saying it's crashed and would I like to report the problem, I have,several times. These are the details in the crash report..Add-ons: {3f963a5b-e555-4543-90e2-c3908898db71}:9.0.0.845,avg@igeared:4.504.019.002,{AC

  • HP Photosmart 5514 e-All-in-O​ne Printer - B111h (Default Printer)

    Trying to print a medicine list from "Documents"; printer makes lots of noise before trying to print and when it comes out of the printer, it's only a partial list. I printed something the other day and everything was fine. I've tried to pinpoint the

  • 220V to 110V adapter?

    I just moved to Seoul and want to make sure I don't fry my computer. I got a plug that goes into the power adapter and then into the wall (which is a 220v power source). Will the power adapter convert the power? The last thing I want is to fry this b

  • DMS: Checkin Originals in Background

    Hello, I am using <b>'BAPI_DOCUMENT_CREATE2'</b> to create document and checkin original files. BAPI is working fine via SE37 with the file on my PC (C:\temp\file.doc).  But, when I call call this BAPI from portal, document checkin is not happening,

  • XML element tag problem

    Hi guys, I am facing a problem in parseing a XML file when the element is in <element/> tag format. Iam using "javax.xml.parsers.SAXParser" to parse the XML. Basically XML contains many fields that are mandatary in my XSD. my requirement is that if t