REP-0546 when displaying parameter form

Hi,
here is my issue:
when i run the report from forms with paramform=no the report works fine and produces valid output.
However when parameter paramform=yes the parameter form window comes up with error:
REP-0546: The parameter value is invalid
I am puzzled.
Any suggestions?

Hello,
Reports are 11g, there are no before or after trigger. However there is validation trigger on the parameter. I am running the report from Oracle Forms 11g
Here is a code snippet:
hidden_action := hidden_action ||'&report='||GET_REPORT_OBJECT_PROPERTY(p_report_id,REPORT_FILENAME);
hidden_action := hidden_action ||'&destype='||GET_REPORT_OBJECT_PROPERTY(p_report_id,REPORT_DESTYPE);
hidden_action := hidden_action ||'&desformat='||GET_REPORT_OBJECT_PROPERTY (p_report_id,REPORT_DESFORMAT);
-- hidden_action := hidden_action ||'&desname='||GET_REPORT_OBJECT_PROPERTY (p_report_id,REPORT_DESNAME);
-- hidden_action := hidden_action ||'&copies=1';
hidden_action := hidden_action ||'&userid='||get_application_property(username)||'/'
||get_application_property(password)||'@'||
get_application_property(connect_string);
c_old :='@';
-- replace spaces with & sign for html page parameters format
FOR i IN 1..LENGTH(p_report_otherparam) LOOP
c_new:= substr(p_report_otherparam,i,1);
IF (c_new =' ') THEN
c:='&';
ELSE
c:= c_new;
END IF;
-- eliminate multiple blanks
IF (c_old =' ' and c_new = ' ') THEN
null;
ELSE
v_report_other := v_report_other||c;
END IF;
c_old := c_new;
END LOOP;
-- hidden_action := hidden_action ||'&'||v_report_other;
-- hidden_action := v_report_servlet||'?_hidden_server='||v_report_server||hidden_action;
-- message('hidden_action = '||hidden_action);
--message(' ');
-- Build the string of user parameters dynamically
-- if parameter list exists build string of parameters dynamically
if NOT id_null(p_param_list) then
begin
FOR idx IN c_rep_params (GET_REPORT_OBJECT_PROPERTY(p_report_id,REPORT_FILENAME)) LOOP
if (idx.parameter_type = 'USER') then
     GET_PARAMETER_ATTR(p_param_list,idx.parameter_name,v_paramtype,v_value);
if (v_other_params is NULL) then
v_other_params := '&'||lower(idx.parameter_name)||'='||v_value;
else
     v_other_params := v_other_params||'&'||lower(idx.parameter_name)||'='||v_value;
end if;
end if;
END LOOP;
-- message('parameters for the report: '||v_other_params);
end;
end if;
message('Other params: '||v_other_params);
hidden_action := hidden_action ||'&'||p_report_otherparam||v_other_params;
hidden_action := v_report_servlet||'?_hidden_server='||v_report_server||hidden_action;
-- SET_REPORT_OBJECT_PROPERTY(p_report_id,REPORT_OTHER,'pfaction='||hidden_action||v_other_params);
--v_string1 := 'http://wdpra99a0227.wellsfargo.com:9003/reports/rwservlet?SERVER=rep_wls_reports_wdpra99a0227_asinst_1&destype=cache&desformat=pdf&userid=fur/devgang@oadev&report=cprofall.rdf&pf_assignment=CN132';
-- SET_REPORT_OBJECT_PROPERTY(p_report_id, REPORT_OTHER,'pfaction='||v_string1||' PARAMFORM=YES');
SET_REPORT_OBJECT_PROPERTY(p_report_id,REPORT_OTHER,'pfaction='||hidden_action);
-- SET_REPORT_OBJECT_PROPERTY(p_report_id,REPORT_OTHER,'pfaction='||hidden_action||' '||p_param_list);
message('pfaction='||hidden_action);
-- Based on the parameter list make the call to run report
if NOT id_null(p_param_list) and (upper(p_report_otherparam) like '%PARAMFORM=NO%') then
     vc_report_job_id := RUN_REPORT_OBJECT(p_report_id,p_param_list);
