BLOCKNAME data block from TEMPLATE.fmb displaying when I close my form

Hi all,
I'm developing a custom form in EBS, and when I close my form using the X button, the BLOCKNAME window from TEMPLATE.fmb is displayed. If I close using File -> Close Form, I get the expected behavior.
Does anyone have any suggestions for how to fix this?

Hi,
I've still been unable to make any progress with resolving this issue. Does anyone have any suggestions?

Similar Messages

  • The values for list items of other data blocks are not getting displayed when executed.

    Hi,
        I have a new problem again.
        I am doing a new form in which there are around 8 blocks. All the blocks have their tables in the oracle database.
        Each block has 18 columns with the same column & column names. But the values in those columns are different & the values do not match.
        The problem lies while i execute the form, it populates only the first block data. Other blocks do not display or populate the values.
        I cannot create a master relationship because all the column values are different.
        How do i display or populate the values of all the tables?
       Please help me. Thank You.

    hi
    if your form has truly disassociated tables, then you could simply use a key-exeqry trigger at forms level to travel to each block in turn and perform an execute-query built-in, eventually returning to the starting block.
    ie
    go_block('..');
    execute_query;
    go_block('..');
    execute_query;
    etc
    go_item(......);
    In this case you would use the block where clause to constrain each table to the appropriate set.
    If however, the database has no relationships between the tables but the data content has some corelation, then you could craft a forms relation manually.
    cheers
    Rod

  • When i close called form. i want to refresh calling form.but how?

    i am using call_form ( name_in(':Global.App_Path')|| file_name, hide, Do_replace, no_query_only,pl).
    when i close called form. i want to refresh calling form.
    how can i do it.

    You have a block called : EMP, so you have to re-query-it with the following:
    Go_Block('EMP');
    execute_query ;Francois

  • Datas deletion from Global Temporary table  when clear command is given

    Dear All,
    How to Delete datas from global temporary Table when clear command is given in forms
    Suggest me syntax..
    Pls help..
    Regards,
    Gokul.B

    http://psoug.org/reference/gtt.html
    Francois

  • Time doesn't display when I close phone, record album does.

    When I close my Style, I used to get a thirty second image of the time on the external screen.  Now I get a picture of a record album.  I don't have the music player running, and the clock's options don't lend any clues. 
    Thanks in advance for any help.

    Hi kapntoad,
    Does the same occur if you reinsert your battery and try again?
    Cheers,
    -FB
    Come follow your BlackBerry Technical Team on Twitter! @BlackBerryHelp
    Be sure to click Kudos! for those who have helped you.
    Click "Accept as a Solution" for posts that have solved your issue(s)!

  • Close Browser window when you close 10g forms

    Help Please.... I am trying to close browser window when I exit 10g forms:
    Per oracle Note:115905.1
    create close.html file Put the html file in the webserver root.
    I created the following file in $ORACLE_HOME/Apache directory (webserver directory??)
    1.)Create an html file (es. close.html):
    <html>
    <body onload="closeit()">
    <script>
    function closeit()
    win = top;
    win.opener = top;
    win.close ();
    </script>
    </body>
    </html>
    In exit form when button pressed I have the code
    web.show_document('http://apphost1.univ-wea.com:7777/close.html','_self');
    The brwser window does not close automatically.
    thanks,
    Anitha

    Hello this is saras from chennai.
    Now i m developing oracle forms using 6i. now i m running it independantly. that is i put forms in one folder and run these forms using shortcut. If i m using the same in client machine also. But now i want to run these forms in webbrowser(client-server). for this i done the followings.
    1. installing forms server and reports server.
    2.Also i install IIS Server and appachie server also.
    3. I had fmx files.
    now i dont know the procedure to configure these web server with forms server. And i hold the fmx files in inetpub\wwroot folder.
    Which one is the easy method appachiee server or iis server.
    Please help me to run these fmx files in web browser.
    I m eagerly waiting for your favourable reply.
    saras,
    [email protected]
    chennai

  • Payment block code is not displayed when an alternative account is used

    Hi,
    we have defined an alternative account for vendors.
    When posting an invoice directly in FI, the payment block field (as well as the other payment terms fields) is not displayed in the Payment tab, if the alternative account code is selected. If the alternative account is cleared - in the same document - the payment terms fields are again displayed. Changing again the alternative account field (from blank to the relevant code) have the effect of payment terms masking.
    The same behavior happens during the modification of a document.
    The result is that - as the invoices are posted with the payment block field posted as default, it is not possible to release those documents.
    Can you give me any hint?
    Thanks,
    Massimo

    Hi
    It may be a problem with Posting Keys you are using.
    Go to OB41
    Double click on posting key used for payment or which ever your action is for
    Click on the Field status on the top
    Double click on Payment Transactions
    And select optional or required for the fields which you want to see
                              OR
    Go to TCode OBC4
    Select the required company code's Field status variant (whole line should be selected)
    Double click on Field status groups
    Double click on Reconciliation accounts (A/Payable or A/Receivable)
    Double click on Payment Transactions
    And select optional or required for the fields which you want to see
    Hope its useful.
    Mostly first solution should work for you
    Regards
    Jyotsna

  • How to get Date value from database and display them in a drop down list?

    Hello.
    In my Customers table, I have a column with Date data type. I want to create a form in JSP, where visitors can filter Customers list by year and month.
    All I know is this piece of SQL that is convert the date to the dd-mm-yyyy format:
    SELECT TO_CHAR(reg_date,'dd-mm-yyyy') from CustomersAny ideas of how this filtering possible? In my effort not to sound like a newbie wanting to be spoonfed, you can provide me link to external notes and resources, I'll really appreciate it.
    Thanks,
    Rightbrainer.

    Hi
    What part is your biggest problem?? I am not experienced in getting data out of a database, but the way to get a variable amount of data to show in a drop down menu, i have just messed around with for some time and heres how i solved it... In my app, what i needed was, a initial empty drop down list, and then using input from a text-field, users could add elements to a Vector that was passed to a JComboBox. Heres how.
    package jcombobox;
    import java.awt.*;
    import java.awt.event.*;
    import java.util.Vector;
    import javax.swing.*;
    public class Main extends JApplet implements ActionListener {
        private Vector<SomeClass> list = new Vector<SomeClass>();
        private JComboBox dropDownList = new JComboBox(list);
        private JButton addButton = new JButton("add");
        private JButton remove = new JButton("remove");
        private JTextField input = new JTextField(10);
        private JPanel buttons = new JPanel();
        public Main() {
            addButton.addActionListener(this);
            remove.addActionListener(this);
            input.addActionListener(this);
            buttons.setLayout(new FlowLayout());
            buttons.add(addButton);
            buttons.add(remove);
            add(dropDownList, "North");
            add(input, "Center");
            add(buttons, "South");
        public void actionPerformed(ActionEvent e) {
            if (e.getSource() == addButton) {
                list.addElement(new SomeClass(input.getText()));
                input.setText("");
            } else if (e.getSource() == remove) {
                int selected = dropDownList.getSelectedIndex();
                dropDownList.removeItemAt(selected);
        public void init(String[] args) {
            setSize(400,300);
            getContentPane().setLayout(new BorderLayout());
            getContentPane().add(new Main());
    }And that "SomeClass" is show here
    package jcombobox;
    public class SomeClass {
        private String text;
        public SomeClass(String input) {
            text = input;
        public String toString() {
            return text;
    }One of the things i struggled a lot with was to get the dropdown menu to show some usefull result. If the list just contains class references it will show the memory code that points to that class. Thats where the toString cones in handy. But it took me some time to figure that one out, a laugh here is welcome as it should have been obvious :-)
    When the app is as simple as this one, using a <String> vector would have been easier, but this is just to demonstrate how to place classes in a vector and get some usefull info out of it, hope this answered some of your question :-)
    The layout might have been easier to write, than using the toppanel created by the JApplet and then the two additional JPanels, but it was just a small app brewed together in 15 minutes. Please comments on my faults, so that i can learn of it.
    If you need any of the code specified more, please let me know. Ill be glad to,

  • How do I get dates pulled from database to display in Spanish?

    I'm pulling a date from a MySQL database and need to have it
    display in Spanish. If it were in English, these are the two
    statements I would be using:
    #DateFormat(event_date,"mmmm")#
    #DateFormat(event_date,"mmm d")#
    I tried using <cfset SetLocale("Spanish (Standard)")>
    in my Application.cfm , but it didn't seem to work. I'm not really
    sure how it is supposed to be used or even if it would work if I
    were using it correctly.
    Any help would be appreciated.
    Thanks -CaddyX

    Bagger Vance wrote:
    > setLocale("es_ES"); // or whatever locale you're using
    for "Spanish"
    > // all the subsequent LS functions will use this locale
    > writeoutput("#lsDateFormat(eventDate,"FULL")#");
    >
    >
    >
    > Paul, Thanks for responding. I'm still not sure how to
    make it work. Do I just
    > put <cfset SetLocale("es_ES")> somewhere in the
    document? That didn't seem to
    > change the result in the following code:
    you can put it at the top of pages that need to be localized
    or better yet in
    your application cfm/cfc.
    >
    <cfoutput>#DateFormat(get_event.event_date,"mmmm")#</cfoutput>
    yes it won't change that, the regular cf functions all use
    en_US locale. you
    want the "LS" functions (re-read the code snippet above).

  • Pages Built from Template not working when put

    Hi,
    I am building a site with CS3 and running it to test it on
    onother site in a sub-directory - but, although the pages all work
    as expected when viewed locally, some are totally blank when put on
    the server - when I view the source they only contain;
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0
    Transitional//EN">
    <HTML><HEAD>
    <META http-equiv=Content-Type content="text/html;
    charset=windows-1252"></HEAD>
    <BODY></BODY></HTML>
    so its not like the page is not there - its just that all the
    content has been skipped. I have tried re-putting, deleteing from
    the server and reputting - all with no success. Several pages,
    built from the same template work great, but just a few are like
    this...
    I have searched the net and forum, but can't find a similar
    problem - any help would be very gratefully received

    OK - I think that I have a system or corruption
    problem - I just tried another full upload and now nothing is
    working... I'm switching to my laptop to see if the old Dell is the
    problem.

  • How do I get all of my favorites, transferred from IE11 to display when I select "favorites", instead of opening them as tabs?

    I have transferred them over but when I select them, only a partial list is displayed. I can open them all as tabs but that is not satisfactory to me. I could see them all with IE11.

    If there are problems with importing the IE Favorites in Firefox then export the favorites in IE to an HTML file and import that file in the Firefox Bookmarks Manager.
    If you do not have the menu bar in IE then right-click the toolbar at the top or hold down the alt key to display the Menu Bar.
    *Export the favorites in IE to an HTML file (bookmarks.html):<br>File > Import and Export
    *Import the HTML file in Firefox:<br>Bookmarks > Show All Bookmarks > Import & Backup > Import Bookmarks from HTML
    See "Import from another browser" and "Import from file":
    *http://kb.mozillazine.org/Import_bookmarks

  • Oops! deleted the hd from the left display when opening the hd

    nmv, got it work. sorry!

    The new computer will likely come with Lion pre-installed. It's possible that the new models will not work properly or at all using the retail version of Snow Leopard. You can swap the drive and see. If there's a problem then reinstall the original drive.
    There are ways to transfer your files from the old computer to the new one. See:
    How to use Migration Assistant to transfer files from another Mac
    How to- migrating data to a new user account
    Migration Assistant tips and tricks

  • Want the data store values to be displayed in input field of form

    Hi,
    I wanted to know wether is there possibility of displaying the data in a input field instead of expression field.
    In our model i have used a form which has material type,plant and Vendor connected to data service1 in turn gives the out put in chart and i also have the second input form which has To(0CALMONTH) combo box which is connected to Data service2 and gives the data in table.
    But what i wanted is to i also want to use the input fields of first form to second Data service2 and get the data based on on inputs of form1 and form2i.e also To field.
    We can connect the port from form1 to DS2 but problem is we need to click the submit of form1 and form2 and it doesnt gives the output according the input of form1 and form2 as it gives the output of that form when we click that submit button.
    I have followed help.sap for data tore procdure.
    So i have used a datstore where i will store the values of form1 and call it in expression field which i will add and hide it in form2(hide because user should not see that input fields).
    Formula used in data store for expression field.
    IF(CONTAINS(STORE@matltype,@Material_Type),STORE@matltype,STORE@matltype &(IF(LEN(STORE@matltype)>0,'; ',''))&@Material_Type)
    But whats happening is the value is getting concatenated when i goon change the values in input field, so i wanted to get the values to be replaced as soon as i change input field of form1(if  use replace function its not working) and also it would be more preferrable if we use input field instead of expression field.
    I would also like to know is there any alternate solution for the above requirement instead of datastore.
    Thank You
    K.Srinivas

    Hi,
          I have Form1 connected to Data service1 displays the data in a Chart and i have another Form2 connected to Dataservice2 displays the data in table.
    In form1 there are Material Type,plant, and Vendor and form2 i have To (0CALMONTH)SO now i want also Form1 inputs for Table which gets teh data from Dataservice2.
    What i have said earlier is connecting Form1 to Dataservice doesnt fetch the data correectly,its because if i click submit in form1 i get the data of those 3 inputs and i need to click the submit button in form2 after giving input which shows the data accordingly where it doesnt fulfill the requirement.
    So i wanted some solution for that.For that reason i have used the data store and the procedure i have followed the help.sap as i said in my above mesage.
    If Data store is also suggestable than i want to display the data in Text input Field  instead of Expression field which should replace the previous values as soon as values change in data store.
    Hope i have tried to be clear if still it is not i am ready to explain again.
    Thank You
    K.Srinivas

  • Icons files will not displaying when running web-based forms locally

    My icon files (jpgs) are not displaying from within Forms Developer 10g or when I run the web-based forms from within Developer. I have tried the following without success:
    6.4 Deploy Icons for Forms Running on Web
    Option One: For Running Web Based Forms from Within the Forms Builder in Oracle 10g Developer Suite
    1) Copy all the icon image files (*.jpg) to the directory of <Oracle_10g_Developer_Suite_Installation_Root_Dir>\forms\j2ee\formsapp\formsweb\icons
    2) Make sure to set imageBase=DocumentBase in the file < Oracle_10g_Developer_Suite_Installation_Root_Dir >\forms\server\formsweb.cfg.
    3) Edit the < Oracle_10g_Developer_Suite_Installation_Root_Dir >\forms\java\oracle\forms\registry\Registry.dat file, specify the icon image file extension by modifying the following line:
    default.icons.iconepath=icons/
    default.icons.iconextension=jpg
    Save this Registry.dat file.
    4) Restart the OC4J Instance.
    5) Launch the form from Forms Builder.
    I just got a new laptop and am setting everything up again. I have everything setup the same way as on my old machine (same as above). It worked fine on my old computer but not on the new one.

    hi
    try to create jar file for u r all jpgs but also u have to check the size of u r images
    and if possible try to resave the same images by using Acdsee or use any other image viewer softwares.
    hope this helps u...
    sarah

  • Error messages are displayed when opening the RTV form.

    Hi All,
    While doing a return to vendor the following error messages are displayed.
    1.Go to the Inventory Management --> Return to Vendor screen.
    2. In Action Drop down select ‘New’ and click on OK
    3. A series of errors are encountered.
    4. A warning message as [640+49> 688] and then click ‘OK’.
    5. Notice the error message”Multi view internal error: B_RTV_DETAIL.QTY_RETURNED:current_col_pos exceeds parameter defined maximum right position” and then click’ OK’.
    Can any one help me out in these?
    Thanks,
    Sushanth.D

    This is a coding issue in the form, maybe the number is too big for the box on the canvas.
    It looks also like a business issue is kicking off the error, the message [640+49> 688] looks like some units of stock etc. check, e.g. the returned quantity is larger than the stock on hand.
    File an SR with OracleSupport and/or open the UI's Form fmb code in Forms Developer.
    Multi View relates to an (quite old) OracleRetail (Retek) Forms pll library that enhances the Forms features, if my memory is not letting me down.
    Best regards,
    Erik

Maybe you are looking for

  • Why fix what ain't broken?

    This is not just with Firefox but with software in general and heavily includes browsers. One can't help but notice that upgrading often causes immediate problems with both the program being upgraded and other, many times, unrelated, programs, alread

  • Creating hyperlinks to pdf docs on a CD. Anyone experienced in doing this?

    Need to create hyperlinks to pdf documents in a CD. The pdf docs were created using an older version of Adobe and I am trying to follow a YOuTube instructing me how to create hyperlinks in the Table of Contents on the CD. The instructions on the YoTu

  • CSS issue in IE 7

    > This message is in MIME format. Since your mail reader does not understand this format, some or all of this message may not be legible. --B_3300698008_833609 Content-type: text/plain; charset="ISO-8859-1" Content-transfer-encoding: 8bit Hi I'm curr

  • How do I re-mount the iPod after unmounting?

    This may be a silly or over asked question but I don't know the answer and it is troubling. After I copy music to the iPod and then 'eject' the iPod, there are times that I realize I wanted to move more music over but I can't find a way to have iTune

  • Release Sales Order through Interface ?

    Hi Anyone can guide me that How to Release the Sales Order through Interface table . This is an urgent need. Thanks in Advance to all of you. regards Sanjay