How to publish reports programmatically?

Post Author: mayuradatia
CA Forum: Publishing
I have a set of reports which I would like our client to publish to Crystal Server XI. How can I do so programmatically? If I have scripts, I just need to ask the client to run the scripts rather than explain the process of going through publishing wizard or CMC etc.
Further I would like to schedule these reports programmatically. Kindly help.

CR 2011 does not install any SDK... You can however download SAP Crystal Reports, developer version for Microsoft Visual Studio, which is an SDK that will let you work with VS 2010 and 2012.
You will then have to decide if you want to use the Crystal Reports SDK or the InProc RAS SDK.
Samples are here:
Crystal Reports for .NET SDK Samples - Business Intelligence (BusinessObjects) - SCN Wiki
NET RAS SDK Samples - Business Intelligence (BusinessObjects) - SCN Wiki
Dev Help files:
SAP Crystal Reports .NET SDK Developer Guide
SAP Crystal Reports .NET API Guide
Report Application Server .NET SDK Developer Guide
Report Application Server .NET API Guide
Discussing your requirements with sales may not be a bad idea either: 866-681-3435
http://www.sap.com/contactsap/directory/index.epx
Or, create a phone support incident here:
Crystal Single Case Technical Support - SAP Business Objects US Online Store | SAP Online Store
- Ludek
Senior Support Engineer AGS Product Support, Global Support Center Canada
Follow us on Twitter

