BADI 014 in report RFUMSV00

Hello I have to add new fields in report RFUMSV00. As you know the selection screen shows a section where you can customise the layout of many section. I have to add one field in totals section.
Now I found a BADI (FI_TAX_BADI_014) that should be used to add field catalog for ALV. But I don't know how to use it. The BADI instance is not implemented.
Is there someone who had experience on it?
Thanks
F.

Hi Eduardo,
thanks for your quick reply.
Do you know the possible solution for my question? The picture shows the peculiarity of the vat code.
When I run the report RFUMSV00, I don't see in the "Input tax: Line items" the information related to ESA transaction. I can see only the transaction ESE. My client would like to see also the ESE information in the "Input tax: line items.
Below is shown the AS IS:
Do you have any suggestion?
Thanks a lot for your support
Regards
Giampaolo

Similar Messages

  • Report RFUMSV00 - Reverse Charge

    Hi Guru,
    my client would like to see in the report RFUMSV00 the transaction ESA/ESE (reverse charge) in the "Input tax: Line items". How can I do it? Do you know a BADI that I can use?
    Do you have any suggestion?
    Thanks in advance
    Kind Regards
    Giampaolo

    Hi Eduardo,
    thanks for your quick reply.
    Do you know the possible solution for my question? The picture shows the peculiarity of the vat code.
    When I run the report RFUMSV00, I don't see in the "Input tax: Line items" the information related to ESA transaction. I can see only the transaction ESE. My client would like to see also the ESE information in the "Input tax: line items.
    Below is shown the AS IS:
    Do you have any suggestion?
    Thanks a lot for your support
    Regards
    Giampaolo

  • VAT Report-RFUMSV00

    Dear Gurus,
    Let me describe the scenario:
    1) Sales Order Created and Billing GeneratedFI doc PostedAmt 1000 INR
        Tax code is O0 --Tax rate is zero percent
    2) Customer Pays more than Sales Order amount --Amt 1300 INR
    Document No X
    40 dr Bank 1300
    15 Cr Cust  1000
    15 Cr Cust  3000
    3)Later when Billing happens for 100INR and 200 INR
    Customer is not paying so 300 from document X is adjusted for SO amt 100 and 200.
    Now the requirement is that as there are 3 SO so VAT Report should contain 3 line items and accordingly amount 1000,100 and 200 should be shown.
    Present ly under this scenarion VAT Report RFUMSV00 shows only document X and tatal amout as 1300 user want for this document VAT report to show 1000(that is equesl to SO)
    And for other documents 100 and 200 .
    Please help
    Regards
    Raju

    Hi Raju,
    In your scenario customer paid Rs.1300 against first SO but SO value is Rs1000.
    Billing entry : Customer account ............1000
                         Sales account......................900
                         Tax account..........................100......asume
    Advance payments from customer : Rs.1300. ( Remember, It is not  possible to post any dcoument in FI without Open item except dwn payments)
    Second SO billing document : like above only amounts will change. I am sure u r VAT will credit only.
    Suma

  • Modify Report RFUMSV00

    Hi All
    i need help with this: Modify report RFUMSV00 to include customer detail, supplier details and withholding tax charged.

    Dear Metja,
    for WT data You should use the generic report rfidyywt.
    I hope this can help You.
    Mauri

  • The report RFUMSV00 dump

    Hi,
    The SAP report RFUMSV00 dump when i execute it with any selection criteria.
    Error analysis
        The following syntax error was found in the program
         CL_BADI_BASE==================CP :
        "Method "TYPE_IS_BADI" does not have parameters . . ."
    the source code:
    Any idea ?
    Best regard,
    Ouail.

    the error came from the method "FULL_IMPL_TABLE", i want to change his visibility to public but i can't !!!
    the class "CL_SEPA_MANDATES_ALV_GRID" doesn't exist in my system.
    any idea?

  • ALV Reporting - RFUMSV00

    I copied the standard SAP VAT report RFUMSV00 to add some fields to 2 of the reports.  When the reports appear on the screen, they are perfect, but when I print them, one of the reports is duplicating the lines that have data that I have added.  The lines that don't have the additional data work as they should.  The other report that I modified works perfectly.
    Has anyone run across something like this?

    May be you forget a REFRESH statment somewhere....

  • How to call a badi implementaion from report program

    Hi ABAP Guru,
    I have ZBADI_FALLBACK_DEF new badi created by me and there two implementation ZBADI_FALLBACK_IMP and ZBADI_FALLBACK_IMP1
    Now I am calling this badi from report program
    DATA:
       W_HANDLE TYPE REF TO ZBADI_FALLBACK_DEF.
    * GET BADI - for getting objects..................
    GET BADI W_HANDLE.
    * CALL BADI - for calling interface methods.
    CALL BADI W_HANDLE->ADD.
    This is fine,,,
    But I want to call only one implementaion ZBADI_FALLBACK_IMP.But here two implementaion is called.Please help....

    Hi Palash,
    Then you create filter BADI  and  use filter in implementation.
    While getting BADI reference use filter
    GET BADI W_HANDLE FILTERS
    Thanks & Regards,
    Arun

  • BADI for payroll report

    Hi,
      I found a BADI(pben_pay0008) for payroll driver(rpcalcu0) and implemented it from se19. It was asking me to enter the filter before i save it. So i gave molga as 10. Then I added a break-point statement in the method. Activated it by clicking a button at top as we do for our reports.
    But when I run the payrolldriver it does not stop at break-point.
    Is there any other place where I have to activate. Or is this some thing to do with filter. Package I gave the same as i use for reports.
    Your help will be highly appreciated.
    Thanks.

    If any one can please look into this..

  • BADI in BW Report

    Hello Experts,
    I need some advice from an expert or anyone with BADI experience. 
    I have to run a report that calculates an accrual value based on a future date. This requires me to use a virtual key figure and calculate it dynamically when the query is executed. The query needs to pull information from an InfoCube and DSO based on a specific Input value.
    The virtual key figure lies in the DSO but relies on information queried from the infocube for the calculation below:
    Given a calendar date, the program would query DSO and pull accrual information. Then, the program needs to take the date and query the Infocube (Headcount/actions) and pull all actions within the calendar year and their respective dates.
    Do I need to create a FM that queries both the Infocube and DSO or could I do this in the Compute Method itself?
    The part of the code I'm confused about is bringing in the Variable Input Parameters and utilizing this as a filter criteria when retrieving data from the infocube, then storing this information to be used in the KF calculation.
    Does anyone have BADI code that is similar they could provide? Or provide some insight on how to implement the above criteria?
    Points will be awarded for any relevant responses.  Thanks in Advance!
    -DC

    Hi,
      Refer
    https://forums.sdn.sap.com/click.jspa?searchID=12294601&messageID=3896250
    https://forums.sdn.sap.com/click.jspa?searchID=12294601&messageID=4477494
    Regards
    Kiran Sure

  • Call BADI form BW report

    Hi Experts,
    i want  to implementing some programming logic in the report.i have checked badi and founs it useful but i didn't get the the way
    as how to invoke the badi interface or function in the report.
    Points will be given to ear;y answer.
    ThANKS.
    HR

    Since you're on the web, I'm assuming your requirement is to call or initiate Oracle Forms from within the output from Oracle Reports.
    The problem then is how to call Oracle Forms from a PDF or HTML document. This you can do by inserting a hyperlink against a layout object in the output. This hyperlink can then call an HTML page containing an <APPLET> tag which describes the Forms Java client to the Browser with appropriate parameters.
    There are hyperlink properties that can be set against any layout object in Reports. To pass parameters in these properties use "&<columnName>" when creating the URL.

  • Any available BADI for Delta Report correction in SAP APO?

    Dear Experts,
    I hope you can help us on this topics:
    we implemented successufully ZXCIFUSERU09 in SAP APO in order to change the location of certain PO we are transferring from R3 to APO. This is mainly needed to avoid to create in APO all the plants we are using in R3 for performance/sizing reason.
    Now we are trying to apply the same logic in delta report too in order to be sure delta report will give us only the real exception and not the list of orders where via exit ZXCIFUSERU09  we changed the location.
    This is to avoid delta report is showing inconsistency that are not
    true .
    Dop you have any idea wich is the correct exit in APO we can use to do that? we tried with method RELEVANT_FOR_COMPARE_R3_PO but this called after the comparison with R3 data have been already done and so it cannot help us.
    Thank you in advance for your feedback,
    Barbara

    Hello DB49,
    thank you for your answer we have further investigated and we think the issue is in method
    RELEVANT_FOR_COMPARE_R3_PO
    where structure CT_APO_ORDER is empty . Do we need to add the data in this table as per your experience with other similar methods ro not?
    We tried to add the data and result is that the comparison is done between the 2 structures:
    CT_APO_ORDER  and CT_R3_ORDER but for the first schedule line only! it seems a bug as the report is comparing both the lines in CT_APO_ORDER with the same schedule line in CT_R3_ORDER...
    Do you think we need to add the data in CT_APO_ORDER or the data sould be already there and we only need to manipulate them?
    Based on your reply and our test that I would like to ask SAP to correct the method as it seems a bug.
    I also found Note 1363487 - BADI /SAPAPO/CIF_DELTA3 - add parameter CT_APO_ORDER that is confirm the structure CT_APO_ORDER should contain APO po data,....
    Thank you very much for your feedback!
    regards,
    Barbara

  • How to link a custom BADI with standard report.

    Hi All,
    I have a requirement to create a Custom BADI and to link it through the Standard Program. How to do this. As i cannot modify Standard Program.
    I have put some checks in custom BADI, which i want to be done before anyone runs standard program. I have a doubt of how to do this in between (before executing Standard Program) as i cannot use my Custom BADI in Standard Program. Then how to trigger the BADI and where. Is there any way to accomplish the same ?
    Thanks in advance.
    Regards,
    Neha

    Hi Neha,
    I am stuck to the same problem. if you have got the answer please share it.
    Nilesh

  • Popup List works bad in multirecord report

    This is an strage behaviour:
    If I use a popuplist in a report that can be modified, it shows correctly the Description I want to show, but when I select one choice, it returns Code instead of Description into the text box.
    My query is very simple:
    select dsmuni , idmuni
    from int_localidad
    order by 1
    Please, any ideas?
    Thanks in advance.
    David.

    Hi David,
    Ok, now I know what you mean... unfortunately that is the way it works! As you said, kind of useless really. What is the point of displaying the key value which usually is meaningless for the user when what you need to display is the description associated with that key value?
    That is why I rarely use tabular forms, and when I have to, I never use pop up LOVs with them. I try to use select lists instead (if possible) or simply add an "Edit" icon and use a normal form (in the same page or in a separate page) to edit the record.
    There are workarounds though, I don't remember any from the top of my head but you can search the forum for them...
    Good luck!
    Luis

  • WinXP Ok vs Win2000 Bad character mode report

    Hello,
    We have a character mode report designed and running in a Windows XP machine.
    To make it work was necessary to create a custom PRT file that contains the condensed and non condensed codes used by the report.
    After some tries it is running ok.
    But it will be used in a Windows 2000 Server machine. After installing reports and patches we made a copy of the custom prt file file used in the XP installation and tested.
    Unfortunately it doesn't work and the printed page is totally misformated. It seems that the control characters doesn't work...
    Trying to understand wy, we use the "print to file" option in xp machine. The control characters are generated ok: "".
    Doing the same thing when running in a Win2000 machine it generates wrong control characters.
    In addition, if we open the file generate by the Win2000 machine in the WinXP machine, the control characters seems to be ok.
    Does anyone know why does it occur and/or how to fix that?
    Thanks,
    Vinicius Pacheco

    OK people, the problem is solved!
    The problem was the Epson Dfx5000 printer driver! WinXp and Win2K drivers have a thing in the property page called Advanced Features which has to do with the way the data is spooled to the printer. If you turn it on (default), you get bitmap reports all the time, otherwise you get what you want correctly. This was found by my Supervisor.
    i hope this is useful.
    Thanks and regards to for all

  • RFUMSV00-VAT TAX REPORT

    Hi All,
    Can somebody provide the guide line / over all view/ importance  of the below selection parameters at the above report : RFUMSV00 / Transacion: YBE_FIXX_VAT
    Radio button of New posting
    Radio button of Old posting
    If the Tax Procedure assigned to the country and Tax codes created under it is changed to a different procedure and different tax codes created under the same will have any impact on the above selection procedure?
    Thanks alot in advance for your valuable guidance!
    Best Regards,
    K.Satish Babu

    Hi
    Suggest you to ask the help of the ABAPER & Debug the report  S_ALR_87012357
    Please also check field HWBAS(Tax Base Amount in Local Currency)  in Table BSET  (Tax Data Document Segment)
    Regards
    Praveen P C
    Edited by: Praveen Chirakkel on Apr 20, 2011 6:13 AM

