Bookmark from Forms 11g

Hello Seniors,
I want to call microsoft word with all bookmark from forms 10g. (we have Visual basic application with word template ,all word template have bookmark and we want to call all bookmark directly from forms 10g).
I am able to call microsoft word template from forms 10g. But i dont know how to pass value in that bookmark.
i.e in visual basic we select employee id from application and its pass same value in template bookmark but how to pass emp id from forms 10g so that it pass value in template and all the bookmark saws value in it.).
Its huge application so we dont want to write all the code again ,thats why we want to directly call word template/bookmark from forms 10g.
Please advice ,
Thanks!

Sorry Francois
I added as you advice but nothing comes up . if you don't mind would you please guide me where i have to define those bookmark. please find my code ,pls correct if it is wrong.
Appreciate your help .
PROCEDURE Open_Doc
IS
-- Open a stored document --
LC$Cmd Varchar2(128) ; -- command to be run in Windows
LC$Nom Varchar2(100) ;
LC$Fic Varchar2(128);
LC$Path Varchar2(128);
LC$Sep Varchar2(1) ;
LN$But Pls_Integer ;
LB$Ok Boolean ;
FType VARCHAR2(20); -- File Type (Extension)
CType VARCHAR2(128); -- Command Type (in Windows)
-- Current Process ID --
ret WEBUTIL_HOST.PROCESS_ID ;
Begin
     -- Local temporary file name --
     LC$Sep := '\'; -- you can use WEBUTIL_FILE.Get_File_Separator ;
--     LC$Nom := Substr( :BIN_DOCS.Name, instr( :BIN_DOCS.Name, LC$Sep, -1 ) + 1, 100 ) ;
     LC$Nom :=:WMS_QUEUE_TASKS.TASK_NAME;
--message(LC$Nom);
     LC$Path := 'C:\Temp'; -- use standard DOS dir -- can use CLIENT_WIN_API_ENVIRONMENT.Get_Temp_Directory ;
     -- File Path with File name in Windows
     LC$Fic := LC$Path || LC$Sep || LC$Nom;
     LC$Fic :=LC$Fic ||'#CAN';
--message('File info '||LC$Fic);
-- File extension
FType := SUBSTR(:WMS_QUEUE_TASKS.COMMAND_LINE_PARM,INSTR(:WMS_QUEUE_TASKS.COMMAND_LINE_PARM,'.') + 1, 4);
-- Based on File extension will assign Windows Command
CType := NULL; -- by default command in Windows is NULL - taken Windows default
-- Default Command is NOT working for WINWORD
IF UPPER(FType) IN ('DOC','DOTM','DOTX') THEN
CType := 'WINWORD /W';
END IF;
     -- File extraction --
IF NOT PKG_TRANSFERTS.DB_To_Client
LC$Fic,
'WMS_QUEUE_TASKS',
'DOC',
'DOC_ID = ' || To_Char( :WMS_QUEUE_TASKS.Doc_ID )
) THEN
Set_Alert_Property( 'AL_ERROR', TITLE, 'DB to Client' ) ;
Set_Alert_Property( 'AL_ERROR', ALERT_MESSAGE_TEXT, 'Error transfering local file' ) ;
LN$But := Show_Alert( 'AL_ERROR' ) ;
Raise Form_trigger_Failure ;
ELSE
Message('Transferred to Client');
END IF ;
-- this command will be run from Windows
LC$Cmd := 'cmd /c start "My script" /WAIT '|| CType||' "'||LC$Fic ||'" ';
--message ('Host command: '||LC$Cmd);
     Ret := WEBUTIL_HOST.blocking( LC$Cmd ) ;
     LN$But := WEBUTIL_HOST.Get_return_Code( Ret ) ;
     IF LN$But <> 0 Then
          Set_Alert_Property( 'AL_ERROR', TITLE, 'Host() command' ) ;
Set_Alert_Property( 'AL_ERROR', ALERT_MESSAGE_TEXT, 'Host() command error : ' || To_Char( LN$But ) ) ;
LN$But := Show_Alert( 'AL_ERROR' ) ;
LB$Ok := WEBUTIL_FILE.DELETE_FILE( LC$Fic ) ;
Raise Form_Trigger_Failure ;
     END IF;
     -- Re-store the modified file in the database --
