Parameter form not displaying in 9i reports. Works fine in 6i!!

Parameter form does not show up with any options mentioned in the cgicmd.dat.
It works in 6i & surprisingly in 9i reports it doesn't.
In 6i reports destype=cache shows the report output on screen but in 9i it doesn't, the report just sits in the cache dir of reports on the middle tier.
Was Oracle in a hurry to release such incomplete versions???as it shows 9 is exactly opposite to 6 in apperance so are the versions!!! & too much java is harmful to the system performance.
If there's a patch please...

my url looks like this
http://abc:8888/reports/rwservlet?report=myreport.jsp&userid=a/b@c&server=myserver&paramform=yes
or paramform=html with all other arguments same
i have chosen system parameters destype,desname,desformat along with one user parameter
i tried putting the same arguments as it has to put in the cgicmd.dat key map & also typed the above url from the client.
If i give initial values to the parameters then for example i say destype as mail & give other parameters appropriate values , i get a status html form which says report ran successfully.The user gets the mail
If i do not give initial values to every parameter except destype i still get the status message as report ran successfully, but the mail would have not gone.
Is it that the reports will run only when deployed on 9iAS or it runs otherwise too on a system which has 9iDS.
I had posted the same question earlier but i didn't quite understand about report escapes...the person who replied meant to say
Mahesh

