ABAP po/gr report

Hi ,
Actually i am trying to get tax% ,when working on purchase order / goods receipt report.
I am using tables , konv and konp with fields knumv ,knumh
but i'm not sure that whether i'm fetchin the right tax %.
Any one can please help me.
Actually I've to calculate VAT or CST
according to KSCHL (condition type).
And my need is that , calculate tax% , invoice may or may not be generated
Thannks & Regards,
Jeet Chauhan

Hello Experts,
Need your help.
Actually i am trying to get tax% ,when working on purchase order / goods receipt report.
I am using tables , konv and konp with fields knumv ,knumh
but i'm not sure that whether i'm fetchin the right tax %.
Any one can please help me.
Actually I've to calculate VAT or CST
according to KSCHL (condition type).
And my need is that , calculate tax% , invoice may not be generated
Thannks & Regards,
Jeet Chauhan

Similar Messages

  • Is it a good idea to use ABAP objects for reports?

    Hello Experts,
    Is it a good idea to use ABAP objects instead of the traditional ABAP for coding reports?

    Hi,
    Go throught Document it will Give you eight Reasons why OOABAP Should be used.
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/37c5db90-0201-0010-3a9b-d0a5288f3c15
    Must go through
    Regards,
    Gurpreet

  • ABAP Statistics BI Reporting via CCMSBISETUP

    Hello together,
    I am using ABAP-Statistics BI-Reporting after running CCMSBISETUP on Solution Manager 7.0 EHP1(BI Content 7.04, PI Basis 7.01 Level 0004). Primarily I want to make analyses based on the Infoprovider 0CCMSATIM (time profile).
    During executing Queries of the InfoProvider 0CCMSATIM (time profile) I detected, that the datasets, which are collected from a satellite system, are incomplete. After a drilldown by the attribute "time range" i found out, that some time ranges are missing completely (e.g. 10-11a.m.), some contain incomplete data (e.g.9-10 a.m.)  and some are correct (e.g. 0-9 a.m.). TA ST03N on the Satellite system itself contains the correct data and confirmed that presumtion. It seems that the extractor is not working properly at some times. This  phenomenon occurs very irregularly. Apparently the error occurs most often when the satellite system is very busy and used to capacity.
    The Satellite Systems seem to be configured correct in CEN (RZ21).
    The datasets of the Myself-System (Solution Manger) in the InfoCube are correct too.
    Does anyone know this problem and how to solve it?
    Thank you.

    hi
    pls check this  "The data load process ran without error messages, however no data or only a small amount of data has arrived in the data targets" under listed problems
    [http://help.sap.com/erp2005_ehp_02_sp/helpdata/en/46/62b13c5d8c0ad2e10000000a11466f/content.htm|http://help.sap.com/erp2005_ehp_02_sp/helpdata/en/46/62b13c5d8c0ad2e10000000a11466f/content.htm]
    hope this helps
    Jansi

  • *New to ABAP: what is Report*

    Hi Gurus,
    i am new to ABAP.If any body can explain about what is report and how many types are there to create internal tables.
    points will be reward.
    Thanks,
    Balakrishna.

    hi naidu,
    When you are working in the SAP System, you may want to access information from the database. To do this, you use reports.
    In this documentation, report refers to the report program, and list refers to the output u2013 that is, the results of the report.
    Some reports display information; others allow you to perform analyses.
    A report must be started, or executed. In many cases, the SAP System automatically executes a report. Sometimes, however, you will want to execute a report yourself.
    In addition to report programs, the SAP System provides numerous reporting tools, each of which has its own set of procedures for executing report programs.
    This documentation describes report programs only. For an introduction to the SAP reporting tools, refer to the Reporting Made Easy guidebooks (Release 4.0B). You can find these guidebooks at: www.saplabs.com/rme
    In ABAP, there are a total of 7 types of reports. They are:
    Classical
    Interactive
    Logical Database
    ABAP query
    ALV Reports (ALV stands for ABAP List Viewer)
    Report Writer/Report Painter Views (There are different types of views also)
    [Edit section] Classical Reports
    These are the most simple reports. Programmers learn this one first. It is just an output of data using the Write statement inside a loop.
    Classical reports are normal reports. These reports are not having any sub reports. IT IS HAVING ONLY ONE SCREEN/LIST FOR OUTPUT.
    Events In Classical Reports.
    INTIALIZATION: This event triggers before selection screen display.
    AT-SELECTION-SCREEN: This event triggers after proccesing user input still selection screen is in active mode.
    START OF SELECTION: Start of selection screen triggers after proceesing selection screen.
    END-OF-SELECTION : It is for Logical Database Reporting.
    [Edit section] Interactive Reports
    As the name suggests, the user can Interact with the report. We can have a drill down into the report data. For example, Column one of the report displays the material numbers, and the user feels that he needs some more specific data about the vendor for that material, he can HIDE that data under those material numbers.
    And when the user clicks the material number, another report (actually sub report/secondary list) which displays the vendor details will be displayed.
    We can have a basic list (number starts from 0) and 20 secondary lists (1 to 21).
    Events associated with Interactive Reports are:
    AT LINE-SELECTION
    AT USER-COMMAND
    AT PF<key>
    TOP-OF-PAGE DURING LINE-SELECTION.
    HIDE statement holds the data to be displayed in the secondary list.
    sy-lisel : contains data of the selected line.
    sy-lsind : contains the level of report (from 0 to 21)
    Interactive Report Events:
    AT LINE-SELECTION : This Event triggers when we double click a line on the list, when the event is triggered a new sublist is going to be generated. Under this event what ever the statements that are been return will be displayed on newly generated sublist.
    AT PFn: For predefined function keys...
    AT USER-COMMAND : It provides user functions keys.
    TOP-OF-PAGE DURING LINE-SELECTION :top of page event for secondary list.
    [Edit section] Logical Database Reports
    Logical database is another tool for ABAP reports. Using LDB we can provide extra features for ABAP reports.
    While using LDB there is no need for us to declare Parameters.
    Selection-screen as they will be generated automatically.
    We have to use the statement NODES in ABAP report.
    If there are many tables the Performance will be slow as all the table data will be read from top node to bottom node .
    [Edit section] ABAP Query Reports
    ABAP query is another tool for ABAP. It provides efficency for ABAP reports. These reports are very accurate.
    Transaction Code : SQ01
       The advantage with ABAP QUERY is logic required for classic & interactive reports system design automatically 80%.
    For ABAP QUERY handle these
    SQ01 ; QUERY
    SQ02 : INFOSET OR FUNCTIONAL AREA
    SQ03: USER GROUP.
    [Edit section] Report Writer
    Key Concept :
    Super users and end users can use Report Painter/Report Writer tools to write their own reports.
    Giving them the ability to report on additional fields at their discretion shifts the report maintenance burden to them, saving SAP support groups time and effort normally spent creating and maintaining the reports.
    Instead of using ABAP code to write a report in FI and CO, many users build a Report Painter/ Report Writer library using transaction MC27.
    However, this workaround has some drawbacks. Little known transaction GRCT solves these problems in most cases, and eliminates the need to use transaction MC27.
    ABAP Report Types
    ABAP report types are those ones available in some report's attributes screen, i.e. :
    Executable program
    Function group (containing function modules)
    Include
    Interface pool
    Class pool
    Module pool
    Subroutine pool
    Also ALV means ABAP List Viewer. Most convenient way to use it is through reuse library (cf. transaction se83) available from release 4.6 of SAP R/3.
    ALV is available in two modes: list and grid. List mode is good old list processing with standard functionnalities, and grid mode is using a new OCX object displaying grids.
    hope its clear to you,
    Reward points if usefull,
    Thanks,
    Kalyan.

  • Change output of abap logical database report

    Hello
    I have an abap report that is using a logical database to display some fields.My problem is that i have to change it and display more fields for output ,how can i control this?
    Thank you

    Hi,
    We need to add the required (additional) fields to the internal table structure, fill the fields with relevant data and display them on the screen. How is the output fields related to using a LDB..?
    Can you explain me a little bit more on the below stmt?
    " I have an abap report that is using a logical database to display some fields."
    I am not clear in understanding the relation b/w 'using LDB' and 'fields in output'. I dont think the fields displayed in the output screen will be restricted while using a LDB. Pls correct me if i understood wrong.
    Thanks,
    teja.

  • Details to be given to abaper for a report of GR quantity vs PO quantity

    Dear Friends,
                       What are the details I should give to Abaper to make a report of GR quantity vs PO quantity...?
    Thanks in advance
    Eliaz

    Hello  Eliazbasha Syed ,
    Please note that PO qnty is available in EKPO-MENGE. Input this in purchasing doc., of EKBE to fetch EKBE-MENGE(i.e. GR Quantity).
    Regards
    Mahesh

  • ABAP Query to Report

    Hi All,
    There is a ABAP Query in production. I need to replicate the same as a report. How do I do it ? I am not aware of abap objects . Please help me .
    Thanks,
    Amit

    Hello Amit,
    The best option is go to SQ01 in production. In this Query->Display report name. Pick up the name and goto SE38. enter the name and open the program. Then goto menu UTILITIES->More Utilities->Download. This will download the program. Go to your development system and follow the second step but now do an upload into a new Z program. This will generate a report fro the same query which you can take to production using transport request.

  • CRM ABAP vs BW Reporting

    Hi
    Please advise.  Is it recommended to do all SAP CRM reporting out of BW or is it preferable to write ABAPs in CRM?  Also would this be the case for both transactional and analytical reports.
    Thanks

    hi
    BW is especially made for handling lots if data. it would be better to use if for transactional reporting.
    reports in CRM will be better for handling objects with less data, that would not be influencing sap crm performance.
    regards
    radek

  • Abap and crystal reports

    Hi,
    I am working as a ABAP developer and i want to know is there is realtionship of Crystal Repors and SAP and ABAP?

    hi
    just chk out these threads
    How to integrate Crystal Report and SAP Business One?
    Re: Crystal Reports and SAP BW Connectivity for OLAP
    hope this helps
    regards
    Aakash Banga

  • ABAP: Developed new Report for Summarized JIT (Just In Time) calls

    Hi to all,
    Can anybody please tell me about the following:
    ·     Developed new Report for Summarized JIT (Just In Time) calls: This report is for Delco Singapore needs all Summarized JIT calls created between selected dates to be closed. If JIT call quantity is 0 and GR quantity is also 0, then GR flag for JIT call to be checked and JIT call will not be shown open. If the JIT call quantity is greater than zero and GR for JIT call quantity is zero then JIT call quantity made as zero and GR flag for JIT Call to be checked. Once it is checked the JIT call will not be shown in Open.
    Thanks in advance.
    Regards
    Monalisa

    Ok, I was able to figure out the functions that were confusing me. For my own record and for those that do not know, I will list how to create the objects necessary to add a new report to a menu.
    1-Write JSP (should be written just how Oracle writes theirs)
    2-Creat function for the new JSP page as System Administrator responsibility
    3-Use Sys Admin to add the function to a menu somewhere
    4-Using AK Developer responsibility, create an attribute with the label of the attribute being the name of your function you created. Oracle's convention is the name of the attribute has FS in it.
    5-Using AK Developer, lookup the ASF_FUNC_SEC_REG region
    6-Drill down into that regions attributes
    7-Add a your newly created attribute to this region
    You would do all these steps for your advanced search page as well, so that in your main jsp, you can call asfPage.setAdvancedSearchPage() with the attribute name of your advanced page.
    What I Still do not know is:
    (1) My main page keeps coming up saying that there is no default query defined for it. How do you create a default query for a report?
    (2) How to get the personalization to work.
    Can anyone help?
    Thanks!

  • Hr abap head counting report

    need help in head counting report..
    how to calculate the head counting report.
    what is the purpose of the head count report.

    based on requirement u can create
    generally we can create by using PNP/PNCE logical database
    if u want example to create report search in SDN u will get lot of examples
    Gopi

  • Urgent : SD-ABAP Inspection Certificate Report

    Hi Friends,
                     I am a begiiner in SAP, trying to make Inspection Certificate Report, but not able to link table QALS with VBAP. Plz send me any reference report.
    Waiting for your valuable response.
    Thanks & Regards,
    Gulrez Alam
    Edited by: gulrez alam on Jan 23, 2008 8:32 AM

    Hi Gulrez,
    Inspection reports are linked to deliveries, transfer orders or material documents. There is no link between orders (VBAP) and inspecion reports.
    Regards,
    John.

  • Interface between ABAP and Excel-report

    Hi anyone!
    I need to implement a BAdI (CRM_MKTTG_SEG_MEM_EX) for displaying an aggregated BW field in the CRM Segment Builder. However my programmer knows little about the interface between ABAP an Excel. He therefore struggles with the programming. Have anyone of you any suggestions for how he can call a field in a query. Has anyone used this BAdI for the same purpose?
    Thanks, Camilla

    Hello Camilla,
    i think you should ask your question in a generic form in the BW forum. Ask them for access to a Query via RFC.
    Regards
    Gregor

  • ABAP - Drill Down Report

    Hello Sir,
    Good Evening to all. I want to insert Sorting and Filtering options on Drill down report.  means----->
    we need to have the filteration and sorting options in the 2nd screen, so that we can generate only what we need.
    regards,
    Padmini.

    Hello,
    Yes, it's possible, using the linktoaction element please see this: [/people/david.halitsky/blog/2006/09/22/learning-what-you-dont-need-is-as-important-as-learning-what-you-do-parts-10b-c-of-event-driven-tutorial-on-wdrtestuielements] and [https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/db22242d-0701-0010-28a2-aeaa1fefd706].
    Regards.

  • ABAP- Inventory Projection Report

    Is there any information about Inventory Projection Reports?
    Please advise.
    Thanks,
    Ol Pom.

    hi,
    unable to understant your requirement.
    but for fetching, you can get every months all 5 weeks, their satart date and end date
    FM:GET_WEEK_INFO_BASED_ON_DATE

Maybe you are looking for

  • How do I stop firefox from automatically placing the cursor in a textbox?

    How do I stop Firefox from automatically placing the cursor in a text box? On certain pages such as Google.com the cursor will be moved to the search text box automatically after a couple seconds from the page loading. So I'll be typing in the addres

  • Transfer Data: ATT iPhone 3GS to Verizon iPhone 4

    Just purchased a Verizon iPhone 4 and would like to transfer the data from our previous ATT iPhone 3GS. I've done quite a bit of searching and have read the support article HT2109, but cannot seem to find an option to use the original phone's backup

  • Disappearing MC from timeline

    Hi, I have created two layers: mask layer and masked layer. Mask layer consist of couple of keyframes with shape tweenning activated. Masked layer contains only one MC. I noticed that when frame containing any keyframe in the mask is played, MC stopp

  • Maxl on error write to does not create error file

    The following MaxL statement functions except the creation of the dimbuild.err file. I have tried numerous combinations of syntax, server, folders without success. I am running this from the MaxL editor on the eas web server. import database XYAFIN.F

  • DRQ : Option to spilt the Batch in Batch Management

    Hi Development Experts, At present I am working on a SBO 8.8 PL 04 Ramp Up Project, where I come across the requirement of separating few quantities from original Batch No. to new Batch No. I beleive this is a offerable and most in demad (I read seve