Report Creation with Qucik Viewer(SQVI)

Hi
My client requirement is to get the CSO  report on the  items which are invoiced and the items are not invoiced in the CSO.
i though i could generate the intended report wiht Quick Viewer (SQVI)
kindly advise me how do i proceed with this kind of report.
Regards
TharakJReddy

Your application is referencing the file craxDDrt.dll. In order to use this dll, you needed to obtain extra licensing. Since CR 10 has been out of support for over 5(?) years, I am not sure if you can still obtain the licensing. Contact sales at 866-681-3435 to find out.
Alternatively, reference the craxDrt.dll. This dll does not require any extra licensing. However, the error you are getting indicates that you are using Report Creation APIs (RCAPI) from craxDDrt.dll. In my experience, there often were other ways of coding to achieve the same thing with craxdrt.dll. Let me know what RCAPIs you are using and I may be able to help out there.
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]

Similar Messages

  • Error while saving model to the reporting repository with logical views

    I have created a view object in the logical model based on objects from the logical model. When I try to save the model to the reporting repository, an error occurs.` If I remove the view object, I can successfully save the model to the reporting repository. Here is the log detail:
    2012-03-01 14:00:50,419 [Thread-71] ERROR ReportsHandler - Error Exporting to Reporting Schema:
    java.lang.ClassCastException: oracle.dbtools.crest.model.design.logical.AttributeView cannot be cast to oracle.dbtools.crest.model.design.logical.Attribute
         at oracle.dbtools.crest.model.design.logical.LogicalDesign.getObjectsWithMeasurements(Unknown Source)
         at oracle.dbtools.crest.exports.reports.RSMeasurements.export(Unknown Source)
         at oracle.dbtools.crest.exports.reports.ReportsHandler.export(Unknown Source)
         at oracle.dbtools.crest.swingui.ControllerApplication$ExportToReportsSchema$1.run(Unknown Source)
    Any thoughts on what is wrong.
    Thanks

    Hi,
    thanks for feedback.
    Any thoughts on what is wrong.The program code is wrong - I logged bug for that.
    Philip

  • Report creation with PNP logical database

    Hi All
    Want to select data according to the begda and endda on the selection screen, if any body has the code will be of great help
    rgds
    aj

    Hi,
    In the attributes,give PNP as logical database.
    Then in the program,paste the following coding.
    tables pernr.
    infotypes 0001.
    start-of-selection.
    get pernr.
    provide * from p0001 between pn-begda and pn-endda.
    write : / p0001-begda, p0001-endda.
    endprovide.
    end-of-selection.

  • Report Builder Wizard and Parameter Creation with values from other data source e.g. data set or views for non-IT users or Business Analysts

    Hi,
    "Report Builder is a report authoring environment for business users who prefer to work in the Microsoft Office environment.
    You work with one report at a time. You can modify a published report directly from a report server. You can quickly build a report by adding items from the Report Part Gallery provided by report designers from your organization." - As mentioned
    on TechNet. 
    I wonder how a non-technical business analyst can use Report Builder 3 to create ad-hoc reports/analysis with list of parameters based on other data sets.
    Do they need to learn TSQL or how to add and link parameter in Report Builder? then How they can add parameter into a report. Not sure what i am missing from whole idea behind Report builder then?
    I have SQL Server 2012 STD and Report Builder 3.0  and want to train non-technical users to create reports as per their need without asking to IT department.
    Everything seems simple and working except parameters with list of values e.g. Sales year List, Sales Month List, Gender etc. etc.
    So how they can configure parameters based on Other data sets?
    Workaround in my mind is to create a report with most of columns and add most frequent parameters based on other data sets and then non-technical user modify that report according to their needs but that way its still restricting users to
    a set of defined reports?
    I want functionality like "Excel Power view parameters" into report builder which is driven from source data and which is only available Excel 2013 onward which most of people don't have yet.
    So how to use Report Builder. Any other thoughts or workaround or guide me the purpose of Report Builder, please let me know. 
    Many thanks and Kind Regards,
    For quick review of new features, try virtual labs: http://msdn.microsoft.com/en-us/aa570323

    Hi Asam,
    If we want to create a parameter depend on another dataset, we can additional create or add the dataset, embedded or shared, that has a query that contains query variables. Then use the option that “Get values from a
    query” to get available values. For more details, please see:http://msdn.microsoft.com/en-us/library/dd283107.aspx
    http://msdn.microsoft.com/en-us/library/dd220464.aspx
    As to the Report Builder features, we can refer to the following articles:http://technet.microsoft.com/en-us/library/hh213578.aspx
    http://technet.microsoft.com/en-us/library/hh965699.aspx
    Hope this helps.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Materialized View creation with REFRESH FAST

    Hello ,
    Please see below case,
    TABLE A1(partitioned range+list)
    COLUMN C1  -- Primary key
    COLUMN C2  -- NUMBER
    TABLE D1
    COLUMN C1 -- PRIMARY KEY
    created MV log as below
    CREATE MATERIALIzED VIEW LOG ON A1 WITH ROWID,PRIMARY KEY INCLUDING NEW VALUES;
    CREATE MATERIALIzED VIEW LOG ON D1 WITH ROWID,PRIMARY KEY INCLUDING NEW VALUES;
    Trying to create MV like below:
    CREATE MATERILIZED VIEW mv1test
                                    REFRESH FAST ON COMMIT
    AS
    Select
    FROM A1,
                            D1
                    WHERE A1.C1 = D1.CI
    AND A1.C2 IS NOT NULL;
    It gives below error message:
    ORA-12052: cannot fast refresh materialized view schema.mv1test
    12052. 00000 -  "cannot fast refresh materialized view %s.%s"
    *Cause:    Either ROWIDs of certain tables were missing in the definition or
               the inner table of an outer join did not have UNIQUE constraints on
               join columns.
    *Action:   Specify the FORCE or COMPLETE option. If this error is got
               during creation, the materialized view definition may have be
               changed. Refer to the documentation on materialized views.
    However ,as discussed in earlier thread i checked all general restrictions of the 'Refresh fast' approach for join.
    Restrictions on Fast Refresh on Materialized Views with Joins Only
    Defining queries for materialized views with joins only and no aggregates have the following restrictions on fast refresh:
    1) They cannot have GROUPBY clauses or aggregates.
    2) Rowids of all the tables in the FROM list must appear in the SELECT list of the query.
    3)Materialized view logs must exist with rowids for all the base tables in the FROM list of the query.
    4)You cannot create a fast refreshable materialized view from multiple tables with simple joins that include an object type column in the SELECTstatement.
    As per above restrictions ,
    1) Group by clause is not present
    2)i do not understand 2nd point , i have added a1.rowid  and d1.rowid in  select statement of MV, but got same error.
    3) observed same as 2nd point.
    4)we have CLOB column in select list. Tried removing this column but got same error.
    Please do let me know any workaround on this.
    Thanks in advanced ..
    PM

    Basic Materialized Views show how to analyse MVs using dbms_mview. I'm not sure about creating MVs on partitioned tables, that partition maintenance might cause problems

  • Report which concatenates 13 views with union all running slowly

    Oracle 8.1.7 windows 2000 server
    I am trying to improve the performance of a report which is comprised of 13 views.
    When I run each of the views individually, the total run time for the views is less than 5 minutes. When I run the report, it takes 28 minutes.
    Can anyone suggest why the extra time is being taken?
    To reiterate:
    select a,b from c; (executes in 10 seconds)
    select d, e from f (executes in 3 seconds)
    select x, y from z (executes in 1 minute)
    total runs time = 5 minutes
    However,
    select a,b from c
    union all
    select d, e from f
    union all
    select x, y from z (executes in 28 minutes)
    The execution plans do not change between the report and the indiividual views. Views are being concatenated with union all so no sorting is taking place
    Many thanks,
    Jason Parker.
    Edited by: jclparker on Feb 18, 2009 4:26 AM
    Edited by: jclparker on Feb 18, 2009 4:30 AM

    Could you post the execution plan? Please use formatting tags to save the white space while posting the plan.

  • Viewing reports with crviewer:viewer

    Hello All,
    I am having issues with the <crviewer:viewer> tag
    I am trying to embed the crystal report inside the another jsp
    here is the code that i wrote
    for setting the crystal viewer
    String label = request.getParameter("label")==null?(String)session.getAttribute("label"):request.getParameter("label");
        session.removeAttribute("label");
        session.setAttribute("label",label);
        String userID = (String)session.getAttribute("USERID");
        String userName = (request.getParameter("userid")==null)?"":request.getParameter("userid");
        CrystalReportViewer viewer = new CrystalReportViewer();
        IEnterpriseSession es = (IEnterpriseSession) session.getAttribute("ISEnterpriseSession");
         Fields parameterFields = (Fields)session.getAttribute("parameterFields");
         IReportSource reportSource = (IReportSource)session.getAttribute("reportSource");
         System.out.println(" report source in the view report : " + reportSource);
         viewer.setName("CrystalReportViewer");
         viewer.setOwnPage(true);
         viewer.setDisplayPage(true);
         viewer.setPrintMode(CrPrintMode.ACTIVEX);
         viewer.setOwnForm(true);
         viewer.setParameterFields(parameterFields);
         viewer.setReportSource(reportSource);
    in the above code i already set the parameters but in this tag it still shows me the page where i need to put the values
    <crviewer:viewer viewerName="<%= viewer.getName()%>"  enablePageToGrow="false"  height="250" width="250" reportSourceType="reportApplicationServer" reportSourceVar="reportSource" >
                        </crviewer:viewer>
    or can anyone tell me how to set the parameters values to the <crviewer:viewer> tag

    You are mixing two technologies:  The crviewer tag must have the parameters set in the tag itself.  If you want to use the CrystalReportViewer object to set parameters and view the report, you will need to use the processHTTPRequest method instead.

  • Dymanic Parameters with a view, Report based on a proc

    I have a report that utilizes a SQL Server 2005 stored procedure with one input parameter (an integer).  The report runs fine, the parameter accepts input fine (ie. I can type in my integer input number and generate the report).  I want to create a dynamic parameter drop down list populating this parameter from a view in the same database with a list of ID (the input integer) and descriptions.
    I added the view with Database Expert, did NOT link the view and the procedure at all.  Edited the parameter, selected "dynamic", picked the ID field in the value column, the description field in the description column and clicked to create the parameter. 
    When I try to run the report, I get the error "Prompting failed with the following error message: "List of Values failure: fail to get values. [Cause of error: Database Connection Error: Database Vendor Code: 3621  Database Connection Error: 'Database Vendor Code: 515 ' UNKNOWN.RPT '
    Error Source: prompt.dll Error Code 0x8004380D
    This report runs only in the CR Desktop application (11.0) - it's not a client/Report Server setup.  I can connect to the database fine, I can even create and run a report of just my view of parameters. 
    What am I missing?
    Edited by: dcaparaso on Aug 13, 2011 4:01 AM

    Hi David, 
    I'm a bit confused on how you are getting the error.  Where does the error happen?  Is it in an application with the Viewer or from the Report Server? 
    I've run into the same error when scheduling a report in the report server.  Works fine in Crystal on my machine but after it's published it doesn't run. 
    I found the problem to be a difference between my version of Crystal and the version of the Report Server.  The Report Server was upgraded but my local version of Crystal wasn't. 
    Once I upgraded Crystal to match the version of the Report Server the reports were fine. 
    Good luck,
    Brian

  • Creation of Article with purchasing view.

    Hi,
    I am using BAPI_MATERIAL_MAINTAINDATA_RT  to create Article. I am able to create article using Basic view, Log. DC view etc.
    There is no purchasing view in HEADDATA. Also  fields like Purchase organization, net price etc are not present in any structure.How to create an Article  with purchasing view using this BAPI.
    Please help me in this regard.
    Regards,
    Kiran.

    Hi,
    I am using BAPI_MATERIAL_MAINTAINDATA_RT  to create Article. I am able to create article using Basic view, Log. DC view etc.
    There is no purchasing view in HEADDATA. Also  fields like Purchase organization, net price etc are not present in any structure.How to create an Article  with purchasing view using this BAPI.
    Please help me in this regard.
    Regards,
    Kiran.

  • Creation of Library and Report in Report Painter with Z tables.

    HI,
    When I am creating library in report painter with Z table it is giving the following error message 'Table ZCO_SEMI_FIN_VAL is not installed in Report Writer'.
    Can u help me how u install Z table in report painter and create the characteristic and key figure of the Z table in the library.
    Regards,
    Partha B

    Hi Partha Pratim Bhar,
    In order to bring / enable a Z table for you to build a library, you will have to set it at transaction GRCT.
    Here you need to configure - table (Z table) , characteristics and Key figures.
    You can refer any other tables by SAP in GRCT for reference.
    Revert if you require additional help.
    Regards,
    Subin John

  • Assigning a T-code to the report created under transaction code (SQVI)

    Dear Gurus,
    I have joined three tables in t-code SQVI and created the report after assigning the required fields in list or selected views.
    Now I want to assign this report to a particular T-code, so that any user can access the same report without creating it in SQVI again.
    Kindly let me know how can I assign the T-code to this Report.
    Thanks,
    Abhishek

    Follow the following steps:
    1. Make a transaction with parameters transaction from se93 .
    2. Put START_REPORT in the transaction
    3. Check the skip intial screen checkbox
    4. in the table control in the end of screen put these values
    D_SREPOVARI-REPORTTYPE = AQ
    D_SREPOVARI-REPORT = <USER GROUP in WHICH THE QUERY IS CREATED> G
    (G stands for GLOBAL AREA:)(Entered after a space)(G should come after 9 chanracters(8 char for user group,one space and then G)
    D_SREPOVARI-EXTDREPORT = <QUERY NAME>
    Thanks & regards
    J Prakash

  • Std report T.Code to view the Employees those are assigned to the Project

    Dear Guru's,
                          We are assigning Employeeu2019s in u201CActivityu201D  u201CPersonal assignment Tabu201D, for these employees we are booking the u201CTime sheetu201D against u201CNetwork activityu201D. 
                   Are there is any standard report is available to view the Employees those are assigned to the Project. If it is available please provide the Transaction Code.
    Regards,
    Bhanu Prathap

    Hi
    Nitin is correct if there is no HR then it is difficult to set up resource planning based on workforce. Nitin is also correct in poinitng out that yu do not have to implement HR fully, just set up the personeel master data (HR Mini Master) with a basic set of data infotypes.
    If however you do not plan to set up HR ot the personnel master then you need to do creative thinking -  e.g. set up all your people as individual work centres and assign to activites - the work centre description can be the name of the person and the workcentre number can be the employee number - restrcitcions is the field length, etc - however the down side of all this is that standard reports with personnel number number will not suffice and you will have to do some work for your reporting - not major as the data is stored in SAP tables

  • Issue in Pricing Report Creation - V/LA

    Dear All,
    I have created a new pricing report in V/LA.
    Details:
    3 condition tables in the pricing configuration.
    1-SO / DC / Customer / Sales district / Material
    2-SO / DC / Customer / Material
    3-SO / DC / Material
    During report creation I select only "Material" field from the field selection screen & proceed with "AND" option.
    From Table selection screen, I select all those 3 condition tables.
    Now at executing of this report (In V/LD), I enter only "Customer" field (say customer 1000) in the selection criteria. (because I want to see all condition records exists for that customer 1000?
    When I execute the report it shows below 3 sections.
    1-SO / DC / Customer / Sales district / Material - All condition records exists for that customer/Sales District combination
    2-SO / DC / Customer / Material - All All condition records exists for that customer
    3-SO / DC / Material - All condition records maintained for Material level.
    But as per my selection criteria, system should show only 1 & 2 sections.
    How can I omit appearing sections 3 in my pricing report. ( Because I want to see condition records relevant to that customer only)
    Highly appreciate all your suggestions !!
    Thanks in advance !
    Edited by: Anupa Wijesinghe on Sep 24, 2009 8:32 AM
    Edited by: Anupa Wijesinghe on Sep 24, 2009 8:33 AM

    Dear Matthew,
    As per suggestion, I have to create 2 reports for the above requirement.
    1- with only Customer tables to see customer level prices. (For this I have to add only below 2 tables)
                          - SO / DC / Customer / Sales district / Material
                          - SO / DC / Customer / Material
    2- Other report to see material level prices. For that I have add all 3 tables.
                          - SO / DC / Customer / Sales district / Material
                          - SO / DC / Customer / Material
                          - SO / DC / Material
    So with this when user want to see price by customer, he has to select FIRST report & when he want to select price by Material, he has to select SECOND Report.
    It's not very user friendly, But yes, I can suggest it as a solution.
    Thanks for your reply ! 
    Really helpful !

  • Report Based on SQL view not pulling in all parameters

    Post Author: ronhawker
    CA Forum: .NET
    I based a report on a SQL view below:SELECT     TOP (100) PERCENT CorpDirectory.Position, CorpDirectory.PhoneDirect, CorpDirectory.Email, CorpDirectory.Store, CorpDirectory.Name,                       CorpDirectory.PhoneFaxWave, CorpDirectory.Department, Store.StoreName, Store.StoreStreetAddress, Store.StoreCity, Store.StoreState,                       Store.StoreZip, Store.StorePhone, CorpDirectory.DisplayOrderFROM         dbo.CorpDirectory AS CorpDirectory INNER JOIN                      dbo.Store AS Store ON CorpDirectory.Store = Store.StoreORDER BY CorpDirectory.Store, CorpDirectory.Department, CorpDirectory.DisplayOrder, CorpDirectory.Name When the report was created the order by sequence only brought in the first parameter of CorpDirectory.Store. It seemed to ignore the other three order by parameters. I am running 10.2 is VS2005.

    Sharmila,
    Thanks for your response. Maybe I wasn't clear enough in my previous statement. I will give an example of what I am trying to accomplish.
    Let's say I have 2 date fields(SUBMITDATE,COMPLETEDATE) in a table TABLE A
    I want to calculate a field called CYCLETIME with the following conditions:
    If COMPLTEDATE is NULL, then CYCLETIME = SYSDATE-SUBMITDATE
    IF COMPLTEEDATE is not null, then CYCLETIME = COMPLTEEDATE-SUBMITDATE
    Would appreciate any help.
    Thanks
    Dev
    Hi,
    You can do the calculation in the sql query itself. Here is an example which shows the sum of salaray for each department in the scott.emp table.
    select deptno,sum(sal) sal
    from scott.emp
    group by deptno
    Thanks,
    Sharmila

  • BI Publisher report based on VO (View Objects)

    Hi,
    I would like to know, can we generate BI Publiher report based on VO (view Objects ). Actually we are creating VOs for ADF and want to know if that can be used for generting BIP report.
    Thank,s
    Niraj

    Hi Niraj
    Yes, you can, there is a method on the VO to get the data from it in an XML format. Then use our APIs >> documentation to format it with a template.
    Regards, Tim

Maybe you are looking for

  • Trouble setting up new device with iCloud backup

    I am trying to set up a new Mac Book Pro, and a new iPad Air. I wasn't sure which to choose, set up as new or from iCloud backup. I was having challenges backing up to iCloud from my iPhone, so I chose set up as new, thinking when I logged into iClou

  • I need to know the multitude of reason why my iPhone 5s would prompt me for my Apple ID password. Please help.

    I need to know the multitude of reason why my iPhone 5s would prompt me for my Apple ID password. All I did was place my phone on the charger, I then walked away for 10-15mins and when I came back it was asking me to enter my Apple ID password. I nev

  • Differences between EP7 and EP6 versions

    Hi Everybody, Could someone let me know the differences between EP 7 and EP 6? Thanks, Sridar.

  • Part 2 posting in USD

    Hi All, In case import processing i am  capturing excise invoice (in INR) before GRN and in MIGO if i refer the same excise invoice the duties are calculating in USD insted of INR. Subsequently in J1IEX also it is considering USD. PLease suggest on t

  • Could you please help me recreate this text effect?

    Hey guys, thank you very much for clicking on my question I need some help in figuring out how to do the text effect at the end of this short commercial: http://www.youtube.com/watch?v=pQrxfBOo_Mo what i'm going for is for it to say: WE (stationary)