Similar Messages

  • Report Parameter Form not displayed

    When I ran a report using the following procedure code in web-enabled Oracle forms ,
    PROCEDURE RUN_REPORT IS
    pl_id ParamList;
    BEGIN
    pl_id := get_parameter_list('tmpdata');
    if not id_null(pl_id) then
    destroy_parameter_list(pl_id);
    end if;
    pl_id := create_parameter_list('tmpdata');
    add_parameter(pl_id, 'PARAMFORM', TEXT_PARAMETER, 'YES');
    run_product(REPORTS, 'D:\ORACLE\DIVISION', SYNCHRONOUS, runtime, FILESYSTEM, pl_id, NULL);
    END;
    No parameter form was displayed. What do you suspect? Or report parameter form cannot be used in web-enabled Oracle forms.
    Hope some experts here broaden my mind!
    Many thanks,
    Richard

    Richard,
    passing paramform=yes will do it. However, beside of that I wouldn't recommedn using run_product for reports on the Web, indeed paraneter forms are a bit tricky and don't work out of the box. There is a work around that i documented in a Forms/Reports integration Whitepaper available in teh Forms6i collateral section on otn.oracle.com/products/forms. This description uses run_report_object, addressing the Reports Server.
    Frank

  • 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.

  • 2.1 EA2 does not display query results, query works fine in sqlplus

    2.1 EA2/Windows XP 32-bit
    The following query does not show any results for Total(GB) and Free(GB) columns. The diskgroup name shows correctly.
    SELECT
    DG.name ,
    ROUND(SUM(DSK.TOTAL_MB)/1024,2) "Total (GB)",
    round(SUM(DSK.FREE_MB)/1024,2) "Free (GB)"
    FROM
    V$ASM_DISK DSK,
    V$ASM_DISKGROUP DG
    WHERE
    DSK.GROUP_NUMBER=DG.GROUP_NUMBER
    group by DG.name;
    The query works fine when run from SQL*Plus:
    SQL> SELECT
    2 DG.name ,
    3 ROUND(SUM(DSK.TOTAL_MB)/1024,2) "Total (GB)",
    4 round(SUM(DSK.FREE_MB)/1024,2) "Free (GB)"
    5 FROM
    6 V$ASM_DISK DSK,
    7 V$ASM_DISKGROUP DG
    8 WHERE
    9 DSK.GROUP_NUMBER=DG.GROUP_NUMBER
    10 GROUP BY DG.name;
    NAME Total (GB) Free (GB)
    DG1 707.98 162.32
    DG2 134.84 122.68
    SQL>
    This must be something unique to SQLDeveloper. I tested in 2.1 EA1 and 1.5.5.59.69 and the query does not show results for the Total (GB) and Free (GB) columns.

    I would like to update the problem. It seems like when SQLDeveloper is connected to ASM instance, it has trouble using the divide operator (/). For example, the following query works fine:
    SELECT
    name,
    TOTAL_MB
    FROM
    V$ASM_DISKGROUP;
    But if I try to divide the TOTAL_MB by any number, the column shows blank (the column is blank, not NULL). So, if I try to run the following query, the output will just display diskgroup names. The TOTAL_MB/1024 column shows blank.
    SELECT
    name,
    TOTAL_MB/1024
    FROM
    V$ASM_DISKGROUP;
    If I run the same query in SQL*Plus from the same desktop using the same TNS alias, it works just fine which tells me that it is a SQLDeveloper problem.
    When I am connected to a regular database, then the problem does not show up and SQLDeveloper is able to display the results even when I am using the divide operator (/).

  • Sharepoint 2010 - Home Page not displaying, all other pages work fine

    The web page URL <server>/sitepages/Home.aspx is not displaying when accessed. All other pages work fine. We changed the default welcome page to another page, and that works. When we try to access the Home.aspx, it displays "An unexpected error
    occurred" message. The Home.aspx only contains a couple of Lists, with Links, and a calendar. The other odd thing is that the Home.aspx displays in SharePoint designer in Advanced Edit mode, but won't display in a browser. Any ideas?

    Hi Isepic,
    1) Check the approval of the page (Home.aspx) whether it is in pending state .
    2) OR might be some problematic webpart is added in the page. You can try to close it and access. To do that,you can try to access the web part maintenance page of home.aspx and test by closing the webpart one by one.
         To access the maintenance page,pass the parameters ?contents=1 after the home.aspx
           For example, http://site url/home.aspx?contents=1
    3) Also,check the ULS logs after accessing the home.aspx to know what is happening.
    Please remember to mark your question as answered & Vote helpful,if this solves/helps your problem. 
    s p kumar

  • Fonts not displaying correctly in Muse, working fine on upload. HELP! Working on Muse CC 2014, Mac OSX 10.9.4

    Hello!
    In Muse, my fonts are displaying incorrectly, when uploaded the fonts are correct. I am guessing this is a system issue. First time I have had this problem since making the jump to CC 2014 and it is making designing painful . I've updated everything, dumped and reinstalled the web fonts, restarted, cleared PRAM and scratched my head a bunch. I also tried to find a font cache to dump but could not locate it...any thoughts would be greatly appreciated. Thanks Musers! - Andrew

    Re: Source Sans Pro not displaying in 'Design' mode
    This did the trick for me. Thanks D Dog!

  • Private Photos App - pictures not displaying This app was working fine, then suddenly it won`t display any of the photos.

    This app was working fine, then suddenly it won't display any of the photos. One day the photos were there, gone the next. It still shows how many photos are there but just shows a white screen. I can't export anything to the photo album. Adding photos to existing folders yields the same result, only white screen displayed. However, I can create new albums and add photos to those without issue. Does anybody know how to recover the "missing" photo"  I was going to try reinstalling the app but it's no longer available in the iTunes App Store. Thanks, Tracy

    1, you can't at the moment, though with iOS 5 in the Autumn, from http://www.apple.com/ios/ios5/features.html#photos :
    Even organize your photos in albums — right on your device
    2, by removing it from you synced from and re-syncing. Only photos taken with the iPad, copied to it via the camera connection kit, or saved from emails/websites etc can be deleted directly on the iPad (either via the trashcan icon in the top right corner if viewing the photo in full screen, or via the icon of the box with the arrow coming out of it in thumbnail view)
    3, the location of the photos that you synced to the iPad should be listed on the iPad's Photos tab when connected to your computer's iTunes.
    4, you can copy the photos from your iPad to your computer : http://support.apple.com/kb/HT4083 . You should also be able to delete them from the iPad as part of the transfer process to your computer, and it's then your choice whether to add them to your sync photo list so as to copy them back to the iPad. Copying them to your computer would allow you to organise them into folders and therefore be able to sync them back into separate albums.
    5, I don't use Dropbox either. There are some third-party browser apps in the iTunes App Store that allow you to download pages so that you can view them when offline e.g. Atomic Web (the whole page is saved within Atomic Web, it doesn't place a photo into the Photos app)
    6, deleting content should help. If you remove an app from your iPad then you also remove the content that it's got on the iPad - so if you then decide to reinstall it back onto the iPad then you will need to manually add back any content that you want in it. None of the Apple built-in apps (including Photos) can be removed from the iPad

  • Page not displayed on server but works fine locally in Jdeveloper

    Hi,
    The page works fine locally when run from Jdeveloper.
    But when the page is imported to server and when the page is called....it trys to load the page for long time and times out and displays the IE error 'The Page cannot be displayed'.
    Do I have to do anything specific in server after importing a page?

    In the CO of the table region:
    public void processRequest(OAPageContext pageContext, OAWebBean webBean)
    super.processRequest(pageContext, webBean);
    ApplicationModuleImpl am1 = (ApplicationModuleImpl) pageContext.getRootApplicationModule();
    SalesOrderHeaders2VOImpl VO1 = (SalesOrderHeaders2VOImpl) am1.findViewObject("SalesOrderHeaders2VO");
    String HeaderId = (VO1.first().getAttribute("HeaderId")).toString();
    if (HeaderId != null)
    Serializable[] params = {HeaderId};
    OAApplicationModule am = (OAApplicationModule)pageContext.getApplicationModule(webBean);
    OADBTransactionImpl DBTrans = (OADBTransactionImpl)am.getOADBTransaction();
    boolean log = DBTrans.loggingEnabled() ;
    // Write Diagnostic message...
    if(pageContext.isLoggingEnabled(1))
    pageContext.writeDiagnostics(this," am : "+am ,1);
    if(am != null)
    OAViewObject viewObject = (OAViewObject)am.findViewObject("InterfaceSummVO");
    if(viewObject != null)
    viewObject.setWhereClauseParams(null);
    viewObject.setWhereClause("header_id = :1");
    viewObject.setWhereClauseParam(0, HeaderId );
    viewObject.executeQuery();
    }

  • Flash objects not displaying in Firefox (but works fine in Chrome and IE)

    Well, I'm trying to embed a Shockwave Flash object into a website I'm building. It displays in Chrome and IE, but it doesn't show up at all in Firefox. It's just white space. Ive tried it on two machines, so it's presumably the code. Both the machines have Adobe Flash enabled... I'm not sure what the problem is. I've not worked with embedding Flash objects in HTML before, so, it's probably something really obvious. I just used the insert command on dreamweaver and it wrote the code that I'm using. If anyone can help me, it would be much appreciated. Here's my code:
    <pre><nowiki><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="99%" height="600" id="FlashID">
    <param name="movie" value="The file path" />
    <param name="quality" value="high" />
    <param name="wmode" value="opaque" />
    <param name="swfversion" value="10.1.0.0" />
    <!-- This param tag prompts users with Flash Player 6.0 r65 and higher to download the latest version of Flash Player. Delete it if you don’t want users to see the prompt. -->
    <param name="expressinstall" value="../Scripts/expressInstall.swf" />
    <!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. -->
    <!--[if !IE]>-->
    <object type="application/x-shockwave-flash" data="the file path" width="99%" height="76.5%">
    <!--<![endif]-->
    <param name="quality" value="high" />
    <param name="wmode" value="opaque" />
    <param name="swfversion" value="10.1.0.0" />
    <param name="expressinstall" value="../Scripts/expressInstall.swf" />
    <!-- The browser displays the following alternative content for users with Flash Player 6.0 and older. -->
    <div>
    <h4>Content on this page requires a newer version of Adobe Flash Player.</h4>
    <p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" width="112" height="33" /></a></p>
    </div>
    <!--[if !IE]>-->
    </object>
    <!--<![endif]--></nowiki></pre>

    If you can't post an address for a page demonstrating the problem, could you check the Web Console (Ctrl+Shift+k) and Browser Console (Ctrl+Shift+j) for any messages related to the Flash media? For example, does either console show that Firefox is requesting the SWF file? Does either show an error in content type or any kind of security message?

  • Website not displaying in Firefox. Works fine in IE 10 & Chrome. Windows 8/x64

    Using Firefox 21.0 on Windows 8/x64. I am experiencing some sites where Firefox displays an odd looking graphic but none of the UI that displays in Chrome or IE 10. I can re-create it for example by going to http://www.basspay.com. I'm stumped. I removed all plugins/add-ons. Started in safe mode. Deleted everything in history - all to no avail. Any pointers on where I might start to even look? It's almost the same response one would expect if javascript was disabled and there was no "noscript" fallback. Except javascript is enabled and this is a stock installation of Firefox without a single setting or config change.

    going off of what philipp said here is what you get in the page inspector, it is a backward slash, when fixed it looks like the second picture

  • Report Parameter form not showing list of values in Report svr

    I was using reports 6i where I used to have list box in report parameter form. I now converted recompiled my reports in 10g and when I run I am not geting the list of values. I get the values as a list below the field
    ex.
    ITEM :___________
    box,book,pencil,rubber,
    dvd,floppy...
    previously it was coming as a list in the item field
    thanks
    MG

    Hello,
    http://www.oracle.com/webapps/online-help/reports/10.1.2/topics/htmlhelp_rwbuild_hs/rwwhthow/howto/params/pmp_creating_list_of_values.htm?tp=true
    If you run the report from a Web browser and the list of values is unrestricted, the HTML Parameter Form will display a text field instead of a combo box, and a list of static values that you can copy and paste into the text field.
    Regards

  • DB Changed to UTF-8. Now parameter form prompts display in font "symbol"

    We are in the process of updating a vendor developed application.
    The database character set changed from WE8ISO8859P1 to AL32UTF8.
    The vendor supplied reports work fine but our in house developed reports now have an issue with the parameter form font. The parameter font for the prompts is defaulting to "symbol".
    This happens even on forms where we have not specified a paper parameter form and
    let Oracle generate a default one.
    Any ideas on what we need to set to get the parameter form prompts to appear as Courier?
    Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - 64bit Production
    Report Builder 10.1.2.3.0
    Reports are run from a form. For example:
    http://XXX.XXXXX.CA:7777/reports/rwservlet?server=rep_XXX3&envid=XXX8&report=TESTREPORT&destype=CACHE&desformat=PDF&paramform=YES&userid=&recursive_load=no

    Hello,
    For your problem related the Font Symbol, apply the solution described in the document :
    Oracle® Application Server Reports Services Publishing Reports to the Web
    10g Release 2 (10.1.2)
    B14048-02
    18 Implementing Globalization and Bidirectional Support
    Repairing Garbled Fonts When Using the WE8ISO8859P15 Character Set
    http://download-uk.oracle.com/docs/cd/B14099_17/bi.1012/b14048/pbr_nls.htm#CBJCBCFG
    Regards

  • Record is not displayed in Historical Reports-Activity with no Customer

    Hi All,
    We have an issue in Historical Reports for Activity.we are using Book of Business also.
    Now the issue is under Activity History as subject area, when an activity doesn't have any Customer it should come as Unspecified in the report.
    Like if it doesn't have account assosiated to it then it is shown as Unspecified in the report.
    But for activity with no customer assosiated to it, it is not showing the entire record (Acitivity) in the report.
    When the Customer field is removed from the displayed columns then we are able to see those activities in the report.
    Note:
    But when the Book of Business is not there previously, it was working fine
    An response is appreciated.
    Thanks & Regards,
    Lemu
    Edited by: Lemu on Dec 28, 2010 10:33 PM
    Edited by: Lemu on Dec 28, 2010 10:34 PM

    Hi,
    Yes we have a workaround for this.
    Since the Primary Customer is not exposed as an Activity filed.
    Copy the value of the Primary Customer and display it in a filed of activity using workflows.
    Then replace the customer filed with this filed.
    Then u will get the activity without customer also cause the customer filed is a normal activity field.
    Hope this helps.
    Regards
    Lemu

  • BEx hierarchies not displayed in Crystal report parameters

    Hi All,
    I am trying to using a Bex query that has a cost center hierarchy with a variable that allows users to select specific nodes or even cost centers. In BEx reports, this query works fine and gives the users the view of the cost centres in a hierarchial manner. However, in Crystal reports, the query provides a drop down menu displaying a simple list of all the cost centres (not in a hierarchial manner). This confuses the user as to which element is a node and which is a cost centre
    Kindly suggest how can we achieve the cost centre hierarchy to appear in the parameters in Crystal.
    Thanks

    Hi,
    this is a duplicate to this entry:
    key figures are not displayed in crystal report
    Please do not post the same problem multiple times
    regards
    Ingo Hilgefort

  • Help needed - XML forms not displaying in my repository

    Hi all
    I could really do with some help here.  I have a custom XML form for news articles.  It works fine in the standard documents repository, but I have my iView pointing to a folder in my own CM repository.
    When a user tries to directly access the "show" form, instead of the form it displays the XML code.  Any ideas why this is?
    My CM repository is running the following services:
    layout, properties, svc_acl, tbp
    EP6SP14
    Thanks!  Chris

    Hello,
    I have the same problem. When I'm trying to create an XML file using XML form in the repository /etc, I get the following error:
    XML - Forms 
    Cannot create item e0977870-cf29-2d10-bb89-d00b5761268c.xml in collection /etc/public/; operation is not supported.
    When I do the same in repository /documents, it works fine.
    I think, I've made the neccesary settings for the repository (Form Based Publishing, ...).
    Any clues will be highly appreciated.
    Jiri

Maybe you are looking for

  • Error While Employee Termination  APP-PAY-07490

    Dear An employee 130,when i go to terminate of this employee system raise error *'APP-PAY-07490:The person must exist as an employee at the time specified by Date Start*", Can any body help me,how to rectify that problem, Thanks in advance.

  • System resets the sales order item price changes after save in VA02.

    Hi All, We have implemented automatic credit control at sales order level. System is blocking the sales order once saved in VA01. But if I do any changes in prices at item level in VA02 and save before credit releasing the sales order then system agi

  • OS 10.6 and PS CS3 problems

    I recently upgraded my Mac OS from 10.4.8 to 10.6 and my PS CS3 won't open

  • ASSIGN_CAST_WRONG_ALIGNMENT error when displaying InfoCube data

    Hi all, I am getting an ABAP runtime error ASSIGN_CAST_WRONG_ALIGNMENT when I try to display data from an InfoCube. This only happens when I'm entering a filter for an InfoObject in the data selection screen, when I click on the "List of Values" box

  • Variety of Mini Questions

    I just got a Mac Mini, am setting it up, and just have a few general questions.  It will replace my Macbook Pro as my main storage computer for photos, music, apps, and will become the computer that my iphone and ipad sync to... but as I set it up am