Display parameters in the report....

Hi friends,
I have one requirement to show up the parameters the user has selected in the 'report customization form' in the report .Any thoughts pl help..I know it is possible in dynamic pages but i never tried in the report ...pl help
Vishnu singireddy

You can try something in the additional PL/SQL section..
If you are running it as portlet:
htp.prn( <portal_schema>.wwv_name_value.get_string( l_arg_names,
l_arg_values,p_reference_path|| '.<parameter_name>');
If you are running in Normal Full Page Mode
htp.prn( <portal_schema>.wwv_name_value.get_string( l_arg_names,
l_arg_values,'<parameter_name>');
e.g.
htp.prn(portal30.wwv_name_value.get_string( l_arg_names,
l_arg_values,p_reference_path|| '.department');
Thanx,
Chetan.

Similar Messages

  • Resetting parameters in the Report Launch Form (qms0012f)

    We ran into the problem today that the parameters in the Report Launch Form cannot be reset if they have no default value defined against them. In our situation this proved to be quite confusing and annoying for our end users, so we investigated the logic in the Headstart code and created a very simple solution: we added one character to the code in the qms0012l library. (package qms$param, procedure check_par_value.
    For the long story, see http://technology.amis.nl/blog/?p=925
    best regards,
    Lucas

    Gerard,
    "when using the LOV query (through Headstart Foundation Application) the user is forced to use the LOV
    and is not able to fill in the parameter field (field protected against update). "
    This behavior is intentional. The reason for this is that with Hsd6i, we added a display value that is different from
    the actual value of the parameters. However, in order not to break applications developed with older releases
    of Headstart, the LOV still lists the actual value is still listed first in the lov query. Since the first field in the LOV
    is not the field displayed on the screen, you cannot set Validate in LOV to true. So, the only option is to force
    users to use the LOV to enter data. If you do not have compatibility issues with older applications, you can
    set Validate in LOV to true and change all your LOV queries to put Description first and then value.
    "If I use the LOV, Value or Description width fields they generate an On Off behaviour. The values you
    specify are not important. When specified the LOV becomes screen wide, disregarding the specified
    widths. When cleared the LOV returns to it's initial behaviour. "
    I suspect this might be a new forms bug. I've logged a Headstart bug, just in case we can find a workaround.
    "The manual describes the use of GLOBAL variables for Default Value and Description.
    So far :
    the code for the default value will never work
    name_in(l_default_value)
    should be
    name_in(substr(l_default_value,2))
    in order to remove the colon.
    The code for the Default Description is totally absent."
    I have also logged a Headstart bug for this. We will need to investigate it. Certainly, the mechanism is working
    correctly, so I'm not sure what is going on here.
    Regards,
    Lauri

  • I have Photoshop cs6 Ext on an ASUS laptop. How can I increase the font size of the contents of the FILTER Panel situated on bottom left of screen. The font size is extreamly small and almost unreadable. I have changed display parameters, not the resoluti

    I have Photoshop cs6 Ext on an ASUS laptop. How can I increase the font size of the contents of the FILTER Panel situated on bottom left of screen. The font size is extreamly small and almost unreadable. I have changed display parameters, not the resolution, to no avail.
    David.

    Paragraph breaks are good for readability. ;-)
    Have you noticed any difference between your MacBook and others at the Apple store? Wondering whether this is a configurable setting at the system level, i.e., DPI.
    You can default Firefox to a larger zoom level to avoid having to zoom every page. You'll still be able to adjust the size for individual sites as needed. It sounds as though you are aware of these add-ons:
    * Default FullZoom Level: https://addons.mozilla.org/firefox/addon/default-fullzoom-level/
    * NoSquint: https://addons.mozilla.org/firefox/addon/nosquint/
    There are some discussions about changing coming in Firefox 22 (I think) to address higher density displays like the Retina display. So perhaps there will be a built-in setting to address this in the future.

  • The number of display columns in the report reached the limit. Help!!!

    Hello Everyone,
    This might be dumb question. But why do get this error with a IR report? and what is the solution for this. Please help me with this.
    Error
    The number of display columns in the report reached the limit. Please click Select Columns under Actions menu to minimize the report display column list.
    Oh.. And also i have a blob column.. if the format is not given, then the table is fine.. but happen to get this error only when the blob download format is given.
    Thanks and regards
    John
    Edited by: JB on Mar 30, 2012 11:08 AM

    Hi,
    i have set up a small test case on apex.oracle.com and I receive the same error if I use download format.
    I have a table
    test_blob (id number, name varchar2(10), blobcont blob)
    If I create IR like
      select
        id,
        name,
        blobcont
      from test_bloband then I define download format I hit the error.
    If you want this to work you have to change your query to
      select
        id,
        name,
        dbms_lob.getlength(blobcont) blobcont
      from test_blobAnd then again define download format for blob on blobcont column.
    Regards,
    Aljaz

  • How can I get the date and time and display it on the report main page?

    Gurus,
    How can I get the date and time and display it on the report main page?
    Thanks!

    Hello,
    You can create a Formula Colum returning a date :
    function CF_1Formula return Date is
    begin
    RETURN(SYSDATE);
    end;
    Put a Field in the Layout having this formula column as source .
    Regards

  • The number of display columns in the report reached the limit" Interactive Report

    I get the error message of "The number of display columns in the report reached the limit" when trying to display less than 100 (100 is limit) columns when an aggregate has been created.   This does not happen when an aggregate has not been added to the IR report.  It seems to happen because I have a control break on as well.  When I turn off the control break it works but is not the result that we want.  Interesting enough, if I filter the results down to 500 rows it works just fine.  Does oracle treat aggregates as columns!?  This is a really odd issue that I really need to clear up.
    Oracle 11g
    apex 4.1.0.33
    Thanks in advance,
    Shawn.

    Hi,
    i have set up a small test case on apex.oracle.com and I receive the same error if I use download format.
    I have a table
    test_blob (id number, name varchar2(10), blobcont blob)
    If I create IR like
      select
        id,
        name,
        blobcont
      from test_bloband then I define download format I hit the error.
    If you want this to work you have to change your query to
      select
        id,
        name,
        dbms_lob.getlength(blobcont) blobcont
      from test_blobAnd then again define download format for blob on blobcont column.
    Regards,
    Aljaz

  • Dynamically fetch data from database and display it in the report

    Hi,
    We have a requirement in developing a report which needs us to dynamically fetch data from the database and display it in the report.
    We have a column called WORKER in the report.
    For each worker there is a measure(PSA) associated with it.
    In the report we have to display both the WORKER and the PSA column.
    What we want is, when we display the list of the workers, the corresponding workerid_id of the worker will be passed and the value of his PSA will be fetched from the database and displayed in the report.
    Or anything similar to this.
    We also have drill applied on this WORKER column. So after any drill up or drill down also the value for PSA should change.
    Is there any way of doing this?
    Please help if possible.
    Thanks,

    hi,
    data : count type i value 0.
    data : Begin of itab occurs 0 ,
    plan_version like hrhap-plan_version,
    APPRAISAL_ID like hrhap-APPRAISAL_ID,
    AP_START_DATE like hrhap-AP_START_DATE,
    AP_END_DATE like hrhap-AP_END_DATE,
    AP_STATUS like hrhap-AP_STATUS,
    AP_STATUS_SUB like hrhap-AP_STATUS_SUB,
    OBJ_DATE_SET like hrhap-OBJ_DATE_SET,
    REVIEW_DATE_SET like hrhap-REVIEW_DATE_SET,
    AP_DATE_SET like hrhap-AP_DATE_SET,
    AP_DATE_EARLIEST like hrhap-AP_DATE_EARLIEST,
    AP_DATE_LATEST like hrhap-AP_DATE_LATEST,
    CHANGE_DATE like hrhap-CHANGE_DATE,
    CHANGE_TIME like hrhap-CHANGE_TIME,
    CHANGE_USER like hrhap-CHANGE_USER,
    end of itab.
    <b>select * from hrhap into corresponding fields of table itab.</b>
    loop at itab.
    write :/ itab-plan_version under 'plan_version',
    itab-appraisal_id under 'Appraisal Id',
    itab-AP_START_DATE under 'Start Date',
    itab-AP_END_DATE under 'End date',
    itab-AP_STATUS under 'Status',
    itab-AP_STATUS_SUB under 'Substatus',
    itab-OBJ_DATE_SET under 'Objective setting date',
    itab-REVIEW_DATE_SET under 'Review date set',
    itab-AP_DATE_SET under 'appraisal date',
    itab-AP_DATE_EARLIEST under 'Earliest appraisal date',
    itab-AP_DATE_LATEST under 'Latest Appraisal date',
    itab-CHANGE_DATE under 'Change Date',
    itab-CHANGE_TIME under 'change time',
    itab-CHANGE_user under 'change user'.
    count = count + 1.
    endloop.
    write : 'No of records' ,count.
    rgds
    anver
    if hlped mark points.

  • How to display the SQL query's date parameters to the report

    Hi all,
    I'd like to take the date parameters that are contained in my query and have them appear on the report and/or have the sysdate appear on the report. Any ideas on how to do this? Thanks!

    Hi..
    To display parameters which are part of SQl Query in the output..
    http://blogs.oracle.com/xmlpublisher/2008/07/where_are_the_parameter_values.html
    HTH..

  • How to call a BW WEB template from R/3 and pass parameters to the report

    Is it possible to call a BW web template from an R/3 system, through an abap program?
    I have a BW WEB report template. This works very good, and i have 3 variables in the query.
    Now, i need to invoke the BW web template from inside of an abap in R/3..
    And i want to pass 3 variables from the R/3 ABAP to the BW WEB TEMPLATE.....
    Is possible to call BW web templates from R/3??
    PLEASE!!! HELP ME..
    Carlos E. España
    ADATSA
    [email protected]

    Thank you very much for your valuable help, i checked your suggestion and looks great. But i need to pass 3 parameters from an ABAP to the wad query report.
    How can i pass the parameters to the web template???
    another issue: My WAS (Web Application Server 6.20) is not public, is currently working for a local area network.
    The access to this report is from outside of the office, so we need to access this through the PORTAL.

  • To display icons in the report

    Hi All,
    I am Building a report transport request tracking.....in my master data....i have an infoobject :'import status of a request'....in which symbols are stored like truck symbol,arrow symbol,red error symbol,green symbol(means successfull) etc...and their corresponding texts.....but when i am seeing the output of the report text is coming and when i am changing it to key...instead of displaying the symbol something else is coming....for ex ---green symbol - @5b@ red error symbol-@5c@  etc.....then i found out that in SAP these symbols are stored internally in this way only.....so i guess when SAP is trying to send the data to excel...it not able to interpret what sap system interprets internally .....
    is there any way i can display those symbols in my report ?
    Regards,
    Deadlocks

    I raised a post about replacing text and/or keys with an image file about a year ago. As far as I know there is no way to get BEx to do this for a dynamic list (i.e. where the data in the rows / columns is not always on the same row / column).
    Try the following:
    Replacing text descriptions with an image file
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/b0a89464-f697-2910-2ba6-9877e3088954
    /people/dinesh.mukundu/blog/2007/05/23/bi-70-bex-macros-for-formatted-reports-at-sap-teched-2007-las-vegas
    Good luck and, if you are successful, I would be very keen to see how.

  • Please help me for Parameters of the reports in client server mode

    Dear reader,
    I have a problem,
    suppose there is a hierarchy of listings in reports e.g.
    countries, states, provinces, districts.
    in the parameter if i want to list the districts of the selected
    provinces, provinces of the selected states, states of the
    selected countries,
    then how the code for the parameter must be written. this i am
    unable to do as the parameter's select statement does not accept
    a bind variable as the WHERE condition.
    please help me in integrating the 4 parameters.
    thanks in advances. please reply as soon as possible.
    thanks & regards.
    Bhakti.

    Dear ileana,
    I have tried the the option you have suggested and i was
    successful.
    Now there is another problem. As i had described the problem, i
    have 4 parameters to use in hierarchy. but if i leave any of
    them as NULL the report goes bust. i have defined REF cursors
    for each of the parameter but cannot use it simultaneously as a
    group error occurs.
    could you help me out with this too.
    thanks in advance.
    bye
    Bhakti

  • Garbage displayed while running the report in browser using report server

    We are facing problem in displaying the Arabic text from the Report Server.
    We have Digital Server running Tru64 4.0f unix. We have two similiar servers, both are
    clustered. We have Report Server(6i) running in one machine and the Database(8.1.7) running
    in the other.
    When we tried the reports having only English text it is working fine. We need Arabic text
    also in the report. The Arabic text are coming as ?????? . We tried setting the NLS_LANG
    environment to AMERICAN_AMERICA.AR8MSWIN1256 and changed the Tk2Motif.rgb to take this
    character set. Then we get the error REP 1352 - The font is not supported by the NLS_LANG.
    Then we tried the various NLS_LANG environment AMERICAN_AMERICA.AR8ISO8859P6, ARABIC_SAUDI
    ARABIA.AR8MSWIN1256 and ARABIC_SAUDI ARABIA.AR8ISO8859P6, in all the cases the report is
    just hanging. If We unset the NLS_LANG and the Tk2Motif.rgb the english part of the reports
    are coming alright, still the arabic is coming ??????.
    null

    hello,
    where does it display the ???????s. it seems that the client, you are using to display the output does not have the right font-sets installed.
    regards,
    the oracle reports team

  • Currency display issue in the report

    Hello Experts,
    I am facing an issue with the currency type CLP(Chilian Peso).
    It  is noted that  the CLP currency doesn't use decimals.
    In BW reports the values in Local Currency are not OK.
    For example , the right value is 150.755 CLP in R3 side But in the BW report the value is 15.075.500, 00 CLP which is misleading.
    Could any one help me how to solve this issue.
    In TCURX the following settings are maintained
    currency type    decimal
    CLP                       0
    Regards

    Hi Nivas,
    I think following things are happening.
    u2022     Updating The Amount Value into BW data target.
    When we load the data into BW having amount field in it ,it checks for the TCURX table for the currency entry.
    If the currency entry is present in TCURX table it divides the amount by 10**(2-CURRDEC entry in TCURX table)).
    u2022     Displaying the amount into BEx reports.
    The exactly converse happens while displaying such values in the report output,The amount values will be multiplied by 10**(2-(CURRDEC entry in TCURX table)) while diplaying the report output.
    Please check below thread,
    Here is the link for your reference:
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/600aa67b-c348-2b10-f690-aaa81d12ec6a
    Regards,
    Deepak Chavan.
    Edited by: Deepak Chavan on Aug 22, 2008 4:30 AM

  • How to add the parameters onto the reports while calling from forms

    Hi all,
    I am using oracle forms 10g. I want to call a report from the form.
    But i dont know how to add parameters to the url while using
    web.show_document();
    i have a sample code. But it does not add the forms values onto the url.
    DECLARE
    v_host varchar2(100);
    v_port varchar2(10);
    v_parameter_string varchar2(4000);
    v_username varchar2(50);
    v_password varchar2(50);
    v_database varchar2(50);
    BEGIN
    -- Get the full domain name of the server from the formsweb.cfg
    tool_env.getvar('SERVER_URL',v_host);
    -- Get the username/password and database from the .env file
    tool_env.getvar('APPLICATION_USERNAME',v_username);
    tool_env.getvar('APPLICATION_PASSWORD',v_password);
    tool_env.getvar('APPLICATION_DATABASE',v_database);
    -- If it is localhost then we are running on windows and need to use the windows port, otherwise we
    -- are on AIX and need to use the AIX port
    IF v_host = 'localhost' THEN
         v_port := '8889';
    ELSE
         v_port := '7778';
    END IF;
    -- Now build the parameter string for running the report      
    v_parameter_string := 'server=rep_fsprod';
    v_parameter_string := v_parameter_string||'&report=AAP_TOTAL_CONTRACT_VALUE_RPT.rdf';
    v_parameter_string := v_parameter_string||'&userid='||v_username||'/'||v_password||'@'||v_database;
    v_parameter_string := v_parameter_string||'&execution_mode=batch';
    v_parameter_string := v_parameter_string||'&comm_mode=synchronous';
    v_parameter_string := v_parameter_string||'&destype=cache';
    v_parameter_string := v_parameter_string||'&desformat=pdf';
    -- Now run the report
    web.show_document('http://'||v_host||':'||v_port||'/reports/rwservlet?'||v_parameter_string,'_blank');
    END;
    Are we able to add the text values in the form from to the URL.
    Please let me know....
    thanks in advance....
    Naveen

    hello
    read the following white paper http://www.oracle.com/technology/products/forms/pdf/10g/frm10gsrw10g.pdf
    cheers
    Q

  • The page cannot be displayed while running the report with web link

    Hello,
    I tried to run the report using a web link similar:
    http://hostname/reports/rwservlet?report=WRFTCKL.rdf&userid=use/pass@datbase&desformat=pdf&destype=CACHE&paramform=yes
    I am able to see the parameter form, but after I entered some parameter and submit, I got an error as:
    The page cannot be displayed.
    But if I run it with the paramform=no and attached the parameter/value pair at the end of the link, the report will show on the web.
    Anyone knows what is wrong?
    Thanks.

    try this sample report from
    http://www.alexyscorp.com/products.htm
    (Download the Forms Reports Integration based on run_report_object (FMB,RDF) )

Maybe you are looking for