For specifically RIZWAN from PAkistan or anyone

hello mr rizwan,
i am facing the problem that my reports showing all the path along with userid/password@tns in the browser address bar in 10g. i want to hide it from browser.
i search about this topic on forum and got your material given below. but i have tried this on my form as
WEB.SHOW_DOCUMENT ('javascript:window.open("'TARGET=_blank>
http://www.startwithoracle.com","", "fullscreen=no,titlebar=no,location=no,
toolbar=no,menubar=no, status=no,resizable=yes");self.close()','_blank');
but it generates compilation problem . i think some syntax mistak or slight mistak of commas, but i am unable to resolve .
can you help in this regard
thanks
Najeeb ur Rehman
your material is given below:
hi
Here is an example of a typical WEB.SHOW_DOCUMENT call with a hard-coded URL:
WEB.SHOW_DOCUMENT ('http://www.oracle.com', '_blank');
Here is an example of a WEB.SHOW_DOCUMENT call with a hard-coded URL, but
launched with Java Script. The resulting browser will have its menu,
toolbar, and status bar hidden:
WEB.SHOW_DOCUMENT ('javascript:window.open("'TARGET=_blank>
http://www.startwithoracle.com","", "fullscreen=no,titlebar=no,location=no,
toolbar=no,menubar=no, status=no,resizable=yes");self.close()','_blank');
Here is an example of a WEB.SHOW_DOCUMENT call which uses a variable t
o create the URL. It will be launched with Java Script and the resulting
browser will have its menu, toolbar, and status bar hidden:
Declare
v_URLin varchar2(255);
v_URLout varchar2(255);
Begin
v_URLin := :block.item;
v_URLout := 'javascript:window.open("'|| v_URLin || '","","fullscreen=no,
titlebar=no,location=no,toolbar=no,menubar=no, status=no, resizable=yes");self.close()';
WEB.SHOW_DOCUMENT (v_URLout, '_blank');
End;
Rizwan

Hi,
I am having the same problem as you.
I would like to hide those from the URL.
As far as I know.
The Web.Show_Document is only available on Oracle Form.
I guess that he is pointing out on calling Report from Form.
Hope that someone could point out what should be done on hiding
userid, password, and reports path (if possible) when calling Report from another Report with hyperlinks.
Regards,
Buntoro

Similar Messages

  • How to search for specific match from an array?

    Hi Mike,
    Thanks for the reply.
    I am reading a position of switches whether ON/OFF. It is nothing but the digital inputs status from the field. I am Indexing that array, and connect it to the LED indicators to show the relevant status. Also I want to raise an alarm  once, for the ON switches.  By using Search 1D array, I got the first TRUE match index from the array. But if I want to know all the occurrences of ON condition (TRUE from an array of booleans) from an array of switches. How to do that?
    Hope this clarifies.
    Thanks
    Kousy

    I almost missed this message because you started a new thread.
    In any case, the code altenbach posted will give you an array of the indexes that are set to true. So it sounds like that is at least part of what you want. The alarm you mention, is that one "master" alarm if any of them are true, or is it a separate alarm for each bit?
    If it is one "master" alarm for all of them the logic menu has a function for ORing all the elements in a boolean array. Also when you say "alarm" what is the nature of this alarm? A dialog box? a flashing light (real or on the applications's front panel)? message in a status display?
    The attached code shows one possible direction by adding onto altenbachs code the ability to accumulate a single error message based on the states of individual bits. (BTW: The other alternative that you might see would be to pass the array into a loop and use a case to append a message of the bit is true. The advantage of the one in the combined VI is that the loop only iterates for the number of true bits +1. Where as the other approach would have to look at all the bits one at a time.)
    In a sense this is why I asked for clarification because there are a lot of things you can do when parsing an array like this.
    Mike...
    Certified Professional Instructor
    Certified LabVIEW Architect
    LabVIEW Champion
    "... after all, He's not a tame lion..."
    Be thinking ahead and mark your dance card for NI Week 2015 now: TS 6139 - Object Oriented First Steps
    Attachments:
    TRUEadditions.vi ‏31 KB

  • Oracle HR 11.5.7 -Select DateTracked Info of Employees for Specific Period

    Oracle HR 11.5.7 -Select DateTracked Info of Employees for Specific Period (From/To)
    Hi,
    We have Oracle Human Resources 11.5.7 and I would like to know which is the best way to use when need to query data for employees valid within a specific period (From/To) or at specific date.
    For example:
    Say Current Date= 25-OCT-05
    1.
    If I want to query the number of employees booked for a training event occurred as at 01-AUG-05 and one of the employees booked left as at 30-SEP-05, I would like to be included in the query.
    or 2.
    If I want to see the employees assignment details for a specific period to see the active(latest) assignment details as at that period.
    I would appreciate any feedback regarding the best way to do such queries as far as accuracy of data and performance is concerned.
    Thanking you in advance.
    Best regards,
    Elena

    Thank you for your reply..:)
    Actually I'm already using this..
    My problem is when I need to retrieve information for a specific period of time.
    For example say I want to retrieve all sickness absences for Year 2004 and want to retrieve the last employee details (people & assignment tables) that fall within this period (either with an effective date >= sysdate (ie. still active) or which was current upto 31-dec-2004 and might changed later on).
    To be more specific let's say an employee took sick leave in 2004 for total 10 days and has the following rows in per_people_f and per_assignments_f:
    per_people_f:
    start_date end_date person_id other personal details
    01-FEB-2001 - 15-MAR-2004 3808 xxxx
    16-MAR-2004 - 30-JUN-2004 3808 yyyy
    01-JUL-2004 - 17-FEB-2005 3808 zzzz
    18-FEB-2005 TO DATE 3808 www
    per_assignments_f:
    start_date end_date person_id assign_id other assignment details
    01-FEB-2001 - 15-JAN-2003 3808 1114 aaaa
    16-JAN-2003 - 30-AUG-2004 3808 1114 bbbb
    31-AUG-2004 - TO DATE 3808 1114 cccc
    What I need the query to return for the above example is:
    per_people_f:
    start_date end_date person_id other personal details
    01-JUL-2004 - 17-FEB-2005 3808 zzzz
    and
    per_assignments_f:
    start_date end_date person_id assign_id other assignment details
    31-AUG-2004 - TO DATE 3808 1114 cccc
    and sickness days =10
    (sum of duration where
    absence start_date >= 01-JAN-2004
    AND end_date<=31-DEC-2004)
    Thanking you in advance for any help on this issue.
    Regards,
    Elena

  • Hide The Content Reference from Portal For specific users.

    Hello Everyone
    I am new to peoplesoft and want to hide the content reference from the main portal for specific users
    Can anyone help me on this?
    Thanks in advance...

    the users should have roles which do not contain the permission lists to which your current component is added.
    This is the way security is maintained!
    Vikas

  • Is Acrobat Pro right for us. We have an Employee Handbook that needs editing. Some is current pdf, some from an older version. Want to get all into one handbook, have the table of contents automatically adjust and link to specific pages from the ToC.

    Is Acrobat Pro right for us. We have an Employee Handbook that needs editing. Some is current pdf, some from an older version. Want to get all into one handbook, have the table of contents automatically adjust and link to specific pages from the ToC.

    You can download the trial version (http://helpx.adobe.com/acrobat/kb/acrobat-downloads.html) to convert the PDF back to WORD if you do not have the original. The conversion may not be perfect, but it is typically better than starting from scratch. You may be lucky and get a good result. You might check the settings (in the save screen) to try retain format versus retain text flow. The format version can be a pain to edit since it creates a bunch of text boxes. The flow version may require you to reformat in WORD, but you likely would want to do that anyway.

  • I managed to transfer the music from 1 pc to 1 other pc (to be played by iTunes). Bit didn't fixe the transfer of the meta data (for example the rating). Does anyone know how to use your old playlists, etc..(= meta data) on the other PC? So, please help!

    I managed to transfer the music from 1 pc to 1 other pc (it is played perfectly on the other PC (Windows 7- pc) by the newly downloaded and installed iTunes, version 10.6.1.7). But I didn’t fix the transfer of the meta data (for example the rating). Does anyone know how to use (or import) your old playlists, etc..(= meta data) on the other PC? So, short: how to migrate the meta data from one pc to an other pc?
    It's a pity that it seems not to be possible to import on the new pc e.g. the ratings!!!
    I don't want to start again with rating my (beautiful classical) music!
    Thanks, from Amsterdam, NL

    Did you do the move via Home Sharing, astro?
    If so, perhaps try the instructions from the following post:
    Re: i transfered itunes to my pc playlists did not go

  • I need to buy an external battery solar charger for my iPad 2. Does anyone have the specifications for it, such as  volts, miliamperes, amperes, etc ??

    I Want to buy an external  solar battery charger for my iPad 2. Does anyone know the right specifications for it.
    Is this one good for me ? 12000mAh Portable Solar Power Battery Pack. You can find it on this link.
    http://dx.com/p/12000mah-portable-solar-power-battery-pack-with-laptop-cellphone -adapters-72218?item=37
    Thanks.

    The iPad charger is rated at 10W - 5V @ 2A  An iPhone/iPod charger is rated at 5W - 5V @ 1A. An iPhone charger will charge the iPad, but much slower than the iPad charger. Based on the specs, I don't think it's adequate for the iPad.
     Cheers, Tom

  • Need different but default Reply-to/From headers for specific mail accounts

    I just migrated to a rMBP-15 from a Windows/MS Outlook environment. I love it so far. Just to be sure, my OS is OSX Mountain Lion 10.8.3 and Mail is 6.2
    I am trying very hard to replicate below mail account setup scenario using Apple Mail. I have two issues.
    I have 3 Gmail accounts - lets call it G1, G2, and G3.
    Issue # 1:
    I need to setup corresponding accounts on Apple Mail (say AG1, AG2, AG3) such that when I reply to emails in AG1, the Reply-to and From address fields in  my outgoing emails should be G1, and when I reply to emails in AG2, the Reply-to and From address fields in my outgoing emails should be G2. In this scenario Apple Mail always seems to default to only G1 (or G2, or G3) depending on which one is at the top (default). Even if I set up corresponding SMTP servers with respective email addresses, outgoing emails do not get transmitted unless I choose the default SMTP server, thereby resulting in always a single Reply-To and From email address for all my Apple accounts.
    Issue # 2:
    I have a forwarding email address (lets call it FEA) issues by my grad school that I use to forward to G3. When I use AG3 on my Apple Mail, I like to have a Reply-to and From address of FEA.
    How can I resolve the above two issues? I was able to easily do this in Outlook. All my hours of online research points to only the Apple scripting command "defaults" that will change the Reply-to header for ALL my outgoing email, but not for specific accounts.
    I am happy to provide more details if required, but please any help is appreciated!!

    This is not possible with Apple Mail (although its possible with Outlook). So, with some additional research, I solved this by myself as follows:
    For the Mailbox needing a different Reply-to and From headers, I logged into corresponding Gmail account directly, and then
    1) Went to Settings
    2) Accounts and Imports
    3) Under Send Email As: I clicked on "Add another email address you own"
    4) In the popup, I entered the email address I really wanted in my Reply-to adn From headers
    5) Clicked on Next Step
    6) I chose "Send through <yourdomain> SMTP Server" and click Next Step
    7) Here I enter the details of my ISP SMTP server (smtp.verizion.net, Port 465, my userid/pwd)
    8) And then back on Goggle Settings->Account and Imports I choose this email as the Default (I will have to validate the email address by entering a code I get on that email)
    I am done.
    Now I can use Apple Mailbox with a Gmail account, and never have my Gmail address appear on ANY emial to/from this Mailbox account. I do not even have to choose "Reply-To" header everytime in my outgoing email.

  • I have Adobe CS4 Photoshop for Windows (PN 65015634 - from 2008) -- Can anyone let me know if this is compatible with Windows 7??  Thanks!!

    I have Adobe CS4 Photoshop for Windows (PN 65015634 - from 2008) -- Can anyone let me know if this is compatible with Windows 7??
    Many and sincere thanks!!

    You need to have your computer looked at for upgrading and evaluate your third party hardware, software and files.
    To fix your issue is too complicated and lengthy to go into all of it here, it will require the services of person very familiar and experienced with Mac's to first recover your data and then restore OS X back to a functional state which may or may not require new hardware/software installed.
    You can hire the services of a local Mac computer support technician experienced in these matters.
    Have them look at your Wifi security/speed, RAM amount, extra storage and computer backup proceedures in the process.
    Good Luck.

  • Can anyone give me step by step for calling FM from one SAP to another SAP

    can anyone give me step by step for calling FM from one SAP to another SAP
    points will be rewarded,
    thank you,
    Regards,
    Jagrut BharatKumar Shukla

    *& Report  RFC_FOR_CUSTOMER_LIST
    *& RFC to a Fn. module from another system which implements BAPI
    REPORT  rfc_for_customer_list.
    DATA:
      fl_status TYPE i.
    DATA:
      fs_message TYPE bapiret2.
    DATA:
      BEGIN OF fs_customers,
        id   TYPE s_customer,
        name TYPE s_custname,
      END OF fs_customers.
    DATA:
      t_customers LIKE
         STANDARD TABLE
               OF fs_customers.
    CALL FUNCTION 'Z_BAPI_GET_CUSTOMER_LIST' DESTINATION 'R3N'
      IMPORTING
        return = fs_message
      TABLES
        customerlist = t_customers.
    IF sy-subrc EQ 0.
      fl_status = 1.
      LOOP AT t_customers INTO fs_customers.
        WRITE:
          /10 fs_customers-id,
           30 fs_customers-name.
        AT LAST.
          WRITE:
            /,/5 'No of customers in R3N = ', sy-tabix.
        ENDAT.
      ENDLOOP.
    ELSE.
      MESSAGE 'RFC failed' TYPE 'S'.
      EXIT.
    ENDIF.
                           TOP-OF-PAGE EVENT                            *
    TOP-OF-PAGE.
      IF fl_status NE 0.
        WRITE:
          /12 'ID'   COLOR 6,
           32 'NAME' COLOR 6.
        SKIP.
      ENDIF.
    This is one small example...
    Regards,
    Pavan

  • I applied for AppleCare work from home 7 days ago and haven't received an email regarding my application status.  Anyone know how long this takes or if I shouldn't expect anything?

    I applied for AppleCare work from home 7 days ago and haven't received an email regarding my application status.  Anyone know how long this takes or if I shouldn't expect anything?

    I have no idea how long it takes. I applied for one several months ago. The position is still posted but I haven't heard a thing.

  • I have somehow managed to lock my phone to one laptop, like I cannot put music on my phone from another laptop and i have to put in screen lock for it to even play! Anyone know how I can fix this ?

    I have somehow managed to lock my phone to one laptop, like I cannot put music on my phone from another laptop and i have to put in screen lock for it to even play! Anyone know how I can fix this ?

    AshleyG0990 wrote:
    I have somehow managed to lock my phone to one laptop, like I cannot put music on my phone from another laptop
    What you did was sync it to a computer. The iPhone can sync to ONLY one iTunes library at a time. you can't put media on it from multiple computers. It's been this way since 6/29/2007.
    i have to put in screen lock for it to even play
    Completely different issue. What did you think it would do when you set a passcode for the phone?

  • Hello, can anyone give us the tips for AirPrint option from iPad to brother MFC 7860DW printer

    Hello, can anyone give us the tips for AirPrint option from iPad to brother MFC 7860DW printer

    It's possible Brother may provide updates to their printers to make them AirPrint capable or provide app for printing; search the iTunes Store or look to the support resources for your model of printer. For other printers, you can route the printing through your computer. If you have a Mac, Printopia might be worth a look:
    http://www.ecamm.com/mac/printopia/
    If you have a Windows system, search the web for something like "airprint Windows hack" and you'll find instructions on enabling printing.
    Another option is an AirPrint-capable print server. Lantronix makes a couple of models, including one that supports a USB printer:
    http://www.lantronix.com/it-management/xprintserver/xprintserver-t2.html
    Regards.

  • Since latest Snow Leopard security patch, Quicken 2007 does nt function properly.  Quicken says it is waiting for a solution from Apple.  Does anyone have another solution?

    Since the latest Snow Lepard security download, Quicken 2007 for Mac does not function properly (it crashes and will not print).  Quicken says it is waiting for a fix from Apple.  Any idea when that might come?  Does anyone have another solution?

    http://support.apple.com/kb/DL1489
    This is the revised v1.1. You can also get it from Software Update.

  • How to restore Project from repository for specific date ?

    Hello,
    I have Web Dyn Pro Project. Some files were deleted in project and were checked in to repository.
    Could you please describe easy steps how to restore project state for specific date ?

    The only way you could do that was if you used Time Machine on the computer to make backups. You could simply store the mobile backups folder on the day you wanted and then restore the iPhone.
    I've done this successfully in the past.

