Create AP/AR line item report for parked items

Dear all,
Has anyone been able to create a line item report in AP or AR that includes parked items? I have created an aging report using standard 0SAPDUEAN-01 as a base, using report painter. Now the Finance department want to be able to see the numbers of the parked invoices as well but I am not able to find a way to pull these.
Does anyone know if this is actually possible?
many thanks

Hi,
by using of TCODE. FBV3 it is displaying parked documents
based on document type.
K.Satish

Similar Messages

  • AP Line-Item Report for State Auditors

    Dear Members,
    I am preparing one Report named AP Line-Item Report for State Auditors and i need the following fields in my report.
    Check Number                PAYR-CHECT
    Voucher Number             BSEG-BELNR
    Check Date                     PAYR-ZALDT
    Voucher Date                     BKPF-BUDAT
    Vendor Number             LFA1-LIFNR
    Vendor Name                     ADRC-NAME1
    Vendor Street Address     ADRC-STREET
    Vendor City                     ADRC-CITY1
    Vendor State                     ADRC-REGIO
    Vendor Zip Code             ADRC-POST_CODE1
    General Ledger Acct No     BSEG-HKONT
    Purchase Order Number     BSEG-EBELN
    Tax Status Code             BSEG-MWSKZ
    Taxable Amount             BSEG-HWBAS
    Exempt Amount             BSEG-MWSTS
    Tax                                     BSEG-MWSTS
    Tax Accrued                     BSEG-MWSTS
    Total Invoice                      BSEG-DMBTR
    I am new to FI.So I request some one please let me know which datasources contain the above fields and which CUBE is best suited for this.
    Thanks in Advance for help and quick reply is much much appreciated.
    Best Regards
    RC

    0VENDOR_ATTR - Vendor Master Data Attributes
    0FI_AP_51 - Check Register Line Items
    0FI_AP_4 - Accounts Payable Line Items
    It should be noted, however, that this won't get you everything that you need, so you may have to create enhance one or more of these DataSources and create User Exit ABAP code to get the required data. Also, the 0FI_AP_51 DataSource isn't available if your source system isn't ECC6 EHP3 or higher. If your source system is less than that, you're going to have to create a generic DataSource for the data from the PAYR table.

  • What is the best way to create a SSRS 2005 Line Chart Report for a 12 month period?

    I'm looking for advice on how to create a SQL Server 2005 query and line chart report for SSRS 2005.
    I need to display the peak number of patients assigned to a medical practice each month for a 12 month period based on the end-user selecting a
    single month and year.
    I've previously created a report that displays all patients assigned to the practice for any single month but I’m looking for advice on how to
    how to produce a resultset that shows the peak number of patients each month for a 12 month period. I thought about creating a query that returns the peak count for each month (based on my previously created report which displays all patients assigned to the
    practice for any single month) and then use a UNION statement to join all 12 months but I'm sure that isn't the most efficient way to do this. The other challenge with this approach (twelve resultsets combined via a UNION) is that the end-user needs to be
    able to select any month and year for the parameter and the report needs to display the 12 month period based on the month selected (the month selected would be the last month of the 12 month period).
    For the report I’ve previously created that displays all patients assigned to the practice for any single month, the WHERE statement filters the
    resultset on two fields:
    Start Date - The date the patient was assigned to the practice. This field is never null or blank.
    End Date - The date the patient left the practice. This field can be null or blank as active patients assigned to the practice do not have an End Date. When the patient
    leaves the practice, the date the patient left is populated in this field.
    Using these two fields I can return all patients assigned to the practice during Nov 2012 by looking for patients that meet the following criteria:
    start date prior to 11/30/2012 (using the last day of the month selected ensures patients added mid-month would be included)
    AND
    end date is null or blank (indicates the patient is active) OR the end date is between 11/1/2012 -11/30/2012 (returns patients that leave during the month
    selected)
    Regarding the query I need to create for the report that displays the peak count each month for 12 months, I'm looking for advice on
    how to count patients for each month the patient is assigned to the practice if the patient has been assigned for several months (which applies to most patients). Examples are:
    John Doe has a start date of 6/01/2012 and an End Date of 10/07/2012
    Sally Doe has a start date of 8/4/2012 and no End Date (the patient is still active)
    Jimmy Doe has a  start of 7/3/2012 and an End Date of 9/2/2012
    Given these examples how would I include John Doe in the peak monthly count each month for May - October, Sally Doe in the peak monthly count for
    August - December and Jimmy Doe in the peak monthly count for July – Sept if the end-user running the report selected December 2012 as the parameter?
    Given the example above and the fact I'm creating a line chart I think the best way to create this report would be a resultset that looks like
    this:
    Patient Name              
    Months Assigned
    John Doe
    June 2012
    John Doe                     
    July012
    John Doe                     
    Aug 2012
    John Doe                     
    Sept 2012
    John Doe
    Oct 2012
    Sally Doe                     
    Aug 2012
    Sally Doe                     
    Sept 2012
    Sally Doe
    Oct 2012
    Sally Doe                     
    Nov 2012
    Sally Doe
    Dec 2012
    Jimmy Doe                  
    July 2012
    Jimmy Doe
    Aug 2012
    Jimmy Doe
    Sept 2012
    From the resultset above I could create another resultset that would count\group on month and year to return the peak count for each month:
    June 2012 - 1
    July 2012 – 2
    Aug 2012 - 3
    Sept 2012 - 3
    Oct 2012 - 2
    Nov 2012 - 1
    Dec 2012 - 1
    The resultset that displays the peak count for each month would be used to create the line chart (month would be the X axis and the count would
    be the y axis).
    Does this sound like the best approach?
    If so, any advice on how to create the resultset that lists each patient and each month they were assigned to the practice would be greatly appreciated.
    I do not have permissions to create SPs or Functions within the database but I can create temp tables.
    I know how to create the peak monthly count query (derived from the query that lists each patient and month assigned) as well as the line chart.
    Any advice or help is greatly appreciated.

    Thanks for the replies. I reviewed them shortly after they were submitted but I'm also working on other projects at the same time (hence the delayed reply).
    Building a time table and doing a cross join to my original resultset gave me the desired resultset of the months assigned between dates. What I can't figure out now is how to filter months I don't want. 
    Doing a cross  join between my original resultset that had two dates:
    08/27/2010
    10/24/2011
    and a calendar table that has 24 rows (each month for a two year period)
    my new resultset looks like this:
    I need to filter the rows in yellow as the months assigned for stage 3 that started on 8/27/2010 should stop when the patient was assigned to stage 4 on 10/24/2011.
    You'll notice that Jan - Sept 2011 isn't listed for Stage 4 assigned on 10/24/2011 as I included a filter in the WHERE clause that states
    the Months Assigned value must be greater than or equal to the date assigned value.
    Any advice would be appreciated.

  • Item availability for selected items and directly create the delivery

    Hi All,
    For a very big sales order ..lets say having 700 line items ...is there any convenient way to create the delivery for selected items ..e.g. 30-40 line items rather going and selecting the line items then doing the item availability.
    do you have any LSMW format by which we can do the item availability for selected items and directly create the delivery.
    kindly Guide me..
    With Regards
    Azeez.Mohd

    Hi ,
    There is no stand way of doing it . You need to take help of abaper to do this :
    1. Create a t code where if you give sale order number , it displays a report with all the items with a check box near to it as we see in SE16 .
    2. This report could be best in ALV form where users can do "ctr+f" and search only the required materials then select those lines and press a button on the top of report .
    3. Once the button is pressed , program will run vL01n ( create delv in backgrnd) in a BDC form . At time of delev creating , the bdc program in backgrnd uses only those items which were selected by user and not the other items .
    4. Program will create a delv using a BDC in background and return the delv number for user to view tht.
    U can also try using FM : RV_DELIVERY_CREATE to create delv in backgrnd after user selection if BDC is getting tricky.
    Hopefully ,this shuld work and will be a easy process for the customers.
    Let us know the outcome .. .
    B O L ..
    Hope this Helps !!!

  • Report for parked/post invoice and subsequent payment

    Dear All,
    Is there any report or function module wherein one can know the status of particular invoice i.e. whether it is in park stage or post stage or reversed or payment has been made?
    Regards
    Amit

    Hello,
    FBL5n and FBL1n and mark posted items yes/no
    then open item report includes parked invoices or does not include them
    Parked invoices can be seen with yellow sign.
    Choose noted items for down payment information.
    all the best erwin

  • PR and PO should be display in IWBK report for stock item.

    Hi Exterts,
    Our client requirement is to display PR and PO number in IWBK report for stock item as well.
    I know PR and PO can be display in IWBK report for non-stock item but how we can display PR and PO for stock item,as PR is generated through MRP for stock item.
    Please share your ideas on this.
    Regards
    Vishu

    Vishu,
    In typical MRP settings you "procure to stock" not "procure to order".
    This means that there is no direct link between the PM/CS orders and any PR/POs created via MRP.
    Subsequently you will not be able to show this data in IWBK.
    However, we are currently designing a customer-specific report similar to IWBK that also counts the number of open POs for a given material on a PM/CS work order. The user can then navigate to ME2M (PO list) or MD04 (stock requirements list) to get further details.
    PeteA

  • How to Create a Pro Forma invoice (F5) for selecetd items in the order?

    Hello,
    Is there a way to create a F5 Proforma invoice for an order, but for selected items? e.g if the sales order has 5 line items , is there a way to select the items we want to create the proforma for? or it's always going to create the proforma for all eligible items?
    Thank you so much.
    Irfan

    Dear Satish,
    Thanks for your reply.
    Without getting into config and setting up the invoice split criteria, when creating a proforma is there a way to select the line items from the order and create the pro forma invoice only for those items?
    Thanks.
    Irfan

  • Designing the consolidated and line item report for specific material

    Hi
    i have a R/3-report and it run only for 7-materials.That means we need to only those 7-materials in the selection screen of report.
    Then we will get each material corresponding line item details(material no, profit center, variable cost, quanity, price, financial loss(this is calculated based on quantity) , Utility Consumption(calculated based on price, variablecost)  ) in one report.
    Another report will give same for consolidated values of financial loss, utiliy consumption.
    <b>so how can i design the consolidated and lineitem details report for each material.</b> pls let me know
    kumar

    0VENDOR_ATTR - Vendor Master Data Attributes
    0FI_AP_51 - Check Register Line Items
    0FI_AP_4 - Accounts Payable Line Items
    It should be noted, however, that this won't get you everything that you need, so you may have to create enhance one or more of these DataSources and create User Exit ABAP code to get the required data. Also, the 0FI_AP_51 DataSource isn't available if your source system isn't ECC6 EHP3 or higher. If your source system is less than that, you're going to have to create a generic DataSource for the data from the PAYR table.

  • Profit center actual line item report for new GL

    Hi,
    We are using New GL functionality. I have posted one document as follows
    One line item with PC P0101 (Debit side) and second line item without PC (Credit side)
    Second line item also inherited to PC P0101.
    When checking profit line actual item report at KE5Z only one line item profit center displaying (debit side ), inherited line profit center not displaying (Credit side).
    I would like to see the both line items at CO report. Can any one suggest which report I need to refer at CO?
    At FI GL report I can able to see the both line item profit centers report (FAGLL03)
    Thanks

    Hi
    I think you have already got the answer to your question....
    You should refer FAGLL03 / FGI3 reports and not Ke5Z.. KE5Z is for Classical PCA where as the inherited PC in the 2nd LIne item is a New GL Feature
    More over, you should not have used Classical and New GL PCA together... Refer Note 702854 and 826357 which explains this
    Br, Ajay M

  • Actual line items report for multiple products

    Hi All,
    We have 4 manufacturing plants and 100 fg /sfg materials are being amnufactured for each of the plants.
    Now we want to see the total actual cost incurred report for each of the fg/sfg  materials for each plant in a single report.
    Kindly share the report t. code in product costing.
    Regards
    Subbu

    Hi,
    Without ML/Actual costing, Actual cost per Product is not easy/possible! Otherwise, you could only attempt to get a cost close to Actual cost, as far as possible.
    Hope this helps.

  • Report for Parked Invoices

    Dear gurus
    Im generating a report using structure RFPOSXEXT. problem im facing is that im getting all the document numbers which are open items and cleared items but im not getting the document number of a parked items. can you tell me how. ?
    regards
    Saad NIsar

    ADDTIONAL :
    Create your new report using the table RBKP : Invoice header...
    here use the field RBSTAT and entry as PARKED...and then execute...
    It will show all parked documents...
    HOPE YOUR QUERY IS SOLVED NOW...
    hi,
    What you want exactly?? If you wanna see just Parked invoices, then can check it form FBV3 report...
    FBV0 is used for post/delete the park invoices...
    Hope it helps..
    Regards
    Priyanka.P
    Edited by: Priyanka Paltanwale on Apr 9, 2009 10:22 AM

  • Deleted Items Appearing on the FBL3n Report for Open Items

    Hi All
    We just went live and I am facing a huge issue;
    I deleted many migration entries from loads of GL Accounts for multiple Co Codes, but on the FBL3n report, whenI execute with the option of 'Open Items' only, I  still see the deleted items with a green check sitting there.
    How can i get those from being visible?
    Thanks for the support
    RS

    Hi:
                This is standard behavior. Your GL accounts are managed on line item basis hence despite of the fact you reversed the entries they will continue to be shown in open item selection criteria which in fact are not open items. It makes no sense to see a GL account in FBL3N on open item date since this account has been configured on the basis on line item management and i will continue to be shown as line item with green sign . Execute report FBL3N with open item or with all item (with date you give in open item) you will see the same figures and same line items. However you can exclude the reversed entries by fetching reversed with (BKPF-STBLG) field from menu ..settings...special fields and hence excluding the entries having this filed update.
    I hope this will solve your issue.
    Regards

  • Purchase items report for sales orders - very important

    Hi Folks,
    Could you please guide me on how to create a report of "items purchased" for a particular "sales order". if i am able to include various fields of items purchased, like....quantity, item description, vendor name, item price, etc., it will be very useful.
    This report is required for a client, who assembles machines in a "make to order" scenario, and most of the BOM child items are "purchase items".

    Hello Krishna,
    Few things to note:
    Is the PO created from the SO.  Is YES, then you could use the base document ref at the POR1 table.
    OR
    Are the BOM components defined with a default vendor in the Item Master and if YES are the components always purchased from the same vendor.
    I am trying to see how to establish the relationship of the items between the PO and SO.
    Please give me the details and I could guide you further
    Thanks
    Suda

  • Deliery block sales orders report for TAS items

    Hi,
    User requirement is need a report which gives list of sales orders which have the delivery block in  sales order schedule lines.( of third party items TAS)
    I found V.14 and VA14L to find out the sales orders which give the list of sales orders which are blocked for outbound delivery (in schedule line delivery block).
    However, for third party items sales order with item category TAS are not coming in the report of V.14.
    I think the reason is because of the third party items are not relevant for delivery hence v.14 report not fetching the data of third party orders(TAS), is this my understanding is correct?
    If the user is insisting on for even third party items also they want a report which should give the list of sales order which are blocked for delivery block then what is the best way to advise the user?
    And does it make any sense putting delivery block for third party items ? because we are not delivering the goods to customer and even if you put delivery block we can’t stop PR,PO and MIGO and MIRO etc .
    Thanks,

    is this my understanding is correct?
    Absolutely correct.
    they want a report which should give the list of sales order which are blocked for delivery block
    Since the inventory / stock of material would be handled out of SAP, what is the need to set a delivery block.  Even if you set delivery block, vendor is going to deliver the material.
    what is the best way to advise the user?
    Convince the user what they are expecting in SAP are logically incorrect.  When the material is being delivered by a vendor, what is the use if you set delivery block for this item?  What they are going to achieve. 
    And does it make any sense putting delivery block for third party items ?
    Definitely, no
    G. Lakshmipathi

  • Line itemwise report for operational WCD

    Hi,
    We are using the Mechanical and process isolations in the operational WCD. one WCD for Mechanical isolation and another one for process isoaltion.
    There are multiple Isolation points used for process isolation. Example: 20 process isolation points in a WCD for a particular equipment.
    The standard list editing operational WCD transaction (WCL4) provides a report which is a single line on the WCD level.
    Where as we are interested to track on the individual line item i.e. individual isolation points status with in a WCD to track how many isolations are tagged, how many are still to be tagged, how many are untagged, how many are closed etc..
    Proposed layout:
    WCD number         Line item #        Status
    30000010              10                    Tag printed
    30000010              20                    Tag printed
    30000010              30                    Tagged
    30000010              40                    Tagged
    30000010              50                    Untagged
    30000010              60                    Untagged 
    Is there any way to enhance the standard report (WCL4) or we need to develop a custom report.
    Thanks in advance.
    Regards,
    Raj

    Hi Harshvrdhan,
    Thanks for your immediate reply.
    I am using the functionality what you have proposed. With WCL4 transaction I can bring all the line items for WCD but the status field is not available hence it is available only on the header level.
    The user has requested that they need line itemwise status report for all the shutdown related WCDs to be downloaded into excel fiel for status monitoring and management reporting purpose.
    However, I was reading one of the document written by Michael lesk i.e. 8103_Function_Enhancements_EN.
    As he mentioned, with SAP EhP5 there are more functionalities available with BADIs for WCM list processing.
    Hopefully by implementing the BADIs mentioned in the document we should be able to get the additional custom fields.
    Special thanks to Uwe Kirchner and Michael lesk for their continuous effort in enhancing the WCM processes and the dedicated user support.
    Regards,
    Raj

Maybe you are looking for

  • Days missing from list view if no event entered in iCal

    if i have no event entered on a particular day, the list view of iCal doesn't display the day. how can i still see the day in list view?

  • Using a function to change Netstream video size.

    Hi folks, forgive me I am new to script in Flex.  I got an Application that has two scripted functions.  The first is called at creationComplete and sets up a netconnect/netstream video playback.  And a second that is fired when a button is clicked,

  • Pr close indicator

    Hi ,    actuall when we creat a PO with respect to closed  pr it allowing me to creat po for that pr, but could not giving me any error or warning message. where can i configure these error messages.

  • You Tube will not play in Safari 3.0.4

    I am not able to watch You Tube videos in their entirety 95% of the time. Occasionally, I have been able to view a complete video, but most of the time I can only watch 5-10 seconds before the video stops. I have tried emptying the cache, but this ma

  • Update backup status in DB6COCKPIT after a clone?

    Hi, we are implementing clone backups for a R/3 system running AIX/DB2. I wonder if it is possible to update the backup status in DB6COCKPIT after a clone, with either successful or unsuccessful runs? BR Morten