Similar Messages

  • How to publish report to APEX

    Are there any demo to show us how to publish the report results to APEX? Thanks for your help.
    Kevin

    user2037578 wrote:
    Hi!
    Here is my story! I have a procedure in APEX that creates xml files. These files should be available from url something like http://host:port/apex/file.xml I'm using embedded pl/sql gateway and Oracle 11g on suse 64bit.
    Is it possible or I have to search for another way to do what I need.
    This is needed because those xml files contains sld formating for wms services used from other server.Try this:
    Create a PL/SQL package in your schema (assuming it is called "myschema") called "myfile" with a procedure called "xml".
    In the procedure, use htp.p to output the XML.
    NOTE: This procedure will not, by itself, use the Apex authentication/authorization schemes. Anyone can invoke it, unless you build some logic into the procedure itself.
    Then do the following:
    grant execute on myfile to anonymous; -- or whatever user the EPG DAD is set up to use
    create synonym anonymous.myfile for myschema.myfile; -- so the package does not have to be prefixed with the actual user
    If the DAD in EPG is setup with a "request-validation-function", you need to modify this as well to allow access to the stored procedure.
    See http://daust.blogspot.com/2006/04/xe-calling-stored-procedures.html for more information.
    - M

  • How to Publish reports for endusers

    Hi All,
    How can I publish my webI report on server for endusers?
    Thanks
    Rinki.

    Hi
        For WEBI report, actually no need to publish report as it is already behaved as a publish report. If your user want to view their report then they can easily do it using the report server url (providing necessary credential). In this case you have to make sure that your user account has not administrative privilege. You can also schedule your report (output could be .xls, .pdf)  and automatically can send this report to the end users' email / inbox etc.
    Hope it will help you.
    thanks
    arif.

  • How to Publish Reports to the user?

    Hi all,
    I’ve created a reporting using the Time-based Publishing at “Content Management >> Reports”. Now I would like to publish the created report to the user. How can I do it?
    Any help will be appreciated,
    Alcides Flach

    Hi Arun Kumar,
    Thank you for your answer.
    I discover another away to publish the KM Report:
    1. Navigate to "Content Management >> Reports"
    2. At the Approval Maintenance's context menu click on "more >> Properties"
    3. On details page click on "Access Link"
    4. Copy the explorer url and paste into the URL Iview.
    I'm not sure if it is the right way.

  • How to Publish Report as portlet?

    Hi,
    after creating a report within an application, how can I publish this component as a portlet. In the "Manage" Tag of the report, the option "publish as report" is not there. Do I have to create a "Provider",and if so, how can I do it?
    Thanks.

    You will first have to expose your application as a provider. You can do this from the grant access tab of the application. Then you should be able to see the "publish as portlet" option for your report.

  • How to publish report output (pdf via XML publisher) on public OAF page

    hi,
    I need publish pdf file (report created with XML Publisher) over link on OA page on external web, but without accessing people from public web into my output directory for concurent requests (only this one to be allowed to access from external web) ....

    sorry, i am late, i couldn't reply on forum ...
    first i submit concurent request to create xml output from report (rdf):
    ConcurrentRequest cr = new ConcurrentRequest(pConncection);
    requestId = cr.submitRequest(applnName, Sablona, Description, null, false, cpArgs);
    i am wait for end:
    while (FileName == "") {
    FileName = getOutputFileName(pageContext,requestId);
    getOutputFileName make select to get status of request from database,
    and on finish i delive pdf document to customer with oracle.apps.xdo.oa.common.DocumentHelper:
    String redirectURL = DocumentHelper.getOutputURL(pageContext,
    "XXCS", //appShortName,
    Sablona, //templateCode,
    (InputStream)dis,
    "PDF", //outputType,
    properties,
    "CS", //language,
    "CS" //territory );
    pageContext.forwardImmediately(redirectURL, null, (byte)0, null, null, true, "N");
    i hope it help you ;o)

  • How to publish Report Viewer reports as Web Services

    I have some reports templates (.rdlc) having only business objects as data sources (no direct SQL connection). They are working well with Windows Report Viewer. Now I am think to make the reports available via web services to multiple apps. Is there
    a way to do that? Any sample?
    Thanks,
    Jason

    Hello,
    SQL Server Reporting Services provides access to the full functionality of the report server through the Report Server Web service. In order to meet your requirement, you
    can try to converting an .rdlc file to an .rdl file
    and then deploy the report to report server.
    If you want to rendering the report in your application, you can try to use the ReportViewer controls in remote processing mode.
    Reference:
    Adding and Configuring the ReportViewer Controls
    Regards,
    Fanny Liu
    If you have any feedback on our support, please click here. 
    Fanny Liu
    TechNet Community Support

  • How to display username in RTF BI publisher report?

    Please advice how to display username in RTF BI publisher report?
    May be this can be done via hidden parameter of BIP report which default value will be set up with macro like {$username$} (or smth like)?
    Thanks in advance!

    Thanks. That worked. I was trying to get it as part of a multi-table query, aliasing dual. But that doesn't work in SQL Plus either so I guess I can't do that.
    I was trying
    select o.*, d.:xdo_user_name
    from oblix_audit_events o, dual d
    Before that I was trying
    select
    :xdo_user_name as USER_ID,
    :xdo_user_roles as USER_ROLES,
    :xdo_user_report_oracle_lang as REPORT_LANGUAGE,
    :xdo_user_report_locale as REPORT_LOCALE,
    :xdo_user_ui_oracle_lang as UI_LANGUAGE,
    :xdo_user_ui_locale as UI_LOCALE
    from dual
    but I must have fat fingered something because that works now too. Thanks.
    So if I need to do this in it's own query and I'm using an RTF template, how do I make that work?
    If I have to do it with it's own

  • How run the run the BI Publisher report for current/active/selected record

    Hi,
    I have one requirement to generate a BI Publisher report in Siebel, which will run on SR's List view. Report should fetch the active SR and its audit trial entities. I know this was achieved easily using Actuate (simply setting "current Recrod only" to true), but I need how to achieve this in BI publisher.
    This report we are creating is in Siebel-BI Publisher integrated environment, not connecting to database. Can body give share your valuble inputs.
    Thanks,
    Ravi

    In my experience with Siebel 8.1.1 and BI Publisher 10.1.3.4.0 when you generate a report from a Siebel View the report will show all data visible on the view. If you wish to have only a few particular records in the report you must query for them first in Siebel then generate the report again. There is useful article describing how to generate the report for the current record but it does require some config on the applet.
    [http://siebel-essentials.blogspot.com/2009/05/siebel-bi-publisher-integration.html]
    -Fred

  • How to publish crystal report designed using SAP Add-on toolbar

    we have installed the crystal report designer V10 and the SAP add-on on the desktop.
    we have designed a formatted report in crystal report designer using an existing BW report that was created using Bex query designer. After this we saved the crystal report back in BW to a role.
    We have not published the report to crystal enterprise server, since the connection to same is not in place.
    We would like to know how to publish this report in Enterprise portal ?
    Can we bypass publishing the report to crystal enterprise server and publish the report on browser or through EP ?

    hi
    Check on this help page if it can help you
    http://help.sap.com/saphelp_erp2004/helpdata/en/f1/0a569ae09411d2acb90000e829fbfe/frameset.htm
    REgards
    Alain

  • How to add different versions of layout in XML Publisher Report?

    How to add two versions of layout(RTF) for different languages in xml publisher report template so that user can see the report in two languages? Is that possible?
    If so then what is the procedure to do that? Can anyone help in this regard?

    Soma,
    Refer to [Oracle XML Publisher User Guide|http://download-uk.oracle.com/docs/cd/B25516_14/current/acrobat/115xdoug.zip] manual, Page 5-8 Adding Localized Templates for Additional Languages.
    Regards,
    Hussein

  • How to run a BI-Publisher report from the Appworx enterprise batch sheduler

    We have a BI-Publisher report that needs to be executed staight after a batch job. Does anyone know how to execute a report from the Appworx enterprise batch scheduler?
    Thanks.

    I'm not familiar with AppWorx, but we use Autosys. We created a PL/SQL wrapper that calls FND_REQUEST.ADD_LAYOUT and FND_REQUEST.SUBMIT_REQUEST to submit XDOREPPB. For any report that needs to be scheduled via Autosys, the wrapper program is executed with the appropriate parameters.
    Hope this helps.

  • How to Publish BI publisher report on Dashboard ???

    Hi All,
    I am new in BI EE. I create a report in BI publisher and after that I want to publish that report in BI Dashboards...
    When I got the edit dashboard page my report is not showing there (which i created in the BI Answers using Administrator user) how i add the path of BI Publisher in the InstaceConfig File??
    Please rectify my confusion I am very grateful to you...
    Regards
    Venkatakrishnan J
    Posts: 403
    Registered: 5/30/06
    Re: Confusion about BI Publisher and Dashboards
    Posted: Nov 19, 2007 4:08 AM in response to: 53637 Reply
    No. All you need to do is go to the Edit Dashboard Page and pull in the BI Publisher report using the BI Publisher Report section. Ensure that you have specified proper BI Publisher path in the InstanceConfig.xml

    When you go into the Edit Dashboards page, do you see a BI Publisher icon to your left? just drag and drop that into your page and then click on properties to include your BI Publisher report. If you get an error then check(only after doing the above) whether you have these entries in your InstanceConfig.xml
    <AdvancedReporting>
    <ReportingEngine>XmlP</ReportingEngine>
    <Volume>XmlP</Volume>
    <ServerURL>http://localhost:9704/xmlpserver/services/XMLPService</ServerURL>
    <WebURL>http://localhost:9704/xmlpserver</WebURL>
    <AdminURL>http://localhost:9704/xmlpserver/servlet/admin</AdminURL>
    <!-- AdminCredentialAlias>bipublisheradmin</AdminCredentialAlias -->
    </AdvancedReporting>
    Thanks,
    Venkat
    http://oraclebizint.wordpress.com

  • How to provide the fixed space in xml publisher report

    Hi,
    I have a report where the report has header information and line information.
    In the first page the header information is prinintg ( like 'Address', 'Logo' and other stuff ).
    Beneath of this the lines data is prining.
    But i need the space which was occupied by the header information in the subsequent pages 1, 2 and otheres
    How to do this , any help on this ?

    Hi,
    I would propose reviewing the eText documentation. I noticed that for RTF templates it's difficult explicitly set the length though within an eText template, you can specify the intended length.
    The Oracle post is, in my opinion, convoluted, though it's a point in the right direction
    Oracle Business Intelligence Publisher Report Designer's Guide
    Regards,
    Daniel

  • How to call the XML Publisher Report thro Standard PO Output for Comm.

    Hi
    We need to call our custom report(XML Publisher Report) from the standard PO Output for Communication Report.
    There is a parameter(Purchase Order Layout) in PO Output for Communication in which we can see no. of standard reports. We want to add our custom report in that list so that when we will run this standard report by selecting our custom report for Purchase Order Layout parameter, we should get the output as per our Custom report.
    Since PO Output for Communication is a Java Concurrent Program, we are not able to place our custom report in the list of Purchase Order layout Parameter.
    Ram

    Welcome to the forums !
    Pl see if MOS Doc 305307.1 (How To Modify Print PO Report POXPOPDF With Custom Template) can help
    HTH
    Srini

Maybe you are looking for

  • How do I use my bluetooth for my Hp ENVY 17?

    Hello to the reader. My name is Kervin and I really wanna know if its possible to activate my bluetooth in my Hp Envy. If its possible, please give a steps by step instruction on how to do it.  Tried searching but the answers werent helpful. THnkas a

  • Is there a way to open a second firefox instance using a shortcut key (i.e. Ctrl + Alt + 9), while a first instance is already running?

    This happens both in Windows XP and Windows 7. Firefox is the only application that does not allow this consistently (this works with MS-Word, Google Chrome, Notepad etc.).

  • My iPhone 5 cannot be used

    My iPhone 5 cannot be used because it requires iTunes version 10.7 or later.  When I'm trying to download this version it cannot get running because my mac pro needs ios 10.8.  and my lap top has no requirement for new versions.  Please advise!!! I r

  • Super 16 mm workflow ???

    I have a 10 minute film to edit at the end of the month and i am looking to sort out a workflow for this. The film will be shot on a Arri SR3 and then telecined to Digibeta tape with a assisted best light telecine. I will be using my Macbook Pro to e

  • How to config user email

    Hi, In our company we use SCCM 2012 SP1 to deploy Office 2013 to all our client machines. The problem is when a client open its outlook, he/she need to confiure all settings. How I can configure this automatically? Thanks in advance.