Maybe you are looking for

  • RAM x MSI PM8M3-VH ???

    Greetings all, I resurrected the mainboard MSI PM8M3-VH. I was in two slots ddr 512 = 1Gb. Now I want to put two slots 1GB = 2GB I searched and found problems of compatibility chipset P4M800CE (be careful exchange with P4M800). My question is what me

  • Would tomahawk selectOneRadio work in html  table tag

    hey guys, i want to use the tomahawk tag in a html table in JSF pages, but it seen unwork, my example is shown below <f:view> <h:form> <table> <!-- include from the other pages called LIC3320.jsp --> <x:selectOneRadio id="select" layout="spread" forc

  • Is it ok to charge iphone many times a day?

    i always want to have a full battery, is it ok to charge the iphone many times every day(4-5 times)?

  • HELP TO VIEW PDF FILES IN NOKIA 6303i CLASSIC MOBILE

    HELP TO VIEW PDF FILES IN NOKIA 6303i CLASSIC MOBILE

  • Not enough memory (RAM) error. Can't open TIFF file.

    I can't open a 74MB TIFF file in CS5 photoshop.   I get error message: Could not complete your request because there is not enough memory (RAM).  I have 16GB of RAM and 55.5 GB of scratch disk. I am using my recently installed copy of Photoshop CS5 6