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.

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

  • 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

  • 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

  • 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

  • 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

  • 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

  • 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

  • How to design crystal report with web service data source?

    I want to design and run a Crystal Report 2008 against my ADO.NET DataSet from web service method.
    I choose New Report, for Data I choose XML, then "Use Web Data Source" hit next, then choose "HTTP WSDL URL" I enter http://localhost/RDWS/Service.asmx?wsdl, hit Next, I leave HTTP username and HTTP password blank. Then I see the Services, Ports and Methods screen. Services: Service, Ports: ServiceSoap, Methods: CustomerOrdersDataSet
    When I click Finish, I get Logon Failed, Details, Schema file is invalid. error:Element Schema@htttp://www.w3.or/2001XMLSchemal not found.
    How can I get this to work?

    The native XML driver is incompatible with ADO.NET DataSet XML.  The specific issue is that the driver cannot handle the recursive definition on "Schema" that the .NET DataSet XML uses.
    The workaround is to create a .NET class that Web References, invoke the Web Service method for the DataSet, then returns it. 
    Use the ADO.NET (XML) driver in Crystal Report to consume the .NET data source.
    Note - when you deploy your report, ensure you deploy the DLL for the .NET class you've created.
    Sincerely,
    Ted Ueda

  • Multilevel routing report (with planned price data)

    Hi Experts,
    Could any of You pls support me with a basic idea how to build a multilevel routing report?
    I am not happy with the existing / standard reports related to routings, I actually need one with all subassemblies and also planned price included from CO.
    So I have found out the following way:
    1.     I build a report, using standard FM CS_BOM_EXPL_MAT_V2, to get a hierarchical BOM all components,
    2.     only select top level and components which has subassemblies
    3.     run my own written FM to get routing data for subassemblies (using mapl, plas, plko, plpo, crhd, crco)  already created
    4.     add planned price data (using CO-tables cssl, cost) 
    It is rather a by-pass; so does a better / nicer solution could be used for the purpose, possibly with some existing FMs (which I have not found up till now)?
    Answers will be appreciated

    Well it all depends on what this Z report which you're building should output at the end of it. Also the format in which it should be displayed.
    Since there is no info on that in your query or what is the exact issue faced, just putting across some FM/Bapi which might be of interest
    For routing you can use -
    CARO_ROUTING_READ
    Some BAPI's which are relevant for costing:
    BAPI_COSTESTIMATE_GETEXPLOSION
    BAPI_COSTESTIMATE_GETDETAIL
    BAPI_COSTESTIMATE_ITEMIZATION

  • [2007A] - [8.81] Aging report with passed due date invoices in 120+ column

    Hello,
    My database contains invoices due in october 2010.
    When I run the aging report, the amount of the invoice is not in column 0-30 but in column 120+
    When I run the dunning wizard, these invoice are not included.
    i tried to look all the parameter without success. Any idea why I have these invoice in this column ? Please let me know if you need more information to understand my issue.
    I also tried to run the report in 8.81, and teh problem remain the same
    Thank you for you help
    Sébastien

    Gordon,
    OK you're right, I didn't read well this report, and I was confused with the fact that these invoices were not in the dunning wizard result.
    So yes, the aging report is correct, but my issue was the dunning wizard, and I realize these invoices have a dunning level in the installment higher than the max dunning level of my dunning terms.
    So thank you for your answer, it lead me to look at the real problem!
    Sébastien

Maybe you are looking for

  • Adobe Photoshop 8.0 Object Library for PSE 8 ?

    Hi I want to write a program to loop over all tags and copy the associated fotos to folders named with the tag-name. By this way I have a good structure to select the fotos on stick / DigiFrame. I'm a Unify TeamDeveloper developer, so it's no problem

  • Query on virtual column that is defined in XMLIndex does not use the index

    Hello, I am facing an issue in executing queries on a virtual column that is defined in an XMLIndex: it appears as if the index is not used. Database details: Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production PL/SQL Release

  • Colorbox control in an array of clusters

    hi, im working on labview 6. i have an array of clusters. the cluster has eight elements. one of them is a colorbox control. I want this colorbox control to have only 4 colors i.e, the user has a choice of only 4 colors if he clicks on the colorbox c

  • ITunes adding artist to song title

    Library of about 10,000 songs tagged satisfactorily. For some reason, iTunes likes to add the artist before the song title. For instance in iTunes: B.B. King - The Thrill is Gone | B.B. King | Capitol Gold Blues Legends and when I add library to my i

  • Can't open PowerPoint

    Help! I have recently installed two new updates--one is the latest update to Snow Leopard, 10.6.2, and the other is the latest update to Microsoft Office 2004. Word and Excel are working fine, but I am unable to open PowerPoint. The initial screen co