GR and Invoice Date for a PO - which cube?

I have a KPI - average days to input manufacturing invoice into the system - before SAP implementation they used to enter manually .
So I want to know from which cube I can get the following details : - for a particular PO what is the GR date and the invoice date.
Thanks

I checked the t code : SBIW and the table and I see these values:
MM     2     0     Other Transaction/Vendor
MM     2     1     Purchase Order/Vendor
MM     2     2     Goods Receipt/Vendor
MM     2     3     Invoice/Vendor
MM     2     4     Scheduling Agreement/Vendor
MM     2     5     Returns Order/Vendor
MM     2     6     Returns/Vendor
MM     2     7     Credit Memo/Vendor
MM     2     8     Contract / Vendor
MM     2     9     Quotation / Vendor
MM     2     10     Other Transaction/within a CC
MM     2     11     Purchase Order/Within a CC
MM     2     12     Goods Receipt/within a CC
MM     2     14     Sched. Agreemt/within a CC
MM     2     15     Returns Order/within a CC
MM     2     16     Returns/within a CC
MM     2     20     Other Transaction/Cross-CC
MM     2     21     Purchase Order/Cross-CC
MM     2     22     Goods Receipt/Cross-CC
MM     2     23     Invoice/Cross-CC
MM     2     24     Sched. Agreemt/Cross-CC
MM     2     25     Returns Order/Cross-CC
MM     2     26     Returns/Cross-CC
MM     2     27     Credit Memo/Cross-CC
MM     2     28     Contract / Cross-CC
MM     2     40     Inquiry / Vendor
MM     2     41     Return Delivery Sched./ Vendor
MM     2     51     Return Deliv. Sched./ Internal CC
MM     2     61     Returns - Scheduling           Agreement/Cross Company Code
My email address is [email protected]
Thanks
Message was edited by: HARI KRISHNA

