Cfgrid (html) cfwindow and form binding

Hi All,
I have a page with 2 cfgrids (html). Select a value in the
first grid populates the 2nd with appropriate records
All works as expected.
I also have a cell renderer on one column that opens a
cfwindow.
The cfwindow contains a textarea field (html), it's to big to
display in the grid.
All works great except for the initial value of the cfwindow
form
In the form I have a hidden field (id) andf the textarea
field. I have a bind attribute on both of these to get the value.
Can anyone tell me why the initial value does not work ??
Ken
What happened to the "Attach Code" Button ???
"grid page"
<cflayout type="vbox" align="center"
style="height:100%;">
<cflayoutarea overflow="scroll">
<cflayout type="vbox" align="center"
style="height:92%;">
<cflayoutarea>
<cfinclude template="inc/nav.htm">
</cflayoutarea>
<cflayoutarea>
<cflayout type="hbox" align="center" padding="5">
<cflayoutarea align="center" style="width:25%;">
<cfinclude template="jmoGrid.cfm">
</cflayoutarea>
<cflayoutarea align="center" style="width:75%;">
<cfinclude template="cbGrid.cfm">
</cflayoutarea>
</cflayout>
</cflayoutarea>
</cflayout>
</cflayoutarea>
<cflayoutarea>
<cf_siteFooter>
</cflayoutarea>
</cflayout>
"grid 1"
<cfgrid
name="gridJMO"
format="html"
striperows="yes"
bind="CfC:#Request.comsPath#.jmo.getData({cfgridpage},{cfgridpagesize},{cfgridsortcolumn} ,{cfgridsortdirection},getSearchString())"
selectMode="row"
pageSize="14">
<cfgridcolumn name="Employee_No" header="Emp No"
width="80">
<cfgridcolumn name="JMO_Name" header="Name"
width="150">
<cfgridcolumn name="id" header="" display="no">
</cfgrid>
"grid 2"
<cfgrid name="dataGrid"
format="html"
striperows="yes"
onchange="CfC:#Request.comsPath#.cbData.saveCB({cfgridaction},{cfgridrow},{cfgridchanged} )"
bind="CfC:#Request.comsPath#.cbData.getCB({cfgridpage},{cfgridpagesize},{cfgridsortcolumn },{cfgridsortdirection},{gridJMO.ID})"
selectmode="edit"
delete="no"
width="98%"
pageSize="12">
<cfgridcolumn name="Approved"
header="<center>Approve</center>" width="55">
<cfgridcolumn name="Call_Date"
header="<center>Date</center>" width="70">
<cfgridcolumn name="TimeIn" header="<center>Time
In</center>" width="55">
<cfgridcolumn name="TimeOut" header="<center>Time
Out</center>" width="55">
<cfgridcolumn name="Pt_MRN"
header="<center>MRN</center>" width="65">
<cfgridcolumn name="Caller"
header="<center>Caller</center>" width="185">
<cfgridcolumn name="Approver"
header="<center>Approver</center>" width="145">
<cfgridcolumn name="Details"
header="<center>Reason</center>" width="55">
<cfgridcolumn name="OverTime"
header="<center>OT</center>" width="55">
<cfgridcolumn name="Reason" header="" display="no">
<cfgridcolumn name="id" header="" display="no">
</cfgrid>
"window form"
<cfform name="frmUpdate">
<cfinput type="text" name="ID" bind="{dataGrid.id}">
<cflayout type="vbox">
<cflayoutarea>
<cftextarea name="fld_Message_Detail"
bind="{dataGrid.Reason}" rows="12" style="width:90%;"/>
</cflayoutarea>
<cflayoutarea align="right" style="margin-left:10px;
width:90%">
<cfinput type="button" name="bnt_cancel" value="Cancel"
onClick="hideRecWin('winDetails');">
<cfinput type="button" name="bnt_submit" value="Save
Change" onClick="updateReason();">
</cflayoutarea>
</cflayout>
</cfform>

