How do send to call on Infoview programated parameters did Crystal Reports

Hi
I created some reports in Crystal Reports 2008 that have parameters, these reports function fine, but when I try to view them on Infoview, my reports still appear all the information without requiring all the program parameters.I have done the following steps to try solve that, but the problem contnues:
1. connect to the Central Management Console (CMC)
2. open the properties of my report
3. expand Default Settings and click on Parameters link
4. I checked "Prompt when viewing"
I´m using Business Objects 13 and Crystal Reports 2008
Do you have another solution?
Thanks in advance

Hi,
please open the report in the CR designer und go to File. Unselect there the Save data with report option and save the report again in the BOBJ repository.
Regards,
Stratos

Similar Messages

  • How to send a PDF file as a FAX from Oracle Reports 6i

    Hi
    I want to know how to send a PDF file as a FAX from Oracle Reports 6i. Or please post any sample code in reports that sends PDF document as FAX
    Help need immediately.
    Thanks in advance. my email id is
    [email protected]
    Arun
    null

    hello,
    there is no native support for directly faxing a report. you could e.g. use a fax-software that has a printer-driver that supports this.
    regards,
    the oracle reports team

  • A Query regarding calling a DB procedure from a Crystal report

    Hi,
    Please tell me how can we call a database procedure from a crystal report  (crystal report XI)?
    I tried by selecting the procedure as a data source for the report; but its giving me an error "Invalid Argument Provided".
    The procedure contains a single Update table statement. Could anyone please help me to resolve this problem as early as possible ?
    Thanks & Regards,
    Priyashree Katkar.

    Duplicate of
    Crystal reports with a DB procedure
    Closing and locking this thread
    Ludek

  • How to set a new value for formula field in crystal reports xi?

    <p>How to set a new value for formula field in crystal reports xi?</p><p>//formula</p><p>{@description}</p><p> </p><p>exemplo in VB6</p><p>crxSubreport.FormulaFields.Item(1).Text =  "&#39;Subreport Formula&#39;"  or</p><p>crxSubreport.FormulaFields.Item("description").Text =  "&#39;Subreport Formula&#39;"</p><p>How to in JRC?</p><p> </p><p> </p><p> </p><p> </p><p> </p><p> </p><p> </p><p> </p>

    Hi,
    This functionality is known to be very important and is a key part of the next major release of the JRC planned for the first half of 2008.
    Regards,
    <p>Blair Wheadon</p>
    <p>Product Manager, Crystal Reports</p>

  • How to embed the Word Document and PDF file into Crystal report?

    How to embed the Word Document and PDF file into Crystal report?
    I have word doc which having 10 pages. I need to show all of the 10 pages at a time. I tried OLE object but problem is it shows only one page.
    Is there any solution to show word doc / PDF file in CR?

    Symptom :
    When embedding a pdf document into a Crystal Report, only the one page shows.
    Reproducing the Issue
    Environment:
    Crystal Reports OLE object
    Cause
    An OLE object only displays the first page.
    Resolution
    Embed multiple objects, one for each page
    Or
    Use a hyperlink to the object instead
    Hope this helps!
    Regards,
    Vinay

  • How to fix the height of the details section in crystal reports.

    hi all
    How to fix the height of the details section in crystal reports.

    Thanks for your reply
    i didnt get the clear idea about your answer can you explain it once with example
    why iam asking is when i add a new details section according to you answer maintaining same height of the two details sections and i see the preview the iam getting gap between each record. this is so because one record from details section1 and another empty space from details section2
    like
    Details section A-contains records
    Details section B- no records
    Details section A-contains records
    Details section B-no records
    Then how will i solve my issue
    Thanks in advance

  • How to send SMS by using ABAP program

    HI Gurus,
    I need to notify the vendor through sms when his goods are received. His details are stored in vendor master.
    My problem is that I am not able to find any function module for the same.
    Do any of you know how to send 'sms' to particular mobile number using ABAP.
    Are there any basis settings required for the same?
    Thanks and Regards,
    Saurabh

    Hi,
    Pls check the below links
    http://help.sap.com/saphelp_nw04/helpdata/en/58/97c43af280463ee10000000a114084/frameset.htm
    /people/ronen.fox/blog/2007/12/06/sending-sms-notification-via-business-workflow
    http://www.****************/Tutorials/Workflow/Workflow.htm
    You can use the FM: 'SO_DOCUMENT_SEND_API1' &
    'SO_DOCUMENT_SEND_API1_NEW'.
    to send the mail,sms etc.
    But you have to make some chamnges in the reciever table, jus go thru FM documnetaion once, you will fine the option for sending SMS thru either of this FM.
    Below is a sample code for sending e-mail.
    so, u can take help from this.
    data declarations
    DATA : v_sender TYPE soextreci1-receiver,
    v_doc TYPE sodocchgi1,
    it_paklist TYPE STANDARD TABLE OF sopcklsti1 ,
    wa_paklist TYPE sopcklsti1 ,
    it_obj_head TYPE STANDARD TABLE OF solisti1 ,
    it_obj_bin TYPE STANDARD TABLE OF solisti1 ,
    it_obj_txt TYPE STANDARD TABLE OF solisti1 ,
    it_obj_rcv TYPE STANDARD TABLE OF somlreci1 ,
    wa_obj_rcv TYPE somlreci1 ,
    v_desc(100).
    CONSTANTS: c_start(12) TYPE c VALUE '000000000000001',
    c_num(12) TYPE c VALUE '000000000000002',
    c_num1(12) TYPE c VALUE '000000000010030',
    c_raw(3) TYPE c VALUE 'RAW',
    c_test(4) TYPE c VALUE 'TEST',
    c_X(1) TYPE c VALUE 'X'.
    refresh internal tables
    REFRESH : it_paklist, it_obj_rcv.
    clear internal tables
    CLEAR : it_paklist, it_obj_rcv, v_sender.
    v_sender = sy-uname.
    fill internal table it_paklist
    wa_paklist-head_start = c_start.
    wa_paklist-head_num = c_num.
    wa_paklist-body_start = c_start.
    wa_paklist-body_num = c_num1.
    wa_paklist-obj_name = c_test .
    wa_paklist-doc_type = c_raw .
    wa_paklist-transf_bin = c_X .
    APPEND wa_paklist TO it_paklist.
    clear: wa_paklist.
    Data in the Header/subject Line
    v_desc = text-005 .
    v_doc-obj_name = c_objname .
    v_doc-obj_descr = v_desc.
    Mail text
    APPEND v_desc TO it_obj_txt.
    Preparing the receiver list
    wa_obj_rcv-rec_type = 'U'.
    wa_obj_rcv-rec_type = 'C'.
    v_dlist = 'SCE_TEST'.
    wa_obj_rcv-receiver = v_dlist. "Distribution list.
    wa_obj_rcv-receiver = Enter the mail id .
    APPEND wa_obj_rcv TO it_obj_rcv.
    Call the function module to send mail
    IF NOT it_obj_rcv[] IS INITIAL.
    CALL FUNCTION 'SO_DOCUMENT_SEND_API1'
    EXPORTING
    document_data = v_doc
    sender_address = v_sender
    sender_address_type = 'B'
    put_in_outbox = 'X'
    commit_work = 'X'
    TABLES
    packing_list = it_paklist
    object_header = it_obj_head
    contents_bin = it_obj_bin
    contents_txt = it_obj_txt
    receivers = it_obj_rcv
    EXCEPTIONS
    too_many_receivers = 1
    document_not_sent = 2
    document_type_not_exist = 3
    operation_no_authorization = 4
    parameter_error = 5
    x_error = 6
    enqueue_error = 7
    OTHERS = 8.
    IF sy-subrc NE 0.
    MESSAGE text-006 TYPE 'I' .
    ENDIF.
    ENDIF .

  • How to send FaceTime calls

    i am having trouble sending factime calls because i dont know how, can u help me?

    Just launch Factime and type in the persons phone number. If they have facetime it will ring and they can accept or not.
    Actually from your addressbook list on the right, so you just click on their phone number.

  • Help Me! How to send sms from a java program with a pda connected to system

    help me ,
    I am new in JavaME. I have to send sms from a java program, A PDA is connect to the system. Can some one help me to make that program which interact with PDA connected to system and send sms to any mobile or pda phones.

    user12873853 wrote:
    I believe JavaMail API will help in sending the mails and SMS through SMTP server. Sounds more like false hope than belief to me. The only way that would work is if you have an SMS gateway that allows communication through SMTP. Doubtlessly some exist (searching for 'JavaMail sms' through google certainly seems to indicate this), but if you have to ask you don't have one.
    And that exactly where you are stuck: to send SMS messages you need an SMS gateway. That will be the first thing you have to shop for, until then there is no reason to think about code, protocols or implementations. It can be as simple as hooking up a mobile phone, but then you cannot send bulk messages of course. Most likely you'll need to shop around for a partner that has an SMS blasting service you can use.

  • Is there a way to call a SQL Program from an Oracle Report?

    Morning friends. I had a question about Oracle Reports and them calling a SQL Program. Here is the problem at hand. I am hoping to not have to change the existing program a whole lot!
    Currently, here is what is happening. I have a .sh file which calls the Oracle Report first and then goes on to call a .sql program. I am using Oracle Reports 10g and the call to run the report is RWCLIENT. This was earlier being called using RWRUN.
    Because of certain issues of synchronicity with RWCLIENT, I am now looking to move the call to the .sql program to the Oracle Report (Ideally the AFTER_REPORT trigger). Is this possible?
    The Oracle Report basically outputs a listing and the .sql program does a spool and creates a text file which is later used as attachment to the email and sent out to the person who submitted the Report.
    Here is the shell script.
    # Accept system input parameters
    p_gradapp_user_id=$1
    p_gradapp_job_id=$2
    program_unit='GRAD001A'
    rwrun.exe module=$GRADAPP_PATH/GRAD001A userid=$p_gradapp_user_id paramform=no desformat=$GRADAPP_PRINTER(GRAD001,1) destype=file desname=grad001-$p_job_id-1-1.lis p_gradapp_job_id=$p_gradapp_job_id p_gradapp_user_id=$p_gradapp_user_id batch=yes
    exit_status=$?
    program_unit='GRAD001B'
    sqlplus.exe -s $p_gradapp_user_id @$GRADAPP_PATH/grad001b.sql $p_gradapp_user_id $p_gradapp_job_id
    exit_status=$?
    exit 0

    If you are going to use rwclient try BACKGROUND=NO as an extra parameter:
    background=NO: Runs the report synchronously. The client waits for the report to queue, be assigned to a runtime engine, run, and finish.
    See: http://download.oracle.com/docs/cd/B14099_19/bi.1012/b14048/pbr_cla.htm#i656436

  • How to send emails from of pdf's generated by oracle reports

    I have several pdf documents , I want to email those pdf's . Please let me know how to send emails from oracle reports .
    Thanks,
    Previn

    I have integrated Oracle Reports with Oracle Portal and used the scheduling feature via portlets. We have reports that run every monday morning for management. For more info go to:
    http://otn.oracle.com/products/reports/htdocs/getstart/demonstrations/index.html
    OR
    I think if you set destype=mail, desformat=PDF, and desname=[email protected] that should also do the trick.
    Just be sure that you have put your mail server's IP address in the rep_<machine_name>.conf file located in your <oracle_home>/reports/conf directory. If this is not set up, the mail feature won't work.
    Martin

  • How to send more than one value to the Jump target report variable screen.

    Hi,
       I have two reports with Plant variable on their input variable screens. Say this Plant can take two values X and Y. The first report is executed with Plant value X and displays data. When a jump is made  to report two, Plant value X is retrievd into report two's plant varible value. Now how to send value Y also to Report two when jump is made. I think we can do it with a customer exit? Any help is appreciated
    Thanks
    Bhanu

    Hi Bhanu,
    I guess u have created a Variable with Sinlge value ,So Create a Variable which has Multiple Sinlge Values or Interval so that u can have more than one value and if u hvae more than value u will get data for those values and when u do a jump then u can see the data in the JUMP query for both the Values of Input.
    Rgds
    SVU123

  • How does a PowerBuilder 12.6 program invoke a Crystal Report 2013 file (rpt)?

    Background:
    We have been trying to find a solution how to invoke Crystal Reports file (.rpt) from Powerbuilder 12.6.
    From the various forum discussions, it seems that the Crystal Viewer OLE control has been deprecated in Crystal Reports 2013.
    What methods are available to invoke Crystal Reports 2013 rpt files from Powerbuilder 12.6, if any?
    What methods are available to invoke Crystal Reports 2013 rpt files from other platforms, e.g, C++, .NET, Java, etc.?
    Please post a solution or suggestion to accomplish this.
    Your suggestions would be greatly appreciated.
    Thank you very much.
    Lenny

    Hi Leonard;
      You might want to ask this question as well in the CR Forum as SAP now owns that product as well.  I am sure that Delhi, VB, etc developers must also need to know.
    SAP Crystal Reports
    Regards ... Chris

  • How to Jump (Drill-through) between WebI query (also in Crystal Report)

    Hi BO experts,
    I read that we can achieve drill-down in Crystal Report and WebI.
    But I have requirements here to jump (like RRI or Report to Report Interface) in BEx Analyzer and to pass some values (as parameter), i need to achieve:
    1. jump between WebI queries (in WebI)
    2. jump between Crystal Report reports (in Crystal Report)
    3. jump from Crystal Report to WebI
    I read that in WebI, jump can be achieved by just opening the URL of the receiver query, but we can't pass on certain values as parameter from the sender query to the receiver query (which is possible in RRI case).
    Has anyone ever done it before? Please let me know how to achieve it..
    Thank you very much.

    You can navigate beween report using Report Linking. This can be achieved through an Opendocument functionality.
    Using Opendocument, you can call a webi report from a parent webi report and then pass parameter's as well. Wigooglth the same feature you can invoke a crystal report also from a webi report and pass values.
    In crystal report also you can use Opendocument. However there are better features like sub-reports to do this.
    You can google for opendocument or search in SDN to get detailed documentation of OpenDocument.
    Anil

  • How to keep file name in print queue when printing crystal report

    We are using VB .Net 2003 + Crystal Report 2008 SP2 up to Fix Pack 2.6
    When the VB program spools crystal report files to print queue, the print queue only shows "Crystal Report" for each document.  How to keep the original file name?  In the past when we were using Crystal Report 11, the original file name can be shown in the print queue.
    Please help because it's so important for operation to see which report is failed in printing when reports are printed in batch.
    Thanks

    Hello,
    Set the PrintOption.JobTitle value for the print job. Here's C# code on how to:
                   System.Drawing.Printing.PrintDocument pDoc = new System.Drawing.Printing.PrintDocument();
                CrystalDecisions.ReportAppServer.Controllers.PrintReportOptions rasPROpts = new CrystalDecisions.ReportAppServer.Controllers.PrintReportOptionsClass();
                CrystalDecisions.ReportAppServer.ReportDefModel.PrintOptions newOpts = new PrintOptionsClass();
                   pDoc.PrinterSettings.PrinterName = cboCurrentPrinters.Text;          
                   rasPROpts.PrinterName = cboCurrentPrinters.Text;               
                   rasPROpts.PaperSize = (CrPaperSizeEnum)
                        pDoc.PrinterSettings.PaperSizes[cboCurrentPaperSizes.SelectedIndex].Kind;
                // this sets the name of the print job
                rasPROpts.JobTitle = "MYPrintJob";
                   rptClientDoc.PrintOutputController.PrintReport(rasPROpts);
                   MessageBox.Show("Printing report.", "RAS", MessageBoxButtons.OK,MessageBoxIcon.Information );
    Thank you
    Don