else
vc_report_job_id:=RUN_REPORT_OBJECT(p_report_id);
end if;
message('Report job id = '||vc_report_job_id);
/* The report output is not delivered automatically to the client, which is okay
because the Web is a request model. Thus the next step is to check if the report finished.
vc_rep_status := REPORT_OBJECT_STATUS(vc_report_job_id);
WHILE vc_rep_status in ('RUNNING','OPENING_REPORT','ENQUEUED') LOOP
vc_rep_status := report_object_status(vc_report_job_id);
END LOOP;
v_rep_job_id := substr(vc_report_job_id,length(v_report_server)+2,length(vc_report_job_id));
--message(v_rep_job_id);
IF vc_rep_status='FINISHED' THEN
/* Call the Report output to be displayed in a separate browser window. The URL
for relative addressing is only valid when the Reports Server is on the same host
as the Forms Server. For accessing a Remote Reports Server on a different
machine, you must use the prefix http://hostname:port/
--web.show_document ('/<virtual path>/<reports cgi or servlet name>/getjobid='||
--vc_report_job_id ||'?server='|| '<ReportServerTnsName>','_blank');
WEB.SHOW_DOCUMENT(v_report_servlet||'/getjobid'||v_rep_job_id||'?server='||v_report_server,' _blank');
-- copy outputfile to provided destination
if (v_rep_file_to is not null) and (v_rep_file_from is not null) then
-- copy in windows
v_host_string := 'cmd /c copy ' ||v_rep_file_from|| ' ' ||v_rep_file_to;
message(v_host_string); message(' ');
-- client_host(v_host_string);
end if;
ELSE
message (SQLERRM);
END IF;

Similar Messages

  • Error when displaying xellerate form

    Hello,
    I have the following error when displaying the form of any xellerate users :
    ERROR,03 May 2011 10:40:56,273,[XELLERATE.APIS],Class/Method: tcFormDefinitionOperationsBean/getFormFieldPropertyValue encounter some problems: Property 'Column Names' has not defined for the form field '-19'
    All is working fine, just this error that is diplayed each time I want to display a user form. In my formMetadata.xml, I have the following definition for the field -19, it is the manager :
    <Attribute name="-19" label="global.label.managerid" displayComponentType="LookupField" variantType="long" dataLength="50" map="Users.Manager Login">
    <ValidValues lookupColumnNames="User ID,Last Name,First Name" lookupQuery="SELECT usr.usr_key,usr.usr_last_name,usr.usr_first_name,usr.usr_login FROM usr, ugp, usg WHERE ugp.ugp_name = 'PROF_MANAGER' AND ugp.ugp_key = usg.ugp_key AND usr.usr_key = usg.usr_key AND usr.usr_status = 'Active' AND usr.usr_emp_type = 'Employee'" displayColumns="Users.User ID,Users.Last Name,Users.First Name" selectionColumn="Users.User ID"/>
    </Attribute>
    What is the problem with my attribute definition ?
    Thanks for your help,
    Kind regards,
    mdadikn

    Hello,
    I'm new to OIM. I am a new hire to a group that had a contractor setup the whole system. I'm finding a similar issue on our system here. I've looked through the database and cannot seem to find the issue. Error happens when from the webapp clicking on "Create IT Resource".
    From the Error Log:
    Class/Method: tcFormDefinitionOperationsBean/getFormFieldPropertyValue encounter some problems: Property 'Column Names' has not defined for the form field '-82'
    Line with issue from FormMetaData.xml:
         <Attribute name="-82" label="global.label.itresourcetype" displayComponentType="LookupField" variantType="String" dataLength="255" map="IT Resources Type Definition.Server Type" useInRule="true">
              <ValidValues lookupQuery="select svd_svr_type from svd" selectionColumn="svd_svr_type"/>
    </Attribute>
    Please let me know any additional information/questions. From what I can tell everything should be correct. Sorry again if the answer is obvious, I'm only 3 days into OIM.
    Thank you,
    Ryan

  • Displaying parameter form in Portal

    we have reports created using 9i reports builder and are running them using 9ias portal version 9.0.2.2.22
    can we get the parameter form displaying before the report is run, as at the moment it either gives an error because parameters have not been entered, or it runs with the last used parameters which may not be the ones required for this time ( and so reports take awhile to run)

    hi
    You could look at http://www.oracle.com/technology/products/discoverer/files/viewlets/1012_dashboard.html
    I don´t remember if here you create the simple parameter form. But there is a portlet called "Simple Parameter Form", you can find it at Portlet Builders. You can reach this link in your Oracle portal in the Edit link, in the add portlet link.
    then you can follow the wizard to create your parameter portlet
    After this step you should link the parameters you send through this portlet with the page and the other portlets.
    I hope this help

  • How to disable the back button when displaying a form

    Hi ,
    i have form A calling form B, when form B is displayed i want to disable the
    back button in the explorer so as not to allow the user from going back to
    form A.
    thanks.

    When you open a new window, call following javascript function also to disable the "back" button.
    window.history.forward(1);
    It will work.

  • How to display  Reports parameter form in Oracle Forms 10g.

    hello,
    am migrating from Forms 6i applications to Forms 10g.
    one of my application contain report, that report display parameter form
    I wrote below code for WHEN-BUTTON-PRESSED Trigger
    DECLARE
    pl_id      ParamList;
    v_report_id report_object;
    v_report varchar2(100);
    vjob_id varchar2(100);
    vc_rep_status varchar2(100);
    BEGIN
    pl_id := create_parameter_list('my_list');
    add_parameter (pl_id,'P_HOSPITAL_ID',text_PARAMETER,
    :bm_hospitals.hospital_id);
    add_parameter(pl_id,'PARAMFORM',text_PARAMETER,'NO');
    v_report_id := FIND_REPORT_OBJECT('bm_r001');
    v_report := RUN_REPORT_OBJECT ( v_report_id,pl_id );
    vjob_id := substr ( v_report, length(<reportservername>)+2,
    length( v_report) );
    vc_rep_status := REPORT_OBJECT_STATUS (v_report);
    IF vc_rep_status = 'FINISHED' THEN
         WEB.SHOW_DOCUMENT ('/reports/rwservlet/getjobid'|| vjob_id||
    '?server=rep_mohahubkpcomp_ORaHOme_IAS'||'&userid=
    bedman/bedman@bedman'||'&paramform=yes','_blank');
    ELSE
         message ('Report failed with error message '||vc_rep_status);
    END IF;
    Destroy_Parameter_List(pl_id);
    END;
    The Above code is running report and displaying Output perfect but cannot
    display the Parameter Form at runtime.
    any help in this very thankful.
    Regards
    Gagan.

    In Your code there is a line:
    add_parameter(pl_id,'PARAMFORM',text_PARAMETER,'NO');
    which actually disables the report parameter form.
    The line:
    WEB.SHOW_DOCUMENT ('/reports/rwservlet/getjobid'|| vjob_id||
    '?server=rep_mohahubkpcomp_ORaHOme_IAS'||'&userid=
    bedman/bedman@bedman'||'&paramform=yes','_blank');
    displays the report to which vjob_id refers. At this point the report is competed so the parameters userid and paramform are useless.
    Hope this helps.
    Regards
    Bekcic Aleksandar

  • Report 10g parameter form Error

    Hi,
    While calling a report I am getting the following error.
    REP-546: Warning: The value of restricted LOV parameter TOPROFIT is not among the selectable values.
    When I call the same report through another PC it displays parameter form.
    I am using Report Builder 10g.
    Kindly help in resolving the issue.
    Edited by: babarbaig82 on Sep 26, 2012 4:34 AM

    Hi,
    I need more details.
    1- Are you running that report from 2 different machines using Reports Builder? or Reports Server?
    2- If running with Reports Builder, is it the same report? or a different version of the report?
    Any other details that you think can clarify issue further.
    Thanks, Roberto

  • Parameter form focus

    Hi there,
    Application Server Forms and Reports 10.1.2.3
    Windows Server 2003 R2 SP2
    Forms Applet version is : 10.1.2.3
    Java Plug-in 1.6.0_18
    Using JRE version 1.6.0_18-b07 Java HotSpot(TM) Client VM
    After migrating to forms 10g when the parameter form is displayed to users in a browser the focus is not in the text box like it was in the 6i client.
    Is there any way to have the focus so the user doesn't have to click the mouse in the text box?
    Thanks,
    faoilean.

    Anyone have ideas as to how I might do this as of yet I cannot find a solution.
    Thanks

  • DISPLAYING PARAMETER LAYOUT WHILE EXECUTING REPORTS THROUGH WEB

    Good Day all,
    With reference to the above subject i would like to ask for help that how can i get the parameter screen when a user/clients runs reports through browser web ?.
    i hardcoded in the source and deployed on the server,its working perfectly.
    I need to define the parameters,is there n e way/s please assist.
    second is there any method/s or example by which i can call report through form server,
    the form server is working ok.. need to call a report through this form ,
    please assist with your earliest
    awaiting for your earliest and positiver response regards

    Mohd,
    (1). To display parameter form in web, you can either pass parameter "paramform=yes" in url, or specify %P in corresponding key of the cgicmd.dat file.
    (2). To call Reports from Forms, you can either call reports 9i server directly (via run_report_object), or via web.show_document() to call the cgi/servlet.
    Regards,
    -Jeff

  • Invoking Parameter form using Run Product in Web Server

    Hi
    I am facing a problem in executing a report from forms in Web
    Server
    if i use Run_Product it does not display Parameter Form ,Even if
    i assign Yes to paramform
    else
    if i use
    web.show_document it displays the paramform but does not execute
    the report ,Note:if i set paramform no the entire report is
    executed successfully
    kindly provide appropriate solution
    Thanks

    One solution is:
    1. Install Oracle Report Server
    2. Use the built-in WEB.SHOW_DOCUMENT instead of RUN_PRODUCT
    3. The only small problem is the parameter passing to the reports, but this is described well in the documentation
    4. After the first succesful run of the SHOW_DOCUMENT the RUN_PRODUCT will reestablish his functionalty,
    but we do not know when it will deliver the next surprise. So it is a bad idea to use RUN_PRODUCT before Oracle fixes the bug.

  • REP-50134 occurs when using the submit button on the Reports Parameter Form

    Good Morning,
    I get the "REP-50134: Cache subitem reports does not exist" error after clicking on the Submit Button from a Reports parameter form.
    I am using Forms/Reprots 9i.
    Using the source code given in the Whitepaper 'Oracle Forms Services - Using Run_Report_Object() to call Reports with a parameter form', all works well when paramform=no, but when I have a Form print a report with paramform=yes, the parameter form appears correctly, but generates the error after clicking the Submit Button.
    Any inputs as to causation or possible places to look to solving this problem would be greatly appreciated.
    Thank you

    Hello and thanks.
    The value in the tag is <form method=post action="reports?">
    Looking at this I suspect my problem is related to this setting. I am trying to follow all the instructions in the White Papers but they are a little confusing as they are not all exactly the same. Each attempts to explain a specific functionality without regards to the whole.
    For instance I believe I need to have the variables P_ACTION, P_USER_CONNECT and P_SERVER_NAME in the report being called and then add a Before Parameter Form trigger to reset the values. But this seems to duplicate and override what has already been sent via the REPORT_OTHERS property. It is a tad bit confusing.
    Can you confirm?
    Thanks for any clarification you can provide.

  • Rep-52005 error when running a report from form with parameter form

    I am trying to run a report from a web deployed form and this report has a parameter form. I am getting a Rep-52005: The specified key report does not exist in key map file.
    I am using Oracle Forms/Reports 10.1.2.0.2. My code is below. The first part works fine where I run a report with no parameter form, but the second part when I have a parameter form gets the about error.
    PROCEDURE call_report (
    p_report_name VARCHAR2,
    p_reportobj_name VARCHAR2 DEFAULT NULL,
    p_parameter_list paramlist DEFAULT NULL,
    p_parameter_string VARCHAR2 DEFAULT NULL
    IS
    repid report_object;
    v_rep VARCHAR2 (100);
    rep_status VARCHAR2 (100);
    v_report_url VARCHAR2 (240);
    v_interface VARCHAR2 (50);
    v_report_parameter VARCHAR2 (1);
    vc_user_name VARCHAR2 (100);
    vc_user_password VARCHAR2 (100);
    vc_user_connect VARCHAR2 (100);
    vc_connect VARCHAR2 (300);
    v_reportserv VARCHAR2 (30);
    v_job_number number;
    BEGIN
    /* Get the database to run the report against and
    find out if the report has any parameters */
    SELECT report_parameter_flag
    INTO v_report_parameter
    FROM program_list
    WHERE program_type = 'REPORTS'
    AND UPPER (screen_id) = UPPER (p_report_name);
    vc_user_name := get_application_property (username);
    vc_user_password := get_application_property (password);
    vc_user_connect := get_application_property (connect_string);
    v_reportserv := 'rep_xxxx_ias10g_home';
    v_report_url := 'http://xxxx.state.il.us';
    v_job_number := length(v_reportserv) +2;
    vc_connect :=
    vc_user_name
    || '/'
    || vc_user_password
    || '@'
    || vc_user_connect;
    v_interface := get_application_property (user_interface);
    IF ( v_interface = 'WEB'
    AND v_report_parameter = 'N'
    THEN
    repid := find_report_object(p_reportobj_name);
    set_report_object_property (repid, report_comm_mode, synchronous);
    set_report_object_property (repid, report_destype, cache);
    set_report_object_property (repid, report_desformat, 'pdf');
    -- v_reportserv := get_report_object_property (repid,report_server);
    set_report_object_property (repid, report_server, v_reportserv);
    set_report_object_property (repid, report_other, p_parameter_string);
    v_rep := run_report_object (repid);
    rep_status := report_object_status (v_rep);
    IF rep_status = 'FINISHED'
    THEN
    web.show_document (
    v_report_url
    || '/reports/rwservlet/getjobid='
    || substr(v_rep,v_job_number)
    || '?server='
    || v_reportserv
    ,'_blank'
    ELSE
    message ( rep_status
    || 'Report output aborted');
    END IF;
    ELSIF ( v_interface = 'WEB'
    AND v_report_parameter = 'Y'
    THEN
    repid := find_report_object (p_reportobj_name);
    set_report_object_property (repid, report_comm_mode, synchronous);
    set_report_object_property (repid, report_destype, cache);
    set_report_object_property (repid, report_desformat, 'pdf');
    set_report_object_property (repid, report_server, v_reportserv);
    set_report_object_property (
    repid,
    report_other,
    'paramform=yes P_USER_CONNECT='
    || vc_connect
    || ' P_SERVERNAME='
    || v_reportserv
    || ' P_ACTION='
    || v_report_url
    || '/reports/rwservlet'
    v_rep := run_report_object (repid);
    rep_status := report_object_status (v_rep);
    IF rep_status = 'FINISHED'
    THEN
    web.show_document (
    v_report_url
    || '/reports/rwservlet/getjobid='
    || substr(v_rep,v_job_number)
    || '?server='
    || v_reportserv
    ,'_blank'
    ELSE
    message ( rep_status
    || 'Report output aborted');
    END IF;
    ELSE
    run_product (
    reports,
    p_report_name,
    synchronous,
    runtime,
    filesystem,
    p_parameter_list,
    NULL
    END IF;
    EXCEPTION
    WHEN OTHERS
    THEN
    message (SQLERRM);
    END;
    My parameter form comes up and I enter the necessary information and hit submit query button. Then I get the Rep-52005: The specified key report does not exist in key map file.
    Any help will be greatly appreciated!!
    Shellie Bricker

    Your code seems to be implementing metalink note 139546.1 - Using Reports parameter forms with RUN_REPORT_OBJECT on the web.
    For what I can see, the P_ACTION parameter should end in ?...
    i.e.
    P_ACTION=http://<hostname.domain:port>/reports/rwservlet?'
    set_report_object_property (
    repid,
    report_other,
    'paramform=yes P_USER_CONNECT='
    || vc_connect
    || ' P_SERVERNAME='
    || v_reportserv
    || ' P_ACTION='
    || v_report_url
    || '/reports/rwservlet?'
    );If this does not fix your problem, then to troubleshoot further you would have to post the code in your Before Parameter Form trigger of your report.
    Hope this helps,
    UPDATE:
    If the above does not fix your problem, my guess is that report name is not being generated in the hidden runtime values build by the code in the Before Parameter Form trigger.
    i.e.
    http://localhost:8889/reports/rwservlet?report=&destype=cache&desformat=PDF
    The above code will throw error REP-52005: The specified key report does not exist in key map file.
    Edited by: Rodolfo Ferrari on Jul 8, 2009 9:43 PM

  • Null values not displaying in the LOV on the parameter form.

    My report works perfect while in Oracle Reports 10g, however when I move it to our menu (Oracle Forms 10g) it does not display the null in the LOV on the parameter form.
    This report allows the the user to select by inspector or district or everyone for certain dates.
    Ex: I have 4 parameter fields. The user must enter the start & end dates and either the Inspector or the district or leave the inspector or district null to run for everyone.
    The district LOV is :
    select dnr_section_code, description from dnr_section_code where dnr_section_code in ('29', '38','52')
    UNION
    select null, 'All' from dual
    order by 2 asc ;
    The inspector LOV is:
    select null , 'All' from dual
    UNION
    select person_seq, first_name||' '||last_name inspector from vw_eng_inspectors
    order by 2 asc
    In my Data Model query I use the :
    My select
    from tables
    where clause
    +
    ----by inspector
    and (prod_fac_inspections.person_seq_inspector =
    nvl(:inspector,prod_fac_inspections.person_seq_inspector))
    ---by district
    and
    (d.dnr_section_code = nvl(:district,d.dnr_section_code)
    and d.person_seq = prod_fac_inspections.person_seq_inspector)
    Again, it works perfect in Reports! It eliminates having 3 reports on the menu. This one report gives the user the option of selecting dynamic parameters.
    Also, I got so frustrated, that I went a different route of using a default where.
    I am stuck with the error of ORA:00933 SQL command not ended properly
    1=1
    I set the initial value to 1=1 and it does not like it.
    I am stuck!
    DB = Oracle Database 10g Enterprise Edition Release 10.2.0.2.0

    Hi Krishna,
    I'm not sure I understand the probelm.
    A progress bar control only displays numeric values. When do you mean by "unassigned values"? What would you expect to be presented?
    Best regards,
    Udi

  • REP-3131: Parameter form boilerplate text cannot fit on the page

    Dear members,
    I am getting the following error while running the report :
    REP-3131: Parameter form boilerplate text cannot fit on the page
    can any body tell me how to correct it. I need to add a extra field in the standard oracle report "RECEIPT TRAVELER". when i was trying to run it in report builder 6i i got the above mentioned error. please give ur quick replies.
    thanks
    regards
    sandeep

    When you add your new field into the parameter mask, please check, if the value is too
    long for your parameter mask site. Make a double click on the master attributes of your
    report in the object navigator and look at the size of the parameter mask window.
    Make it bigger, if you want (vertically und horizontally size).
    Check the length of the text of your parameter mask title, too.

  • Parameter Form not calling the Main report - Gives REP-0110, REP-1070, REP-0110 error

    I am using run_report_object to call a report in which the user has to input some paramters. I have followed the instructions as in the Oracle White paper document on Forms/Reports integration.
    The paramter report does come up but when I hit the submit button, I get an error
    REP-0110: Unable to open file 'rclug005'.
    REP-1070: Error while opening or saving a document.
    REP-0110: Unable to open file 'rclug005
    I've checked the privileges and everything's fine on that front. Also, I can get to open the report with the web.show document built-in with paramform setting = No.
    I am guessing something's wrong with the html constructed in the parameter form which is,
    <form method=post action="http://myserver/dev60cgi/RWCGI60.EXE?">
    <input name="hidden_run_parameters" type=hidden value="server=myserver &report=rclug005&destype=Cache&desformat=html&userid=uid/pwd@test">
    In the Report Before Form trigger, I've copied the foll. html code from the Oracle White paper,
    vc_parameter_form :=
    '<html><body bgclor="ffffff"><form method=post action="'||:p_action||'">'||
    '<input name="hidden_run_parameters" type=hidden
    value= "'||vc_hidden_runtime_values||'">'||'<center><p>
    <table border=0 cellspacing=0 cellpadding=0><tr><td>
    <input type=submit></td><td> width=15
    <td><input type=reset></td></tr></table><p><hr></p>';
    I've set the :p_action parameter to a value of http://myserver/dev60cgi/RWCGI60.EXE?
    Also, In the end of the report before form trigger I added this
    srw.set_before_form_html(srw.text_escape, vc_parameter_form);
    Any help/tips is appreciated & Thanks.

    Thanks Danny,
    I am building the variable exactly as in the White paper in the "before form" trigger using exactly the same values give there.
    vc_hidden_runtime_values := 'server='||:p_servername||'&report='||vc_report_name||'.rep&destype='||:destype||'&desformat='||:desformat||'&userid='||:p_userinfo;
    My report has some extra parameters too it expects. So do I have to include the names of those parameters too in the string above?
    For example, in my report a user parameter is named 'print_date', which I do see and populate with value in the parameter form, then do I have to build that in the vc_hidden_runtime_values string above.
    I am using Report 6.0.8.11.3 on 9iAS.

  • PDF Not Displayed After Parameter Form Submitted

    We are moving a Forms6i application to web deployed Forms10g. Reports with parameter forms are being called using web.show_document(...) with the oracle.reports.utility.FrmReportsInteg JavaBean to hide database login credentials, as described in the Forms/Reports integration white papers.
    On our development server this process works as expected: the form displays a new browser window containing the parameter form with URL http://server/reports/rwservlet?userid=&report=report&desformat=pdf&destype=cache&paramform=yes, the parameter form is submitted, and the report output is displayed as a PDF embedded in the new browser window.
    However, on our customer's test server, after the parameter form is submitted, the Oracle Reports OracleAS Reports Services - Servlet Command Help page is displayed. Executing the rwservlet/showjobs command shows the job as being successfully completed. Clicking on the Job Name link redisplays the parameter form, and submitting this returns to the Oracle Reports OracleAS Reports Services - Servlet Command Help page.
    I have not been able to trace any other posts describing the same behavior on Metalink or OTN. Has anyone else seen this?
    Development server is OracleAS 10g (9.0.4.1) on Red Hat Linux, customer server is OracleAS 10g (9.0.4.1) on Solaris.
    Anyone explain this difference between the two servers?

    wonder if your problem is the host.domain name?
    It has to be the same name as the "host:" name that was entered in the "Register with Oracle Internet Directory" screen - while installing AS. Reason is that: when the .html is running, it has no connections to the AS, OID, SSO or anything else - it runs independentally. For it to go back into the oracle 'system', the full host.domain name is needed. So, if when the AS was installed, the "fully qualifed" domain name was not given, you may have problems and could need to reinstall AS again. (speaking from sad experience :) )
    regards

Maybe you are looking for