How to know 'opened forms'

hi
On main form, I am accessing other forms through my own customized menu. But there is no control to check whether form is already open or not. whenever i click menu, another instance of form is created. How to control this. I guess there should be some control in menus for it ?
or how to control that, at a time, one instance of form should be opened through menu?
best regards

You can refine this code even further by making it a procedure and the it can check for any form name. The procedure is as follows:
PROCEDURE check_open_form(form_name VARCHAR2) IS
frm_id formmodule;
BEGIN
frm_id := FIND_FORM(form_name);
IF NOT ID_NULL (frm_id) THEN
MESSAGE('Form '| |form_name| |' is already opened');
go_form(frm_id);
ELSE
OPEN_FORM(frm_id, ACTIVATE, SESSION);
END IF
END;
You can then call any form using this procedure in say a button item using When-Button-Pressed trigger. Issue a call to the procedure to call form named "slap" like:
check_open_form('slap');
Abdul.
null

Similar Messages

  • How to know the forms associated with a specific transaction

    Hi..
    Can anyone please suggest me how to know the forms associated with a specific transaction.
    For Example In Finance module.
    I came to know from SDN the form associated with F.64 as F140_acc_stat_01.
    But i need the steps how to track the form name.
    Regards..
    Vinodh

    Hi,
    1.We cann't find the forms associated with a specific transaction.
    2.But,based on requirement we can go for the form selection.
    3.Suppose in account payable and receivable , we have different forms like customer statement, Dunning and Chek form etc.
    4.The functional people can find the form name in SPRO and give the details of the requirement.
      5.If u have the output type or formname u can go for the TNAPR and  TTXFP tables and u can search for the respect object.
    6.For FI u can directly find in the SPRO, by searching it with the form name.
    Regards,
    If helpful reward with points(Don't forget).

  • How do know open quantity  for a  sales order  (patially  delivered)

    Hi  Gurus,
    I have requirement to  know  open quantity for  sales order and it was partially delivered.
    Any table  to know partially delivered qty of a material for a  sales order.

    Hi
    Check This Table  VBBE for open order quantity
    You can find open Qty like this
    Open Qty  = Delivery Qty (LIPS-LFIMG) - Order Qty (VBAP-KWMENG)
    Swamy

  • How to know the form or report that is called in a given transaction

    Hello Experts,
    I just given a sample printout of a debit memo of our company that I need
    to modify. But the user said that they print the memo through transaction
    VF02(Change billing document). So how can I know the program or form which is called
    in VF02 transaction? Help would be greatly appreciated. Thanks a lot guys and take care!

    First of all you need to ask what is the <b>output type</b> for that debit memo .
    say it is ZXXX
    Now take this output type and goto tcode NACE .
    Give the application as V3 (*billing) a table control screen opens up in that input this output type ZXXX .
    and once u find this o/p type in the list select that and say processing routines on the left hand side .
    This will display Form name (Script ) and the program name ( Driver program /report ) .
    Regards,
    Vijay

  • How to know open item or closed item

    Hi Folks
    I have developed a report on FI .
    iam displaying open items( BSIK) and closed item (BSAK)
    in one file.
    my question is there any filed available in BSIK or BSAK to user know whether that transaction is open or closed?
    becasue iam displaying all the records in one file.
    regards
    neeru

    Hi,
    Check for "Clearing Date" field.  (BSIK- AUGDT or BSAK- AUGDT).
    This field will have blank value for open items (BSIK) and date value(clearing date) for cleared item (BSAK).
    Hope this helps.
    Regards,
    Chirag
    Assign points if this helps...

  • How to know current form name in oracle applications 11i.

    Hi all,
    By clicking on Help menu-> About Oracle Applications, it will display environment variables info, and current form info, on which we r working.
    I want to know from where this information is coming,
    Where oracle applicaitons will store this information.
    Is there any database table which regularly updates the current form info.
    Or is there any log which contains info about current form name.

    Hi
    For viewing this information you need to read system administration guide , Go through this pdf file
    http://download-uk.oracle.com/docs/cd/B11454_01/11.5.9/acrobat/115saug.pdf
    Nitin

  • Install missing plugins error while opening forms in EBS R12

    Hi,
    I installed EBS R12 in my desktop through vm ware. my host os is windows xp and my guest os is oel 5.3. Now when i am trying to open any form based window through OAM in firefox browser, install missing plug ins error occurs.
    How can i open forms? Pls can any one help me. Thanks in advance.

    I installed EBS R12 in my desktop through vm ware. my host os is windows xp and my guest os is oel 5.3. Now when i am trying to open any form based window through OAM in firefox browser, install missing plug ins error occurs.
    How can i open forms? Pls can any one help me. Thanks in advance.To answer your this question, Hussein already updated the referenced notes, just follow them and you will be able to access/open EBS on firefox.
    Somewhere i heard that we have to create a sybolic link with the java plugin. Where can i find that java plugin in our system and to where i have to crete the link.from where you heard that, it is required ?
    regards

  • How to know form is open or not or not in sap

    How to know form is open or not or not in sap

    Hi
    There is no such functionality where you can check that whether the form is open or not. you can only get the information of active form
    if u want to get the information that form is open or not you have to code by yourself like declare a object of each form on the form load event set the value of that object and on form close event set the value of object to nothing. then you can check that if form object has some value then form is open else form is close.
    Hope i clear the point.
    Regards
    Rupinder

  • How to know previous navigation item during runtime in Forms

    Hi,
    How can one know the previous navigation item in oracle forms.
    Scenario:
    Navigation: US Super HRMS Manager --> People --> Enter and Maintain.
    On the Find Person window --> Query a Person
    On the People Window, there is an Assignment Button. When clicked, it will open new window "Assignment".
    At this point 'WHEN-NEW-ITEM-INSTANCE' is fired for the item 'ASSGT. ORGANIZATION_NAME'.
    There is DFF on this window and when DFF is closed by pressing OK button, 'WHEN-NEW-ITEM-INSTANCE' is fired again for the item 'ASSGT. ORGANIZATION_NAME'.
    Hence my question is how to know if the previous item is DFF or not.
    Thanks in Advance.
    Vishnu

    Hi,
    How can one know the previous navigation item in oracle forms.
    Scenario:
    Navigation: US Super HRMS Manager --> People --> Enter and Maintain.
    On the Find Person window --> Query a Person
    On the People Window, there is an Assignment Button. When clicked, it will open new window "Assignment".
    At this point 'WHEN-NEW-ITEM-INSTANCE' is fired for the item 'ASSGT. ORGANIZATION_NAME'.
    There is DFF on this window and when DFF is closed by pressing OK button, 'WHEN-NEW-ITEM-INSTANCE' is fired again for the item 'ASSGT. ORGANIZATION_NAME'.
    Hence my question is how to know if the previous item is DFF or not.
    Thanks in Advance.
    Vishnu

  • How do I keep forms opened on the web  - if they close themselves at times

    How do I keep forms opened on the web  - if they close themselves??

    Hi,
    When you have completed design your form on design tab, you may open form to filling out and submit. At this time, if you don’t change your form, it will keep the open state. if you change or edit your form, it will showing a warning dialog to let you know form will be changed to closed, and remind you to open it again.
    Thanks,
    Guanshuai

  • How to know which table in the database a form is accessing

    Actually Im new to oracle applications,
    Im getting an error when i open a form from system administrator responsibility saying that table doesnot exist.
    My basic doubt is, how to know which table in the database a form is accessing.
    Any response is higly appreciated.
    Thanks,
    Praveen
    Edited by: user10239520 on Sep 10, 2008 7:07 AM

    Take a look at the following thread:
    Is there a query log in EBS?
    Re: Is there a query log in EBS?

  • How to publish infopath forms to open new and old form templates in sharepoint2007

    Hi All,
    My requirement is , we are having a form library with the Infopath form templated(V1) published.
    Then we have added about 300 items using template(v1) into the sharepoint library.
     Then client asked for the changes in form and we deveploped infopath template (V2) and published, able to create the items using the new template(v2).
    But ,the issue is when we open item from the 300 items which are created with template(v1), its is opening using template(v2) and we are loosing the functionality of template(v1).
    Can i know ,how to publish the form template to use both template versions and it should open the form with  wahatever the  template it used for creation.
    Thanks in Advance.
    Anil Kumar K

    Hi,
    If you want the InfoPath forms for displaying the items in the list, then I recommend to click Customize Form button in the ribbon of the list to edit the form in InfoPath and then publish the form back to SharePoint.
    After that, you will see there are three new forms(displayifs.aspx, editifs.aspx, newifs.aspx) when you view the list in SharePoint Designer.
    Then you can create the custom action to navigate to the custom InfoPath form:
    Thanks,
    Victoria
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Victoria Xia
    TechNet Community Support

  • How can others open more than one form? [Was: Sandra]

    How do you use Forms Central? I am the only account that can open more than one form. I have added all the people in contacts. When they login, they have the upgrade option for more than one form. We have an order number and end user id. Thanks for the help.

    Hi,
    It sounds like you have a paid account and the other users have free accounts.
    You will have to share the form with the other users, please see this link for more detailed on how to share a form with others:
    http://forums.adobe.com/docs/DOC-3351
    All the free account users should be able to open all the forms that you have shared with them. Free users can only create one form on their own.
    Hope this helps,
    Thanks
    Lucia

  • How do i open a PDF document in forms?

    How do i open a PDF document in forms runtime?
    acrobat reader would already be installed on the pc's.
    any help would appreciated.
    Thanks
    Hussein Saiger

    Hello,
    I'm not a specialist, but I think that you could configure these information in the /Apache/Apache/conf/httpd.conf file
    # Aliases: Add here as many aliases as you need (with no limit). The format is
    # Alias fakename realname
    <IfModule mod_alias.c>
        # Note that if you include a trailing / on fakename then the server will
        # require it to be present in the URL.  So "/icons" isn't aliased in this
        # example, only "/icons/"..
        Alias /icons/ "/appli/9IAS/Apache/Apache/icons/"
        Alias /jservdocs/ "/appli/9IAS/Apache/Jserv/docs/"
        Alias /javacachedocs/ "/appli/9IAS/javacache/javadoc/"
    ...Francois

  • How to know that URL is currenty open into other Group Tab feature ?

    Hello Firefox team,
    I use a group tab features (CTRL+SHIFT+E) and I have open many URLs in many group tab's. This URLs are on one domain because I work on one SupportTeam website and all cases/tickets have different URLs.
    I don't know that I open a duplication tab (cases/ticket) who is open in other tab or on tab in other group tab.
    How to know that URL whom I open is a duplication?.
    Best Regards
    Marcin Przysowa

    I upgrade FF to 10.0 version. The situation is the same.
    For me some information bar is perfect like:
    This URL is open in $grouptab_name.
    By click into that hint I should be jump to older tab in $grouptab_name.

Maybe you are looking for

  • Updated to 6.1.3 and can no longer get to podcasts

    I updated an IPOD touch 64g to 6.1.3 and my podcasts are no longer accessible.  I went to my stations to figure out if there was a different way to get to the podcasts that used to be there.  Now it exits out of podcasts.  When I go back to podcasts,

  • Image / clone tablet Windows 8.1 Pro

    Is it possible to clone or image a windows 8.1 tablet (Dell) to a external disk drive or network and restore it to (the same hardware) to another tablet? I want to configure (lock down settings thru local policy) and make network settings setup email

  • Entering data in an HTML with an Applet?

    I have a small application I made with Swing. now, I want to make it html for use with Explorer. and I have 2 challanges: 1. How do I get use input in an Applet? (the example in the tutial only applies to showing text. 2. How do I access the database

  • KU/LI to LS in Idoc Scenario

    Hello Experts, idoc- xi - idoc in our scenrio we are getting an idoc to XI with control record as SNDPRT-KU & RCVPRT-LI in the msg mapping we are changing the control record to SNDPRT to LS & setting a dynamic SNDPRN based on some field value. we hav

  • LSMW Methods - BAPI and IDOC - why used together?

    Hi, There are four mathods available in LSMW: - Direct Input - BAPI - IDOC - BDC Among these BAPI and IDOC always go hand in hand. In case we choose to go in for IDOC, we will have to enter the partner profile settings for an inbound IDOC. But in cas