I found that is style sheet problem , here is my workaround
solution:
1.) use text editor open the css file
(...\CFIDE\scripts\ajax\resources\ext\css\ext-all.css )
2.) find '.x-grid-dirty-cell' in the file
3.) copy & paste my style
/*------------------- >8 -----------------*/
/* Start of Grid dirty cell problem - Gordon Fixed
.x-grid-dirty-cell {
background: transparent
url(../images/default/grid/dirty.gif) no-repeat 0 0;
.x-grid-dirty-cell {
background: transparent
url(../images/default/grid/dirty.gif) no-repeat 0 0;
background-color:cornflowerblue;
.x-grid-row-alt .x-grid-dirty-cell{
background-color:cornflowerblue;
/* End of Grid dirty cell problem
/*------------------- >8 -----------------*/

Similar Messages

  • How to exchange data between the html in the form layout and itsparameters?

    i am trying to rephrase a question i asked a few days back and which yielded no response.
    is there any way to exchange/transfer values or data between the html in the form layout editor and the form parameters?
    for instance, is there any bridge such that the form template design (controlled by some html-based attribute), or the display property (again managed by some string value for the style:display attribute) of some of its divisions etc could be controlled by the values passed to some parameters of a portal form?
    has any body ever tried to do it or thought of doing it? or it's inherrently beyond the portal forms capacity?
    folks, any clues or hints on 'yes, that's how' or 'no, and that's why not!' please? will greatly appreciate.
    Naqvi

    i am trying to rephrase a question i asked a few days back and which yielded no response.
    is there any way to exchange/transfer values or data between the html in the form layout editor and the form parameters?
    for instance, is there any bridge such that the form template design (controlled by some html-based attribute), or the display property (again managed by some string value for the style:display attribute) of some of its divisions etc could be controlled by the values passed to some parameters of a portal form?
    has any body ever tried to do it or thought of doing it? or it's inherrently beyond the portal forms capacity?
    folks, any clues or hints on 'yes, that's how' or 'no, and that's why not!' please? will greatly appreciate.
    Naqvi

  • Dynamic SQL and Bulk Bind... Interesting Problem !!!

    Hi Forum !!
    I've got a very interesting problem involving Dynamic SQL and Bulk Bind. I really Hope you guys have some suggestions for me...
    Table A contains a column named TX_FORMULA. There are many strings holding expressions like '.3 * 2 + 1.5' or '(3.4 + 2) / .3', all well formed numeric formulas. I want to calculate each formula, finding the number obtained as a result of each calculation.
    I wrote something like this:
    DECLARE
    TYPE T_FormulasNum IS TABLE OF A.TX_FORMULA%TYPE
    INDEX BY BINARY_INTEGER;
    TYPE T_MontoIndicador IS TABLE OF A.MT_NUMBER%TYPE
    INDEX BY BINARY_INTEGER;
    V_FormulasNum T_FormulasNum;
    V_MontoIndicador T_MontoIndicador;
    BEGIN
    SELECT DISTINCT CD_INDICADOR,
    TX_FORMULA_NUMERICA
    BULK COLLECT INTO V_CodIndicador, V_FormulasNum
    FROM A;
    FORALL i IN V_FormulasNum.FIRST..V_FormulasNum.LAST
    EXECUTE IMMEDIATE
    'BEGIN
    :1 := TO_NUMBER(:2);
    END;'
    USING V_FormulasNum(i) RETURNING INTO V_MontoIndicador;
    END;
    But I'm getting the following messages:
    ORA-06550: line 22, column 43:
    PLS-00597: expression 'V_MONTOINDICADOR' in the INTO list is of wrong type
    ORA-06550: line 18, column 5:
    PL/SQL: Statement ignored
    ORA-06550: line 18, column 5:
    PLS-00435: DML statement without BULK In-BIND cannot be used inside FORALL
    Any Idea to solve this problem ?
    Thanks in Advance !!

    Hallo,
    many many errors...
    1. You can use FORALL only in DML operators, in your case you must use simple FOR LOOP.
    2. You can use bind variables only in DML- Statements. In other statements you have to use literals (hard parsing).
    3. RETURNING INTO - Clause in appropriate , use instead of OUT variable.
    4. Remark: FOR I IN FIRST..LAST is not fully correct: if you haven't results, you get EXCEPTION NO_DATA_FOUND. Use Instead of 1..tab.count
    This code works.
    DECLARE
    TYPE T_FormulasNum IS TABLE OF VARCHAR2(255)
    INDEX BY BINARY_INTEGER;
    TYPE T_MontoIndicador IS TABLE OF NUMBER
    INDEX BY BINARY_INTEGER;
    V_FormulasNum T_FormulasNum;
    V_MontoIndicador T_MontoIndicador;
    BEGIN
    SELECT DISTINCT CD_INDICATOR,
    TX_FORMULA_NUMERICA
    BULK COLLECT INTO V_MontoIndicador, V_FormulasNum
    FROM A;
    FOR i IN 1..V_FormulasNum.count
    LOOP
    EXECUTE IMMEDIATE
    'BEGIN
    :v_motto := TO_NUMBER('||v_formulasnum(i)||');
    END;'
    USING OUT V_MontoIndicador(i);
    dbms_output.put_line(v_montoindicador(i));
    END LOOP;
    END;You have to read more about bulk- binding and dynamic sql.
    HTH
    Regards
    Dmytro
    Test table
    a
    (cd_indicator number,
    tx_formula_numerica VARCHAR2(255))
    CD_INDICATOR TX_FORMULA_NUMERICA
    2 (5+5)*2
    1 2*3*4
    Message was edited by:
    Dmytro Dekhtyaryuk

  • Hyperlink and forms

    how do i make a hyperlink when clicked on by a visitor goto my mail.html page and input into a field in my mail form, on that page, the URL of the page the hyperlink was clicked on
    im new to this all suggestions welcomed

    ok i do not quite understand what u mean by all this: but if this is JSP do somethin like <a href="<%= blah blah  + ?<paramname = paramValue">" %> > Link </a>
    Where blah blah is the current page name , so u sort of re render the same page , do <% request.getParameter("paramName") %> to get the paramValue. Check if it is not null with an if statement, and if it is not include page <mail.html> or wotever the page name is.
    </a>

  • How to return a html repsonse after form guide rendering in browser?

    How to return a html repsonse after form guide rendering in browser indicating that server has recieved transmission and request is submitted succesfuly?
    I am rendering the form guide in browser using guide invoke service and when i submit the data in browser to server through guide , it is displaying some random number in browser?
    i need to display a resposne that request is submitted successfully?

    how could i define a variable with "html data" ?
    Create a variable of type document and then a service to read the html from where ever it's located. If you put it in LiveCycle, you can use the ReadRessource service. If it's on the file system, you can use the Read Document. If it's in the database, you can use the JDBC service.
    Also, one more doubt where should i use this variable in my process to get the same?
    You want the response once you've submitted the data, so the html is really the result of calling the process that's processing the data. So I would create an output variable of type document on that process.
    Right now it displays a random number in the browser because your submit process is long lived. When a process is long lived (asynchronous), you invoke it and then you get an identifier back. It's kind of a fire and forget. You can use that identifier to check the status of the long lived process, since long lived processes can take hours, days to complete. You don't want your browser to wait that long, hence the identifier.
    However if you change the process to be short lived (synchronous), the browser will wait for the result of the process, which really means the output variables for that process. If your output variable contains html, it'll display html.
    So the key is make you submit process short lived and populate the output variables appropriately.
    Jasmin

  • I am looking for a CRM system that integrates with mail chimp or constant contact, hoot suite and forms stack

    I am looking for a CRM system that integrates with mail chimp or constant contact, hoot suite and forms stack

    Hi,
    I could resolve the issue since there were lot of issues after system copy.
    1. During distribued to Cenrtal system - system copy.
    You need to combine both DB and CI export copies in one folder during which one thing can happen.
    SOURCE.PROPERTIES - this file will be there in DB export JAVA folder and also CI export JAVA folder where
    DB SOURCE.PROPERTIES file doesn't have an entry of "src.ci.host". This will stop the SAPINST with error and after modifying the file "SOURCE.PROPERTIES" Traget System Copy finishes without any issue.
    Then after this stage I encountered an issue with bind hosts entry in config tool which was due to virtual host name usage in my HACMP setup due to whcih JAVA gives a startup problem.
    I eliminated this issue also.
    After JAVA started I faced an issue with XI related navigations.
    ecchangeProfile url still had an entry of Production System. This may be a bug.
    After changing that entry, exchangeProfile was downloaded but it had all the source system host entries which were manually changed.
    Now I can access all the XI related navigations.
    I need to also perfrom SGEN and Profiles import.
    Do I need to change any additional settings after this so that my production and DR can work without any issue?
    Do you have any additional checks which I can perfrom to ensure my DR systems consistency before I start the log shipping from Production?
    Regards,
    Rajkumar

  • Workflow could not start in HCM process and Forms

    Hi All
    It would be really helpful if you can suggest possible solution regarding case management case in HCM forms and process.
    I have set up a simple custom HCM process and Form regarding Infotype 2 updation. I have checked the process and form consistency and it seems fine. Now when I run the process from HRASR_DT it generates a process number but it also gives an error workflow could not start.I get following error (SWIA log - Step history)
    Executing flow work item - Transaction brackets of the workflow has been damaged
    Exception occurred - Error when starting work item 000000007031
    PROCESS_NODE - Error when processing node '0000000014' (ParForEach index 000000)
    CREATE - Error when creating a component of type 'Step'
    CREATE_WIM_HANDLE - Error when creating a work item
    CREATE_VIA_WFM - Exit CL_HRASR00_POBJ_WF_EXIT triggered exeception for event CREATED and (target) status
    EVENT_RAISED - Error updating the process object
    Executing flow work item - Exit CL_HRASR00_POBJ_WF_EXIT triggered exeception for event STATE_CHG and (target) status READY->ERROR
    EVENT_RAISED - Error updating the process object
    Executing flow work item - Transaction brackets of the workflow has been damaged
    Executing flow work item - Work item 000000007031: Object FLOWITEM method EXECUTE cannot be executed
    Executing flow work item - Error when processing node '0000000014' (ParForEach index 000000)
    I have searched few SAP notes such as 1384961 which talks about same error but it is implemented in our system (EA-HR 604 , Patch 27, )
    Appreciate any help.
    Thanks
    Umang

    Hi Swati
    One of the similar (not exact) issues were resolved by correcting the event linkage....please refer thread:
    http://scn.sap.com/message/14848795#14848795
    Not sure of the details of the the resolution, maybe Ragavendran Kanagaraj can throw more light.
    Just some high level checks (if not done already):
    Check event linkage errors in SWEQADM if anything is related to your WF
    Check in SWEL if it's showing any more details (not sure if it will)
    Any warnings in syntax check of WF template (PFTC) or WF definition (SWDD)
    Any error sin binding
    regards,
    Modak

  • Report and Form - Nothing in Session

    Version 2.0
    I have a Report and Form combination. The "Edit" link is set to the seq_id. When the "Edit" link is clicked on the report and the form populates with the information, I then clicked on the Session link in the dev bar and there is nothing in session state except for my seq_id.
    I would have expected to see all my information that is populated on the form. Am I missing something (except for my information in session :) )?
    Thanks,
    Joe

    Arie,
    That's what I have in my HTML Header section:
    function compute_total_cost()
    document.getElementById('P2_TOTAL_COST').value =
    parseInt (document.getElementById('P2_DATA_COLLECT_FORM_PREP').value) +
    parseInt (document.getElementById('P2_PRINT_COST').value) +
    parseInt (document.getElementById('P2_MAIL_COST').value);
    and a call of onChange="javascript:compute_total_cost();" in each of the costing HTML Form Element Attributes. But if there's noting in session, how can the values be accessed.
    I also did start a new thread for this per Scott's instructions :)
    Thanks,
    Joe

  • Oracle forms viewlets about SSO and Forms dont work

    hi:
    the oracle forms viewlets (in Forms Sample Code) about SSO and Forms dont work. it says html as been modified. i think it's a viewlet builder protection.
    thanks

    user549194 wrote:
    Hi to everyone,
    This is a rant on the stupidity of Oracle Forms. From my point of view, it is pointless and VERY PAINFUL to develop.
    Come on, who in the right would use Oracle FORMS to develop database applications? Heck, I can develop my very own web application in Servlet and JSP twice as quick as this piece of crappy framework can produce. Who are you trying to kid? Tie down PL/SQL to the application level? The very idea of FORMS is bullshit.
    To whoever who is reading this, please flame me all you want. Oracle Forms is a crappy product. Dont't waste your time and efforts using it. You are better off using some other MORE PRODUCTIVE framework. So there.Hello,
    I have seen many threads speaking about forms future but discussions were also MORE PRODUCTIVE as your framework
    pointless ? I think your thread is pointless...
    I will not make the pro-forms against the world... There are so many tools, just make the right choice for your needs.
    so go back to your fantastic productive framework and have success with it.
    regards
    JeanYves

  • Tomact examples and form base authentication

    I am looking at the tomcat examples web.xml security constrains and login info settings:
    <security-constraint>
    <display-name>Example Security Constraint</display-name>
    <web-resource-collection>
    <web-resource-name>Protected Area</web-resource-name>
         <!-- Define the context-relative URL(s) to be protected -->
    <url-pattern>/jsp/security/protected/*</url-pattern>
         <!-- If you list http methods, only those methods are protected -->
         <http-method>DELETE</http-method>
    <http-method>GET</http-method>
    <http-method>POST</http-method>
         <http-method>PUT</http-method>
    </web-resource-collection>
    <auth-constraint>
    <!-- Anyone with one of the listed roles may access this area -->
    <role-name>tomcat</role-name>
         <role-name>role1</role-name>
    </auth-constraint>
    </security-constraint>
    <!-- Default login configuration uses form-based authentication -->
    <login-config>
    <auth-method>FORM</auth-method>
    <realm-name>Example Form-Based Authentication Area</realm-name>
    <form-login-config>
    <form-login-page>/jsp/security/protected/login.jsp</form-login-page>
    <form-error-page>/jsp/security/protected/error.jsp</form-error-page>
    </form-login-config>
    </login-config>
    As we can see form-login page and form-error page uri match url-pattern settings.
    url-pattern: /jsp/security/protected/*
    form-login page: /jsp/security/protected/login.jsp
    form-error page: /jsp/security/protected/error.jsp
    There is no binding of unauthenticated user to ether one of specified roles
    Question: What place in the servlet spec allows serving secured resource for a user without appropriate role association?

    Kinda then beat the the whole idea of authentication then, if you allow a user in that is not assigned to a security role? Anyway, I think you are looking to send the user to another page if they are not in a role but have an id, correct? Well, first it has to be a page outside the secure directory/ies. The error it generates is a 403. So add to your web.xml:
        <error-page>
           <error-code>403</error-code>
           <location>/403.jsp</location>
        </error-page>Anytime a user who is not a member of the allowed roles attempts a login, they will be redirected to this page.
    Ross

  • Actions and Forms Struts

    Anybody help me about as know how to developer using Actions and Form with JDeveloper.
    Thank´s
    Carlos Magno
    [email protected]

    What specifically are you looking for?
    If you are looking for a basic Struts Form that calls a Struts Action check out the JDeveloper Reviewer Guide
    http://otn.oracle.com/products/jdev/collateral/papers/10g/reviewer/reviewerguide.html
    Look at the Struts sample of a login form.

  • Basic HTML concepts and how they relate to eachother

    I am a grad student working on a project to visualize how the HTML markup is translated into a webpage in a browser. I am not a programmer, and thus am confused by how all the following concepts relate to one another. The goal lis to list them in a logical order and describe how one concept leads to the next in a sequential manner.
    I’d like to create a hierarchal list of all these terms and their definitions as a start. Here’s what I have so far.
    Tried to start with the most basic, and work my way up Any help would be appreciated. Any errors?
    SPECIFICATIONS
    WC3 / WHTWG Specification
    Defines the semantics, structure, syntax, and rendering of HTML code
    elements in HTML5 (tags)
    any element in the HTML namespace (as per the doctype declaration) - refers to all tags and their attributes - these tags are used to describe the meaning of the content they contain
        content model types     (tags can fit in one ore more of these categories of model types) 
            metadata - content that sets up the presentation or behavior of the rest of the content
            flow - elements that would be included in the normal flow of the document (fits in the HTML body tag)
            sectioning - defines the scope of heading and footers - create new sections in document
            heading - defines the header of a section, which can either be explicitly marked up with sectioning elements or implied by the heading content itself
            phrasing (similar to inline in HTML 4) - the text of the document, as well as elements used to mark up the text within paragraph level structures
            embedded - any content that imports other resources into the document
            interactive - any content that is specifically interacted for user interaction
    Outline Algorithm  (definition)
        Definition in the HTML5 spec of the rules that user agents should use when parsing code in order creating an outline of section content elements in an HTML     document
                    he outline (based on their ranking)
    AUTHOR
    HMTL5 Document - the document contenting HTML elements and authored content
    Document Semantics - the meaning associated with each HTML element Tag
        the collection of tags with meaning form the semantic structure of the HTML document
    Document Structure (combination of ordered semantic elements) - the order and nesting of tags, and the associations associated with the levels of nesting (ranking) create the document structure
        understanding the W3C outline Algorithm helps the author decide how and when to chose which elements to properly structure content
            understanding the process that HTML5 uses to outline documents will help in this decision
    USER AGENT (BROWSER)
    User Agent (browser)-
        the browser (application that user operates to interact with HTML documents
        parsing algorithm (executed) - the rules the browser uses to parses (walks through) the elements in order to establish its structure and add to the outline using     a parsing engine
            examples: webkit (safari) and gecko (firefox)
                body is established as the outline root (beginning)
        the result of the parsing is a Document object Model (DOM) and the Document Ouline
    Document outline - the nested,  hierarchical outline created by the browser parsing the html document’s structure and content
        each part of the outline is considered a node
            (relationships in the node are described with family tree terms like parent, child, and sibling.)
        sectioning and heading elements are used to define the outline
        sectioning elements are containers - so any elements contented within a a section is nested as a child in the parent’s section
    DOM -
        The DOM is the structure created by the DOM API in which  CSS and Javascript interact with and modify the HTML
        based on an object structure that closely resembles the structure of the documents it models.
        structure similar to that of a tree - in which every element is a node   
        similar to the document outline, but instead of a hierarchical list, the DOM is a tree diagram
    OUTPUT
    Final webpage

    As a rule of thumb, avoid all swing components (just use awt) because they are only available in 1.2. You can use all enhancements and bug fixes to awt components that are available in 1.4 (even 1.5).
    ;o)
    V.V.

  • Html Iframe and CommandLink Target don't working...

    Hi,
    In my application, I have a PanelGrid with 2 columns. The first column have a form with one InputText and CommandLink to submit a form action. The second column have a Html IFrame only. The code is shown below:
    <h:panelGrid border="1" columns="2" columnClasses="main,menu">
            <h:panelGroup>
                <h:form target="body">
                    <h:outputLabel value="Name:" for="communityName"/>
                    <h:inputText id="communityName" value="#{community_searchBean.name}"/>
                    <h:commandLink type="submit" target="main" action="#{community_searchBean.search}" value="Search"/>
                </h:form>
            </h:panelGroup>
            <h:panelGroup>
                <iframe name="body" style="width:100%;height:100%;"></iframe>
            </h:panelGroup>
    </h:panelGrid>
    ...The CommandLink and Form targets point to Html IFrame, but it doesn�t show the action page. How can i resolve this problem? Any Idea?
    Thanks.

    That looks like a problem with the plugin-container process (OOPP).
    It works if I disable OOPP for the Flash plugin and close and restart Firefox.<br />
    I don't know what goes wrong though.
    See http://kb.mozillazine.org/Plugin-container_and_out-of-process_plugins

  • CFGRID HTML named target will not open new window

    I'm finally TRYING to make the move to CF8 and honestly I
    love Cold Fusion but I encounter bug after bug without going crazy
    trying to do things. I'd appreciate any guidance here.
    In this case I am trying to switch over from applet CFGRIDS
    to HTML CFGRIDS. Right off the bat all sorts of issues.
    1) CFGRID HTML target does not work as expected. If you put a
    named window in (e.g. gridpopup) you get an error message that it
    doesn't exist. This is not the way the applet grid works in any
    version including CF8. I don't want to allow someone to keep
    opening up window after window in this case. This is a showstopper
    as I have many cases where I need to do this.
    2) A defined checkbox column displays true and false. Since
    this isn't editable I can probably change it to Yes and No but come
    on. This might be because I'm using a bit field in my Sybase
    database ?????? Not sure if it works or doesn't with other field
    types. Works fine with the applet cfgrid
    3) This one can probably be styled away, I don't want the URL
    columns underlined.

    First, I can't believe no one else is encountering this
    problem
    Here's the fix which allows you to use mixed case target
    names and will also open a non-existent target. Someone was very
    lazy when they coded this.
    Locate the cfgrid.js file e.g. ..//CFIDE/scripts/ajax/package
    Find this chunk of code
    if(_2a3){
    _2a3=_2a3.toLowerCase();
    if(_2a3=="_top"){
    _2a3="top";
    }else{
    if(_2a3=="_parent"){
    _2a3="parent";
    }else{
    if(_2a3=="_self"){
    _2a3=window.name;
    }else{
    if(_2a3=="_blank"){
    window.open(encodeURI(url));
    return;
    if(!parent[_2a3]){
    and replace with this chunk of code
    if(_2a3){
    _2a3_LC=_2a3.toLowerCase();
    if(_2a3_LC=="_top"){
    _2a3="top";
    }else{
    if(_2a3_LC=="_parent"){
    _2a3="parent";
    }else{
    if(_2a3_LC=="_self"){
    _2a3=window.name;
    }else{
    if(_2a3_LC=="_blank"){
    window.open(encodeURI(url));
    return;
    }else{
    if(!parent[_2a3]){
    window.open(encodeURI(url),_2a3);
    return;
    if(!parent[_2a3]){

  • Book for reports and forms

    Could any suggest a very good book for Oracle reports and forms which has all the details of the reports and forms from the fundamentals?

    Oracle tutorial..
    Although the first two of the following links are for older Forms versions, the concepts are still valid across all Forms versions.
    A Tutorial on Oracle9i Forms and Reports
    iSelfSchooling - Basic Introduction to Forms
    Oracle Forms 10g: Demos, Tips and Techniques
    http://www.dotnetspider.com/resources/22433-Triggers.aspx---Different Trigger types
    http://sheikyerbouti.developpez.com/index_en/
    http://www.slideshare.net/magupta26/oracle-forms-tutorial
    http://www2.cs.uh.edu/~ceick/3480/Customized_Oracle_Forms.pdf ---Creating Customized Oracle Forms
    http://www.youtube.com/watch?v=0BBiHvHzPYE -- video
    Hope this helps,
    Oracle Reports Tutorial...
    Here few link...
    1. http://docs.oracle.com/html/B14364_01/title.htm
    2. http://www.scribd.com/doc/3960412/Basic2-Oracle-Reports-10g-Tutorials
    Video Tutorial
    http://www.youtube.com/watch?v=Fum3MJm5yKU
    Hope this helps
    If someone's response is helpful or correct, please mark it accordingly.

Maybe you are looking for

  • I hate the fact that I can no longer access my Norton toolbox.

    I find the new update way more than I need. I dislike that it disabled Norton Security Toolbox without telling me ahead of time. I would not have upgraded. I don't think this update simplifies my online management of anything

  • Screen exit Payment document saved when press enter after error message

    Hi All,    I have created a screen enhancement for payment document WZR1.its in additional data tab under header details. Here i should populate a error message when user save the payment document without entering values to custom screen fields.It wo

  • Jdbc help

    Hi all, When I tried to retrieve values from database like text and integer values ,I can't assign to the text box .Plz can anyone help me. here is the code import java.sql.*; import java.io.PrintStream; import java.awt.event.*; import java.awt.*; im

  • PROBLEMS IN MAKE TO ORDER PRODUCTION CYCLE

    Dear Sir When i m making make to order cycle for a material i hv maintained stratergy 20 for the material.then i created sales order for that material.then i run MRP using MD50.Then iwent to MD04.Then i converted planned order into production order i

  • Troubleshooting Report Application Server

    Hello Experts, I've installed Crystal Reports Server XI R2 on Windows 2003 Server. All the services are running fine except 'Report Application Server'. Whenever I try to start the service it starts and stops immediately. I don't know whats wrong the