Substitution tags

All,
The list of "unstructured user interface template substitution tags" in the 3.0.8 online help is not complete, and it contains errors. Examples:
#PAGE.SUBPAGELINKS# is not documented.
#BANNER.NAVIGATION# should read #BANNER.NAVIGATOR#
#BANNER.CUSTPAGE# should read #BANNER.CUSTOMIZEPAGE#
Is updated documentation available? If not, please provide the information that you have.
Thanks,
Erik Hagen

See http://hvirring.dk/portal/substitutiontags.asp for an updated "Unstructured user interface template substitution tags" help file (/help/wvttmptg.htm)
/Jesper

Similar Messages

  • User interface template substitution tags problem

    Portal 9.0.2.0.3 (Upgraded from 9.0.2.2.14A)
    Hi all,
    I am designing an unstructured user interface for use with my portal reports.
    I have located a help document called 'Unstructured user interface template substitution tags' from the standard portal help pages.
    My problem is that only a few of these tags are actually being substituted for their correct values when I run my reports. For example the help document says the #PAGE.CUSTOMIZEPAGE# tag should be substituted with HTML text hyperlink to the customize page dialog. On my report this tag and the majority of others are substituted with a blank line.
    Any ideas?

    Same problem exists with the #TITLE# tag. However, SOMETIMES (I don't know how or why) the tag shows up. If I find out what the secret is, I'll let you know.
    Anyone else have any input?
    Pat Murray

  • PL/SQL for Items / Substitution Tags

    Is there any documentation listing how to retrieve the label / value / style for items (such as portal smart links) and substitution tags (used in page and content templates) using PL/SQL?
    For me, using items is good just to get something up and running, but I find I just don't have enough control over the final look and feel (all those TABLE/TR/TDs just kill me!) to produce a quality result. I'm thinking of something like the instant portal, which looks great, but AFAIK is entirely coded in custom PL/SQL.
    I've seen a few posts relating to "how do I get the XXX field", such as this one: Re: User first name, last name Information in welcome message so I guess there are some other users out there with the same problem.
    If this doco does not exist anywhere, maybe we could start a thread here (or on a wiki somewhere???) and people could add individual cases as they use them, and that way build up a quick reference for anyone to use.
    Cheers,
    Barney

    <No idea what happened to the formatting there - same post again>
    Nope - saw that.
    As I understand it, these are only available within either page templates or content layout templates. For instance, I can't even see a way to produce the simplest of welcome strings:
    Welcome #USER.FULLNAME# (#USER#)
    (and I'd really like it if #USER# returned the user id in the case it is stored in the OID, rather than converting it to upper case!)
    I can try to construct this out of items, but then I end up in a table/tr/td formatting hell.
    In this specific case, I can achieve this by constructing a content layout which displays this HTML but not the actual item content, and using it in a region with a single dummy item (the USER fields are not documented in the content layout section, but do appear to work), but then try to add the logout URL to the mix and I'm stuck again.
    Two solutions spring to mind to make this work:
    1. Improve the HTML Portlet to understand / translate these substitution tags
    2. Document how/where to get the info from. It's all on the database somewhere, and hence accessible via PL/SQL items.
    I don't hold out much hope of seeing (1) in the near future, so was going for (2).
    Cheers,
    Barney

  • HTML content layout substitution tags

    Hi,
    We have a multi-language Portal 10.1.4 and use HTML content layout substitution tags in a HTML Template. The problem is that we would like to use the ITEM.PUBLISHDATE.LABEL and the ITEM.UPDATESDATE.LABEL tags but the text rendered isn't exactly what we would like to get (f.e. in English it's 'Publish Date' and in French it's 'Date de mise à jour').
    I looked in the documentation and found that the text rendered correspond to the display name of the attribut (not 100% sure of this). But, those attributs are in the Shared Objects and we can't modify them.
    1. We would like to modify the display name of those attributs (both in French and in English) or find any other way to make it.
    2. We also want to apply an other format to the date retreived with the ITEM.PUBLISHDATE.VALUE and the ITEM.UPDATEDDATE.VALUE tags.
    Can someone help us with those issues ?
    David

    Yes, we added languages in the Translation tab of the shared object pagegroup properties.

  • Portal Substitution Tags

    I am having some troubles getting the #USER.FULLNAME# tag to work on my template. Doesn't mater what I tried the tag won't display any value. I made sure the user last name and first name were populated from looking at the WWSEC_PERSON$ table (both portal30 and portal30_sso schema). Is this a bug?
    I am also interested to find out if there is a way I can create user-defined substitution tags. I sure can use the user-defined substitution tags on many instances.
    Thanks

    Hi,
    This was a bug(replacement of fullname) which has been fixed in the 30984 patch release.
    You cannot declare your own tags but you could use the already existing ones provided.See the context help for a list of tags ,portal supports.
    Thanks,
    Anu

  • Substitution tags value

    Hi,
    can I get the substitution tags value used by template
    and assign this to a variable defined in a Unstructured template?
    My problem is to manage a conditioned exit action
    from a reports chain called by several Dynamic Pages
    thanks
    Giovanna

    Hi,
    You can use substitution tags only in unstructured templates. You cannot use them in dynamic pages.
    Thanks,
    Sharmila

  • UI Template Substitution tags in a procedure

    Version: 10.1.4
    Is it possible to use Substitution tags in a procedure and call the procedure with in the UI template?
    So the UI template will be:
    <ORACLE>
    BEGIN
    Schema.procedureName;
    END;
    </ORACLE>
    The procedure will be:
    PROCEDURE procedureName as
    BEGIN
    htp.p('#USER.FULLNAME#');
    END;
    This way all the logic can be built in the procedure (taking advantage of the Substitution tags).
    When I tried the above the Substitution tag is not rendered as it supposed to (display the User Full Name), but just displays it as raw HTML.
    Is it possible/viable to use Substitution tags outside UI Templates?
    Thanks.

    The specific example you are asking about could also be implemented without substitution tags. The following is from a pl/sql item I added in my footer. Hope it's of use to you:
    declare
    l_person_rec wwsec_person%rowtype;
    begin
    htp.print('<div class=PortletText1>');
    l_person_rec := wwsec_api.person_info( wwctx_api.get_user_id() );
    if (l_person_rec.first_name = 'PUBLIC') then
       htp.print(l_person_rec.first_name);
    else
       htp.print(l_person_rec.first_name || ' ' || l_person_rec.last_name);
    end if;
    begin
       htp.print('(' || wwsec_api.group_info(wwsec_api.get_defaultgroup()).name ||
    exception when others then
       null;
    end;
    htp.print('</div>');
    end;

  • Unstructured UI Template Substitution tags - PROBLEM

    Hello
    I'm trying to make a UI Template, but are having problems with the substitution tags.
    I want to make a home-link, but with my own text such as "Take me home"
    I've tried this approach:
    Take me home
    But as a result i get the standard icon for home, with the text "Home" under it
    Can someone give me a hint how to solve this?
    Regards
    Per-Jarle

    Hi,
    Looks like you are doing something wrong. Try something like this.
    <HTML dir=#DIRECTION#>
    <HEAD>
    <TITLE>#TITLE#</TITLE>
    </HEAD>
    <BODY leftMargin="0" rightMargin="0" topMargin="0" marginheight="0" marginwidth="0" class="PageBG">
    oracle
    <TABLE >
    <TR>
    <TD><IMG SRC="#IMAGE_PREFIX#pobtrans.gif" BORDER="0" WIDTH="0" HEIGHT="4"></TD>
    </TR>
    </TABLE>
    #PAGE.SUBPAGELINKS#
    #BODY#
    </BODY>
    </HTML>
    A home link will appear which will take you to oracle.
    Thanks,
    Sharmila

  • Unstructured user interface template substitution tags

    Does anyone know where I can find a full list of substitution tags. An example of the tags I am talking about would be #BODY#

    Click on the help link in Portal and search on:
    template substitution tags
    The link should provide you with a table of all supported #tags#.
    Thanks,
    Candace

  • #PAGE.CUSTOMIZEPAGE# substitution tag problem on template based pages

    I've created an Unstructured UI template that includes the #PAGE.CUSTOMIZEPAGE# substitution tag.
    It works fine on a normal page, but it doesn't render the 'Customize' link if the page is based on a template. I know that I am authorized to customize the page, because a Portal Smart Link on the same page allows me to do just that. Does anybody know whether there are any issues with this substitution tag on template based pages? (I've used the #PAGE.EDITPAGE# tag in the same Unstructured UI Template with no problems on either normal, or template based pages.)
    Oracle Portal Version 10.1.2.0.2.
    I started this thread on the Portal - General forum, but now realise it's more relevant here.
    Original thread: Customize Page link not rendered on template-based sub page.
    Thanks
    Matthew

    Just a guess, but it seems that the site uses server side includes (the shtml extension and there is a ssi include in your template). You will probably need a testserver running (like XAMPP) on your local system to preview this in a browser.
    Grtz

  • Substitution tags in portal ver.2

    Could anyone tell me if are the substituion tags (like #BANNER.GREETING.LABEL#) which were used in oracle portal version 1 (3.0.9) supported in oracle portal version 2 (9.0.2)?
    Thanx a lot.

    You can use substitution tags in Unstructured UI templates and then use the templates in pages and other components. Go to templates from
    Navigator->Providers->Shared Components->Templates

  • Using Substitution tag

    Hi,
    I would like to pass the value of Description in the page properties to the anchor tag in the HTML template. But I am not able to pass the value using #description#.. It is only showing #description#.. but it is working fine with Display_name and name fields..Can anyone help?
    Thanks

    Did you try to use #ITEM.DESCRIPTION.VALUE# ?

  • Subsitution Tag instead of Smart Text (2 issues)

    In Oracle Portal:
    1. I want to use the Current Date feature (available as a Smart text) but since I am using an HTML template, would like to use a Substitution tag for it. But couldn't find #CURRENTDATE# !
    I have used Oracle PL/SQL code to overcome this issue, but since our site is translated to multiple languages, I am hoping the Current Date does a better job of Internationalizing the date translations.
    2. When I use the Substituion Tag for Edit within an HTML template and make a Page use this, the Edit tag appears on the page irrespective of whether the user has permissions to edit the page or not. Although clicking on Edit does not allow unauthorized users to edit any region of the page, it is still annoying that it should exist.
    If I were to initially use a Portal Template for the page and make it use the HTML template as a Skin, the Edit tag disappears correctly.
    Is this a bug in Oracle Portal.
    We are using 10.1.2 with all patches that upgrage it to 10.1.4.
    Any help in this regard would be greatly appreciated.

    I think I might have the answer to #2 for you. According to Oracle Metalink "Note:368720.1 - When ILS is Enabled the Edit Smartlink is visible to Users that are not entitled to see it", that is the expected behavior whether you are using the "edit" substitution tags or the "edit" smartlink on a page when the page has item-level access enabled. I can understand why that is the behavior since an end user may have access to manage/edit just one item on a page or just one tabbed region on a page but not the entire page and they'll need a way to put the page into edit mode in order to edit their item(s). If a user has nothing to edit on a page, then they won't be able to do anything in edit mode anyway.

  • [SOLVED] Forms Web - Works on IE and Chrome, firefox says it misses plugin

    Greetings,
    Both in IE and Chrome it works perfectly i open the Gin client through the same URL, ex: http://10.0.0.28:7778/forms/frmservlet?config=gin4
    However if i try the same URL in firefox it shows a big grey square in the page saying "Click here to download Plugin"
    Clicking instal it opens a small popup saying no suitable plugins were found, inside it says and Unknown Plugin (text/html) and a button to installs manually appears.
    Clicking on that button i am taken to this page: http://java.sun.com/products/archive/j2se/1.4.2_06/index.html
    I have lost track on the number of times i have installes uninstalled and reinstalled a lot of java versions not just the 1.4.2_06 version.
    I have been trying to fix this problem for a couple of months now with no luck.
    Here is the Source code from the html page, its the same for every browser since its the same url:
    <HTML>
    <!-- FILE: webutiljpi.htm (Oracle Forms) -->
    <!-- -->
    <!-- This is the default base HTML file for running a form on the -->
    <!-- web using the JDK Java Plugin. This is used for example when -->
    <!-- running with Netscape on Unix. -->
    <!-- and a certificate regsitration applet for the WebUtil utility -->
    <!-- -->
    <!-- IMPORTANT NOTES: -->
    <!-- Default values for all the variables which appear below -->
    <!-- (enclosed in percent characters) are defined in the servlet -->
    <!-- configuration file (formsweb.cfg). It is preferable to make -->
    <!-- changes in that file where possible, rather than this one. -->
    <!-- -->
    <!-- This file uses several extra tags that are not present in the -->
    <!-- default template files. You should ensure that these are -->
    <!-- present in the configuration that uses this template -->
    <!-- The extra substitution Tags are: -->
    <!-- frmwebutil.jar, jacob.jar = jar file containing the WebUtil code -->
    <!-- (by default this should be frmwebutil.jar) -->
    <!-- off = Defines the current logging mode. -->
    <!-- Valid values: off|on|console|server|all -->
    <!-- (on == console) -->
    <!-- normal = Specifies the level of error logging.-->
    <!-- Valid values: normal|detailed -->
    <!-- Alert = Should errors be displayed in an alert -->
    <!-- as well as the programmer defined -->
    <!-- locations -->
    <!-- Valid values: console|server|alert|all -->
    <!-- 5 = Counts in second to -->
    <!-- indicate how often the monitor thread -->
    <!-- checks to see if the Forms session is still-->
    <!-- alive. Used with the WebUtil_Session -->
    <!-- package. -->
    <!-- true = Should intranet without domain suffix-->
    <!-- be trusted. -->
    <!-- Valid values: true|yes|false|no -->
    <!-- 16384 = Size in bytes of file transfer -->
    <!-- segments. Default and maximum allowed is -->
    <!-- 16384, i.e. 16K. -->
    <HEAD><TITLE>GIN - Gestao Integrada do Negocio - WebUtil</TITLE></HEAD>
    <BODY >
    <COMMENT id="forms_plugin_info"
    plug_ver="clsid:CAFEEFAC-0014-0002-0006-ABCDEFFEDCBA"
    appheight="800"
    appwidth="900"
    appcodebase="http://java.sun.com/products/plugin/autodl/jinstall-1_4_2-windows-i586.cab#Version=1,4,2,06">
    </COMMENT>
    <!-- Forms applet definition (start) -->
    <NOSCRIPT>
    <OBJECT classid="clsid:CAFEEFAC-0014-0002-0006-ABCDEFFEDCBA"
    codebase="http://java.sun.com/products/plugin/autodl/jinstall-1_4_2-windows-i586.cab#Version=1,4,2,06"
    WIDTH="900"
    HEIGHT="800"
    HSPACE="0"
    VSPACE="0">
    </NOSCRIPT>
    <SCRIPT LANGUAGE="JavaScript" SRC="java/forms_ie.js"></SCRIPT>
    <PARAM NAME="TYPE" VALUE="application/x-java-applet;jpi-version=1.4.2_06">
    <PARAM NAME="CODEBASE" VALUE="/forms/java">
    <PARAM NAME="CODE" VALUE="oracle.forms.engine.Main" >
    <PARAM NAME="ARCHIVE" VALUE="frmall.jar, ginico4.jar, laf.jar,formsmagnifier.jar,formsmagnifier10123.jar,handleimage3.jar,fjtable.jar,frmwebutil.jar, jacob.jar" >
    <PARAM NAME="serverURL" VALUE="/forms/lservlet?ifcfs=/forms/frmservlet?config=gin4&acceptLanguage=en-US,en;q=0.8">
    <PARAM NAME="networkRetries" VALUE="30">
    <PARAM NAME="serverArgs"
    VALUE="escapeParams=true module=GINFS001.fmx userid= sso_userid=%20 sso_formsid=%25OID_FORMSID%25 sso_subDN= sso_usrDN= debug=no host= port= buffer_records=no debug_messages=no array=no obr=no query_only=no quiet=yes render=no record= tracegroup= log= term=/orasoft/OraHome_1/forms/admin/resource/US/fmrpcweb.res UTI= PASS= IDIOMA= ADMGIN=admgin PM$CSS_FILENAME=/gin/gin4/exe/forms.css">
    <PARAM NAME="separateFrame" VALUE="true">
    <PARAM NAME="splashScreen" VALUE="no">
    <PARAM NAME="background" VALUE="FUNDO.jpg">
    <PARAM NAME="lookAndFeel" VALUE="oracle">
    <PARAM NAME="colorScheme" VALUE="blue">
    <PARAM NAME="serverApp" VALUE="default">
    <PARAM NAME="logo" VALUE="REMATE_MENU.gif">
    <PARAM NAME="imageBase" VALUE="codebase">
    <PARAM NAME="formsMessageListener" VALUE="">
    <PARAM NAME="recordFileName" VALUE="">
    <PARAM NAME="EndUserMonitoringEnabled" VALUE="">
    <PARAM NAME="EndUserMonitoringURL" VALUE="">
    <PARAM NAME="heartBeat" VALUE="">
    <PARAM NAME="WebUtilLogging" VALUE="off">
    <PARAM NAME="WebUtilLoggingDetail" VALUE="normal">
    <PARAM NAME="WebUtilErrorMode" VALUE="Alert">
    <PARAM NAME="WebUtilDispatchMonitorInterval" VALUE="5">
    <PARAM NAME="WebUtilTrustInternal" VALUE="true">
    <PARAM NAME="WebUtilMaxTransferSize" VALUE="16384">
    <COMMENT>
    <EMBED SRC="" PLUGINSPAGE="http://java.sun.com/products/archive/j2se/1.4.2_06/index.html"
    TYPE="application/x-java-applet;jpi-version=1.4.2_06"
    java_codebase="/forms/java"
    java_code="oracle.forms.engine.Main"
    java_archive="frmall.jar, ginico4.jar, laf.jar,formsmagnifier.jar,formsmagnifier10123.jar,handleimage3.jar,fjtable.jar,frmwebutil.jar, jacob.jar"
    WIDTH="900"
    HEIGHT="800"
    HSPACE="0"
    VSPACE="0"
    serverURL="/forms/lservlet?ifcfs=/forms/frmservlet?config=gin4&acceptLanguage=en-US,en;q=0.8"
    networkRetries="30"
    serverArgs="escapeParams=true module=GINFS001.fmx userid= sso_userid=%20 sso_formsid=%25OID_FORMSID%25 sso_subDN= sso_usrDN= debug=no host= port= buffer_records=no debug_messages=no array=no obr=no query_only=no quiet=yes render=no record= tracegroup= log= term=/orasoft/OraHome_1/forms/admin/resource/US/fmrpcweb.res UTI= PASS= IDIOMA= ADMGIN=admgin PM$CSS_FILENAME=/gin/gin4/exe/forms.css"
    separateFrame="true"
    splashScreen="no"
    background="FUNDO.jpg"
    lookAndFeel="oracle"
    colorScheme="blue"
    serverApp="default"
    logo="REMATE_MENU.gif"
    imageBase="codebase"
    recordFileName=""
    EndUserMonitoringEnabled=""
    EndUserMonitoringURL=""
    heartBeat=""
    WebUtilLogging="off"
    WebUtilLoggingDetail="normal"
    WebUtilErrormode="Alert"
    WebUtilDispatchMonitorInterval="5"
    WebUtilTrustInternal="true"
    WebUtilMaxTransferSize="16384"
    >
    <NOEMBED>
    </COMMENT>
    </NOEMBED></EMBED>
    </OBJECT>
    <!-- Forms applet definition (end) -->
    </BODY>
    </HTML>
    Any help is appreciated.
    Best regards,
    Igor Carrasco

    In the Java plugins i see :
    Java(TM) Platform SE 6 U20
    File: npjp2.dll
    Version: 6.0.200.2
    Next Generation Java Plug-in 1.6.0_20 for Mozilla browsers
    MIME Type      Description      Suffixes
    application/x-java-applet      Java Applet      
    application/x-java-bean      JavaBeans      
    application/x-java-vm           
    application/x-java-applet;version=1.1.1           
    application/x-java-bean;version=1.1.1           
    application/x-java-applet;version=1.1           
    application/x-java-bean;version=1.1           
    application/x-java-applet;version=1.2           
    application/x-java-bean;version=1.2           
    application/x-java-applet;version=1.1.3           
    application/x-java-bean;version=1.1.3           
    application/x-java-applet;version=1.1.2           
    application/x-java-bean;version=1.1.2           
    application/x-java-applet;version=1.3           
    application/x-java-bean;version=1.3           
    application/x-java-applet;version=1.2.2           
    application/x-java-bean;version=1.2.2           
    application/x-java-applet;version=1.2.1           
    application/x-java-bean;version=1.2.1           
    application/x-java-applet;version=1.3.1           
    application/x-java-bean;version=1.3.1           
    application/x-java-applet;version=1.4           
    application/x-java-bean;version=1.4           
    application/x-java-applet;version=1.4.1           
    application/x-java-bean;version=1.4.1           
    application/x-java-applet;version=1.4.2           
    application/x-java-bean;version=1.4.2           
    application/x-java-applet;version=1.5           
    application/x-java-bean;version=1.5           
    application/x-java-applet;version=1.6           
    application/x-java-bean;version=1.6           
    application/x-java-applet;jpi-version=1.6.0_20           
    application/x-java-bean;jpi-version=1.6.0_20           
    and this also:
    Java Deployment Toolkit 6.0.200.2
    File: npdeployJava1.dll
    Version: 6.0.200.2
    NPRuntime Script Plug-in Library for Java(TM) Deploy
    MIME Type      Description      Suffixes
    application/java-deployment-toolkit           
    Plus a lot more plugins not from Java.
    Best regards

  • Icons in JAR are downloaded but doesn't show up in application

    I've tried following all the advice in the Deploying icons on the web guide, but there's just something not quite right.
    What goes right:
    From java console: "Downloading http://oiatst01.tdk.dk:7778/forms90images/kassimages.jar to JAR cache"
    And I can see the file in the Oracle Jar Cache. I can also type in the url and get the kassimages.jar file. It's there and it's accessible.
    That also means the virtual folder /forms90images/ works properly:
    Alias /forms90images/ "E:\KASSForms\gifer/"
    Registry.dat / default.dat has:
    default.icons.iconpath=/forms90images/
    default.icons.iconextension=gif
    In the HTML substitutions are made correctly:
    <PARAM NAME="imageBase" VALUE="codeBase">
    and
    <EMBED ....imageBase="codeBase" ...>
    formsweb.cfg has:
    archive_jini=f90all_jinit.jar,/forms90images/kassimages.jar
    archive_ie=f90all.cab,/forms90images/kassimages.jar
    archive=f90all.jar,/forms90images/kassimages.jar
    # 3) Values for the Forms applet parameters:
    serverURL=/forms90/l90servlet
    codebase=/forms90/java
    imageBase=codeBase
    Errors are:
    ORACLE_HOME/Apache/Apache/logs/error_log: "File does not exist: e:/kassforms/gifer/last.gif"
    It's as if it's not using the JAR file, and the tricky thing is that if I place the actual "last.gif" file inside the folder e:/kassforms... it shows up! Now, it isn't even supposed to do that as imagebase=codebase. It's not supposed to even LOOK at the files.
    # java console start #
    Loading http://oiatst01.tdk.dk:7778/forms90/webutil/webutil.jar from JAR cache
    Loading http://oiatst01.tdk.dk:7778/forms90/webutil/jacob.jar from JAR cache
    Loading http://oiatst01.tdk.dk:7778/forms90/java/f90all_jinit.jar from JAR cache
    RegisterWebUtil - Loading Webutil Version 1.0.2 Beta
    Loading http://oiatst01.tdk.dk:7778/forms90images/kassimages.jar from JAR cache
    Loading http://oiatst01.tdk.dk:7778/forms90/java/SmileyBridge.jar from JAR cache
    connectMode=HTTP, native.
    MessageManager: key VERSION bundle oracle.forms.engine.RunformBundle exception java.lang.IllegalArgumentException: unknown format type at
    [[[Note here: I don't know what the MessageManager is talking about here as the error message isn't complete. I _may_ be related to wrong parameters in formsweb.cfg or some such]]]
    # java console end #
    Sincerely,
    Jesper Vad Kristensen
    Aarhus, Denmark

    If I change the line:
    codebase=/forms90/java
    to:
    codebase=/forms90images/
    Then my iAS stops working, and I guess it's because the other jars can't be found now (jinit for example). Maybe it uses the /forms90/java path for both. It kinda seems that I need a separate instruction that tells the imageBase parameter where to look in the file system. I don't know how to do that?!
    Maybe it's simply impossible to locate the image jar file anywhere else but in the standard directory where the other jars are located?
    Sincerely,
    Jesper Vad Kristensen
    Aarhus, Denmark
    PS: the html page used is:
    <HTML>
    <!-- FILE: webutiljini.htm (Oracle Forms) -->
    <!-- -->
    <!-- This is the a HTML template file for running a form on the -->
    <!-- web using JInitiator-style tags to include the Forms applet. -->
    <!-- and a certificate regsitration applet for the WebUtil utility -->
    <!-- -->
    <!-- IMPORTANT NOTES: -->
    <!-- Default values for all the variables which appear below -->
    <!-- (enclosed in percent characters) are defined in the servlet -->
    <!-- configuration file (formsweb.cfg). It is preferable to make -->
    <!-- changes in that file where possible, rather than this one. -->
    <!-- -->
    <!-- This file uses several extra tags that are not present in the -->
    <!-- default template files. You should ensure that these are -->
    <!-- present in the configuration that uses this template -->
    <!-- The extra substitution Tags are: -->
    <!-- %webUtilArchive% = jar file containing the WebUtil code -->
    <!-- (by default this should be webutil.jar) -->
    <!-- %WebUtilLogging% = Defines the current logging mode. -->
    <!-- Valid values: off|on|console|server|all -->
    <!-- (on == console) -->
    <!-- %WebUtilErrorAlert% = Should errors be displayed in an alert -->
    <!-- as well as the programmer defined -->
    <!-- locations -->
    <!-- Valid values: true|yes|false|no -->
    <HEAD><TITLE>%pageTitle%</TITLE></HEAD>
    <BODY %HTMLbodyAttrs%>
    %HTMLbeforeForm%
    <!-- Registration applet definition (start) -->
    <OBJECT classid="%jinit_classid%"
    codebase="/forms90/jinitiator/%jinit_exename%"
    WIDTH="0"
    HEIGHT="0"
    HSPACE="0"
    VSPACE="0">
    <PARAM NAME="TYPE" VALUE="%jinit_mimetype%">
    <PARAM NAME="CODEBASE" VALUE="%codebase%">
    <PARAM NAME="CODE" VALUE="oracle.forms.webutil.common.RegisterWebUtil" >
    <PARAM NAME="ARCHIVE" VALUE="%webUtilArchive%" >
    <COMMENT>
    <EMBED SRC="" PLUGINSPAGE="%jinit_download_page%"
    TYPE="%jinit_mimetype%"
    java_codebase="%codebase%"
    java_code="oracle.forms.webutil.common.RegisterWebUtil"
    java_archive="%webUtilArchive%"
    WIDTH="0"
    HEIGHT="0"
    HSPACE="0"
    VSPACE="0"
    >
    <NOEMBED>
    </COMMENT>
    </NOEMBED></EMBED>
    </OBJECT>
    <!-- Registration applet definition (end) -->
    <!-- Forms applet definition (start) -->
    <OBJECT classid="%jinit_classid%"
    codebase="/forms90/jinitiator/%jinit_exename%"
    WIDTH="%Width%"
    HEIGHT="%Height%"
    HSPACE="0"
    VSPACE="0">
    <PARAM NAME="TYPE" VALUE="%jinit_mimetype%">
    <PARAM NAME="CODEBASE" VALUE="%codebase%">
    <PARAM NAME="CODE" VALUE="oracle.forms.engine.Main" >
    <PARAM NAME="ARCHIVE" VALUE="%archive_jini%,%webUtilArchive%" >
    <PARAM NAME="serverURL" VALUE="%serverURL%">
    <PARAM NAME="networkRetries" VALUE="%networkRetries%">
    <PARAM NAME="serverArgs"
    VALUE="module=%form% userid=%userid% sso_userid=%sso_userid% %otherParams%">
    <PARAM NAME="heartBeat" VALUE="5">
    <PARAM NAME="separateFrame" VALUE="%separateFrame%">
    <PARAM NAME="splashScreen" VALUE="%splashScreen%">
    <PARAM NAME="background" VALUE="%background%">
    <PARAM NAME="lookAndFeel" VALUE="%lookAndFeel%">
    <PARAM NAME="colorScheme" VALUE="%colorScheme%">
    <PARAM NAME="serverApp" VALUE="%serverApp%">
    <PARAM NAME="logo" VALUE="%logo%">
    <PARAM NAME="imageBase" VALUE="%imageBase%">
    <PARAM NAME="WebUtilLogging" VALUE="%WebUtilLogging%">
    <PARAM NAME="WebUtilLoggingDetail" VALUE="%WebUtilLoggingDetail%">
    <PARAM NAME="WebUtilErrorMode" VALUE="%WebUtilErrorMode%">
    <PARAM NAME="WebUtilDispatchMonitorInterval" VALUE="%WebUtilDispatchMonitorInterval%">
    <COMMENT>
    <EMBED SRC="" PLUGINSPAGE="%jinit_download_page%"
    TYPE="%jinit_mimetype%"
    java_codebase="%codebase%"
    java_code="oracle.forms.engine.Main"
    java_archive="%archive_jini%,%webUtilArchive%"
    WIDTH="%Width%"
    HEIGHT="%Height%"
    HSPACE="0"
    VSPACE="0"
    serverURL="%serverURL%"
    networkRetries="%networkRetries%"
    serverArgs="module=%form% userid=%userid% sso_userid=%sso_userid% %otherparams%"
    heartBeat="5"
    separateFrame="%separateFrame%"
    splashScreen="%splashScreen%"
    background="%background%"
    lookAndFeel="%lookAndFeel%"
    colorScheme="%colorScheme%"
    serverApp="%serverApp%"
    logo="%logo%"
    imageBase="%imageBase%"
    WebUtilLogging="%WebUtilLogging%"
    WebUtilLoggingDetail="%WebUtilLoggingDetail%"
    WebUtilErrormode="%WebUtilErrorMode%"
    WebUtilDispatchMonitorInterval="%WebUtilDispatchMonitorInterval%"
    >
    <NOEMBED>
    </COMMENT>
    </NOEMBED></EMBED>
    </OBJECT>
    <!-- Forms applet definition (end) -->
    %HTMLafterForm%
    </BODY>
    </HTML>

Maybe you are looking for

  • Custom Renderer / Embedded Objects

    In looking over the developer's guide, it suggests that one would have to create a custom XML renderer to handle deep structured documents (i.e., embedded objects). Is my reading of the renderer chapter correct? Thanks in advance.

  • 60GB iPod and Error 1418

    A week or so ago, I was updating my iPod when I was told there was a writing error, and the update stopped. Since then, my iPod has not worked. I've tried to reset and restore it to no avail - when I try to restore it (at which point iTunes states th

  • RE: LOGIC FOR  MONTHLY GOODS TRANSIST

    Hi gurus, I have to write the report for goods in transist finished goods in month end report. Please see the requirement and advise me for the developing program. 1) The program will process the input data the same way the fs10n transaction processe

  • Calling function from PHP

    How do you call a function plsql from PHP 5.0 and Oracle 10g XE? Thank you

  • LR1.3 - new ICCs not showing up in Custom Profile popup list

    I've copied some new ICC files into the /Library/ColorSync/Profiles directory (on an IMac OS 10.4.11), but when I try to choose one, they are not in the Custom Profile popup list. I have tried renaming an existing one that was showing up and the old