How can i call Web page  from my Forms 6 and Some other doubts.

Dear friends,
I am having the following questions and doubts ..If you can share some information with me it will be greatly useful to me..
Q1. I am using Dev Forms 6i. Can we call a Web Page form from the Developer Form directly with the press of a button..(eg. When button Pressed trigger..? )If so, what the requirement to do so. My database is Oracle 8i
Q2. How can we send email from a Form picking the address from our Oracle Database..? I have installed only Oracle 8i and Forms & Reports 6i. Anymore has to be installed for this work?
Q3. Do you know any GIS package that can be integrated with Oracle so that we can know the Latitude and Longtude of a lcation if we give an address..? and what can be done for this purpose.
please revert with the info...
Sincerly
Sajith
12100 Beech Forest Road,
Laurel, MD 20708, USA
Phone : (301) 497-5816
Cell : (301) 693-6767
Email : [email protected]

Here is code I used to send an email from Form 6.0 through Outlook 2000 on a PC. I don't know the answer to you rother questions.
PROCEDURE maily (p_to_address VARCHAR2, p_cc_address VARCHAR2 DEFAULT NULL, p_subject VARCHAR2, p_message VARCHAR2) IS
     objOutlook OLE2.OBJ_TYPE;
     objMail OLE2.OBJ_TYPE;
     objArg OLE2.LIST_TYPE;
BEGIN          
     objOutlook := OLE2.CREATE_OBJ('Outlook.Application');
     objarg := OLE2.CREATE_ARGLIST;
     OLE2.ADD_ARG(objarg,0);
     objMail := OLE2.INVOKE_OBJ(objOutlook,'CreateItem',objarg);
     OLE2.DESTROY_ARGLIST(objarg);
     OLE2.SET_PROPERTY(objmail,'To',p_to_address);
     OLE2.SET_PROPERTY(objmail,'Cc',p_cc_address);
     OLE2.SET_PROPERTY(objmail,'Subject',p_subject);
     OLE2.SET_PROPERTY(objmail,'Body',p_message);
     OLE2.INVOKE(objmail,'Send');//Use display to display the email instead of sending it, or save to save in the outbox
     OLE2.RELEASE_OBJ(objmail);
     OLE2.RELEASE_OBJ(objOutlook);
END;

