Getting quartely sales data

Hi I've the following data . and i confused to get the quartely data from the below table
Could you please help out with the skelton query to get the quartely data .
Insert into ORDER_ITEMS
   (ITEM_ID, ITEM_DESC, PRICE, ORDER_ID, QUANTITY, DISCOUNT, DATE_ENTERED)
Values
   (13413, 'Air Regulators', 2450, 144, 2,
    5.09, TO_DATE('04/01/2008 00:00:00', 'MM/DD/YYYY HH24:MI:SS'));
Insert into ORDER_ITEMS
   (ITEM_ID, ITEM_DESC, PRICE, ORDER_ID, QUANTITY, DISCOUNT, DATE_ENTERED)
Values
   (13414, 'Air Regulators', 1165, 144, 3,
    10.52, TO_DATE('04/01/2008 00:00:00', 'MM/DD/YYYY HH24:MI:SS'));
Insert into ORDER_ITEMS
   (ITEM_ID, ITEM_DESC, PRICE, ORDER_ID, QUANTITY, DISCOUNT, DATE_ENTERED)
Values
   (13630, 'Air Regulators', 3260, 144, 4,
    20.53, TO_DATE('04/01/2008 00:00:00', 'MM/DD/YYYY HH24:MI:SS'));
Insert into ORDER_ITEMS
   (ITEM_ID, ITEM_DESC, PRICE, ORDER_ID, QUANTITY, DISCOUNT, DATE_ENTERED)
Values
   (13890, 'Air Regulators', 270, 145, 1,
    10.31, TO_DATE('06/01/2008 00:00:00', 'MM/DD/YYYY HH24:MI:SS'));
Insert into ORDER_ITEMS
   (ITEM_ID, ITEM_DESC, PRICE, ORDER_ID, QUANTITY, DISCOUNT, DATE_ENTERED)
Values
   (19286, 'Small Equipments', 688, 145, 2,
    3.99, TO_DATE('06/01/2008 00:00:00', 'MM/DD/YYYY HH24:MI:SS'));
Insert into ORDER_ITEMS
   (ITEM_ID, ITEM_DESC, PRICE, ORDER_ID, QUANTITY, DISCOUNT, DATE_ENTERED)
Values
   (13413, 'Air Regulators', 2450, 145, 3,
    20.5, TO_DATE('06/01/2008 00:00:00', 'MM/DD/YYYY HH24:MI:SS'));
Insert into ORDER_ITEMS
   (ITEM_ID, ITEM_DESC, PRICE, ORDER_ID, QUANTITY, DISCOUNT, DATE_ENTERED)
Values
   (23314, 'Small Equipments', 1390, 145, 4,
    10.5, TO_DATE('06/01/2008 00:00:00', 'MM/DD/YYYY HH24:MI:SS'));
Insert into ORDER_ITEMS
   (ITEM_ID, ITEM_DESC, PRICE, ORDER_ID, QUANTITY, DISCOUNT, DATE_ENTERED)
Values
   (23541, 'Small Equipments', 1105, 146, 2,
    10.5, TO_DATE('06/09/2008 00:00:00', 'MM/DD/YYYY HH24:MI:SS'));
Insert into ORDER_ITEMS
   (ITEM_ID, ITEM_DESC, PRICE, ORDER_ID, QUANTITY, DISCOUNT, DATE_ENTERED)
Values
   (23743, 'Small Equipments', 3235, 146, 1,
    10.5, TO_DATE('06/09/2008 00:00:00', 'MM/DD/YYYY HH24:MI:SS'));
COMMIT;Thank you for your suggestions
Edited by: Smile on Jan 7, 2013 10:55 AM

Hi,
If you're using the standard quarters (that is, quarters begin on January 1, April 1, July 1 and October 1), then you can use the TRUNC function, like this:
SELECT       TO_CHAR ( TRUNC (date_entered, 'Q')
              , 'YYYY "Q"Q'
            )               AS quarter
