Forms 9i settings

Hi,
my client is using forms 9i, and in their server and locally their system is working absolutely fine. I'm trying to work from my local system while running application in browser it's not showing the application completely, means some part is getting cut. and I'm not getting full screen also. In internet browser the screen is occupying only 3/4. any settings i've to do in my system?
Thanks and Regards,
Sudha.

Make sure windows are maximized using this in when-new-form-instance:
set_window_property(forms_mdi_window, window_state, maximize);
set_window_property('your_main_window', window_state, maximize);
Also check to be sure both you and your client are using the same JInitiator, and that your fonts appear the same on the screen as your client' screen. If you and your client's screen resolutions are different, that may be a factor too.

Similar Messages

  • Forms runtime settings

    I am using Oracle Forms [32 Bit] Version 10.1.2.3.0
    My Forms runtime settings where we specify the default browser, Application Server URL etc are not getting saved.
    Meaning when I exit out and open Forms builder again , I am having to specify this again.
    Can someone please let me know how to avoid this ?
    I am using Edit - Prerefernces - Runtime(tab) to enter the preferences .
    Thanks

    Hi,
    You can edit %DS_HOME%\cauprefs.ora file and add the following and then start the forms builder.
    Forms.browser = <your_browser_location> say "C:\Program Files\Internet Explorer\iexplore.exe"
    Forms.html = <your_app_server_url> say http://localhost:8889-Arun

  • Acrobat X Global Form Field Settings

    Good day - Is there a way in Acrobat X to globally set font face and size for all fields in a form?
    My objective:
    > take template which had a form with 50 filelds
    > globally set font face and size
    It is a real pain in the neck having to do each one field by field.  I am an ASP developer and are usign ASPPDF to populate pdf docs vis ASP code.  If I use X and Y coords with my code I can define font properties with my code However I wish to use Acrobat field names therefore they inherit these setting from the Acrobat field settings.  Wow what a pain.
    Thank you for your help in advance.
    Please note - I am using Classic ASP, not dot net....

    In that case, you can use JavaScript. If you use it in a batch sequence, you can change the field properties of a collection of documents very quickly. Here's an example:
    // Script to set the font and size of text fields
    for (var i = 0; i < numFields; i++) {
        // Get a reference to the current field
        var f = getField(getNthFieldName(i));
        // If it's a text field, set the font and font size
        if (f.type == "text") {
            f.textFont = font.Helv;
            f.textSize = 7;
    You can also run this in the interactive JavaScript console (Ctrl+J) to test it out. More information on the textFont property is in the documentation here: http://livedocs.adobe.com/acrobat_sdk/9.1/Acrobat9_1_HTMLHelp/JS_API_AcroJS.88.727.html

  • PDF Form Security Settings

    How can I allow both filling in form fields AND inserting/replacing pages in a secure pdf?

    Password security will not allow both those actions.
    Setting up security policies

  • Adobe forms - server settings

    Hi
    I have installed Adobe Life Cycle Design in my system. But I dont know what are the settings to be done in the Server. Can any one help me in this regard.
    Regards,
    Rajesh
    Edited by: Matt on Oct 31, 2008 7:43 AM - Added more meaningful title

    Adobe Document Services Configuration Guide
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/30a9630b-4f89-2a10-6fab-e311b3ffd9a6

  • How to simulate DDE in Web Forms?

    Surely there is some elegant way to do DDE in a Web Forms (6i)environment?
    Given that Forms 7i will only support internet deployment and not C/S, there must be some "migration path" to replace the functionality of DDE in the C/S environment.
    My need is a button on a Web Form to dynamically insert data from 8i server into an Excel "template" spreadsheet, then open the spreadsheet on the client. The user can then manipulate data in the spreadsheet. A button in the spreadsheet to synchronize the spreadsheet changes back to the 8i server and exit the spreadsheet and return to the Web Form.
    Forms Server 6i is running on Solaris 2.6
    Any ideas on techniques to do this?
    Can Oracle COM Automation or Oracle Objects for OLE (OO4O) do the dynamic inserting of data into the excel template spreadsheet? (I don't know the difference between these??)
    I know web.show_document can be used with a URL to the spreadsheet on the web server (IIS) and the MIME type will launch excel on the client and copy the file to the client.
    How then can I get the updated cells back into 8i from the spreadsheet?

    Magesh,
    the issue of a SSO protected form showing the logon dialog is a knwon issue for Windows200 and the Oracle9iAS base release. If you applied Forms Patch 1 then this should be solved. Hope that I am right in that you are using Oracle9iAS and not Oracle9iDS. Do you see the Single Sign-On logon screen or the Forms logon dialog directly? Check the forms90.conf file in teh forms90/server directory as this contains the Form sso settings (mod_osso) which by default is commented out and therefore inactive. You need to remove the commenting '#' characters and make sure that each sentence having a '#' in front, after that starts on a new line.
    The Forms deployment documentation within the Oracle9iAS docu provides this information too.
    Frank

  • How to kill Forms Runaway Process using 95% CPU and running for 2 hours.

    We had a situation at E-Business Suite customer (using Oracle VM server) where some of Form processes were not being cleared by form timeout settings automatically.
    Also when user exits the form session from front end, the linux form process (PID) and DB session did not exit properly, so they got hung.
    They were spiking CPU and memory usage and causing e-business suite to perform slowely and ultimately causing VM host to reboot the production VM guest (running on Linux).
    We could see the form processes (PIDs) using almost 100% cpu with "top" command and running for a long time.
    Also we verified those Form Sessions did not exist in the application itself.
    ie. Using from Grid Control -> OAM-> Site Map -> Monitoring (tab) -> "Form Sessions".
    It means that we could safely kill that form process from Linux using "kill -9 <PID>" command.
    But that required a continuous monitoring and manual DBA intervention as customer is 24x7 customer.
    So, I wrote a shell script to do the following;
    •     Cron job runs every half an hour 7 days a week which calls this shell script.
    •     Shell script runs and tries to find "top two" f60webmx processes (form sessions) using over 95% cpu with 2 minutes interval.
    •     If no process is found or CPU% is less than 95%, it exits and does nothing.
    •     If top process is found, it searches for its DB session using apps login (with hidden apps password file - /home/applmgr/.pwd).
    a.     If DB session is NOT found (which means form process is hung), it kills the process from unix and emails results to <[email protected]>
    b.     If DB session is found, it waits for 2 hours so that form process times automatically via form session timeout setting.
    It also emails the SQL to check the DB session for that form process.
    c.     If DB session is found and it does not timeout after 2 hours,
    it kills the process from unix (which in turn kills the DB session). Output is emailed.
    This are the files required for this;
    1. Cron job which calls the shell script looks like this;
    # Kill form runaway process, using over 95% cpu having no DB session or DB session for > 2hrs
    00,30 * * * * /home/applmgr/forms_runaway.sh 2>&1
    2. SQL that this script calls is /home/applmgr/frm_runaway.sql and looks like;
    set head off
    set verify off
    set feedback off
    set pagesize 0
    define form_client_PID = &1
    select count(*) from v$session s , v$process p, FND_FORM_SESSIONS_V f where S.AUDSID=f.audsid and p.addr=s.paddr and s.process='&form_client_PID';
    3. Actual shell script is /home/applmgr/forms_runaway.sh and looks like;
    # Author : Amandeep Singh
    # Description : Kills runaway form processes using more than 95% cpu
    # and Form Session with no DB session or DB session > 2hrs
    # Dated : 11-April-2012
    #!/bin/bash
    . /home/applmgr/.bash_profile
    PWD=`cat ~/.pwd`
    export PWD
    echo "`date`">/tmp/runaway_forms.log
    echo "----------------------------------">>/tmp/runaway_forms.log
    VAR1=`top -b -u applmgr -n 1|grep f60webmx|grep -v sh|grep -v awk|grep -v top|sort -nrk9|head -2|sed 's/^[ \t]*//;s/[ \t]*$//'| awk '{ if ($9 > 95 && $12 = "f60webmx") print $1 " "$9 " "$11 " "$12; }'`
    PID1=`echo $VAR1|awk '{print $1}'`
    CPU1=`echo $VAR1|awk '{print $2}'`
    TIME1=`echo $VAR1|awk '{print $3}'`
    PROG1=`echo $VAR1|awk '{print $4}'`
    PID_1=`echo $VAR1|awk '{print $5}'`
    CPU_1=`echo $VAR1|awk '{print $6}'`
    TIME_1=`echo $VAR1|awk '{print $7}'`
    PROG_1=`echo $VAR1|awk '{print $8}'`
    echo "PID1="$PID1", CPU%="$CPU1", Running Time="$TIME1", Program="$PROG1>>/tmp/runaway_forms.log
    echo "PID_1="$PID_1", CPU%="$CPU_1", Running Time="$TIME_1", Program="$PROG_1>>/tmp/runaway_forms.log
    echo " ">>/tmp/runaway_forms.log
    sleep 120
    echo "`date`">>/tmp/runaway_forms.log
    echo "----------------------------------">>/tmp/runaway_forms.log
    VAR2=`top -b -u applmgr -n 1|grep f60webmx|grep -v sh|grep -v awk|grep -v top|sort -nrk9|head -2|sed 's/^[ \t]*//;s/[ \t]*$//'| awk '{ if ($9 > 95 && $12 = "f60webmx") print $1 " "$9 " "$11 " "$12; }'`
    PID2=`echo $VAR2|awk '{print $1}'`
    CPU2=`echo $VAR2|awk '{print $2}'`
    TIME2=`echo $VAR2|awk '{print $3}'`
    PROG2=`echo $VAR2|awk '{print $4}'`
    PID_2=`echo $VAR2|awk '{print $5}'`
    CPU_2=`echo $VAR2|awk '{print $6}'`
    TIME_2=`echo $VAR2|awk '{print $7}'`
    PROG_2=`echo $VAR2|awk '{print $8}'`
    HRS=`echo $TIME1|cut -d: -f1`
    exprHRS=`expr "$HRS"`
    echo "PID2="$PID2", CPU%="$CPU2", Running Time="$TIME2", Program="$PROG2>>/tmp/runaway_forms.log
    echo "PID_2="$PID_2", CPU%="$CPU_2", Running Time="$TIME_2", Program="$PROG_2>>/tmp/runaway_forms.log
    echo " ">>/tmp/runaway_forms.log
    # If PID1 or PID2 is NULL
    if [ -z ${PID1} ] || [ -z ${PID2} ]
    then
    echo "no top processes found. Either PID is NULL OR CPU% is less than 95%. Exiting...">>/tmp/runaway_forms.log
    elif
    # If PID1 is equal to PID2 or PID1=PID_2 or PID_1=PID2 or PID_1=PID_2
    [ ${PID1} -eq ${PID2} ] || [ ${PID1} -eq ${PID_2} ] || [ ${PID_1} -eq ${PID2} ] || [ ${PID_1} -eq ${PID_2} ];
    then
    DB_SESSION=`$ORACLE_HOME/bin/sqlplus -S apps/$PWD @/home/applmgr/frm_runaway.sql $PID1 << EOF
    EOF`
    echo " ">>/tmp/runaway_forms.log
    echo "DB_SESSION ="$DB_SESSION >>/tmp/runaway_forms.log
    # if no DB session found for PID
    if [ $DB_SESSION -eq 0 ] then
    echo " ">>/tmp/runaway_forms.log
    echo "Killed Following Runaway Forms Process:">>/tmp/runaway_forms.log
    echo "-------------------------------------------------------------------">>/tmp/runaway_forms.log
    echo "PID="$PID1", CPU%="$CPU1", Running Time="$TIME1", Program="$PROG1>>/tmp/runaway_forms.log
    kill -9 $PID1
    #Email the output
    mailx -s "Killed: `hostname -a` Runaway Form Processes" [email protected] </tmp/runaway_forms.log
    cat /tmp/runaway_forms.log
    else
    # If DB session exists for PID
    if [ ${exprHRS} -gt 120 ]; then
    echo $DB_SESSION "of Database sessions exist for this forms process-PID="$PID1". But its running for more than 2 hours. ">>/tmp/runaway_forms.log
    echo "Process running time is "$exprHRS" minutes.">>/tmp/runaway_forms.log
    echo "Killed Following Runaway Forms Process:">>/tmp/runaway_forms.log
    echo "-------------------------------------------------------------------">>/tmp/runaway_forms.log
    echo "PID="$PID1", CPU%="$CPU1", Running Time="$TIME1", Program="$PROG1>>/tmp/runaway_forms.log
    kill -9 $PID1
    #Email the output
    mailx -s "`hostname -a`: Runaway Form Processes" [email protected] </tmp/runaway_forms.log
    cat /tmp/runaway_forms.log
    else
    echo "Process running time is "$exprHRS" minutes.">>/tmp/runaway_forms.log
    echo $DB_SESSION "of Database sessions exist for PID="$PID1" and is less than 2 hours old. Not killing...">>/tmp/runaway_forms.log
    echo "For more details on this PID, run following SQL query;">>/tmp/runaway_forms.log
    echo "-----------------------------------------------------------------------">>/tmp/runaway_forms.log
    echo "set pages 9999 lines 150">>/tmp/runaway_forms.log
    echo "select f.user_form_name, f.user_name, p.spid DB_OS_ID , s.process client_os_id,, s.audsid, f.PROCESS_SPID Forms_SPID,">>/tmp/runaway_forms.log
    echo "to_char(s.logon_time,'DD-Mon-YY hh:mi:ss'), s.seconds_in_wait">>/tmp/runaway_forms.log
    echo "from v\$session s , v\$process p, FND_FORM_SESSIONS_V f">>/tmp/runaway_forms.log
    echo "where S.AUDSID=f.audsid and p.addr=s.paddr and s.process='"$PID1"' order by p.spid;">>/tmp/runaway_forms.log
    mailx -s "`hostname -a`: Runaway Form Processes" [email protected] </tmp/runaway_forms.log
    cat /tmp/runaway_forms.log
    fi
    fi
    else
    #if PID1 and PID2 are not equal or CPU% is less than 95%.
    echo "No unique CPU hogging form processes found. Exiting...">>/tmp/runaway_forms.log
    cat /tmp/runaway_forms.log
    fi
    If you have the same problem with some other unix and DB processes, the script can be easily modified and used.
    But use this with thorough testing first (by commenting out <kill -9 $PID1> lines.
    Good luck.
    Edited by: R12_AppsDBA on 19/04/2012 13:10

    Thanks for sharing the script!
    Hussein

  • Hidden Buttons and Forms Printing CS6

    I'm not exactly sure how to word this but I have buttons and forms that are printing when they are not supposed to.
    This is my indd file:
    If you can see, there are 3 sections, each identical except for the fact that they have different states. If someone wants Hat 2 section, there is a button that turns on the visibility of 2 combo boxes, a text box, 6 check boxes, some normal buttons (just text and art, but they need to be buttons in order to activated with an action), and toggles the view of another button that can add another hat... kinda hard to explain, but think of it like an online form. If you need more info, clicking the button add another row.
    The issue that I'm having is that I do not want the forms that are not being used to be printed. If I don't toggle their visibility, they should be invisible and not print. This form could have anywhere from 1-20 of the forms being used at different times. They are all set to be hidden until triggered and they do exactly what I want them to and it works perfectly, until I go to print.
    This is my exported pdf:
    One row of info, the button to add a second.
    Here is what it looks like when I go to print this without touching anything:
    As you can see in the preview screen, all of the rows that I have made in the indd file are being shown as set to print. This should not be happening, but I figured maybe it was a glitch so I printed it anyway, and this came out:
    ..... Now you can see my issue. Maybe. Hopefully.
    HOWEVER. If I so modify the document, e.g. clck on the "add hat" button and then remove it, the document prints as it should. The problem is that this document will need to be set up so that the entire page is filled with invisible forms that are just waiting to be activated, but not printed.
    Wow that's a lot of info. Hopefully I was clear. Thanks for reading this all if you're still with me.
    Win7 sp1, CS6, InDesign 8.0.1, 12 gigs ram, x64

    I initially jumped to that same conclusion that it was probably a bug in the forms as they are a new feature, but they are not the only objects that are misbehaving. There are only 3 forms in each of the sections and 14 normal buttons, so how can it be an issue with the forms? If that was the probelm, they would be the only objects that were printing incorrectly, unless there is some attribute that would apply the form's settings to all buttons... but I don't know how that's possible.
    @jeffrey_smith
    I tried exporting it as an idml originally, and just tried again since the file has been modified but it didn't make a diffrence in the print. Also, I just created a new very simple test document with just 4 buttons, one that shows the other 3 and it has the exact problem that my document with all of the forms has. So it can't be a corruption in my file, it has to be a broader issue.

  • Trying to create fillable secure form in Acrobat X

    I have Acrobat X Standard and I am trying to create a form that can be filled out then submitted but not printed or saved. When I set security and try to distribute it I get an error saying it can't distribute because of form security settings. I have recently updated to 10.0.3 but it did not fix the issue. Or is it that this is something Acrobat X standard won't do? It may be that I'm doing something wrong too since I am new to this........

    Hi Doug,
    Any success? I have the same issue.
    Ron

  • XML Form Builder does not load

    I am having the following problem, when executing the Form Builder tool under Content Management, it does not load and i get the following error message:
    CONNECTION ERROR: couldn't read response code*
    And sometimes the window gets freezed.
    I have read some previous Threads regarding this issue but the solution did not work to me.
    Someting really strange is happening because if i log to port 80 (http://...) it works, but when I log to port 50000 (https://...) it does not, and that error message pops up.
    I have alredy run the Enviroment check Tool and results were OK in both urls, as follows:
    <i><b>https://*****.net/irj/portal
    Test Environment: XML Forms Builder Environment Check *
    Start Time: 2006-12-05 13:12:48                       *
    End Time: 2006-12-05 13:12:04                         *
    - Test: Java Environment
    - OK
    -      Start Time: 2006-12-05 13:12:48
    -      End Time: 2006-12-05 13:12:48
    -      Java Runtime Version is 1.4.2_13
    - Test: Connection Tests
    - OK
    -      Start Time: 2006-12-05 13:12:48
    -      End Time: 2006-12-05 13:12:04
         - Test: Download XML Forms Builder Jar
         - OK
         -      Start Time: 2006-12-05 13:12:48
         -      End Time: 2006-12-05 13:12:13
         -      Successfully loaded XML Forms Builder Jar from https://***net/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/etc/xmlforms/km.appl.xmlforms.xfbuilder_core.jar, Version 6.4.1
         - Test: Download SAP XML Toolkit Jar
         - OK
         -      Start Time: 2006-12-05 13:12:13
         -      End Time: 2006-12-05 13:12:47
         -      Successfully loaded SAP XML Toolkit Jar from https://****/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/etc/xmlforms/sapxmltoolkit.jar
         - Test: XML Forms Builder Version
         - OK
         -      Start Time: 2006-12-05 13:12:47
         -      End Time: 2006-12-05 13:12:48
         -      XML Forms Builder client version is 6.4.1, server version is 6.4.1
         - Test: Load Global Settings
         - OK
         -      Start Time: 2006-12-05 13:12:48
         -      End Time: 2006-12-05 13:12:48
         -      Successfully loaded XML Forms Builder settings
         - Test: Load Project List
         - OK
         -      Start Time: 2006-12-05 13:12:48
         -      End Time: 2006-12-05 13:12:03
         -      Successfully loaded project list:
    http://*******.net/irj/portal
    Test Environment: XML Forms Builder Environment Check *
    Start Time: 2006-12-05 14:12:33                       *
    End Time: 2006-12-05 14:12:46                         *
    - Test: Java Environment
    - OK
    -      Start Time: 2006-12-05 14:12:33
    -      End Time: 2006-12-05 14:12:33
    -      Java Runtime Version is 1.4.2_13
    - Test: Connection Tests
    - OK
    -      Start Time: 2006-12-05 14:12:33
    -      End Time: 2006-12-05 14:12:46
         - Test: Download XML Forms Builder Jar
         - OK
         -      Start Time: 2006-12-05 14:12:33
         -      End Time: 2006-12-05 14:12:23
         -      Successfully loaded XML Forms Builder Jar from http://****.net/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/etc/xmlforms/km.appl.xmlforms.xfbuilder_core.jar, Version 6.4.1
         - Test: Download SAP XML Toolkit Jar
         - OK
         -      Start Time: 2006-12-05 14:12:23
         -      End Time: 2006-12-05 14:12:27
         -      Successfully loaded SAP XML Toolkit Jar from http://*******.net/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/etc/xmlforms/sapxmltoolkit.jar
         - Test: XML Forms Builder Version
         - OK
         -      Start Time: 2006-12-05 14:12:27
         -      End Time: 2006-12-05 14:12:28
         -      XML Forms Builder client version is 6.4.1, server version is 6.4.1
         - Test: Load Global Settings
         - OK
         -      Start Time: 2006-12-05 14:12:28
         -      End Time: 2006-12-05 14:12:29
         -      Successfully loaded XML Forms Builder settings
         - Test: Load Project List
         - OK
         -      Start Time: 2006-12-05 14:12:29
         -      End Time: 2006-12-05 14:12:46
         -      Successfully loaded project list:
    </b></i>
    Don't know what can be, so if anyone has any idea it would be very helpful.
    Cheers,
    Ivan Milkovic

    Hello,
    Immediately after opening the XML forms editor from the Content Manager page, you will get a link Start Environment Check Tool.... Click on that and proceed for a check. It will take some 5-10 mins based on your connection speed.If every thing is successful, clear the browser cache and restart the browser and open forms editor again. It will open the data schema and properties filed and project browser and all.
    I was having this problem just now and i resolved it with the above steps.
    My JRE version is 1.6 and portal is EP 7 SPS 21 patched.
    Regards
    BP

  • How to retain focus in Web forms 6i item when displaying pdf image

    How to retain focus in Web forms 6i item when displaying pdf image in a multi-record block?
    Hello.
    I have a Web Forms 6i program (version Forms 6.0.8.19.2) running in a 3-tier application. The web form program has a multi-record block containing invoices. When navigating to a record, the form should display the PDF invoice image which is stored in an Oracle 8.1.7 database as a BLOB in another window. When user press down-arrow, the next PDF invoice image should be displayed.
    I am able to accomplish the functionality above by using web.show_document('URL', target') in the when-new-record-instance. The URL being called is a PL/SQL Web Toolkit stored procedure using wpg_docload.download_file built-in.
    The problem is that the focus is lost on the Webform and the focus is shifted to the PDF image window when you navigate to the next record using down-arrow. I want to retain the focus in the form as this is a data-entry form, the operator will use down-arrow to go to the next-record rather than the mouse. I also only want to do this for this Invoice Entry form and NOT to all forms.
    Please advise how to resolve this problem. Thank you.
    Regards,
    Armando

    Magesh,
    the issue of a SSO protected form showing the logon dialog is a knwon issue for Windows200 and the Oracle9iAS base release. If you applied Forms Patch 1 then this should be solved. Hope that I am right in that you are using Oracle9iAS and not Oracle9iDS. Do you see the Single Sign-On logon screen or the Forms logon dialog directly? Check the forms90.conf file in teh forms90/server directory as this contains the Form sso settings (mod_osso) which by default is commented out and therefore inactive. You need to remove the commenting '#' characters and make sure that each sentence having a '#' in front, after that starts on a new line.
    The Forms deployment documentation within the Oracle9iAS docu provides this information too.
    Frank

  • I only see Web Forms & Email in Site Manager

    Why do I only see Web Forms & Email settings in the Site Manager for a WebMarketing Site? Where did everything else go? I'm trying to upload a pdf file and that function is gone in BC.

    Hi,
    If you have published the site via Muse, Please try this
    In Admin Panel, on your Right Hand side top, Mouse over on your name and Go to "My Details". You will see a check box "Enable online content editing". Check this box, Click save and logout. Login again, and goto site manager, you will see some more options like File manager
    Please let me know if you have any other query.

  • Adobe form not showing negative sign before amount

    Hi Experts,
    We are having a strange problem. Our developers displaying
    negative
    amount in my adobe output. Its working fine in our development
    system.
    But for the similar set of data in testing system, negative sign before
    the amount is not coming. The same adobe form, layout and print
    program
    is there in both development and test environment systems. Please
    help.
    Thanks,
    Sunny

    Hi Sunny ,
    Check with the development team .. The field attribute while display types which you can restrict in the adobe form layout settings.
    I am pretty sure this  will help you and revert back if you have any questions in this regard.
    Thanks ,
    Gowrisankar

  • Xml form HTML Editor control change.

    Hi,
    Is it possible to change External weblink control property of HTML Editor used in xml form builder.?
    As of now this control gives 2 options to provide external weblink (1.Open in active window ,2.open in new window).I want to add open in same window as top.
    Can anyone give some useful information ?
    Thanks and Regards,
    Jack.
    Note: Points will be awarded for useful answers.

    Hi jack men,
    If you are still interested in a solution to your problem...
    We just hit upon the same problem. I found out that XMLForms reference htmledit4.js in their <XMLForm-Name>Edit.xsl, so you have to adapt that one.
    I saved htmledit4.js and renamed it to htmledit5.js so that I can change the HTMLEditor settings only for my XMLForm (and not for e.g. SAPNewsForm).
    I changed the entry in my XML-Form Editor settings XSL to reference the new JavaScript file:
    [code]<xsl:value-of select="$xmlformsroot"/>/htmledit/htmledit5.js</xsl:if>[/code]
    Then I copied the method body of htmledit3.js (the standard htmleditor JavaScript file) to htmledit5.js and adapted it to just show the two tragets of <i>self</i> and <i>top</i>.
    The method to display link properties is: <b>htmlb_hed_makeWebLinkDialog</b>
    Find this method in both files. Then find in htmledit3.js the beginning of the target window selection-box:
    [code]sSizerHtml += "<SELECT id=htmlb_hed_link_launch_mode class=\"urDdlWhlSml\">";[/code]
    the following lines of code determine the selectable values.
    You will notice that htmledit4.js misses a few entries. Just copy all or the ones you need.
    For your convenience I show my code here:
    [code]  sSizerHtml += "<td>";
      sSizerHtml += "<span style=\"font-size:1em;\">";
      sSizerHtml += "<SELECT id=htmlb_hed_link_launch_mode class=\"urDdlWhlSml\">";
    //-- target=_blank
      sSizerHtml += "<OPTION value=\"_blank\" ";
      if(modOpenMode==1) sSizerHtml += "selected";
      sSizerHtml += ">";
      sSizerHtml += txtMap["TXT_HTMLB_HED_BLANK"]; 
      sSizerHtml += "</OPTION>";
    //-- target=_parent --
      sSizerHtml += "<OPTION value=\"_parent\" ";
      if(modOpenMode==2) sSizerHtml += "selected";
      sSizerHtml += ">";
      sSizerHtml += txtMap["TXT_HTMLB_HED_PARENT"]; 
      sSizerHtml += "</OPTION>";
    //-- target=_search--
      sSizerHtml += "<OPTION value=\"_search\" ";
      if(modOpenMode==3) sSizerHtml += "selected";
      sSizerHtml += ">";
      sSizerHtml += txtMap["TXT_HTMLB_HED_SEARCH"]; 
      sSizerHtml += "</OPTION>"; 
    //--target=_self
      sSizerHtml += "<OPTION value=\"_self\" ";
      if(modOpenMode==4) sSizerHtml += "selected";
      sSizerHtml += ">";
      sSizerHtml += txtMap["TXT_HTMLB_HED_SELF"]; 
      sSizerHtml += "</OPTION>";
    //-- target=_top
      sSizerHtml += "<OPTION value=\"_top\" ";
      if(modOpenMode==5) sSizerHtml += "selected";
      sSizerHtml += ">";
      sSizerHtml += txtMap["TXT_HTMLB_HED_TOP"]; 
      sSizerHtml += "</OPTION></SELECT></span>";
      sSizerHtml += "</td>";
      sSizerHtml += "</tr>";[/code]
    I didn't check yet if a new generation of the XMLForms Project in the XMLFormsBuilder overwrites the changes in the XMLFormsEdit.xsl, however I guess so. A better way would be to adjust the JavaScript reference in some other configuration file that I haven't found yet, until then just adapt the XSL everytime...
    If Carsten Buechert contacted you regarding the exchange of the whole control, I would be interested myself as well.
    Cheers
    Kilian

  • Problem with Nested Repeatable Forms

    Hi All,
    I am having some problems when creating 3 repeatable forms inside another reapeatable form. My XML structure is similar to this:
    - <tasks>
           <id>3139--13</id>
           <startDate>2012-10-01T04:00:00Z</startDate>
           <name>Tax Preparation Fees</name>
    -      <weekTable>
                <weekNumber>49</weekNumber>
    -           <data>
                     <service>Accountant</service>
                     <servicePerformer>Alex</servicePerformer>
                     <hours>PT5H</hours>
                     <rate>45.000000</rate>
                </data>
    -           <data>
                     <service>Fund Officer</service>
                     <servicePerformer>Malinda</servicePerformer>
                     <hours>PT3H</hours>
                     <rate>0.000000</rate>
                     </data>
           </weekTable>
    -      <weekTable>
                <weekNumber>40</weekNumber>
    -           <data>
                     <service>Fund Officer</service>
                     <servicePerformer>R. Major</servicePerformer>
                     <hours>PT4H</hours>
                     <rate>0.000000</rate>
                </data>
    -           <data>
                     <service>Account Support</service>
                     <servicePerformer>Leslie</servicePerformer>
                     <hours>PT10H</hours>
                     <rate>0.000000</rate>
                </data>
           </weekTable>
       ** 2 more reapeatable structures similar to <weekTable>
      </tasks>
    I can make weekTable repeate based on the number of data items but I couldn't make the tasks repeate.
    Is it possible to be done ?
    Thanks a lot!
    Felipe.

    Hi Kyle,
    I didn't explain it righ, sorry. The task also repeats. So, there is tasks, which repeats, inside it there is weektable, which repeats, and inside it there is data which also repeats.
    Anyway, I tried to create a repeatable form inside another repeatable form with the bindings you mentioned but LCD doesn't let me.
    I can check "Repeat Subform for each data item" in the subData form binding settings but not int the subWeek.
    Felipe

Maybe you are looking for

  • How can i organise my tunes in order of ***most recently added to playlist***. Playlist, NOT library!

    Hi everyone, this is my first ever post on a dicusion board so lets see... i would like to know how to, if it is possible... to organise my songs of a playlist to show my most recently added songs (to my playlist, not library) at the top and so on. a

  • Is it possible to have swf files rotate?

    Hi all. I hope you can help me. I found a brilliant file showing how to bring in bitmaps to flash from an xtml. and have them rotate in sections on and off the screen. I'm sure there are other ways to do this but this is the one i have managed to fin

  • Where can I find MMC for Oracle MTS?

    According to 'Oracle Services for Microsoft Transaction Server Developer's Guide', the mmc for Oracle MTS can be invoked by clicking (Start > Programs > Oracle - HOME_NAME > Application Development > Oracle Manager for Microsoft Transaction Server) H

  • Lightroom 4 book problem

    Hi, I just paid for Lightroom 4 after running out my trial and discovered a problem in the book module. I was editing a photo in CS5 and the book went squirrelly. Duplicated parts of pages and inserted them overtop of others which deleted the origina

  • Strange Behaviour after 6.0.2 install

    Hello all, This is my first posting to Apple Discussions, so please be kind... I recently installed iTunes 6.0.2 via Software Update and noticed strange behaviour while trying to edit a smart playlist. I have a smart playlist set up to select songs b