Hide reports path

hi all,
I have to hide jobid no in reports path as when I am calling a reports from forms it gives reports jobid in address bar of the browser.
is there a solution for this.

If there is any way to hide it I would like to know it too!
We got qround this with a trick:
1. Generate the PDF on the server
2. use "webutil_file_transfer.as_to_client" to transfer the PDF to the TEMP-directory on the client
3. open the PDF with "webutil_host.NonBlocking( 'rundll32 url.dll,FileProtocolHandler ' || path_to_file_in_temp_folder );"
4. the PDF will open in AdobeReader and not in AdobeReader embedded in the Internet-Explorer (actually it will be opened with the program thats currently associated with PDF's)
Regards
Markus

Similar Messages

  • Hide report path in oracle form 10g (10.1.2.0.2)

    Dear all,
    I m oracle form 10g (10.1.2.0.2) ,when i run report through form using paramform='yes' then parameter form open with path and userid/pass please
    help me how to hide this path

    Dear all,
    I m using WEB.SHOW_DOCUMENT, but i m running report without AS
    using following code,
    v_pw:=
    get_application_property(password);
    v_user:=
    user;
    v_conn:=
    get_application_property(connect_string);
    lv_host:=
    :global.gv_ser_add;
    lv_sys_param:=
    '&server='||:global.gv_ser_nm||'&DESTYPE=CACHE&DESFORMAT=PDF&mode=DEFAULT&PARAMFORM=yes';
    lv_path:='report=D:\test.rep';
    lv_usr_dtls:='&USERID='||v_user||'/'||v_pw||'@'||v_conn;
    lv_url:=lv_host||lv_path||lv_sys_param||lv_gen_param||lv_usr_dtls;
    lv_url:=replace(lv_url,' ',lv_url);
    hidden_action := hidden_action ||'&USERID='||get_application_property(username)||'/'||v_pw;
    web.show_document(lv_url,'_blank');
    please suggest where i m doing wrong
    Thanks
    Manoj rajput
    hide report path in oracle form 10g (10.1.2.0.2) 

  • 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

  • Hide jobid no in reports path

    hi all,
    I have to hide jobid no in reports path as when I am calling a reports from forms it gives reports jobid in address bar of the browser.
    is there a solution for this.

    You can slightly modify Andreas' suggestion:
    - generate to a random file name in a virtual web directory
    - open the document with web.show_document('http://server/virtualdirectory/<some random name>.pdf')
    It will be hard for anybody else to guess the file name.

  • How to hide report engin

    I am a new one in oracle and want to know how to hide report engin at runtime....
    Can anybody help me.....
    Thank you
    Farhan

    The following coding will help you to hide oracle report engin,
    ADD_PARAMETER(idparam,'ORACLE_SHUTDOWN',TEXT_PARAMETER,'YES');

  • How to set the report path in a model plugin

    I am trying to figure out how to set the report path in a process model plug-in. I can seem to figure out how to get access to it. It seems like this would be a reasonable thing to do since the plug-ins are for results processing. Does anyone know how to do this? We typically use the Sequential process model but I am trying to keep my plug-in as independent of that as possible. 
    Thanks.
    Solved!
    Go to Solution.

    If I understand, you want your plug-in, when enabled, to alter the settings of any other instances of the NI report plug-in such that their reports share the same directory as your plug-in is configured to use.
    If so, your plug-in can access and modify the settings of all other plug-in instances. All instances are passed to all plug-in entries point in the plugins array sub-property of the ModelConfiguration parameter. You can iterate through this array. Any element of the array with a Base.SequenceFilename equal to "NI_ReportGenerator.seq" is an instance of the NI report plug-in. Its report options are stored in the element under PluginSpecific.Options.
    You can change the report options to what ever you want. Note that the ReportOptions model callback is called from the Initialize model-plugin entry point, so you might want to ensure that your changes are applied after that, so they aren't overwritten. To do that, you could make your changes in the the Initialize entry point of your plug-in, and ensure that your plugin runs last. To make it run last, you could set the FileGlobals.ModelPluginComponentDescription.Default.Base.RunOrder in your plug-in file to a value greater than 0, such as 1.0 (see TestStand Help>>Fundamentals>>Process Model Architecture>>Process Model Plug-in Architecture>>Structure of Plug-in Sequence Files>>Model Plug-in Entry Points>>Order of Entry Point Execution at Run Time).

  • Reports path

    Hi,
    I am working on oracle 10g with developer 2000 . I have a problem while running reports. when i run a report it goes to a particular path in which my database are not there and hence gives a error 'cannot find server'. everytime i have to physically change the path of the database to run the report.
    THE PATH WHERE MY APPLICATION AND THE IP ADDRESS OF WINDOWS SYSTEM IS THIS
    http://comp:8889/reports/rwservlet?destype=cache&desformat=pdf&paramform=yes&parameter=yes&report=d:\source\pension\R_CPO&PRM_TXN_TYPE=&PRM_OFF_ID=209&PRM_SECN_ID=PV1&PRM_USER_ID=IAAD&PRM_MENU_ID=R_CPO&PRM_MENU_NAME=CPO&userid=SAIBANG/SAI@saibang
    WHERE AS THE REPORT TAKES ME TO THIS PATH
    http://10.112.137.170:8889/reports/rwservlet?destype=cache&desformat=pdf&paramform=yes&parameter=yes&report=d:\sai\bangalore\pension\R_CPO&PRM_TXN_TYPE=&PRM_OFF_ID=209&PRM_SECN_ID=PV1&PRM_USER_ID=IAAD&PRM_MENU_ID=R_CPO&PRM_MENU_NAME=CPO&userid=SAIBANG/SAI@saibang
    I had a look at the reports conf file , but couldnt find the path of the database which the report shows for me to change it. It looks like some where the report path has been hardcoded but i am not able to locate it.
    There might be some link missing while installing the application and the database and thats why i thought i could post this in this forum.
    I would be thankful if anyone could help me out to configure the reports path for effective running the report
    thanks in advance
    nana

    thanks a lot for your answer. Sorry for troubling you again. I did search the file in Devsuitehome\reports\dtd. "file:/D:/orant/reports/dtd/rwserverconf.dtd"> In my rwserverconf.dtd i looks different
    <!--
    Copyright 2000, 2005 Oracle Corporation.
    500 Oracle Parkway, Redwood Shores, CA 94065, U.S.A. All rights reserved.
    This is the DTD defining the Reports Server Configuration file
    (XML) format/syntax.
    -->
    <!ELEMENT server (compatible?,
    cache?,
    engine+,
    security*,
    oidconnection?,
    destination*,
    networkConfig?,
    job+,
    notification*,
    log?,
    jobStatusRepository?,
    trace?,
    connection?,
    ORBPorts?,
    queue?,
    persistFile?,
    jobRecovery?,
    identifier?,
    environment*,
    pluginParam*)>
    <!ATTLIST server
    version CDATA #IMPLIED>
    <!ELEMENT cache (property*)>
    <!-- class specifies full qualified java class name which implements
    oracle.reports.cache.Cache interface -->
    <!ATTLIST cache
    class CDATA "oracle.reports.cache.RWCache">
    <!ELEMENT engine (property*)>
    <!-- class specifies full qualified java class name which starts engine -->
    <!ATTLIST engine
    id ID #REQUIRED
    class CDATA #REQUIRED
    classPath CDATA #IMPLIED
    initEngine CDATA "1"
    maxEngine CDATA "1"
    minEngine CDATA "0"
    engLife CDATA "50"
    maxIdle CDATA "30"
    callbackTimeOut CDATA "60000"
    jvmOptions CDATA #IMPLIED
    engineResponseTimeOut CDATA "0"
    defaultEnvId CDATA #IMPLIED>
    <!ELEMENT security (property*)>
    <!-- class specifies full qualified java class name which implements
    oracle.reports.server.Security interface -->
    <!ATTLIST security
    id ID #REQUIRED
    class CDATA #REQUIRED>
    <!ELEMENT oidconnection EMPTY>
    <!ATTLIST oidconnection
    init CDATA "10"
    increment CDATA "10"
    timeout CDATA "0">
    <!ELEMENT destination (property*)>
    <!-- class specifies full qualified java class name which subclass
    oracle.reports.server.Destination abstract class -->
    <!ATTLIST destination
    destype ID #REQUIRED
    class CDATA #REQUIRED>
    <!ELEMENT networkConfig EMPTY>
    <!ATTLIST networkConfig
    file CDATA      #REQUIRED>
    <!ELEMENT job EMPTY>
    <!ATTLIST job
    jobType CDATA "report"
    engineId IDREF #REQUIRED
    securityId IDREF #IMPLIED>
    <!ELEMENT notification (property*)>
    <!ATTLIST notification
    id CDATA "mailNotify"
    class CDATA #REQUIRED>
    <!ELEMENT log EMPTY>
    <!ATTLIST log
    option (allJobs|succeededJobs|failedJobs|noJob) "noJob">
    <!ELEMENT jobStatusRepository (property*)>
    <!-- class specifies full qualified java class name which implements
    oracle.reports.server.JobRepository interface -->
    <!ATTLIST jobStatusRepository
    class CDATA "oracle.reports.server.JobRepositoryDB">
    <!ELEMENT queue EMPTY>
    <!ATTLIST queue
    maxQueueSize CDATA "1000">
    <!ELEMENT connection (orbClient*, cluster?)>
    <!ATTLIST connection
    maxConnect CDATA "20"
    idleTimeOut CDATA "15">
    <!ELEMENT ORBPorts EMPTY>
    <!ATTLIST ORBPorts
    value CDATA #REQUIRED>
    <!ELEMENT orbClient EMPTY>
    <!ATTLIST orbClient
    id ID #REQUIRED
    publicKeyFile CDATA #REQUIRED>
    <!ELEMENT cluster EMPTY>
    <!ATTLIST cluster
    publicKeyFile CDATA #REQUIRED
    privateKeyFile CDATA #REQUIRED>
    <!ELEMENT persistFile EMPTY>
    <!ATTLIST persistFile
    fileName CDATA #IMPLIED>
    <!ELEMENT trace EMPTY>
    <!ATTLIST trace
    traceFile CDATA #IMPLIED
    traceOpts (trace_prf|trace_brk|trace_app|trace_pls|trace_sql|
    trace_tms|trace_dst|trace_log|trace_err|trace_inf|
    trace_dbg|trace_wrn|trace_sta|trace_exc|trace_all|none) "trace_all"
    traceMode (trace_replace|trace_append) "trace_replace"
    traceModule (all|server|engine) "all">
    <!ELEMENT compatible EMPTY>
    <!ATTLIST compatible
    version (6i) "6i">
    <!ELEMENT jobRecovery EMPTY>
    <!ATTLIST jobRecovery
    auxDatFiles (yes|no) "no">
    <!ELEMENT identifier (#PCDATA)>
    <!ATTLIST identifier
    confidential (yes|no) "yes"
    encrypted (yes|no) "no">
    <!ELEMENT environment (envVariable*)>
    <!ATTLIST environment
    id ID #REQUIRED>
    <!ELEMENT envVariable EMPTY>
    <!ATTLIST envVariable
    name CDATA #REQUIRED
    value CDATA #IMPLIED>
    <!ELEMENT pluginParam (#PCDATA)>
    <!ATTLIST pluginParam
    name ID #REQUIRED
    type (text|file|url) "text">
    <!ELEMENT property EMPTY>
    <!ATTLIST property
    name CDATA #REQUIRED
    value CDATA #REQUIRED
    confidential (yes|no) "no"
    encrypted (yes|no) "no">
    Is this the one which i am supposed to modify or am i looking the wrong config file. Your help in this regard will be of much use
    thanks once again

  • Display null value:Report Filter using Show/hide report filter

    Hi,
    Is there any documentation from SAP BO that says "Report Filters don't display nulls."?
    Report Filter as in by clicking the Show/Hide Report Filter in the Infoview toolbar.
    Please help.
    Thank you.

    Hai
    u r Thread is similar  to
    http://www.forumtopics.com/busobj/viewtopic.php?p=848982&sid=2a66a2348c7042773baaf7bfd10241b2

  • How can we hide Report Total in Grouping report

    Hi
    I have used the APEX grouping functionality to display the Total by group on a particular Column.
    How can Hide report total value.
    Example:
    GL
    Company Location      Cost Center      Period      Value
    30      000           000           Jan-07      4,182,826.00
    30      101           000           Jan-07      11,943,060.00
    30      102           000           Jan-07      14,238,137.00
    30      103           000           Jan-07      19,057.00
    30      104           000           Jan-07      2,595,799.00
    30      105           000           Jan-07      165,943.00
    30      106           000           Jan-07      741,256.00
    40      000           000           Jan-07      1,058,768.00
    40      101           000           Jan-07      201,323.00
    40      102           000           Jan-07      20,795,876.00
    40      103           000           Jan-07      10,131,660.00
    40      106           000           Jan-07      5,474.00
    Source Total:                     66,079,179.00
    Inventory
    Company Location      Cost Center      Period      Value
    30      000           000           Jan-07      4,156,905.00
    30      101           000           Jan-07      11,943,062.00
    30      102           000           Jan-07      14,238,037.00
    30      103           000           Jan-07      19,057.00
    30      104           000           Jan-07      2,595,799.00
    30      105           000           Jan-07      165,943.00
    30      106           000           Jan-07      741,257.00
    40      000           000           Jan-07      1,016,777.00
    40      101           000           Jan-07      203,659.00
    40      102           000           Jan-07      20,779,260.00
    40      103           000           Jan-07      10,075,212.00
    40      106           000           Jan-07      5,474.00
    Source Total:                     65,940,442.00
    Report Total :                     132,019,621.00
    How can Hide "Report Total" label and its corresponding value.
    Regards
    Kiran Akkiraju

    Hello Kiran,
    Please check if the following can help you - Re: Break formatting and number format of SUM value
    Regards,
    Arie.

  • How to hide Report's Parameter Form Urgent Please

    Hello to All!
    How we can hide Reports Parameter Form when we are calling a report from our form by using RUN_PRODUCT built in.

    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Amir Sajjad ([email protected]):
    Hello to All!
    How we can hide Reports Parameter Form when we are calling a report from our form by using RUN_PRODUCT built in.<HR></BLOCKQUOTE>
    Hi Amir!
    You must add to your paramlist the following parameter:
    Add_Parameter(pl_id, 'PARAMFORM', TEXT_PARAMETER, 'NO');
    Bye

  • How to hide report background engine window

    hi
    i m using reports6i and when i run a report thorugh forms,reports background engine window also invoke and i want to hide that winodw .any one know how to hide report background engine or is this possibl. if so plz let me how to apply this.
    thnx in advance

    Hi,
    call report using this code
    begin
         srw.run_report('report='||path_forms('R')||'SUB_LEDGER_BALANCE.rep
    L=' || :control
    || ' cdate=' || to_char(:cdate));
    EXCEPTION
    when srw.run_report_failure then
    srw.message(30, 'Error runing reports.');
    raise srw.program_abort;
    end;
    if u use this code for calling report then report background engine window not open also u can open multipul report in same time
    Rizwan Shafiq
    www.rizwanshafiq.blogspot.com

  • Report Path Name

    Hi,
    I have a main sequence file with 5 steps each of sequence call type. I use the multi threading option to generate individual reports for each of the sequences in the sequence call.
    I configured the report options call back for the main sequence. I gave a different directory path for the report in Parameters.ReportOptions.Directory . The report corressponding to the main sequence is getting generated in the specified directory. But the reports of the sequence calls are getting generated in the directory specified in the reports option menu.
    Is it possible to make the reports generate at the required directory by making changes in the main seqnece alone? How to modify the report path name stored in the report options dialog box in the menu.
    Regards
    Gopal

    Hi everyone,
    Just an update in reference to Gopals's question:
    Is it possible to programatically give value to the directory in Report Options in Configure>>Report Options. Either using expressions in teststand or from Labview code.
    TestStand 4.2 gives you the ability to specify the report path using Expressions as well right from the Report Options dialog box. For instance, this can come in handy in situations where you might want to put all Failed UUT reports in one location and all Passed UUT reports in a different location.
    For more information on this, refer to:
    NI TestStand Help: Specifying Report File Paths by Expression
    NI TestStand 4.2 Release Notes: Using Expressions to Customize Report File Paths
    For more information on the new features in TestStand 4.2, refer to:
    Whats New in TestStand 4.2
    Jervin Justin
    NI TestStand Product Manager

  • Setting Multiple Report Paths for a Reports Server

    I am sorry for posting here, As I didnot get response from reports forum, I posted here.
    I would like my reports server named ABREP to to read reports from multiple paths.
    We have fmb,fmx,rdf,rep files in /gccapp/TESTAPP & /gccapp/LIVEAPP.
    I tried to follow I need multi report path
    but no luck.
    I give oratest:7778/forms/frmservlet?config=app1&*EnvId=testenv*
    but still it is reading from other location.
    can any one please help.
    My env: 10gdbR2, 10gAS,Solaris
    thanks
    Edited by: userR12 on Jan 16, 2010 6:16 AM

    Thanks for reply. I restarted reports server also. Is my way of writing EnvId in the link is correct?
    I have done the following:
    1. Inserted the following into the report server configuration file:
    <environment id="default">
    <envVariable name="REPORTS_PATH"
    value="/oraas/modlive10g:$ORACLE_HOME/reports/templates:$ORACLE_HOME/reports/printers:${REPORTS_PATH}:$ORACLE_HOME/reports/winfont"/>
    </environment>
    <environment id="testenv">
    <envVariable name="REPORTS_PATH"
    value="/modapp/modtest10g:$ORACLE_HOME/reports/templates:$ORACLE_HOME/reports/printers:${REPORTS_PATH}:$ORACLE_HOME/reports/winfont"/>
    </environment>
    2. commented REPORTS_PATH in reports.sh
    3.
    defaultEnvId="default" added to rwEng line in report server configuration file
    4. Restarted Report Server
    5. in browser appeneded EnvId=testenv to the application URL.
    thanks
    Edited by: userR12 on Jan 16, 2010 10:26 PM

  • Reports path - 10g

    Hi All,
    Can you please let me know how to configure the reports path. Currently I have placed all me .rdf reports in D:\myreports.
    I am calling one of the reports from FORMS as:
    Web.show_document('http://<servername>:<port>/reports/rwservlet?userid=scott/tiger@orcl&report=D:\myreports\emp.rdf&desformat=pdf&destype=cache&paramform=no
    I am able to view the same when accessed from the machine on which I have placed the report, but not from other systems in the network.
    Can you please help me out?
    Thanks in advance.

    i specified path for reports in .env and registry value REPORTS_PATH but still it prompts unable to open file.the path specified is correct and has the required .rep files.
    any more paramaters to set.?

  • Can a single HID report descriptor support multiple touch screens with different sizes?

    Hi Experts:
    I have a question for specifying touch monitor sizes in the HID report descriptor:
    Can ONE HID report descriptor support multiple touch monitors with different sizes ?
    Thanks in advance
    leo

    My screen shot is from AA9, and I have seen that the UI for AAX is vastly different, but...
    Choose Paper Source from Page Size should be the "one-touch" solution your looking for.
    In my test, my Konica-Minolta Bizhub failed to detect the proper paper trays, but Acrobat correctly spooled the pages.

Maybe you are looking for

  • Automatic Creation of Service ticket in Background

    Hi, My requirement is to create a Service Ticket in Web IC automatically in background when an enquiry is submitted by an user over the company's website. I am unable to find any function Module or BAPI to do the same. Is it possible to do it in the

  • Can I connect an external monitor on an HP Touchsmart 520 PC, using an HDMI to USB converter?

    I am attempting to connect a second monitor to my HP Touchsmart 520 all in one deskop PC, which does not have a VGA or HDMI port. The monitor has an HDMI cable, to which I have connected an HDMI to USB adaptor and connected to one of the USB3.0 ports

  • Run Time Engine Web Service

    Hello Gents, Anybody knows why I can't access to VI (*.exe) on remote PC. On remote PC has been installed only standard 8.6 Run Time Engine. Do I need to install additional parts like NI LabVIEW Run-Time Engine Web Server or/and LV Web Server? And is

  • What is set_layout_of_doublegrid method

    Hi, What is the use of method set_layout_of_doublegrid method of class cl_gui_alv_grid? I need to display header in multiple grids..can I use this method for that? rgds

  • My iOS 6 update for IPhone 4S has popped up an error message

    When I went to download upgrade, an hour after my husband's went perfect, mine showed error message twice(from phone upgrade) then told me to plug into iTunes & restore... Which popped up another error message.  My phone won't move from black screen