Maybe you are looking for

  • MacBook Pro mid 2010, gray screen at start up, boot from dvd not working.

    Backstory: I was in the process of installing Windows 7 using boot camp, but I was a little bit low on HD space. So, I deleted the user account that had a ton of stuff, and did some other crap that messed up my hard drive. So my computer just won't b

  • Directory Structure & Packages

    Hi I'm using Tomcat 3.3 to deploy my app, on Win 2K. I have some jsp files in webapps\myApp\*.jsp , and some additional jsp files in a subfolder of this called webapps\myApp\admin\*.jsp. These are protected by additional security restrictions. I want

  • How to attach a java bean in forms6i

    Hi, I am new to oracle forms6i. i just want to ask on how to attach a java bean to forms6i.i did putting the full directory path to the implementation class but it has an error, bean not found. what should i do? Your help is highly appreciated.

  • 17" G4 1.5Ghz powerbook has optical port but it doesn't work

    I'm trying to get digital audio to work with my powerbook but no matter what I try it doesn't recognize the port. I have a live optical cable that I have connected to the optical port and the headphone port but neither work. If anyone has a tip or dr

  • NODE_KEY_EXISTS" raised in /SAPAPO/CONSCHK

    Hello, We are running transaction /SAPAPO/CONSCHK in our SCM system v. 5.0.  When I click the "Object Selection" button using any selection criteria, I get the following short dump: Short text     Exception condition "NODE_KEY_EXISTS" raised. Error a