Maybe you are looking for

  • Compatibility fcpx 10.2.1 / fcpx 10.1.1

    Hi, I'm just starting out with tcp and have been practicing on the trial version of fcpx 10.2.1 which is going to run out in 2 days.  I now have to complete what I was doing on another computer which has fcpx 10.1.1.  I can't open the project and whe

  • How to store two maps in Oracle

    Greeting, folks, This message is also refering to the previous topic: help: spatial indexing by QiangHan. Sorry for duplicates here. Hi, thanks Dan. It helps a lot. Actually the thing I really want to do is to figure out what capabilities oracle can

  • Custom sign in page OBIEE 11g

    Hello all, I have almost did it :D I followed the instructions of rittman mead --> http://www.rittmanmead.com/2010/12/oracle-bi-ee-11g-styles-skins-custom-xml-messages/ But the last step is missing :/ I have a folder with sk_pageaccuei, s_pageaccueil

  • Triggers in Workspace Manager

    I've got some problems with the workspace manager and triggers in 10g: If you have a trigger defined on a table and you version this table, ORACLE will create 3 "instead of"-triggers on the view representing the table. The "content" of the trigger wi

  • Can't uncheck 'mute' in sound preferences

    Suddendly today there's no sound coming from my computer, not in different browsers, or different forums. Went to Sound Preferences and "mute" is checked. But it won't let me uncheck.