Report with goods supplier data

Hi Gurus,
Any standard report with purchase orders showing also general data of the goods supplier including number, name, address?
Regards,
Alberto

Hi,
I've never seen for standard report in purchasing that can suit your requirement to show PO list with detail vendor info into one layout report.
You may use ME80FN report that might have close feature to your query, which you need one more step to press 'Vendor" button to see the detail of the vendor.
Cheers,
Girang

Similar Messages

  • Crystal Report with text(csv) data file, can we set it as input parameter?

    Hi,
    I am a new user of Crystal Reports 2008.
    I have created a report with charts in it. The input data comes from a csv text file.
    Can I set the name of this text file as an input parameter?
    as I need to generate 44 similar reports with different text filenames(and data)?
    Thank you.
    Regards

    Brian,
    Thanks much.
    I did exactly what you said.
    Just to see any change, I first gave a bad report file name just to see if I am accidentally pointing to a different file,
    but I got an error saying report not found.
    Then I renamed my original datafile name and generated a report and it still generated one without giving an error.
    Then I also gave a junk name to the logoninfo and printed that name, the new name was assigned to logoninfo, but the code did not error out.
    It ended up generating the report.
    Now here is what I think is happening,
    1) The save data in report option seems to be still on even though I have turned it off in 2 locations
    a) file -> Report Options
    b) file -> Options -> Reporting tab.
    2) For some reason the logoninfo is getting ignored as well.
    Since I did not see any answers yesterday I posted a link to this thread on the .Net forum
    Crystal Report with text(csv) data file, can we set it as input param? C#
    and Ludek Uher says that I am connecting to the text file via a DAO database engine and so need to use the same code for changing the text file as for changing an Access database.
    But the link he gave me tells me to try the same thing that we have been trying..
    Here is my plan,
    1) I will first try and find out why my save data with report option is still on ( but it shows off in Crystal ).
    2) why is LogonInfo getting ignored.
    Meanwhile any suggestions from anyone are welcome.

  • Crystal Report with text(csv) data file, can we set it as input param? C#

    Hi,
    I am new to the forums and posted a question which belonged to the .net - SAP Crystal reports group.
    Can someone help me with my problem? following is the thread that I have started.
    Crystal Report with text(csv) data file, can we set it as input parameter?
    Thank you in advance.

    Looking at the original thread, you are connecting to the text file via the DAO database engine:
    "I added the text file as follow, new connection -> Access/Excell (DAO) -> select the file and the database type as text"
    Thus I would use the same code for changing the text file as for changing an Access database. See Kbase [1218178 - Error: "Logon failed" when connecting to Access database in .NET application|http://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes_boj/sdn_oss_boj_bi/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes%7B6163636573733d36393736354636443646363436353344333933393338323636393736354637333631373036453646373436353733354636453735364436323635373233443330333033303331333233313338333133373338%7D.do] for more information. If that does not work, you may want to consider connecting via ODBC or feeding the data from the text file to and ADO .NET dataset and pointing the report at the dataset.
    Ludek
    Follow us on Twitter http://twitter.com/SAPCRNetSup
    Got Enhancement ideas? Try the [SAP Idea Place|https://ideas.sap.com/community/products_and_solutions/crystalreports]

  • How to process reports with two different date fields

    Morning all,
    This question is somewhat similar to what I asked few days back. I created two different reports for two different departments (Credit Control and Free of Charge Control).
    These two reports pull data from two different date fields and has different status check ups.
    Few days back my director requested me if he can have both reports in one report. That is when I asked question from all of you regarding two reports.
    Anyhow, that was created by implementing two sub reports however, the director asked me to combine the two different reports into one in such a way that the output records should be added up with each other hence one single report with all combined data of Credit Control and Free of Charges (not two sub reports in one report).
    The problem here which I am getting is that, both reports uses two different date fields. I can live with two different statuses as that can be easily done within formula/RT however how to create a report with Report Selection Formula condition which looks in both date fields and produces results accordingly?
    I have tried this by not putting any condition in report selection formula and ran the report, it produced total results from past 6 years.
    Any ideas how to produce combined report which has two different date fields?
    Many thanks in advance
    Regards
    Jehanzeb
    What I

    Charliy,
    No the both dates are from two different databases, tables and fields. The Credit date field is from KLAB database under max table where as the FOC date field is from SAE database under maxmast table. Klab date is under credit2 table where as foc date is under order header table.
    So its more like this:
    Klab->Max-Credit2--->Credit_date
    Sae->Maxmast->Order_header---Date entered.
    two dates totally different tables, dbs
    however, I will try your idea too and see if that works.
    Regards
    Jehanzeb

  • Report with goods receipt value and invoice posting value

    Is there any standard report with goods receipt value and invoice value (the value with which invoice is posted.

    Hi
    Please check MC$4 transaction, mey be helpful.
    regards
    Srinivas

  • Schedule a report with the system date imbeded in the file name

    Hello,
    Could anyone tell me how I can schedule a crystal report with the system date imbedded in the file name (FileNameYYYYMMDD) through BOE?  When I scheduled the report through BOE, I gave a file name and selected Attach Date Time, but the file name is coming out slightly differently and with the time imbedded as well (FileNameYYYY-MM-DD-HH-MN I think). Is there a way to change the default system date time format in BOE so that the date stamp comes out the way we want it?
    Thanks!

    %SI_STARTTIME% will add the time the report ran too.
    Adding onlt the date will necessarily have to be done via the appropriate SDK.

  • Create a listing of reports with last run date and # of times run

    Hi All,
    I want to create a listing of reports with last run date and number of times report is run in the past 18 months.
    If anybody can please help me with the query for the same.
    Regards,
    Sk
    Edited by: user10989244 on Aug 18, 2009 7:12 AM

    Hi Sk
    Assuming you have the collection of statistics enabled, which it is out of the box, you can get the information you need from the EUL5_QPP_STATS table. This script will help:
    SELECT
    QPP.QS_DOC_OWNER WORKBOOK_OWNER,
    QPP.QS_DOC_NAME WORKBOOK_NAME,
    QPP.QS_DOC_DETAILS WORKSHEET_NAME,
    QPP.QS_CREATED_BY RUN_BY,
    TRUNC(MAX(QPP.QS_CREATED_DATE)) LAST_USED_DATE,
    COUNT(QPP.QS_ID) TIMES_USED
    FROM
    EUL5_QPP_STATS QPP
    WHERE
    QPP.QS_CREATED_DATE >= ADD_MONTHS(SYSDATE, -18)
    GROUP BY
    QPP.QS_DOC_OWNER,
    QPP.QS_DOC_NAME,
    QPP.QS_CREATED_BY,
    QPP.QS_DOC_DETAILS
    ORDER BY 1,2,3;
    Best wishes
    Michael

  • Mb52 with goods recipt date

    hi,
    Tcode mb52 shows stock in hand with bach no.
    now i want to add goods reciept date in front of stock in hand with batch,stock in transit,stock in quality inspection.
    pls suggest how to achieve this.
    is any standard fuctionality available.?
    or
    we need to take abap help?
    regards
    simran
    Edited by: sumit simran on Feb 5, 2012 2:13 PM

    try repoert MB5B
    if not fullfill requierdment then you have to developwith help of ABAP consultant
    used following table for same
    MKPF
    MSEG
    for batch stock table
    MCHB and MCHBH tables
    check following link also
    [Report|Period wise stock report;
    Regards
    Kailas Ugale

  • Problem when creating a Report with a schduled date

    When I tried to create a report with a Schedule (any option except NOW) I get the error of "First Report Occur Date should be after or equal to Current Date" unless I use a date of 2012-10-01 or later in the First report occurs on field.  Today's date is 2012-08-23.
    Let me know if you can recreate this and if or when there will be a fix.

    Hi Tim,
    I'm glad to see you've been configuring your On100, but sad to see you've hit another snag. We are looking into this issue now. I'll get back to you with an update.
    Thanks,
    The OnPlus Team

  • Stock in transit report with delivery # and date included

    I need a report similar to MB5T that will also show the delivery number and goods issue date.  I couldn't find anything standard and was going to ask an ABAPer to create something.  When researching where stock in transit is stored, I keep finding that the value should be in MARC-TRAME; however, in our system that value is blank (even for a material that shows stock in transit in MB5T.)  Is this value stored in another location as well?
    Thanks in advance for your help.

    Thanks for the response.  I know that I can view the PO history by going into the individual POs, but we want something that will show all of the POs at once without having to click in each individual one.
    Thanks!

  • Report with a temporary data block

    Hi,
    in my app i have a temporary data block (which is not in database) and i need to create a report with that info. Is this possible or the info in the block needs to be stored in db?
    Best regards,
    Bruno Martins

    i think YES.
    you need save that information in a table.
    and in your report to do select on your table.

  • Report with stock arrival dates

    Hi, is there a report in SAP or something I can build in QuickViewer to show when stocks will be arriving from parent company overseas. Perhaps something that shows a list of all POs we've issued for stocks, and against each PO line, the expected arrival date or the invoice date (usually invoice is raised by parent company to us when shipment leaves there)?
    Thanks in advance!

    Hi,
    if you want a report on inward  shipment, you need to use functionality of inbound delivery.
    When ever a shipment leaves from Supplier point, Create Inbound delivery with Ref. to PO no. and enter complete shipping detail.
    You can check the Open inbound delivery report to monitor daily Stock arrival Status.
    When shipment arrives you can do the GR with ref. to inbound delivery.
    I am also going to implement this functionality in our company  for similar scenario, Testing has been done in QA.
    Regards,
    Ranjan Kumar

  • Stock report with grn no & date

    hello gurus,
    I need standard stock reports available in SAP with GRN no. and date.
    points assured*
    Anand

    Hi
    Use MB5B stock on posting date.By using this T code
    1.You see stock on a perticular date
    2.If you give selection date rangeL ex 01.07.2007 to 16.07.2007 then
       It will display Stock as on 01.07.2007
       Stock as on 16.07.2007
       and all the goods movement between 01.07.2007 to 16.07.2007.
    Use MMBE, after executing select Material movements from Environment tab in menu bar.It will also display all the material movements for that material.
    Regards
    Ramakrishna

  • Standard report with po released date

    hi mm experts,
    request pl let me know is there any standard report which gives the po details and release indicator with released date of po.
    pl help.
    regards
    Srihari

    Hi
    U can get Po release date  per release code, use  CDHDR and CDPOS tables in SE16
    Enter transaction as ME28/ ME29N, Enter the range date,enter the object value as PO number (PO number should be 10 digit if the PO is not 10 digit, then add zero value for the prefix).
    Then you can find the release date
    Rest details u can find from ME2N report i.e Po details and Release indicator using dyanamic selection
    Vishal...

  • Report with Form Passing date to form from report issue

    Hi All ,
    I got stuck up in the below issue .Can anyone point out the issue behind it and how to get rid of this.
    I have created a report page with form page .The report page have 2 column identified as conjugate primary key.the col1 is varchar2 and col2 is date .
    The report page have one link on col1 field which is passing the Item_value for both col1 and col2 to form page .
    In the DB level the col2 data type is date (for e.g : 26/07/2007 07:08:56) .But the probem is when we are clicking on the link of col1 it is displaying error like Error like ORA-01403: no data found .
    But if the data in DB is only in format of DD/MM/YYYY removing the timestmap the link is working fine and returing data for other fields in the form page .
    Could anyone pls pointed out the problem and let us know the issue.
    Thanks in advance.
    Regards,
    Deba

    Hi Deba,
    I suppose your problem is due to the : in the time.
    You're passing these values with the url I suppose? Have a look how APEX generates/constructs the url, it uses : to separate things.
    I'm not sure why you want a date in a Primary Key?
    Thanks,
    Dimitri

Maybe you are looking for

  • I want to connnect my early 2012 MBP to my LG HDMI. I have the HDMI cable. What connector do I need for the laptop?

    Please give me the name of the connector for the laptop. Is it a "display port"?

  • Error 4280

    I'm trying to burn from a playlis and all I get is error 4280 can anyone help? presario 3000   Windows XP   cd/dvd teac dw-22e

  • In Spotlight, Why can't I see the file location?

    There has been a loss of a feature from 10.6 SL or 10.7 Lion.... When I search for a file in Spotlight, I want to see the file location. Instead, I get the file preview. Is there a way to set a perference so I can actually "find" my file in the folde

  • Multiple services listening to AQ

    Hello everyone, If there is more than one service pulling data from an AQ, how can we find out which service has pulled the data? Is there anyway to find out what are all the services that are listening to an AQ? Any specific log file or data diction

  • CS5 Contact Sheet II

    I installed my upgrade for Photoshop CS5 today and then downloaded the Contact Sheet II plug-in.... the plug-in is in my CS5 plug-in folder when I try to launch it in CS5... via the AUTOMATE pull down, it DOES NOT SHOW... it DOES show up in Brdige CS