IF NOT PKG_TRANSFERTS.Client_To_DB
LC$Fic,
'WMS_QUEUE_TASKS',
'DOC',
'DOC_ID = ' || To_Char( :WMS_QUEUE_TASKS.Doc_ID )
) Then
Set_Alert_Property( 'AL_ERROR', TITLE, 'Client to DB' ) ;
Set_Alert_Property( 'AL_ERROR', ALERT_MESSAGE_TEXT, 'Error on storing file' ) ;
LN$But := Show_Alert( 'AL_ERROR' ) ;
Raise Form_trigger_Failure ;
ELSE
     -- The changes are commited to Database --> Build better interface
     COMMIT;
     Clear_Message ;
     Message('File re-stored in the database /Commited', no_acknowledge ) ;      
END IF ;     
-- Remove the temporary local file --
     LB$Ok := WEBUTIL_FILE.DELETE_FILE( LC$Fic ) ;
     IF LB$Ok = FALSE Then
          Bell ;
          Message( 'Error removing local file ', no_acknowledge ) ;
     END IF;
     Clear_Message ;
Exception
          When Form_Trigger_Failure Then
          Raise ;
End Open_Doc ;

Similar Messages

  • Bookmarks from form fields

    Is it possible to automatically create bookmarks from the text that the user types into form fields?

    In principle it's possible, but remember that bookmarks can't be added in
    Reader.

  • Launching WinWord as editor from Form 11g text field.

    In Forms 6i FORMS60_EDITOR registry entry allowed users to launch MS Word from the application. This enabled them to have an editor with spell checks and other advance editing features. Upon exit from MS Word, the content of the file was saved in the column for the connected database.
    I am trying to find equivalent of that in Forms11g. Using webutil libraries calls to client_host or webutil_host successfully launches Notepad it but does not work with WinWord or Wordpad - it gives a non-oracle error 100501. I have tried using CLIENT_OLE2 but that is ending up with error WUO-705.
    Any insight to setup this feature in Froms11g setup will be helpful. Thanks.

    Thanks for the input but I was able to accomplish what I needed by modifying one of Oracle's demo form. Below is the code, when this procedure is called from a text field, in my case by double clicking, I am lanuching MS Word and the data is from the column is displayed in a word doc thus providing users spell check funcationality. I can modify data in Word doc and when I exit, data from word doc is saved in the varchar2 column in the database.
    PROCEDURE prc_Edit IS
    lFileName VARCHAR2(200);
         lFile client_Text_IO.File_Type;
         lLine varchar2(2000);
         lFirstEntry Boolean := TRUE;
    BEGIN
    lFileName := webutil_clientinfo.get_system_property('java.io.tmpdir') || WEBUTIL_FILE.GET_FILE_SEPARATOR || 'FormEditor.doc';
         lFile := client_Text_IO.Fopen(lFileName, 'w');
         client_text_io.put_line(lFile, replace(name_in(:SYSTEM.CURRENT_ITEM), chr(10), chr(13)||chr(10)));
         client_text_io.fclose (lFile);
    synchronize;
    begin
    client_host('winword.exe "' || lFileName || '"');
    synchronize;
    exception
         when others then
         message(SQLERRM);
    pause;
    end;
    copy(null, :SYSTEM.CURRENT_ITEM);
    begin
         lFile := client_Text_IO.Fopen(lFileName, 'r');
    loop
         client_text_io.get_line(lFile, lLine);
    if lFirstEntry then
         lFirstEntry := false;
    copy (name_in(:SYSTEM.CURRENT_ITEM) || lLine, :SYSTEM.CURRENT_ITEM);
    else
         if get_item_property(:SYSTEM.CURRENT_ITEM, MULTI_LINE) = 'TRUE' then
    copy (name_in(:SYSTEM.CURRENT_ITEM) || chr(10) || lLine, :SYSTEM.CURRENT_ITEM);
         else
    copy (name_in(:SYSTEM.CURRENT_ITEM) || lLine, :SYSTEM.CURRENT_ITEM);
    end if;
    end if;
    end loop;
    end;
    EXCEPTION
         WHEN NO_DATA_FOUND THEN CLIENT_TEXT_IO.FCLOSE(lFile);
    END;

  • Is it possible to use DVT with Oracle Forms 11g?

    Hi,
    I have posted my question on Oracle Forms forum but I didn't get answere regarding dvt usage in Oracle Forms.
    Now I try it here.
    Oracle Forms 11g and charts / graphs
    ====
    one of our customers has a forms 6i applications including oracle graphics and is thinking about upgrade to forms 11g.
    Oracle graphics has been desupported with 6i and with 9i Oracle BI beans has been recommended.
    Forms 10g is the terminal version for Oracle BI beans too (http://www.oracle.com/technetwork/middleware/bbi-beans/overview/oraclebibeanssod2008-129560.pdf).
    What's the recommended technology for graphs/charts in Forms 11g?
    Is it ADF DVT?
    If yes, are there examples how to call them from Forms 11g?
    =====
    regards
    Peter

    Hello Shay,
    thank you very much for the link.
    I wonder if there any plans from Oracle to provide and support a DVT wrapper in next versions of Oracle Forms 11g
    As the customer project is planned for Q2/2011 we still have some time and hope for this :-)
    regards
    Peter

  • Previewing images in forms 11g from the server

    Hi All,
    i need your help in this issue please
    i've just migrated my application from forms 6i to forms 11g
    there is a function in my application that i used that previewed images that exists on a network drive that are used in an image gallary
    now i don't have this setup as the application is hosted on the weblogic server
    i want an alternative method that i can use to preview the images from the server
    the old way was:
    read_image_file('.\default_image.jpg','any','preview.image_preview'); --this shows a default image if no image was selected
    if :search_results.file_path is not null then     
         read_image_file(:preview.image_path||'\'||:search_results.file_path,'any','preview.image_preview');     -- this shows the image that we retreived it's name from the database but it exists on the file system
    end if;
    i've configured the webutil but i don't know what method to use
    also another functionality that i lost in the migration is opening a browser window to preview the final article that the editor entered using my application
    the old way was:
    declare
         url varchar2(1000);
    begin     
         url:='http://10.100.100.197:55/allcontent/allcontentimages/'||:SEARCH_RESULTS.FILE_PATH||'';
    WIN_API_SHELL.WinExec('"C:\Program Files\Internet Explorer\IEXPLORE.EXE" '||url||'',
    WIN_API.SW_SHOWMAXIMIZED,TRUE);
    Exception when NO_DATA_FOUND then
    MESSAGE('CAN NOT FIND THE FILE');
    end;
    now ithe WIN_API_SHELL is not working as i'm on the server side and i don't know the alternative
    please advice

    Hello Nivin
    If you want to read an file from local drive or from netwrok drive then before reading images please make sure that do you have full rights and have you mapped that network drive .
    after that you use read_image_file built in(). secondly you configure WEBUTIL package.
    please visit the following link for configuring webutil.
    I configured my webutil package from this link and its worked fine.
    http://www.baigzeeshan.com/2010/01/open-file-dailog-box-example-using.html
    thanks
    G.Yassen

  • Calling Report from Oracle form 11g

    I am new to Forms 11g, trying to call report from Oracle forms 11g .
    I want to call report from oracle forms, but its giving error.
    Below is the code
    DECLARE
    repid REPORT_OBJECT;
    v_rep VARCHAR2(100);
    rep_status VARCHAR2(20);
    BEGIN
    repid := FIND_REPORT_OBJECT('empreport'); -- report node in forms builder
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_COMM_MODE,SYNCHRONOUS);
    SET_REPORT_OBJECT_PROPERTY(repid, REPORT_EXECUTION_MODE, BATCH);
    set_report_object_property ( repid, report_filename, 'empreport.rdf' ); -- report name
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESTYPE,cache);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESFORMAT,'PDF');
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_SERVER,'RptSvr'); -- report server name
    v_rep := RUN_REPORT_OBJECT(repid);
    rep_status := REPORT_OBJECT_STATUS(v_rep);
    if
    rep_status = 'FINISHED'
    then
    WEB.SHOW_DOCUMENT('http://inorasrv-pc:7001/reports/dtd/rwservlet/getjobid='||v_rep||'?server='||'RptSvr','_blank');
    else
    message ( 'error while running reports-object ' || error_text );
    message ( ' ' );
    clear_message;
    end if;
    end;
    Above code giving following error :
    Unable to connect to report server RptSvr
    I think my report servername is wrong
    Where to find report server name in 11g.
    I am Using weblogic server, so can i give weblogic server name
    Thanks in advance.
    Edited by: parapr on Aug 17, 2012 1:52 AM
    Edited by: parapr on Aug 17, 2012 3:21 AM

    Hi,
    You have to have the report server
    a. Installed and configured
    b. Running.
    See
    http://docs.oracle.com/cd/E21764_01/bi.1111/b32121/pbr_strt001.htm
    http://docs.oracle.com/cd/E17904_01/bi.1111/b32121/pbr_verify004.htm
    http://docs.oracle.com/cd/E17904_01/bi.1111/b32121/pbr_conf003.htm#i1007341
    If you are using rwservlet then you will find the name from the Configuration file referred to in the last link.
    Cheers,

  • RE: Calling a Web service from Oracle Forms 11g

    I wonder if anyone could please help with the following
    We have a requirement for a real time communication between Oracles Forms (11g) and SAP over the RR LAN network.
    This would require the need to send info to and receive info from SAP as it will be an on-line validation of a Part from an Oracle FORM to SAP (response less than 1 second).
    What would be the best and easiest way to code this an Oracle FORMS trigger.
    Thanks very much
    Durjoy
    tel 07790 495 626

    Hello,
    <p>Did you read this paper ?</p>
    Francois

  • Calling From Oracle Forms 11g patch set 2(11.1.1.3.0) to  Oracle Reports 1

    Hi
    While calling From Oracle Forms 11g patch set 2(11.1.1.3.0) to Oracle Reports 11g patch set 2(11.1.1.3.0) I found unable to run report error
    But its finely working in 10g. The Place of error is in find_report_object
    Is any solution to resolve this problem like any registry setting or patches to solve this problem
    Please guide me
    Regards
    Murali N S

    I was able to download it from this link:
    [http://download-llnw.oracle.com/otn/java/jdeveloper/11.1.1.3.0/jdevstudio11113install.exe]
    on the general 11g Fusion download page at:
    [http://www.oracle.com/technology/software/products/middleware/index.html]
    Although the site does appear to be having problems. I got intermittent errors of the page/server not being available.

  • How to invoke crystal reports from Oracle forms 11g R2 along with passing p

    How to invoke crystal reports from Oracle forms 11g R2 along with passing parameter to it.
    how to pass parameters to crystal report, please help.

    how to pass parameters to crystal report, please help.This would entirely depend on crystal reports and you might find informations on crystal reports related communities more likely...I for one have seen crystal reports the last time about 12 years ago. And even back then I simply acknowledged it's existence instead of working with it.
    Maybe crystal reports can be invoked via a URL call which would make it simple as you'd need simply build an URL and show the report using web.show_document. But that's pure speculation. Also you might not be the first with this requirement, so the solution to your problem might be right under your nose and just a little google search away ;)
    cheers

  • Calling Report from Menu (Oracle Forms 11g)

    I'm trying to call a report from a menu item in a menu (that is attached to a form) in Oracle Forms 11g directly and I'm having some difficulty. I know how to call a report from a form and everything works perfectly.
    But since in a menu there is no item called "Report" to attach like there is in Forms, I followed on route which is to attach the "rp2rro" PL/SQL library on the menu file (mmb) and I also even did it on the form itself. Then when you convert a menu using the Forms Migration Assistant, it will comment out statements like "ADD_PARAMETER" and replace with calls to packaged procedures/functions from the package "rp2rro". I set all the parameters
    RP2RRO.SETOTHERS('PARAMFORM=YES');
    RP2RRO.SETDESTYPE('CACHE');
    RP2RRO.SETDESFORMAT('PDF');
    RP2RRO.SETCOMMUNICATIONMODE(SYNCHRONOUS);
    then made the call to the report:
    RP2RRO.RUN_PRODUCT(REPORTS, 'MYREPORT', SYNCHRONOUS, RUNTIME, FILESYSTEM, param_list_id, NULL);
    but all i get is the error "FRM-41219: Cannot find report: invalid ID."
    The Oracle documentation for integration reports in forms is for when you execute the report within a form not a menu item (that is attached to a form). Any clues?
    My environment is:
    Oracle (Database, Fusion Middleware) 11g - Red Hat Enterprise Linux 5
    Web Browser - Internet Explorer 7 on Windows XP Professional
    Thanks,

    Francois Degrelle wrote:
    Hello,
    One option is to use the Web.Show_Document() built-in, with the complete Report Server URL inside. Of course, you can hide some information (connection string for instance) by calling a section of the /reports/conf/cgicmd.dat configuration file.
    FrancoisI tried it using the code below
    DECLARE
    c_relative_path CONSTANT VARCHAR2(50) := '/reports/rwservlet/?server=';
    c_rep_srv_name CONSTANT VARCHAR2(50) := 'rep_wls_reports_calgf3_asinst_1';
    c_rep_name CONSTANT VARCHAR2(30) := 'copy_detail.rdf';
    c_desformat CONSTANT VARCHAR2(10) := 'htmlcss';
    c_destype CONSTANT VARCHAR2(10) := 'cache';
    v_username VARCHAR2(100);
    v_password VARCHAR2(100);
    v_db_instance VARCHAR2(40);
    v_connect_string VARCHAR2(300);
    v_rep_srv_params VARCHAR2(200);
    v_rep_url VARCHAR2(400);
    BEGIN
    v_username := LOWER(get_application_property(username));
    v_password := LOWER(get_application_property(password));
    v_db_instance := LOWER(get_application_property(connect_string));
    v_connect_string := v_username || '/' || v_password || '@' || v_db_instance;
    v_rep_srv_params := '&report=' || c_rep_name ||
    '&desformat=' || c_desformat ||
    '&destype=' || c_destype ||
    '&userid=' || v_connect_string ||
    '&paramform=yes';
    v_rep_url := c_relative_path || c_rep_srv_name || v_rep_srv_params;
    web.show_document(v_rep_url, '_blank');
    END;
    and I get a new tab in the browser opening up (which is good at least) with the Oracle Reports Services page saying:
    Error
    No such Web command ().
    Now I've tried putting a URL of a Oracle's website (http://www.oracle.com) and that works perfectly. Another question is, where would the default directory be if I wanted to say call an HTML file? Would it be in the directory of FORMS_PATH where all my fmb, fmx, rdf, pll, etc...files are stored?
    Thanks,

  • Call a adf form from oracle forms 11g

    Hallo,
    I want to call a form developed in ADF from my existing oracle forms mask and then back from ADF form to the oracle forms mask.
    It this possible? Have everyone a how to for this problem?
    Thanks for your help
    Ines

    i created jar file to call it from forms
    Could you be a little bit less vague about what you exactly did?
    Anyway; see here http://bit.ly/10VVoMR
    cheers

  • Report not working from forms.

    Hi
    we are beginners and please help us.we have installed in LAN database 11g on vista
    and application server 10g on os 2003.
    we are developing some applications from our developer pc in vista and using developer suite 10g.
    we want to generate some reports and call them from forms.
    This is the code in when button pressed.
    DECLARE
    repid REPORT_OBJECT;
    repjobid VARCHAR2(200);
    repstatus VARCHAR2(200);
    repjobno number;
    repserver VARCHAR2(100) := 'rep_mbxserver_FRHome1';
    BEGIN
    repserver := 'rep_mbxserver_FRHome1';
    /* Check to see if forms application is WEB deployed */
    IF get_application_property(user_interface) = 'WEB' THEN
    message('web');
    repid:= FIND_REPORT_OBJECT('REP');
    message('report found');
    /* Set Report parameters given WEB deployment */
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_FILENAME,'e:\users\pro\reports\emp.rdf');
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_SERVER,repserver);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESTYPE,CACHE);
    /* DESFORMAT could be HTML, HTMLCSS or PDF here */
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESFORMAT,'HTML');
    /* Run the report */
    repjobid := RUN_REPORT_OBJECT(repid);
    message('run report');
    /* Check the report status */
    repstatus:=REPORT_OBJECT_STATUS(repjobid);
    WHILE repstatus in ('RUNNING','OPENING_REPORT','ENQUEUED')
    LOOP
    repstatus := report_object_status(repjobid);
    message('rep status');
    END LOOP;
    IF repstatus='FINISHED' THEN
    message('REPORT WAS CORRECTLY RUN');
    /* Display the report output in the client browser */
    repjobno := length(repserver) + 1;
    WEB.SHOW_DOCUMENT ('http://printer1.mbxnet.com:8889/reports/rwservlet/showjobs?server='||repserver,'_blank');
    copy_report_object_output(repjobid,'\\ansu\mtb-erp\emp.lis');-- (Trying to copy to local folder)
    message('File copied to local pc');
    /* If report has failed display message to user */
    ELSE
    message('REPORT FAILED WITH STATUS: '||repstatus);
    END IF;
    message('222222222222');
    ELSE
    /* Else if forms application is Client-Server deployed */
    /* Set Report parameters given Client-Server deployment */
    message('client server');
    repid:= FIND_REPORT_OBJECT('rep1');
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_FILENAME,'e:\users\pro\reports\emp.rdf');
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_EXECUTION_MODE,RUNTIME);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_COMM_MODE,SYNCHRONOUS);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESTYPE,file);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESNAME,'\\printer1\mtb-erp\emp.lis');
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESFORMAT,'dflt.prt');
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_SERVER,repserver);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_OTHER,'paramform=NO');
    /* Report to be executed via Reports Background Engine, not the 'new' Reports Multi-Tier Server */
    /* Destype SCREEN or PREVIEW can be used here */
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESTYPE,SCREEN);
    /* Run the report */
    repjobid := RUN_REPORT_OBJECT(repid);
    copy_report_object_output(repjobid,'\\printer1\mtb-erp\emp.lis');
    message('File ok');
    --     host('c:\mtb-erp\ansu.lis');
    END IF;
    END;
    we are struck and unable to proceed.Actually when we run the report from report builder it works.we are calling the report from application server.
    Also if we replace the above web.show document with this statement it works but even though it gives FRM-41214 error.
    web.show_document('http://ansuya.mtbnet.local:8889/reports/rwservlet?destype=cache&desformat=html&report=\\mbxserver\developers\emp.jsp&userid=scott/tiger@mbxsql&paramform=no');
    One more doubt , is it possible if we don not want to show the report in a browser in case of client server locally in lan
    but just generate the report from forms and save it in local folder like we do in previous old versions.If so please guide us.
    Thanks in advance.

    Hello ansu,
    Did you solve this problem ?
    Regards,
    Felipe.

  • How to display the output of a reports called from forms in the same window

    Hi all.
    I have installed Forms / Reports 11g Rel2 developer only installation on my windows 7 box.
    I can successfully call a reports from forms using RUN_REPORT_OBJECT and WEB_SHOW.document, but the report is opened in a new window.
    I'd like to open it in the same widow, in a new tab, similar to ctrl-t and make a call.
    How is that possible?.
    I'm using Chrome 25.0. Could this be done through browser settings?.
    Thanks in advance ...!
    Edited by: myluism on 14-mar-2013 6:09

    Don't know for Chrome, so Google for it.
    One more thing, though. what is the 2nd parameter in web.show_document? Is it '_blank'? If not, try that.

  • Web.show_document in Forms 11g

    Hi, I've migrating my application from forms 6i to forms 11g.
    In my application I use web.show_document to open some document using the http alias defined in httpd.conf under Oracle iSuites Http Server
    in httpd.conf I define
    Alias /my_document_folder/ "c:/document/"
    and in my application code
    web.show_document('/my_document_folder/my_document.doc');
    How can I define the alias http alias for Forms 11g
    Thanks..

    Hi All,
    I am facing some issue while seeing the report using web.show_document as shown below:
    https://ucrmskr.apac.nsroot.net:10301/forms/html/001725032_gca.rtf_
    In this case the report opens directly without asking for me to save or open or cancel option
    whereas if I hit
    http://scrmskr.apac.nsroot.net:7801/forms/html/001725032_gca.rtf_
    it asks for save or open or cancel option
    so that I can save the report to my machine and open in wordpad format
    The report generated in the first case is not coming in proper format
    Below are my forms.conf mappings:
    # Name
    # forms.conf - Forms component Apache directives configuration file.
    # Purpose
    # It should include the weblogic managed server (routing) directives for
    # the servers where Forms applications are deployed and other miscellaneous
    # Forms component OHS directives.
    # Remarks
    # This file is included with the OHS configuration under
    # $OI/config/OHS/<OHS Node Name>/moduleconf sub-directory.
    # virtual mapping for the /forms/html mapping.
    RewriteEngine on
    RewriteRule ^/forms/html/(..*) /workaroundhtml/$1 [PT]
    AliasMatch ^/workaroundhtml/(..*) "/ucrmap1/weblogic/bea/ucrms/config/FormsComponent/forms/html/$1"
    RewriteRule ^/ucrms/icons/(..*) "/workaroundicons/$1" [PT]
    AliasMatch ^/workaroundicons/(..*) "/ucrmap1/weblogic/bea/ORA_PFRD/forms/java/$1"
    RewriteRule ^/forms/help/(..*) "/workaroundhelp/$1" [PT]
    AliasMatch ^/workaroundhelp/(..*) "/ucrmap1/ucrrgbg2/help/$1"
    <Location /forms>
    SetHandler weblogic-handler
    WebLogicCluster kauh0079:9001
    DynamicServerList OFF
    </Location>
    Please let me know what needs to be done additionally if we are trying to hit https because in the second case we were hitting http with similar mapping in diff environment and it was generating report successfully.
    Regards,
    Harish

  • How-to consolidate bookmarks from 2 different Windows users

    I have a few user names on my Desktop PC. I am running Windows 7 Home. And would like to consolidate my bookmarks lists.
    In other words so each user gets the same bookmarks listing containing the sites of every one of the users put together in an amagamated form without repeats; a sort of an unique Master List of all bookmarks to be installed for every user to have it as soon as they open Firefox.
    I am running Firefox 3.6 17, how do I make that Master List?
    Is that what is described as 'syncing'?
    Thank you kindly

    It will involve a small amount of work.
    The basic process is export the bookmarks to an HTML file, then import the HTML files to one user account. You can then use an add-on to eliminate the duplicates. Finally you can export the master list to a JSON file, and then restore the JSON file to the other computers.
    * To export to an HTML file - https://support.mozilla.com/kb/Exporting+bookmarks+to+an+HTML+file
    * To import the HTML files - https://support.mozilla.com/kb/Importing+Bookmarks+from+an+HTML+File
    Note: The article refers to selecting "Organize Bookmarks" in the bookmarks menu, if any of the computers are using Firefox 4, you need to select "Show All Bookmarks" instead.
    Once you have amalgamated the bookmarks into one user account, you can use the CheckPlaces add-on to remove any duplicates - https://addons.mozilla.org/firefox/addon/checkplaces/
    Finally, for details of how to export the bookmarks to a JSON file, and restore that file on the other computers, see https://support.mozilla.com/kb/Backing+up+and+restoring+bookmarks
    If you want to keep the bookmarks in sync, the Firefox Sync add-on may be of use to you (this is built into Firefox 4) - https://addons.mozilla.org/firefox/addon/firefox-sync/

Maybe you are looking for

  • Restoring pre-lion functionality to iCal

    I've put up with the changes to iCal ever since I installed Lion, but seriously! It seems to me that much of what was useful (or rather, made it tolerable) about iCal has been lost. Please tell me if I am missing something: Adding events: iCal now de

  • Value mapping details

    Hi all, Can cnybody give me details about the Value mappings in XI. I want basic details like where and how to declare it and how to use it. Regards, Guru.

  • Transferring CDs at 320 bit rate

    I'm transferring several CDs to iTunes (7.5). For a few of the classical ones, I've set iTunes for AAC and custom (320 kbps and 48 kHz) and Variable Bit Rate unchecked. I presumed this would produce the highest quality (?). After transferring, most o

  • My order info makes no sense

    Could someone please decrypt this nonsense? Ordered On 16-Sep-2012 Processing Items Dispatched:   2 - 3 Weeks    Delivers   03 Oct, 2012 - 09 Oct, 2012 Today is the 3rd of october, how can it be processed, dispatched, and potentially delivered all on

  • Cannot remove adobe reader x10.1.7?

    I am trying to find the reason why my computer requires re-booting every A.M. When I do a security scan everything appears O.K. except for one item which is quarantined. After searching the add and remove in my control panel I suspect the two items a