Similar Messages

  • Creation and Modification dates for android file system

    Hello all, I am working on a project and i noticed a particular scenario where i'm getting an error everytime i try to run the code below on my android device;
                    var file:File=File.applicationDirectory.resolvePath("amf.js");
                    var modDate:Date;
                    var createDate:Date;
                     if(file.exists)
                            try
                                       modDate=file.modificationDate;
                                       credDate=file.creationDate;
                                       trace("Modification date: "+ modDate.toString()+"\nCreation date: "+credDate.toString());
                             catch(e:Error)
                                      trace(e.message+": Somehow android OS CANNOT READ mODIFICATRION AND CREATING DATES FOR FILES");
    Every time i run this on Adobe AIR's Mobile emulator, the correct dates are show up properly(Possibly because the emulator is running on Windows) but when i switch the debug to the device, the statement in the catch block executes. The real error says "Error #3003: File or directory does not exist."
    Am i missing something or is this a normal behaviour which i have to find a work around for? The modificationDate and the creationDate are all properties of the FileReference class which i didnt use to instanciate the file object because i wasnt uploading or downloading anything.
    Any form of tip will be much appreciated.
    Thanks.

    I run into the same problem while working on some sort of file synching task.
    Trying to read the file.modificationDate or creationDate results in an error: "Error #3003: File or directory does not exist."
    I have obeserved that this only happens for files that were packaged with the app (and placed in the File.applicationDirectory).
    Files that my app has downloaded and saved to the device (File.applicationStorageDirectory) do have a valid creation date and modification date.
    Maybe the File.applicationDirectory has different rights?
    Does anybody have a solution or workaround for this?

  • Difference between doc date,posting date and invoice date

    hi bw guys
    can someone give a brief on the difference between doc date,posting date and invoice date.and the invidual definitions
    thank you

    Hi,
    Posting Date: Date which is used when entering the document in Financial Accounting or Controlling. The posting date can differ from both the entry date and the doc date.
    Document Date: The document date is the date on which the original document was issued. Ex: Inv date, Bill date etc.,
    Invoice Date : Usually the date when goods are shipped. Payment dates are set relative to the invoice date.
    -Vikram

  • Business Content 0PUR_C01 missing invoice data for consignment

    Hi Experts,
    we have activated content datasource 2LIS_02_ITM and 2LIS_06_SCL in source system and content in BW-system for loading data to Info cube 0PUR_C01.
    WE did an initial upload of data for both data sources with no problems, except consignment process.
    Analysing data we found out that we have Purchase orders for consignment, but we did not get any invoice data for these PO.
    How can we get invoice data for these PO into the cube? Does anybody has a solution or workaround?
    Are there relevant informations in datasource 2LIS_06_INV, that can be used?
    Thank you for your help!
    Best regards,
    Andreas

    Hi Umesh,
    I have tryed the mentioned Data sources, but results are not as required.
    The reason is, that PO for consignement are a different process. The order has no value, because the supplier has to dlivered the requested quantity to our stock. the supplier is responsible for his goods.
    The material is moved to our stock. This movement is causing the invoice for the supplier created by Transaction MRKO.
    For this reason there is no values in data sources based on aera 02 Purchase.
    We have created a special solution for our company using data source 2LIS_03_BF.
    Thank you for your help.
    Regards,
    Andreas
    Edited by: Andreas Förner on Oct 25, 2010 3:58 PM

  • MIN and MAX date for each range

    Hi folks,
    I´ve got the following problem:
    Given a table
    create table t as select 'AT' OM_LANDTEXT, '12345' OM,
                             to_date('01-JAN-2004', 'DD-MON-YYYY') datum from dual
                             union
                             select 'AT' OM, '12345' OM_LANDTEXT,
                             to_date('02-JAN-2004', 'DD-MON-YYYY') datum from dual
                             union
                             select 'AT' OM, '12345' OM_LANDTEXT,
                             to_date('03-JAN-2004', 'DD-MON-YYYY') datum from dual
                             union
                             select 'AT' OM, '12345' OM_LANDTEXT,
                             to_date('05-JAN-2004', 'DD-MON-YYYY') datum from dual
                             union
                             select 'AT' OM, '12345' OM_LANDTEXT,
                             to_date('06-JAN-2004', 'DD-MON-YYYY') datum from dual
                             union
                             select 'AT' OM, '12345' OM_LANDTEXT,
                             to_date('01-FEB-2004', 'DD-MON-YYYY') datum from dual
                             union
                             select 'AT' OM, '12345' OM_LANDTEXT,
                             to_date('02-FEB-2004', 'DD-MON-YYYY') datum from dual
                             union
                             select 'AT' OM, '12345' OM_LANDTEXT,
                             to_date('03-FEB-2004', 'DD-MON-YYYY') datum from dual;
    SQL> select * from t;
    OM OM    DATUM
    AT 12345 01-JAN-04
    AT 12345 02-JAN-04
    AT 12345 03-JAN-04
    AT 12345 05-JAN-04
    AT 12345 06-JAN-04
    AT 12345 01-FEB-04
    AT 12345 02-FEB-04
    AT 12345 03-FEB-04
    8 rows selected.I need to have the first and last date for om and om_landtext for each date range (where "date range" means a set of consecutive dates with no gaps).
    So the ouput should be
    OM OM_LANDTEXT DATVON DATBIS
    AT 12345     01-JAN-04 03-JAN-04
    AT 12345     05-JAN-04 06-JAN-04
    AT 12345     01-FEB-04 03-FEB-04Any ideas...?
    Thanks for your help!
    Best regards,
    Gerd
    Message was edited by: Gerd
    Sorry, I forgot to mention this should be done in pure SQL if possible.
    [email protected]

    This is the plodding, methodical approach I've always taken, which leaves me somewhat in awe of Rod West's solution.
    SELECT om_landtext,
           om,
           MIN(datum) AS min_datum,
           MAX(datum) AS max_datum
      FROM (
    SELECT om_landtext,
           om,
           datum,
           prev_datum,
           COUNT(
             CASE
               WHEN prev_datum IS NULL THEN 'x'
               WHEN prev_datum != datum-1 THEN 'x'
               ELSE NULL
             END
           ) OVER (PARTITION BY om_landtext, om ORDER BY datum) AS grp
      FROM (
    SELECT om_landtext,
           om,
           datum,
           LAG(datum) OVER (PARTITION BY om_landtext, om ORDER BY datum) AS prev_datum
      FROM t
    GROUP BY
           om_landtext,
           om,
           grp;null

  • Creation and Change Date for Tcode and Function Groups

    Hello All,
    I need to display the Creation and Change Dates for Custom Tcodes and Function Groups in a Report. Can anyone please let me know the logic of retrieving it.
    regards,
    Mahesh

    Hi,
    TADIR and TRDIR is the tables where you can find all these data
    Regards
    Sudheer

  • I connected my iphone 3g to itunes which was in 4.1 firmware and itunes ask for an update which i downloaded an updated the phone to version 6.1.3 but my phone cannot start it shows no service my sim card is not getting network and i cannot use the phone.

    i connected my iphone 3g to itunes which was in 4.1 firmware and itunes ask for an update which i downloaded an updated the phone to version 6.1.3 but my phone cannot start it shows no service my sim card is not getting network and i cannot use the phone. what should i do.?

    First, you do not have a 3G if you could upgrade it to 6.1.3, because 4.2.1 is the last version that will work on the 3G. So you either have a 3GS or you somehow hacked the phone to install an incompatible version. You can check the model you have by entering your serial number here: https://selfsolve.apple.com/agreementWarrantyDynamic.do
    Assuming you have a 3GS the most likely reason for your problem is you have a gray market phone that was hacked or jailbroken to unlock it. When you upgraded it you removed the hack, so the phone is now locked to its original carrier.

  • How to Get Each line item Create and Approval dates for a SHOPPING CART in SAP SRM (ABAP Programming)

    Hi All,
    I have to Get Each line item Create and Approval dates for a SHOPPING CART in SAP SRM. Either a table, or any Function module, Method, please let me know ASAP. Same i can use in my Program.
    Thank you Very much.
    Regards,
    Ramesh J.

    Hi,
    Refer the below wiki link it may help you.
    Product catlog configuration for ECC - CRM - SCN Wiki

  • Start and End dates for users in Enterprise portal

    Hi Expert,
    I have to maintain start and end dates for around 200 users in 4 different Java systems. When I export the file of users it does not capture the validity fields. Is there a way/script to automate this? Otherwise I will have to do it manually.

    Hello
    Please check below URL for User Import Format:
    http://help.sap.com/saphelp_nw70ehp1/helpdata/en/48/abdd83c3333205e10000000a42189c/content.htm?frameset=/en/48/a96f43db653206e10000000a42189c/frameset.htm&current_toc=/en/43/05e450d1cd6e95e10000000a11466f/plain.htm&node_id=2802&show_children=true#jump2822
    Regards,
    Tapan Goyal

  • How can I create a matrix question? Specifically, I need a question in table format that allows each respondent to list a number of events and then data for each event (date, location, number of participants, topics covered, etc.

    How can I create a matrix question? Specifically, I need a question in table format that allows each respondent to list a number of events and then data for each event (date, location, number of participants, topics covered, etc.

    Hi,
    Sorry, we do not support a matrix-question field.   Please try the multilines text field (where your participant can enter multiple lines in the input text box) and see if it works for you.
    Thanks,
    Lucia

  • Where can I find Appraisal and IPF data for Employee for particular Year.

    Hello,
    I want to see appraisal data and IPF data for a particular employee for a particluar year.
    Please suggest Tables, Infotypes, T-Codes that I may use.
    Thanks & Regards,
    Labanya.

    Hi Labanya
    You should be able to see appraisal data through SE38 --> RHHAP_DISPLAY_DB or PHAP_SEARCH_PA.
    Hope this helps
    Best Regards
    Reddy

  • How to find gr details and invoice status for particular list of purchase

    Hi,
       how to find gr details and invoice status for particular list of purchase orders.
    is there any t.code/report for it??

    Hi,
    You use t.code:ME2Nand enter PO number,tn Execute.Now you will have PO details .Now in item details get GR details and Invoice details   in  purchase order history TAB.
    In t.code:MIR5, you can see blocked invoice by selection.
    Regards,
    Biju K

  • Year of Cash Effectivity and Due Date for payments in following year

    Hi experts!
    I have a problem with Year of Cash Effectivity when dealing with invoices which have Due Date in a different year from the posting date. I just need revenues and expenses to be recognized under the accrual basis of accounting (with the invoice, not with "cash effectivity" depending on terms of payment). But we do need "cash effectivity" for commitments budget and MM.
    I am using Update Profile=000359, and have tried to "Override Update Profile" for Value Type=54 (Invoices) checking "Posting Date" for Payment/Commitment Budget, instead of "Due Date". I have also deactivated settings that have to do with payments transfer in <<Public Sector Management->Funds Management Government->Actual and Commitment Update/Integration->Integration>>.
    Is there any way to change this without changing Update Profile?
    Thanks for your help!
    Iván Garcí

    Hello Ivan
    I believe this note will help you:
    [Note 883122 - Spanish Public Sector: Specific functions (BAdIs and exits)|https://service.sap.com/sap/support/notes/883122]
    see this paragraph
      BAdI FMRI
      The method FMRI_BADI_9 allows the customer to change, according
      to their needs, the Year of Cash Effectivity in which FI
      documents are updated in Funds Management.
      The system performs some checks (for example the update profile
      has to use the Year of Cash Effectivity) to permit the
      modification of the Year of Cash Effectivity in this BADI. The
      Year of Cash Effectivity determined in this BAdI cannot be
      earlier than the one for the date when the Financial Accounting
      payments are updated in Funds Management.For more detailed
      information on this topic, consult the note 1129408.
    hope this will help you!
    Kind regards
    Mar

  • Backdated PO receipt and Invoice date in closed periods_Dropshipment

    The Business requirement is
    The OU gets the Bill of Lading/Air Way Bill document offline after some time let's say within 10 days of actual Bill of Lading/Airway Bill Date. We are executing Dropshipment process. The PO receipt to be done on back date, which is the actual Bill of Lading/Air Way Bill date. The AR Invoice to be raised on the same backdated actual Bill of Lading/Air Way Bill date.
    Example:
    Actual Bill of Lading/Air Way Bill date: 25 Apr 2012
    The documents are received on date: 05 May 2012
    Dropship PO Receipt Date: 25 Apr 2012 (We will execute backdated receipt in system, on 05 May 2012 the receipt date will be entered as 25 Apr 2012)
    AR Invoice Date (after Auto-import program): 25 Apr 2012
    We are able to get the desired result in the open period. Just wondering, how to go about the issue when periods are closed for the last month (April).
    Heard that, the profile option INV:Transaction Date Validation doesn't work in case of PO receipts. Kindly advise.
    With Best Regards,
    Nirabh Nayan

    Hi,
    Once a Inv a/c period is closed, the period close process permanantly closes the period and system will not let performing any further transactions in that closed period. period can not be reopened as well.
    If you know that there are pending transactions to be made in the last month of a/c year, As an exception you can keep the last period open till all the transactions are entered into the system. Normally this is the general process followed across. Accounting period is not closed sharply on the final day of the acct period.
    If you are worried about std cost update and want to have updated costs for the transactions done in new a/c year, You can enter the cut off date in the inv org parameters as the last date of previous accounting period so that the transactions of the first month of new accounting period ( in your case May ) does not get costed. Once you close the previous period, you can update the cost thru std cost update and then release the cut off date for the new period transactions to get costed at updated cost.
    Prabhu Chepuri

  • Master Data and Transaction Data For DB Connect extracted Data...

    Dear Experts,
    I have been working on SAP NetWeaver BW 7.3 and for the first time I have extracted data from Oracle DBMS by using DB Connect. I have successfully extracted data of a View namely Sales_View into BW by creating a DataSource. This View has about 100 fields and I have been told that this view consists of Master Data and Transaction Data too. For my further reporting needs say building a Dashboard or InfoSpace I have to design a DSO and InfoCube for this DataSource. I'm bit confused about the Master Data and Transaction Data of this DataSource.
    1. Should I create all custom InfoObject against all fields of DataSource for DSO and InfoCube design?
    2. Do I need to create and load the Master Data for all InfoObjects or I need to create or load the Master Data for only those InfoOjects which will be   
         used for drill down or reporting in Dashboard or InfoSpace?
    3. Do I need to load the Master Data manually by creating Flat Files and using these files for Master Data loading for required objects?
    4. How should I approach the designing of DSO and InfoCube?
    I will appreciate your inputs in this matter.
    Many thanks!
    Tariq Ashraf

    Thanks!

Maybe you are looking for

  • Using RS with SAP Netweaver - Timeout during allocate /CPIC 'ThSAPCMRCV'

    Hi All, I am trying to connect to a remote SAP BI  server from my local SQL server 2005 Reporting Services. I was able to view all info objects in the query builder but when I try to drill down and  view members / drag and drop to create a query / pr

  • Purchase Value & Qty thro' 501 mvmt type

    Dear All, where can i get the Total value of Purchased material of 1 month thro' 501 mvmvt type ? And also a report of  Vendor wise purchased qty in 1 month ? regds, CB

  • Currency in New selections

    Hi all, I have a query designer in which rows and columns exist. In columns I have written some formulaes and have some selections. When I execute a report in designer I can see the values coming in formulas and in New selections with currencies. I d

  • Time mgmt

    HI, How to retrive the time management data from the cluster.Can any body explain the process and procedure. And how run the time mgmt data ,time evaluations with t-codes .also.Please help in this case ? Please go through the relevant SAP help Edited

  • I lost my i work

    After window 8.1 install, i use disk management in window. After that my mac operating system can not use after restart. mac system can not see and run at start up boot time. i can use only window system. So i repaired with bootable start up disk for