Similar Messages

  • How can I extract certain pages from my document and save as another file?

    How can I extract certain pages from my document and save as another file?

    You would need Adobe Acrobat to do that, not Adobe Reader.

  • How can I Call the MainVI from its SubVI, and this happen recursively?

    Hi All,
    How can I Call the MainVI from its SubVI, and this happen recursively?
    Actually, LAbView 7.1 doesn't support recurssion?
    Plz help me out!

    Dear GerdW,
    Thanks a lot 2 all of u guys,for all the brilliant responses.
    Actually, my basic aim is to call the Main VI, containing a SubVI.....
    Now, I want to call my main VI from this SubVI...recursively!!!!!..but whenever I tried to put the MainVI in this SubVI..an error message pops out saying recursive calling is not possible.
    I also tried using "Call by reference" but tht also didn't worked...an d error is somewat like...VI is invalid..or type matching..or state matching error.
    Here, Im attaching the snapshot of the MainVI... Im calling the SUBvi from it... It is running GOOD n FINE...
    But prob arrives when I call the Main from the SUBvi, which looks like same as MainVI(with little differences).
    I hope, Im clear in my words n not being ambigous.
    Plz, correct me where ever  im wrong.
    Thank You.
    Mishra_RnD
    Attachments:
    ScrShot.JPG ‏272 KB

  • How can we call a report from a form.

    how can we call a report from an existing form.

    Have you searched the Forms help system? It shows you how to use RUN_REPORT_OBJECT

  • How can I prevent web pages from automatically reloading, such as The Druge Report, etc.

    Several web sites I frequent automatically reload their front page whenever they want to...not when I manually refresh...interrupting streaming videos, etc. I do not want these pages to do this, only I want the ability to manually refresh a web page.

    Yes, many sites need JavaScript to be enabled to work properly.<br /><br />
    This site will most likely not work and in the Knowledge Base you see the content for all Firefox versions and platforms.<br />
    So you shouldn't disable JavaScript globally, but you can do that selectively on a specific tab or based on websites.
    *Content Preferences: https://addons.mozilla.org/firefox/addon/4066
    You can block and allow scripts selectively for websites with an extension like NoScript or YesScript.
    *NoScript: https://addons.mozilla.org/firefox/addon/noscript/
    *YesScript: https://addons.mozilla.org/firefox/addon/yesscript/

  • How can I copy first page on a form and append to the end of the form

    I'd like to have a "copy page" button on page one of my form.  When the user clicks that button a new page is appended and a specific set of objects on page one get copied to the new page.
    Can you help me do that?

    You could always download the trial version until the laptop is fixed. But, I don't know if you can even save a file from CS5 that would be compatible in 3.  It is sucky to not have the single user, two activation license. This is one of the things I applaud Adobe for. Most major software licenses are meant for a single machine, and not so concerned about users - that they know it's unlikely that several users would share a machine.it does happen, but it's also quite an inconvenience.  The two activation solution takes into account a more realistic scenario for a single user. The other option being used with some programs is the dongle, which I also like, even though many others don't for various and valid reasons. Anyway, I just looked at a page in cs4 and it doesn't really save in any particular version, HTML is HTML. I just don't know what will happen if someone goes to open it in CS3 - will it open less any CS4 code, not open, erase the code on save? Will it be the same for 5? Just wondering as you may be able to use the trial.

  • Can I call JSP page from forms6i C/S?

    Hi.
    How can I call JSP page from forms6i Client/Server?
    Flavio.

    What is your problem with a host command? You can use:
    host('c:\program files\internet explorer\iexplore.exe http://server/page.jsp');
    There a disadvantage indeed: you have to close the browser before you can return to the form.

  • Can I print web pages from firefox using adobe pro 9 (Not using PDF download) and if so how

    Can I print web pages from Firefox 3.6.12 using adobe pro 9 (not using PDF Download) and if so how.

    {Ctrl + P} - do you have a PDF Printer listed in the Printer - Name drop-down?

  • How can i call a zreport from my bsp page.

    Hi friends,
    How can i call a zreport from my bsp page.
    Moosa

    Hi Friend,
    These are the codings  to be wirtten in BSP for transferring values to the REPORT
    DATA:wf_date TYPE ztable-ID.
          data:seltab type standard table of rsparams,
           wa_seltab like line of seltab,
         event TYPE REF TO if_htmlb_data.
    DATA:p_value TYPE REF TO CL_HTMLB_INPUTFIELD.
    event = cl_htmlb_manager=>get_event( runtime->server->request ).
    p_requ ?= CL_HTMLB_MANAGER=>GET_DATA(
                                            request  = runtime->server->request
                                            name     = 'inputField'
                                            id       = 'i1'
    if p_requ is not initial.
      wf_date = p_requ->value.
    endif.
    clear wa_seltab.
    if wf_date is not initial.
      wa_seltab-selname = 'P_REQU'.
      wa_seltab-kind = 'P'.
      wa_seltab-option = 'EQ'.
      wa_seltab-low = wf_date.
      append wa_seltab to seltab.
    endif.
    submit *ZSAMPLEAP1* with selection-table seltab AND RETURN  .(ZSAMPLEAP1 refers to the report name and AND RETURN for coming back to the BSP page after the completion of its operation in Report )
    IMPORT int_name TO int_name FROM MEMORY ID '*zid*'.(For importing the obtained value from Report)
    In Report
    REPORT  ZSAMPLEAP1.
    SELECT-OPTIONS: p_requ FOR ztable-id  NO INTERVALS.
    SELECT SINGLE name from ztable into int_name WHERE id = p_requ-low.
    WRITE:int_name.
        EXPORT int_name TO MEMORY  ID 'zsharmila'.
    With Regards,
    SHARMILA BRINDHA.M

  • How to prevent duplicate web pages from loading

    <blockquote>Locking duplicate thread.<br>
    Please continue here: [[/questions/930219]]</blockquote>
    how to prevent duplicate web pages from loading

    <s>Hi berternie, can you describe this in more detail?
    Are you saying the identical page loads in two different tabs? When does that happen -- when you click a link? or when you use a bookmark?
    Or do you have multiple tabs open every time you see your home page (i.e., when you start up, open a new window, or click the home icon)?</s>
    I see, you have more info in this thread: https://support.mozilla.org/en-US/questions/930219

  • How can I remove one page from adobe file

    How can I remove one page from adobe file, when I try to remove the page a dialgue box say "some pages are being used, so they can not be ereased"?

    Tools>Pages>Delete pages

  • How can I call a function from a procedure

    I have a function named: f_calc_value which return the variable v_result. This function is part of a package.
    How can I call this function from a new procedure I am creating?
    Thanks

    or refer this theread....calling function from procedure

  • How can I call a RFC from dynpage ?

    Hi!
    I would like to know how can I call a RFC from a Portal aplication, dynpage or jspdynpage. there include some libraries ?
    any idea?
    thanks

    for deploying SAP Jra :
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/ad09cd07-0a01-0010-93a9-933e247d3ba4#search=%22how%20to%20use%20jca%20sapjra%20site%3Asap.com%22
    For lookup of SAP Jra use:
    com.sapportals.connector.connection.IConnectionFactory connectionFactory =(IConnectionFactory) initctx.lookup( "deployedAdapters/SAPFactory/shareable/SAPFactory");
    Using SAP Jra
    http://help.sap.com/saphelp_nw04s/helpdata/en/47/13044258bdd417e10000000a1550b0/content.htm
    The important jars required are:
    connector.jar
    Genericconnector.jar
    prtjndisupport.jar
    Thanks

  • How can I remove a page from a PDF document and save it as a new PDF document?

    How can I remove a page from a PDF document and save it as a new PDF document?

    Tools - Pages - Extract and tick the option to delete the extracted page from the original file.

  • How can I extract a page from a document if I don't have that option on my tools menu?

    How can I extract a page from a document if I don't have that option on my tools menu?

    iPhoto on the iPad can be used to make photo books, but not calendars. It is a very different program from the Mac version of iPhoto. I hope you have access to a mac to create your christmas calendar.
    http://help.apple.com/iphoto/ipad/2.0/?handbuch#blnkbc26e276
    Search the AppStore for "Foto Calendar". I have not tried any of these apps, but there are quite a few, that claim to be able to create an "Awesome foto calendar"

Maybe you are looking for