Is it possible to call diff  report queries when called from form

hello all
I want to know if it is possible to call different report queries when called from oracle 9i form .
i tried to use he
SET_REPORT_OBJECT_PROPERTY(REPORT_QUERY = 'q_diff' )
option and actualy called the report name
but it dint seem to work !!!
also is it possible to chng the title of the browser at runtime

Sandeep,
this property is used with passing Record Groups as data parameters from Forms.
Passing the query name indicates that the values contained in the record group substitutes the result of the named query. This may work in client/server Reports, but it definitively doesn't work on teh Web because you can't pass a Record Group as a data parameter in this environment.
Te problem with changing a Reports query is that you must meet the same number of columns and column types as they exist in the Report. I didn't spend much time with XML based runtime customization in Reports. I think that you can change the Reports query through this feature. In Forms you would create the XML file using text_io and the merge it with an existing Reports. I never did this before. So it could be that all I am saying does not work in the end. Before following this idea, you may better ask in teh Reports forum on OTN if it is possible to use the runtime customization feature to modify the Reports query.
Fran

Similar Messages

  • Calling User written pl/sql Packages from forms 9ias

    I want to call Pl/sql package (my own) from forms 9ias.
    Actaully i am upgrading my application forms 6i to 9ias forms.
    Please suggest me a solution.

    Same way as 6i. What is the problem ?

  • Calling report with parameter screen from form using frmrwinteg

    Hi,
         I am calling a report with a parameter screen from a form and am using the frmrwinteg bean. This works fine on our test application server but, when moved onto our production application server, the database logon screen is presented after pressing the submit button on the parameter screen. The cause of the problem seems to be the html generated to simulate the parameter screen. The html on the test application server contains a BASE tag in the HEAD section with an href starting "http:/servername.companyname.com". However, the same tag in the html generated on the production application server is missing the ".companyname.com", causing the cookie produced by the frmrwinteg bean to not be found. Does anyone know how the BASE href tag is generated and what I need to change to get the correct BASE href value? I am using Forms/Reports 10g R2 and Application Server 10.1.2.
    Cheers.....

    Appendix "A" of this document describes how cookie_domain works:
    http://otn.oracle.com/products/forms/pdf/10g/frmwebshowdoc_rep.pdf

  • Report problem when called from menu

    Hi
    Im calling a report from the menu item. in the items pl/sql i have the following code
    DECLARE
    Report_Id REPORT_OBJECT;
    Report_Job_Id VARCHAR2(20);
    Report_Status VARCHAR2(80);
    Report_Svr VARCHAR2(20);
    BEGIN
    Report_Svr := 'testserver';
    Report_Id := FIND_REPORT_OBJECT('LOT_AVERAGE_REPORT');
    SET_REPORT_OBJECT_PROPERTY(Report_Id,REPORT_EXECUTION_MODE, BATCH);
    SET_REPORT_OBJECT_PROPERTY(Report_Id,REPORT_FILENAME, 'lot_average_report');
    SET_REPORT_OBJECT_PROPERTY(Report_Id,REPORT_COMM_MODE, SYNCHRONOUS);
    SET_REPORT_OBJECT_PROPERTY(Report_Id,REPORT_DESTYPE, CACHE);
    SET_REPORT_OBJECT_PROPERTY(Report_Id,REPORT_DESFORMAT,'PDF');
    SET_REPORT_OBJECT_PROPERTY(Report_Id,REPORT_SERVER, Report_Svr);
    Report_Job_Id := RUN_REPORT_OBJECT(Report_Id);
    Report_Status := REPORT_OBJECT_STATUS(Report_Job_Id);
    WHILE Report_Status IN ('RUNNING','OPENING_REPORT','ENQUEUED') LOOP
    Report_Status := REPORT_OBJECT_STATUS(Report_Job_Id);
    END LOOP;
    IF Report_Status = 'FINISHED' then
    WEB.SHOW_DOCUMENT('http://<machine>:<port>/reports/rwservlet/getjobid' || substr(Report_Job_Id, length(Report_Svr) + 2, length(Report_Job_Id)) || '?server=' || Report_Svr);
    END IF;
    END;
    it is working fine till i set the properties of report objects and it is failing when RUN_REPORT_OBJECT(Report_Id); is getting executed.
    the error is like frm-10259: invalid null argument to pacaged procedure or function
    Kindly helpme to come out of this...
    Thanks in advance
    Sundar

    Sundar,
    you just need a report (*.rdf) file that serves as a placeholder for the reports object in the forms module. You can either take one of your reports, one of the sample reports or create a simple dummy report by yourselves.
    Create a simple report using reports developer (e.g. "select sysdate as dummy_date from dual" as the report query). Save it as "dummy.rdf" in your reports directory (where your existing reports are stored).
    Now open the form that uses your menu. In the Reports node of your forms module, add a report, select "Use existing report file" and browse to the "dummy.rdf" file previously created.
    Open the property palette for that report and remove the path information of the "Filename" property, so that it reads "dummy.rdf".
    Edit the "Name" property so that it reads "MY_DUMMY_REPORT".
    Compile and save the form.
    Now use the PL/SQL code mentioned above in your menu and see if it works.
    Hope this helps
    Gerald Krieger

  • Hide UserID, Password, and Report Path when call Report from Report

    Hi,
    I have been able to call Report from Report using the hyperlink.
    I put these code in my Field on the Report caller.
    function F_3FormatTrigger return boolean is
      temp varchar2(2000);
    begin
      temp := 'http://<computer_name>:8889/reports/rwservlet?';
      temp := temp || 'server=repsrv' || '&' ||
                         'report=C:\MyReport\rep_detail.jsp' || '&' ||
                         'userid=scott/tiger@orcl' || '&' ||
                         'desformat=htmlcss' || '&' ||
                         'destype=cache' || '&' ||
                         'P_1=' || :ItemID || '&' ||
                         'P_2=' || :ItemName;
      SRW.Set_Hyperlink(temp);
      return (TRUE);
    end;The hyperlink showed, and I can see the rep_detail.jsp showed in the same browser after I clicked the hyperlink.
    The problem is, the hyperlink has to include the reports path and also userid and password.
    If I did not put the userid and password, it will showed in another browse that
    "The report has uncompiled PL/SQL"
    How can I hide those userid, password, and the reports path?
    BTW, Is there anyway to show the report callee in different page (precisely, open another IE) from the report caller?
    Any help would be grateful.
    Many thanks,
    Buntoro

    Hi,
    Thanks for the answers.
    Yet, I am still doubt about using cgicmd.dat.
    I have looked around in this forum saying that it is not secure to use cgicmd.dat. Because all report request does not use authentication (the client can directly open report without login).
    In Form, I can use the On-Logon to do the Oracle Form login (to do logon to the database), and then I use my own custom user login to restrict the menu for each user.
    I do this since I want to restrict the user,
    i.e user A can only view the sales form as well as sales report,
    user B can only view the purchasing form as well as purchasing report.
    Well, I am not so fond about the SSO itself.
    It comes to my mind, since I don't have to re-login (to the database) each time I call another form (login database is only once at the first Form, On-Logon). It also goes to when calling the report caller.
    What is RAD?
    How can we use it?
    Is OID = Oracle Internet Directory?
    If true, maybe, I won't use it since I don't understand about it also.
    Why we don't have to specify the userid and password when Form calls Report1 (using Run_Report_Object and Web.Show_Document())?
    But we have to specify the userid and password when Report1 calls Report2.
    Any help is appreciated.
    Many thanks,
    Buntoro

  • Crystal report hangs when calling oracle package

    hi i have a oracle package that calls a proceadure, if i test this package in PLSQL developer it compiles and i get sensible results
    this package has been designed using a ref type cursor to be called from crystal reports. it primary objective when the report is run, is to use File util to output data to an xml file.
    when i run this from crystal reports it locks crystal reports up, and dosent output a file.
    any ideas why crystal is hanging?
    crystal DB call
    {CALL  Enhanced_Pharos_Report.run_report
    (NVL({?a_channel_id},0),{?b_on_date})}
    package
    create or replace package UKTV_PHAROS_EXPORT_RPT
    -- Author : WARDLJ01
    -- Created : 03/04/2006 12:25:03
    -- Purpose : export xml for pharos voiceovers
    -- Public type declarations
    AS
    TYPE result_set_type IS REF CURSOR;
    PROCEDURE run_report
    (main_cursor IN OUT result_set_type,
    V_CHANNEL_ID NUMBER,
    V_ONDATE      DATE);
    end ;--UKTV_PHAROS_EXPORT_RPT;
    package body
    create or replace package body UKTV_PHAROS_EXPORT_RPT AS
    PROCEDURE run_report
    (main_cursor IN OUT result_set_type,
    V_CHANNEL_ID NUMBER,
    V_ONDATE      DATE)
    is
    BEGIN
    OPEN main_cursor FOR
    -- Passess the parameters back to the cursor - which passes them back to the Crystal Report output
    SELECT V_CHANNEL_ID, V_ONDATE from DUAL;
    -- This is a procedure that calls FILE_UTL to export the data.
    UKTV_PHAROS_Export(V_CHANNEL_ID, V_ONDATE);
    END;
    end;
    Proceadure
    create or replace procedure uktv_own.UKTV_Pharos_Export(V_CHANNEL_ID number, V_ONDATE date) is
    l_output utl_file.file_type;
    p_filename varchar2(30);
    V_DETAIL_id varchar2(100);
    V_MEDIA_ID varchar2(150);
    V_REQUIRED varchar2(50);
    V_SCRIPT varchar2(4000);
    V_DEL_DATE varchar2(100);
    V_FULLMEDIA_ID varchar2(500);
    V_START_TIME varchar2(100);
    V_DURATION varchar2(100);
    V_DATE varchar2(100);
    V_CHANNEL varchar2(40);
    V_LOGO_NAME varchar2(250);
    Cursor VO_CURSOR
    IS
    select event_voiceover.detail_id, vo_media_id, vo_required, vo_script, vo_del_date, full_media_id,
    event.start_time, event.duration, event.on_date, event.channel_id, logo.logo_name
    from event_voiceover,
    onair.event, onair.event_technical_data,
    onair.logo
    where event_voiceover.detail_id = event.detail_id
    and event_technical_data.event_technical_data_id = event.event_technical_data_id
    and event_technical_data.content_id = logo.logo_id and
    event.channel_id = V_CHANNEL_ID and
    vo_required = 500004580 and
    event.on_date = V_ONDATE;
    begin
    p_filename :='voice_overs.xml';
    l_output := utl_file.fopen ('PHAROS_DIR', p_filename, 'w' );
    OPEN VO_CURSOR;
    utl_file.put ( l_output,'<Voice_Overs>');
    Loop
    FETCH VO_CURSOR INTO V_DETAIL_id, V_MEDIA_ID, V_REQUIRED,V_SCRIPT, V_DEL_DATE, V_FULLMEDIA_ID, V_START_TIME, V_DURATION, V_DATE, V_CHANNEL, V_LOGO_NAME;
    EXIT WHEN VO_CURSOR%NOTFOUND
    OR VO_CURSOR%ROWCOUNT = 10000;
    utl_file.put( l_output, '<DETAIL_ID>');
    utl_file.put( l_output, V_DETAIL_ID);
    utl_file.put( l_output, '</DETAIL_ID>');
    utl_file.put( l_output, '<MEDIA_ID>');
    utl_file.put( l_output, V_MEDIA_ID);
    utl_file.put( l_output, '</MEDIA_ID>');
    utl_file.put( l_output, '<REQUIRED>');
    utl_file.put( l_output, V_REQUIRED);
    utl_file.put( l_output, '</REQUIRED>');
    utl_file.put( l_output, '<SCRIPT>');
    utl_file.put( l_output, V_SCRIPT);
    utl_file.put( l_output, '</SCRIPT>');
    utl_file.put( l_output, '<DEL_DATE>');
    utl_file.put( l_output, V_DEL_DATE);
    utl_file.put( l_output, '</DEL_DATE>');
    utl_file.put( l_output, '<FULLMEDIA_ID>');
    utl_file.put( l_output, V_FULLMEDIA_ID);
    utl_file.put( l_output, '</FULLMEDIA_ID>');
    utl_file.put( l_output, '<START_TIME>');
    utl_file.put( l_output, V_START_TIME);
    utl_file.put( l_output, '</START_TIME>');
    utl_file.put( l_output, '<DURATION>');
    utl_file.put( l_output, V_DURATION);
    utl_file.put( l_output, '</DURATION>');
    utl_file.put( l_output, '<ONDATE>');
    utl_file.put( l_output, V_DATE);
    utl_file.put( l_output, '</ONDATE>');
    utl_file.put( l_output, '<CHANNEL_ID>');
    utl_file.put( l_output, V_CHANNEL);
    utl_file.put( l_output, '</CHANNEL_ID>');
    utl_file.put( l_output, '<LOGO_NAME>');
    utl_file.put( l_output, V_LOGO_NAME);
    utl_file.put( l_output, '</LOGO_NAME>');
    utl_file.new_line ( l_output);
    end loop;
    utl_file.put ( l_output,'</Voice_Overs>');
    utl_file.fclose(l_output);
    end UKTV_Pharos_Export;

    Hi yes the package uses fileutil to output a file,
    the report user has permission over the file util output directory.
    I have previously used this method to generate rpt, and other output files in parelell.
    thanks
    james

  • Target JSP report fails when called with a key defined in cgicmd.dat

    Hi,
    When I am calling the parameter form report as (on my local pc):
    http://rnbhatta-us:8888/reports/pf_sumsptype.jsp?gsi
    It works fine. Here 'gsi' is the KEY that has the userid/passwd@connect_string that I have defined in the cmgcgi.dat file on my local pc.
    Now the report pf_sumsptype.jsp makes a call in a similar manner to the target report with the same 'gsi' key as in the code :
    <form name="form1" method="post" action="/reports/summary_sptype.jsp?gsi">
    The call to the target report 'summary_sptype.jsp' fails. It works if I replace 'gsi' in the above line with the userid and connect info.
    Is there any other way to hide the database connect info?
    Thanks,
    Ritendra.

    I'm not sure why this should fail, but you could try changing the method above from post to get.
    -Manish

  • Dbx check -access report wua when call vsnprintf

    I don't undertand WHY I would get this "Write to unallocated (wua)" error? I tried purify, purify does NOT report this error.
    #include <stdio.h>
    #include <stdarg.h>
    int write(char* buffer,const char* format, ...)
    va_list vlist;
    va_start(vlist,format);
    printf("Buffer Address at %x\n", &buffer[0]);
    int size = vsnprintf(&buffer[0], 2, format, vlist);
    va_end(vlist);
    return 0;
    int main()
    char* buffer = new char[2]; *// if I use char buffer[2] instead of new char[2], I won’t get this error report!*
    printf("Buffer Address at %x\n", buffer);
    write(buffer,"%s\n", "xujian");
    return 0;
    CC -g -o test test.cpp
    -bash-3.00$ dbx ./test
    For information about new features see `help changes'
    To remove this message, put `dbxenv suppress_startup_message 7.7' in your .dbxrc
    Reading test
    Reading ld.so.1
    Reading libCstd.so.1
    Reading libCrun.so.1
    Reading libm.so.2
    Reading libc.so.1
    (dbx) check -access
    access checking - ON
    (dbx) run
    Running: test
    (process id 21660)
    RTC: Enabling Error Checking...
    RTC: Running program...
    Reading disasm.so
    Buffer Address at 80672a8
    Buffer Address at 80672a8
    Write to unallocated (wua):
    Attempting to write 1 byte at address 0x80672aa
    which is just past heap block of size 2 bytes at 0x80672a8
    This block was allocated from:
    *[1] operator new() at 0xecd06887*
    *[2] operator new[]() at 0xecd05bdd*
    *[3] main() at line 23 in "test.cpp"*
    stopped in write at line 15 in file "test.cpp"
    *15 int size = vsnprintf(&buffer[0], 2, format, vlist);*
    (dbx)
    Edited by: jianxu1 on Jan 19, 2010 1:49 AM

    jianxu1 wrote:
    Thanks, MaximKartashev~, Yes, I am on x86.
    BTW, I noticed that bcheck(dbx check -access) is much much slower than purify~~ -:(Yes, Purify does not impact performance anywhere near as much as bcheck does.
    Also, the behavior you're seeing seems consistent with trying to write the seven bytes of the string "xujian" into a two-byte buffer allocated from the heap. If you make that string more than 8 characters long, you should see Purify start to complain, too.
    That's because malloc() (which the new operator uses), per the man page, "returns a pointer to a block of at least size bytes suitably aligned for any use." That phrase "suitably aligned for any use" effectively means that malloc()'d memory comes in 8-byte chunks. So even though you're asking for two bytes, you're getting a pointer to an eight-byte chunk. Ask for 9, and you'll get 16.
    Your "char buffer[2];" variant doesn't get any errors from bcheck because bcheck doesn't do any run-time checking of automatic or stack variables. Purify should. I am somewhat surprised Purify doesn't give you an "array bounds write" (ABW) error on the "char buffer[2];" variant of your test case. Perhaps Purify has problems handling varargs and automatic variables. You may want to file a bug on Purify for that. FWIW, if you declare "char buffer[2]" and then try something like
    char buffer[ 2 ];
    strcpy( buffer, "ThisIsALongString" );Purify should give you an ABW for that.

  • Print report to client printer from forms

    Hi,
    I need to print a report directly to a client printer.
    There is a utility called ORARRP - Oracle Reports Remote Printing Utility.
    But the document I saw was from Oct 2001 - so is this still the only and best option ?
    I'm using RUN_REPORT_OBJECT in forms to launch the report.
    This works fine when the DESTYPE is FILE and DESNAME = PDF
    The PDF-outputt is then successfully shown with WEB.SHOW_DOCUMENT
    When changing DESTYPE to PRINTER and DESNAME to clients printername then report won't run. "Report filed with error message TERMINATED_WITH_ ERROR".
    Is it possible to print directly to a client printer using RUN_REPORT_OBJECT ?
    (Our client printers are not networkprinters)
    Environment:
    Forms [32 Bit] version 9.0.4.0.19
    Report Builder 9.0.4.0.33
    Reportsserver on linux
    Thanks !
    Sam

    (Our client printers are not networkprinters)This means you cannot print from the server directly on the client printer with destype=printer, since the server cannot see the printer.
    So, a manual print command by the user from the browser or the orarrp utility are your options.

  • Error when sending report output to printer from Forms 10g

    Hi,
    I have a simple report that I am running from a form using run_report_object built-in. I can successfully send the report output to a file but when I send the report output to a printer my report is
    terminated with report status of 'TERMINATED_WITH_ERROR'. I am using the default forms service and reports server that comes with the forms builder. How do I specify the reports server to user my default network printer ?Following is the code that runs my report.
    Thanks,
    Anna
    PROCEDURE SEND_TO_PRINTER IS
    repid REPORT_OBJECT;
    v_rep VARCHAR2(100);
    rep_status VARCHAR2(50);
    rep_server system_variables.reports_server%type;
    alldone          exception;
    BEGIN
         select reports_server
         into rep_server
         from system_variables;
         if rep_server is null then
              msg_alert('Error getting the reports server name', 'I', FALSE);                
              raise alldone;
         end if;
         :ctrl.run_report_errors := 'N';                    
         repid := find_report_object('REP_OBJ1');
         SET_REPORT_OBJECT_PROPERTY(repid,REPORT_SERVER,rep_server);
         SET_REPORT_OBJECT_PROPERTY(repid,REPORT_EXECUTION_MODE,BATCH);
         SET_REPORT_OBJECT_PROPERTY(repid,REPORT_COMM_MODE,SYNCHRONOUS);
         IF :ctrl.rg_print = 'P' THEN
              --Send the output to printer.
              SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESTYPE,PRINTER);
              SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESFORMAT,'dflt');
         ELSIF :ctrl.rg_print = 'R' THEN
              --Rich Text Format
              SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESTYPE,FILE);
              SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESFORMAT,'rtf');
              SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESNAME,:ctrl.filename);
         END IF;
         v_rep := RUN_REPORT_OBJECT(repid);
         rep_status := REPORT_OBJECT_STATUS(v_rep);
         WHILE rep_status in ('RUNNING','OPENING_REPORT','ENQUEUED')
         LOOP
              rep_status := report_object_status(v_rep);
         END LOOP;
         IF rep_status = 'FINISHED' THEN
              null;
         ELSE
              :ctrl.run_report_errors := 'Y';
              msg_alert('Error when running report.' || rep_status, 'I', FALSE);           
         END IF;
    EXCEPTION
         when no_data_found then
              msg_alert('Error getting the reports server name', 'I', FALSE);      
         when alldone then
              null;     
    END;

    If you use Windows the user that runs the reports server is usually LocalSystem. Check this in the Windows Services panel.
    LocalSystem has no printer access. To be able to print, you have to use a real domain user that has access to the printer. So, change the Log on properties in the Services panel.

  • Is it possible to define the frame size when capture from MiniDV?

    I am editing a series of tapes which I did not film and don't have the original camera. I am capturing it using my Canon ZR500. When I capture it the frame size is 720 by 480 (3:2). Is there any possibility that by using a different camera I could be inadvertently changing the frame size? (I can't see where I could but someone in this project thinks the aspect ration should be 4:3 - I can't see anywhere I could be changing it.)

    I have just given this a quick browse but I think it just explains how to make slides match the frame size. I used keynote to make the slide - probably not the best but I don't have photoshop. But the principle should be the same?
    But using an incorrect slide size shouldn't affect the aspect ratio of the final video should it?
    After I create the .mov file from FCE I use MPEG Streamclip to produce an .mp4 version to upload to the internet. If I use Streamclip to view the stream info it still shows a frame size of 720 by 480.
    Am I missing something?

  • Unable to call New Function Module when called thru Internet Service in ESS

    Hi all,
    I am using 4.6C.
    What i want to do: We are attaching a new HTML Template to an iview in which we have a direct call to a newly created Function Module.(Direct call mean to say we are calling the FM thru Flow Editor of HTML template).
    What error i am getting : After publishing all edited/created objects when we test it in portal page. It says :
    ITS System Information
       Flow Execution Failed
    Your request could not be processed by the module provider.
    The module provide returned following error message: Error retreiving parameters from context
    You may check the trace files for more information.
    Please guide to solution at your earliest.
    Regards
    Manish

    Hi Bjoem,
    Search the forum for tutorials and blogs...
    Regards,
    Anubhav

  • Reports display when ran from admin console but not when following link

    We are running SCCM 2007.  I am encountering a strange issue with running reports.  I have the admin console running on my workstation and I can run all reports fine.  They display in IE the way they should.  However... If I select the
    "Email" option for the top of the report and e-mail a link to myself to the exact same report I get a HTTP 500 error.  Also, I can not connect to the reporting site through a web browser.  If I connect to http://sccmserver/SMSReporting_ABC
    it displays the SCCM logo in the top left corner, the "Welcome to the SYstems Management Server Report Viewer" heading and explanation on the right but it displays a HTTP 500 error in the left hand pane.  Any idea what I may have misconfigured?
    Thanks!

    Which reports are you use ASP or SSRS?
    http://sccmserver/SMSReporting_ABC is ASP report and NOT SSRS and I don't recommend that you use ASP reporting any more. It just has too many problems.
    http://www.enhansoft.com/

  • Submiting reports with copies option from forms

    Hi ,
    I am submitting a report from the form with copies = 3 , but the copies are printed 3x3 = 9.
    Does any one know why it is printing 3 x 3 instead of 3
    the code is as follows:-
    IF par_destination = 'PRINTER' THEN
         SET_REPORT_OBJECT_PROPERTY(v_repid,REPORT_DESTYPE,PRINTER);
         SET_REPORT_OBJECT_PROPERTY(v_repid,REPORT_DESFORMAT, v_desformat);
         SET_REPORT_OBJECT_PROPERTY(v_repid,REPORT_DESNAME, par_printer_name);
    ELSE
         SET_REPORT_OBJECT_PROPERTY(v_repid,REPORT_DESTYPE,CACHE);
         SET_REPORT_OBJECT_PROPERTY(v_repid,REPORT_DESFORMAT, v_desformat);
    END IF;
         SELECT substr(par_rep_filename,1,instr(par_rep_filename,'.')-1) || '-' || v_next_reqno
         || '.' || DECODE(v_desformat, 'dflt', 'lst', 'wide', 'lst', v_desformat)
         INTO v_rep_output_filename
         FROM DUAL;
    v_file_path := v_file_path || v_rep_output_filename;
    v_url_path := v_url_path || v_rep_output_filename;
    SET_REPORT_OBJECT_PROPERTY(v_repid,REPORT_SERVER, v_repserver);
    v_report_other_params := 'mode='||v_mode || ' orientation='||par_orientation || ' paramform=no'
    ||' copies='||3||' blankpages=no'
    || ' ' || par_rep_user_params;
    message('other value -'||v_report_other_params);
    SET_REPORT_OBJECT_PROPERTY(v_repid,REPORT_OTHER, v_report_other_params);
    v_rep_instance := RUN_REPORT_OBJECT(v_repid);
    Please could some one help me with this.
    Thanks
    Bain

    Hi,
    if copies='||3||' isn't the problem, as it should be 'copies=3' then I would check the user parameters you append at the end.
    Frank

  • Video calls see screen but when call no ringing connection

    Post transferred to merge with the author's first post on the Skype for Computer: Windows message board.

    Pat, thanks for taking an interest in my issue.  My display adapters listed in Device Manager are:
    Intel HD Graphics Family - AMD v.8.882.2.3000 
    Radeon HD 7470M - AMD v.8.882.2.3000
    This problem began about 2 months ago and prior to that all worked fine.  I can also tell you that some video clips, like what is found on U-Tube, play fine with video displayed. So I am quite dumbfounded.
    Regards,
    Syl44

Maybe you are looking for