,       COUNT (DISTINCT item_id)     AS item_cnt
,       SUM (price * quantity)     AS total_sales
FROM       order_items
GROUP BY  TRUNC (date_entered, 'Q')
ORDER BY  TRUNC (date_entered, 'Q')
;Even if your quarters are not the standard ones (e.g., if new quarters begin on the 15th of February, May, August and November), you still might want to use TRUNC.
I hope this answers your question.
If not, post a little sample data (CREATE TABLE and INSERT statements, relevant columns only) for all tables involved, and also post the results you want from that data. The INSERT statements you posted are good, but it looks like all the data is from the same quarter. Perhaps some data from different quarters, even different years, would be a better test.
Explain, using specific examples, how you get the results you post from the given data.
Always say which version of Oracle you're using (e.g., 11.2.0.2.0).
See the forum FAQ {message:id=9360002}

Similar Messages

  • POSDM ERROR....Sales data not uploading

    Hi
    I'm doing ISR,POS & POSDM integration as an XI Consultant.(using standard XI contents)
    While uploading EOD sales data in posdm...
    I got the following error...
    Exception caught with cause com.sap.aii.af.ra.ms.api.RecoverableException: error while processing message to remote system:com.sap.aii.af.rfc.core.client.RfcClientException: JCO.Exception while calling /POSDW/CREATE_TRANSACTIONS_EXT in remote system (RfcClient[POSDM_Receiver]):com.sap.mw.jco.JCO$Exception: (104) RFC_ERROR_SYSTEM_FAILURE: InfoObject 0RPA_MEAN does not exist in version A: com.sap.aii.af.rfc.afcommunication.RfcAFWException: error while processing message to remote system:com.sap.aii.af.rfc.core.client.RfcClientException: JCO.Exception while calling /POSDW/CREATE_TRANSACTIONS_EXT in remote system (RfcClient[
    I asked my BI team to install ORPA_MEAN.
    but all objects not getting activated.
    But now my file is getting uploaded in POSDM but Sales data and totals data is not showing.
    Is there any other settings or activation needed for getting the sales data in Posdm ?

    Hi,
    Have you checked the messages in log /POSDW/MON0 in the BI system? If the data import is going thru from XI to PoSDM, then data needs to pass the tasks & rules validation. Till it passes those checks, it will not show up in the sales records.
    AJ

  • How to get the sales value of the last month in the quarter

    Hi,
    We have a requirement to get the "Sales" value against a quarter. We have 2 tables "Time" and "Sales". We want to display the Sales value against each quarter.
    But this should happen as follows.
    Consider quarter Q1 it should display the value of 3rd month, Q2 should display value for 6th month and so on..
    If in any particular Quarter we dont have a value for last month then it should display the value for 2nd month, if 2nd month value is also not present then it should display 1st month sales value.
    We are using excel as the database.
    Please let us know if anybody has a resolution to this.
    Regards,
    Apoorv Chitre

    hi,make an other column which will be the flag for the last months you want to be displayed...
    so ,in reports,you pass it as hidden column(by filter only the ones which have the appropriate flag),and then voila...
    i hope i helped
    http://greekoraclebi.blogspot.com/
    ///////////////////////////////////////

  • When i enter date range n vkorg iam getting all sales orginzation

    HI All,
    I have enter which you have given for me but its not working
    eg..
    it isfunction module
    import parameters
    all are options
    p_stdate=01.04.2005
    p_endate=30.04.2005
    p_kunnr= i will not enter any thing
    p_vkorg= m600
    so i have entered only date ranges and vkorg
    it shouled display only m600 sales orginzations but iam getting all sales orginzations
    the code i have retun----
    FUNCTION ZBAPI_CUSTOMER_DETAILS.
    ""Local interface:
    *" IMPORTING
    *" VALUE(P_STDATE) TYPE KNA1-ERDAT OPTIONAL
    *" VALUE(P_EDDATE) TYPE KNA1-ERDAT OPTIONAL
    *" VALUE(P_KUNNR) TYPE KNA1-KUNNR OPTIONAL
    *" VALUE(P_VKORG) TYPE KNVV-VKORG OPTIONAL
    *" VALUE(P_NAME1) TYPE KNA1-NAME1 OPTIONAL
    *" EXPORTING
    *" VALUE(RETURN) TYPE BAPIRETURN
    *" TABLES
    *" IT_CUSTOMER STRUCTURE ZBAPI_CUSTST
    ranges: lr_erdat for kna1-erdat,
    lr_kunnr for kna1-kunnr,
    lr_vkorg for knvV-vkorg,
    lr_NAME1 for kna1-NAME1.
    if P_kunnr IS not initial.
    lr_kunnr-sign = 'I'.
    lr_kunnr-option = 'EQ'.
    lr_kunnr-low = p_kunnr.
    append lr_kunnr.
    endif.
    if P_vkorg IS not initial.
    lr_vkorg-sign = 'I'.
    lr_vkorg-option = 'EQ'.
    lr_vkorg-low = p_vkorg.
    append lr_vkorg.
    endif.
    if P_name1 IS not initial.
    lr_name1-sign = 'I'.
    lr_name1-option = 'EQ'.
    lr_name1-low = p_name1.
    append lr_name1.
    endif.
    if not p_stdate is initial and not p_eddate is initial.
    lr_erdat-sign = 'I'.
    lr_erdat-option = 'BT'.
    lr_erdat-low = p_stdate.
    lr_erdat-high = p_eddate.
    append lr_erdat.
    endif.
    *select the General Data in Customer Master from kna1
    select kunnr land1 name1 name2 ort01 pstlz regio sortl stras telf1 telfx adrnr mcod1 mcod2 mcod3
    anred erdat ernam konzs ktokd name3 name4 spras telbx telf2 teltx fityp stcdt lzone
    into corresponding fields of table it_KNA1 from kna1
    where kunnr IN lr_kunnr AND
    name1 IN lr_name1 AND
    erdat IN lr_erdat .
    Move all the data to it_customer
    if sy-subrc = 0.
    loop at it_kna1.
    move-corresponding it_kna1 TO it_customer.
    append it_customer.
    clear it_customer.
    endloop.
    endif.
    *select Customer Master Partner Functions from knvp.
    if not it_customer[] is initial.
    select kunnr vkorg parvw
    into corresponding fields of table it_knvp
    from knvp FOR ALL ENTRIES IN it_customer
    where kunnr = it_customer-kunnr and
    vkorg in lr_vkorg .
    endif.
    Read Customer Master Partner Functions from it_knvp move it to it_customer
    loop at it_customer.
    read table it_knvp with key kunnr = it_customer-kunnr binary search.
    if sy-subrc = 0.
    it_customer-vkorg = it_knvp-vkorg.
    it_customer-parvw = it_knvp-parvw.
    modify it_customer.
    clear it_customer.
    endif.
    clear it_knvp.
    endloop.
    pls can you help in this code
    thanks
    mars

    HI All,
    I have enter which you have given for me but its not working
    eg..
    it isfunction module
    import parameters
    all are options
    p_stdate=01.04.2005
    p_endate=30.04.2005
    p_kunnr= i will not enter any thing
    p_vkorg= m600
    so i have entered only date ranges and vkorg
    it shouled display only m600 sales orginzations but iam getting all sales orginzations
    the code i have retun----
    FUNCTION ZBAPI_CUSTOMER_DETAILS.
    ""Local interface:
    *" IMPORTING
    *" VALUE(P_STDATE) TYPE KNA1-ERDAT OPTIONAL
    *" VALUE(P_EDDATE) TYPE KNA1-ERDAT OPTIONAL
    *" VALUE(P_KUNNR) TYPE KNA1-KUNNR OPTIONAL
    *" VALUE(P_VKORG) TYPE KNVV-VKORG OPTIONAL
    *" VALUE(P_NAME1) TYPE KNA1-NAME1 OPTIONAL
    *" EXPORTING
    *" VALUE(RETURN) TYPE BAPIRETURN
    *" TABLES
    *" IT_CUSTOMER STRUCTURE ZBAPI_CUSTST
    ranges: lr_erdat for kna1-erdat,
    lr_kunnr for kna1-kunnr,
    lr_vkorg for knvV-vkorg,
    lr_NAME1 for kna1-NAME1.
    if P_kunnr IS not initial.
    lr_kunnr-sign = 'I'.
    lr_kunnr-option = 'EQ'.
    lr_kunnr-low = p_kunnr.
    append lr_kunnr.
    endif.
    if P_vkorg IS not initial.
    lr_vkorg-sign = 'I'.
    lr_vkorg-option = 'EQ'.
    lr_vkorg-low = p_vkorg.
    append lr_vkorg.
    endif.
    if P_name1 IS not initial.
    lr_name1-sign = 'I'.
    lr_name1-option = 'EQ'.
    lr_name1-low = p_name1.
    append lr_name1.
    endif.
    if not p_stdate is initial and not p_eddate is initial.
    lr_erdat-sign = 'I'.
    lr_erdat-option = 'BT'.
    lr_erdat-low = p_stdate.
    lr_erdat-high = p_eddate.
    append lr_erdat.
    endif.
    *select the General Data in Customer Master from kna1
    select kunnr land1 name1 name2 ort01 pstlz regio sortl stras telf1 telfx adrnr mcod1 mcod2 mcod3
    anred erdat ernam konzs ktokd name3 name4 spras telbx telf2 teltx fityp stcdt lzone
    into corresponding fields of table it_KNA1 from kna1
    where kunnr IN lr_kunnr AND
    name1 IN lr_name1 AND
    erdat IN lr_erdat .
    Move all the data to it_customer
    if sy-subrc = 0.
    loop at it_kna1.
    move-corresponding it_kna1 TO it_customer.
    append it_customer.
    clear it_customer.
    endloop.
    endif.
    *select Customer Master Partner Functions from knvp.
    if not it_customer[] is initial.
    select kunnr vkorg parvw
    into corresponding fields of table it_knvp
    from knvp FOR ALL ENTRIES IN it_customer
    where kunnr = it_customer-kunnr and
    vkorg in lr_vkorg .
    endif.
    Read Customer Master Partner Functions from it_knvp move it to it_customer
    loop at it_customer.
    read table it_knvp with key kunnr = it_customer-kunnr binary search.
    if sy-subrc = 0.
    it_customer-vkorg = it_knvp-vkorg.
    it_customer-parvw = it_knvp-parvw.
    modify it_customer.
    clear it_customer.
    endif.
    clear it_knvp.
    endloop.
    pls can you help in this code
    thanks
    mars

  • Get Sales data based on MSEG entries

    Hi,
    I have retrieved some entries from mseg table by joining with MKPF based on budat. Now i would like to get the purchase related data based on the details in MSEG.
    Could you please help joinig mseg entries with EKKO , EKPO ,LIKP, LIPS or VBEP.
    Thanks in advance

    Hi,
    MSEG will have the details of PO and Line item. Based on these details, we can get the relevant Purchase Requisition from the table EKPO by passing the PO & Line item.
    If the PR is creted with reference to Sale Order, then the details of the PR will be available in table VBEP. So that you can pass the PR number in VBEP and get the Sales Order Number. With Sales Order Number You can link LIKP & LIPS
    Regards
    Ramakrishna

  • Who to get Actual Shipment Date for the Sales Order

    Dear All,
         How to Get Actual Shipment Date for the given sales order.
    REgards
    sudheer

    Hai,
    If you want the actual shipment date of an order call the function module RV_ORDER_FLOW_INFORMATION and pass the order number as vbeln in the structure COMWA.select the values from the return table which corresponds to 'J' type which are delivery and get thedate.
    THis will give the actual delivery date (if created).
    Oher way is to look for vbeln in table LIPS using VGBEL = order number as the selection criteria.
    Cheers,
    Sandeep

  • Sales data not getting populated for Material master by LSMW.

    Hi,
      When I am trying to create material manual for sales view material is getting created and the table MVKE(Sales Data for Material) is getting populated with the sales data. But when i Am trying with LSMW METHOD
    Object          :     0020  
    Method          :     0000               
    Program Name    :     RMDATIND           
    Program Type    :     D(Direct Input)
        materials are geeting created but the sales data is not getting populated in the table MVKE(Sales Data for Material) and LSMW program also not showing any error.
    Can any one tell me what is teh problem here.
    Thanks,
    Naren.

    Hi,
    along with VKORG, VTWEG in <b>BMM00</b> are you mapping the below one's also.
    BMM00-XEIV1 = 'X'. "sales 1 view
    BMM00-XEIV2 = 'X'. "sales 2 view
    this will enable the sales(1/2) view.
    Check it once..
    Regards
    vijay

  • Quarter-to-date calculation

    Basic Database.
    I know how to get YTD (year-to-date):
    FIX([pMonth]) /* For Example "May" */
    FIX(Budget)
    YTD_Sales =@SUMRANGE(Sales->Actual,@CURRMBRRANGE("Year", LEV, 0, , 0)); /* Year Range = Jan:May */
    ENDFIX
    ENDFIX
    How can I get QTD (quarter-to-date) ?
    QTD_Sales = .......... ; /* Quater Range = Apr:May */ ?????

    Mike,
    Have tried looking into using Dynamic Time Series?
    If you open the outline in EAS and choose /Outline/Dynamic time series you can choose the help to get info on it.
    It requires you to rename the "year" dimension (we chose "years"), which was a little hassle, but then you get the functionality you are looking for on all accounts.
    I went to the information map and Admin guide and wasn't able to find anything worth while on dynamic time series, but going through the choosing that "help" button takes you where you need to go.
    Hope this helps.
    Steve

  • How to get YTD sale for Last year In OBIEE 11g

    Hi All,
    I have a fact table for Sale_Amt with doc_date wise details. It is connected to Simple time_dimension table based on Date_ID(Number) field. The time_DIm Hierarchy is set on Year, Quarter, Month fields of the time_dimension table.
    One of my reporting requirement is to show show YTD sales and Last Years YTD sales.
    e.g, If user select 23 Jul 2013 as the date parameter, I need to show 1-Apr-2013 till 23 Jul 2013 Sales in YTD column and 1-Apr-2012 till 23 Jul 2012 Sales in Year_Ago_YTD column. I am able to get YTD sales but unable to derive at Year_Ago_YTD sales figures.
    Finacial Year Start from 1st April till 31 March.
    Any Help on this will be appriciated.
    Thanks.
    Narendra Shetty.

    Narendra,
        You can make use of the below two functions to get the year ago dates. You can replace current_date with a presentation variable that stores the date parameter that user selected.
    TimestampAdd(SQL_TSI_YEAR,-1,TIMESTAMPADD(SQL_TSI_MONTH, 3,TIMESTAMPADD( SQL_TSI_DAY , EXTRACT( DAY_OF_YEAR FROM CURRENT_DATE) * -(1) + 1, CURRENT_DATE))) - It will display previous year's first day of fiscal year (since I passed current_date, it gives you 1st april 2012)
    and
    TimestampAdd(SQL_TSI_YEAR,-1,current_date) - Same Day Last year
    Pls mark correct/helpful.

  • Issue when uploading Sales data from DSO to Cube.

    Dear All,
    I have an issue when I am uploading Sales data from DSO to Cube.  I am using BI 7.0 and I have uploaded all sales document level data to my DSO.  Then I use a transformation rule to calculate the Sales Value when I am doing DTP to cube.  Cube has customer wise aggregation data.
    In DSO I have NetPrice(KF) and Delivered_QTY(KF).  I do a simple multiplication routine in the transformation from DSO to Cube.
    RESULT =   SOURCE_FIELDS-NET_PRICE * SOURCE_FIELDS-DLV_QTY .
    At the moment I use Active Table(With out Archive) on the DSO to get the data since this is my first load.
    Issue is that the figure (Sales Value) in the cube is incorrect. I am getting a very large values which is impossible.
    Can someone please help me.
    Shanka

    Hi,
    are you sure that cube has customer wise aggregated data..since it will always aggregate the values of the key figures for the same set of characters...
    did you checked the values for the key figures as well and if even they are inflated or is the problem with this key figure only.
    During the data load the records may aggregates first for the same values of characters and then multiplication will be happening....if that is the case then you may have to multiply the values before storing it in the data package and then let it aggregate....can be achived through start routine...
    but first verify if other key figures are also having the same issue.
    Thanks
    Ajeet

  • Report to fetch the text information from customer master sales data

    Dear Experts,
    We have come up with a requirement where the business want a report/list of the customers for whom a particular text is not maintained in customer master -sales data.
    There are many Z text id are configured and are maintained in Sales data- extras- text. In addition, business also need some key fields from the customer master such as name, city, delv plant, payment terms, sales off, sales grp etc.
    I could not get any standard table where the text is maintained with the customer numbers. Table STXH can give the customer numbers for a particular text id type but what is maintained against the given text id is not fetched from the table.
    So we need the valuable inputs to realize the requirement.
    As an proposal, we are aiming to develop custom Z report with the FM READ_TEXT to get the text information with the customer no ( object type KNVV and text id ). But for the additional information, what should be the actual logic for fetching the data. say if this FM is used, what should be the sequence of the logic and ideal selection parameters.
    In addition, we aim to use BAPI BAPI_CUSTOMER_GETDETAIL2 to fetch some of the customer ifnormation but many fields are not found in this . can we use some other bapi which can provide the complete general/sales data of customer ( delv plant, sales off, sales grp, custo grp, incoterms, payment terms etc)
    Kindly suggest accordingly.
    Many thanks in advance.

    Hi Dharmendra Kumar,
    I guess the best would be to check in ABAP General forum on the READ_TEXT sequence/ logic etc..
    For customer details, the available BAPIs are:
    BAPI_CUSTOMER_GETDETAIL
    BAPI_CUSTOMER_GETDETAIL1
    BAPI_CUSTOMER_GETDETAIL2
    However, you might have to check classes in SE24 to find any existing classes and its method yo give you all the information of a customer. Also check this thread: [BAPI for customer details like in IDoc DEBMAS;
    Regards,
    Raghu.

  • BAPI or FM to get open sales orders to material like TC VA05N

    Hi,
    i'm searching for a bapi or fm to get a list with all open sales orders to a material like the tc va05n this do. Maybe some of you know such a bapi or fm.
    I tried the fm SD_SELECT_SALES_DOCUMENTS but i don't get the result i hoped.
    Would be happy if someone could help me.

    Hello Alexander,
    To get Open Sales order has VA05N use the Function Module
    RV_SALES_DOCUMENT_VIEW_3
    We need to pass value to the Importing parameters VBCOM
    To get the open sales order
    VBCOM-VKORG = sales organisation
    VBCOM-ZUART  = 'A'
    VBCOM-TRVOG = '0'
    VBCOM-STAT_DAZU = 'X'
    VBCOM-NAME_DAZU = 'X'
    VBCOM-KOPF_DAZU = 'X'
    VBCOM-VBOFF = 'X'
    VBCOM-AUDAT = Begin Date
    VBCOM-AUDAT_BIS = end date
    By passing this variable you will get the all open sales for given sales organisation and given date.

  • Acquiring sales data from SAP ERP

    (While evaluating Lumira, after watching promoclips, reading papers and working with the free trial some questions are still unanswered. I kindly ask you for help… Supporting a clear structure, I decided to open a separate thread for each question.)
    How’s about connecting Lumira to a SQL-based SAP Instance to analyze sales data? Does SAP provide a “Business Content” similar to SAP-BW or do I have to join all the affected tables manually?
    How would the scenario above be if I connect Lumira to a HANA-bases SAP Instance?
    Any help would be appreciated, thank you in advance!

    Hi,
    there are a couple of similar threads already, which might give you suggestions:
    Retrieve Data from ERP Infosets
    SAP Lumira: Getting Familiar Freehand SQL Against SAP ERP - then to iPad
    both those links discuss using 'freehand sql' drivers in Lumira to connect to ERP Infosets . (a kind of ECC query)
    a similar approach, going via Business Objects BI 4,  would be to have a Universe ontop of Infoset, and Lumira connects to BI4 to consume the Infoset Universe.
    In both cases, the prerequisite is the definition of said 'infoset' - the creation of which would be handled by content creators within ECC environment, not likely the Lumira user.
    Regards,
    H

  • Migrate Closed Sales Data from one SAP system to Other

    Hi,
    We have a requirement to migrate Closed Sales Order data from one SAP System to the New SAP system.
    Please share your thoughts on the considerations / DOs and Donts for such cases.
    Appreciate your response.
    Kind Regards,
    Tanuji

    Hi,
    If you want to migrate closed SOs..then first consider why? and from what date i.e how long back?
    Following are the considerations:
    1) You can't get the creation date same as your previous system dates--this might lead to incorrect reporting. So you'll have to check if its really worth?
    2) You might want to have a reference no somewhere in the new transactions from the previous system.
    3) If you want to migrate the deliveries, invoices then you've to consider also GL migration as well as payments.
    Regards,
    Raghu.

  • How to obtain the pricing condition data from sales data?

    Hi all!  I have googled many times and read through many sites to understand how I can obtain the pricing condition data that's specific to a specific sales line.  However, the answer I got usually are as follow:
    Tables to be used:
    KONV
    KONH
    KONP
    VBRK
    VBRP
    And the thing is to obtain KNUMH data from VBRP and link it to KONP which will get the exact pricing condition data that's relating to the specific transaction.
    However, my challenge is that the field KNUMH in either VBRP or VBAP, it is empty.  Therefore, how can I have a report with my sales data as the primary file, and appending the pricing condition data so that I can analyze the different kinds of pricing condition types that the company is using.  The only field that I can use is KNUMV which does not give me the pricing condition that was used in this particular invoice line.
    I also know that there is the A*** tables, which contains the KNUMH file.  However, this file is split into many different tables.  Thus, is there a more efficient method to download all the data?  In any case, I still do not know how to link to my sales data.
    FYI, I only have SE16N and VK13's access.
    I hope that someone can help me, please!
    Thank you!

    Hi,
    Data flow :
    BW :
    When u right click on the Master Data Info object -> Select Data flow.Then  it will  show u the details like DS name,IS (If 3.x)
    Once u know the DS then you need to find out the source tables for the R/3 DS.This information will get using ROOSOURCE or ROOSFIELD tables  or help.sap.com.
    My suggestion better to search in Help site for DS source tables.
    DS Tables :
    The following link will provide you the source tables for some of the LO DS.
    https://wiki.sdn.sap.com/wiki/display/BI/BWSDMMFIDATASOURCES
    Regards
    Ram.
    Edited by: Ramakanth Deepak Gandepalli on Dec 22, 2009 9:29 AM

Maybe you are looking for

  • How can i download an app that i bought from the app store but is no longer avalaible?

    hi, i recently changed my iphon from 4 to 5 and when i try to re-install the apps i found that tubebox is no longer available on the app store. how can i get the app now?

  • Using Multiple AD domains with ACS

    Hi, Is it possible to use multiple domains for authentication with ACS? I need to use AAA to authenticate remote users into a centralised location but the users will be from different domains and I was hoping to use a single applicance to cater for a

  • Load balncing in distributed environment

    hello, sir myself is Madhu i'm BE student studying in final year.... i'm doing project on load balancing in distrimuted environment..by using socket programming concept..working scenario is as follows: 1.server will send the broadcast message to clie

  • IF ELSEIF Problem

    Hi,   I am trying to do some math in the first IF statement:  divide total by 2.  When I look at my report the I am seeing the ({@Total}/2).  Here is my formula: If (CurrentDate> {@21Days}) OR (CurrentDate >{@LastMonth})THEN "NOTICE OF TERMINATION OF

  • Plez help me.

    hi, All         please answer my questions. 1)after uncar support pack we get .ATT & .PAT  what data this two files contain. 2) In a table which field is common for client 000.001,066 3)why do we apply patch for 000 why not from other clients 4) what