Find Multiple Form Titles

I’m working on a forms 6i to 10g upgrade project. Before we begin we want to audit our forms (about 200 in total). What I want to do is somehow find the form title of each form within my application.
Is there an easy way to do this or can i create a batch file to do this for me?

I played around with the "IFF2XML90.bat" batch file provided with Forms 10g and found that it will convert a 6i Form to a Forms 10g .xml file. This being the case, you can use this batch file to convert all of your Forms 6i forms to xml files. Then you can search the xml file for the <FormModule> tag to find the Title property of your form. The xml file will look something like the following:
<Module version="90040100">
   <FormModule Name="REC_GROUP" Title="MODULE2" ConsoleWindow="MAIN" MenuModule="DEFAULT&SMARTBAR" DirtyInfo="true">As you can see from this example the name of my 6i form is "REC_GROUP" and the title of the Form Module is "MODULE2". You should be able to write a Windows batch file or a UNIX script to look for these XML tags to find the Title of each of your forms.
Hope this helps.
Craig...

Similar Messages

  • Multiple forms on a JSF view

    Hi!
    Does somebody knows what I'm doing wrong here?
    Look at this very basic example:
    <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
    <%@ taglib uri="http://java.sun.com/jstl/core" prefix="c" %>
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <title>Test multiple forms</title>
    </head>
    <body>
    <f:view>
      <h:form>
        <h:outputText value="Field 1: " />
        <h:inputText value="#{testMultiform.field1}" /><br>
        <h:outputText value="Field 2: " />
        <h:inputText value="#{testMultiform.field2}" />
        <br>
        <h:commandLink value="Test form 1"
           action="#{testMultiform.executeForm1}">
        </h:commandLink>
      </h:form>
      <c:import url="footer.jsp"/>
    </f:view>
    </body>
    </html>and the imported file (footer.jsp) looks like this:
    <%@ page language="java" contentType="text/html; charset=UTF-8"
        pageEncoding="UTF-8"%>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
    <f:subview id="footer">
      <h:form>
        <h:commandLink value="Test form 2" action="exe2">
        </h:commandLink>
      </h:form>
    </f:subview>The example uses two forms components (one included with the c:import JSTL command), each with a commandLink component. I know that JSF permits two forms in a view. However the second commandLink, inside the second form component, is ignored. Could somebody say me the reason?
    Thanks!
    Christian

    The problem, seems to be a bug in the reference implementation from Sun (verision 1.1). Try with next version (1.1.01). Follow this link for a more extended explanation: http://www.manning-sandbox.com/thread.jspa?forumID=95&threadID=10732&messageID=33625#33625
    (if the link is broken visit the site in http://www.manning-sandbox.com/ , where th bug is explained.
    I hope this helps. Bye!
    (another) Christian

  • Print multiple forms between FP_JOB_OPEN and FP_JOB_CLOSE

    I am aware, that there are questions regarding "Printing Multiple forms", but I didn't find answers there.
    Still my system is not working as expected:
    1.  FP_JOB_OPEN is called
    2. the generated Adobe Forms function is called multiple times
    3.  FP_JOB_CLOSE is called
    This program doesn't deliver all the pages, but just the first call. How shall I solve this problem?
    (Coding should work anywhere with copy-pase.)
    data: fm_name           type rs38l_fnam,
          fp_docparams      type sfpdocparams,
          fp_outputparams   type sfpoutputparams.
    parameters: p_fpname type fpname default 'FP_TEST_02'.
    * Get the name of the generated function module
    call function 'FP_FUNCTION_MODULE_NAME'
      exporting
        i_name     = p_fpname
      importing
        e_funcname = fm_name.
    * Sets the output parameters and opens the spool job
    call function 'FP_JOB_OPEN'
      changing
        ie_outputparams = fp_outputparams
      exceptions
        cancel          = 1
        usage_error     = 2
        system_error    = 3
        internal_error  = 4
        others          = 5.
    * Call the generated function module
    call function fm_name.
    * SECOND CALL ****************************
    call function fm_name.
    * Close the spool job
    call function 'FP_JOB_CLOSE'
    *    IMPORTING
    *     E_RESULT             =
      exceptions
        usage_error           = 1
        system_error          = 2
        internal_error        = 3
        others               = 4.

    Hi ZSOLT,
    In order to call the form multiple times please do the following,
    1) Just before your FP_JOB_OPEN you need to pass the output parameters (good practice). You can also set other parameters as well (for example nodialog, preview, copies., etc)
      CLEAR  fp_outputparams.
      fp_outputparams-dest = 'PDF1'.      "Default pdf printer
      fp_outputparams-reqnew = 'X'.       "New spool request
    Now call your FM FP_JOB_OPEN with the above output parameters.
    2) Usually this step is processed in a loop. (getting your interface data into a internal table and then looping at it)
    But here I am enhancing your example code.
    In order to trigger the form multiple times you need to change some input data to the form (for example I have changed date and time below in the prepare test data sections) so that the call function fm_name gets regenerated every time there is new data
    data  l_datatypes       type sfpdatatypes.
    prepare test data
      l_datatypes-char = '#'.
      l_datatypes-string = 'Auf geht''s! '.    "#EC NOTEXT
      l_datatypes-numc = '42'.
      l_datatypes-dec = 0 - ( 12345 / 7 ).
      l_datatypes-fltp = 0 - ( 12345 / 7 ).
      l_datatypes-int = 4711.
      l_datatypes-curr = 0 - ( 12345 / 7 ).
      l_datatypes-cuky = 'JPY'.       " no decimals
      l_datatypes-quan = 12345 / 7.
      l_datatypes-unit = 'DEG'.       " 1 decimal
      l_datatypes-date = '20040613'.      
      l_datatypes-time = '100600'.         
      l_datatypes-lang = sy-langu.
    FIRST CALL ****************************
    Call the generated function module
      CLEAR fp_docparams.
      fp_docparams-langu = 'EN'.       
      fp_docparams-country = 'US'.  
      call function fm_name
        exporting
          /1bcdwb/docparams        = fp_docparams
          datatypes                = l_datatypes
          mychar                   = l_datatypes-char
         mybyte                   =
          mystring                 = l_datatypes-string
         myxstring                =
          mydate                   = l_datatypes-date
          mytime                   = l_datatypes-time
          mynum                    = l_datatypes-numc
          myint                    = l_datatypes-int
          myfloat                  = l_datatypes-fltp
          mypacked                 = l_datatypes-dec
      IMPORTING
        /1BCDWB/FORMOUTPUT       =
    prepare test data
      l_datatypes-char = '#'.
      l_datatypes-string = 'Auf geht''s! '.    "#EC NOTEXT
      l_datatypes-numc = '42'.
      l_datatypes-dec = 0 - ( 12345 / 7 ).
      l_datatypes-fltp = 0 - ( 12345 / 7 ).
      l_datatypes-int = 4711.
      l_datatypes-curr = 0 - ( 12345 / 7 ).
      l_datatypes-cuky = 'JPY'.       " no decimals
      l_datatypes-quan = 12345 / 7.
      l_datatypes-unit = 'DEG'.       " 1 decimal
      l_datatypes-date = '20100913'.                 "You need to change your data in order it to trigger a new form with the new data.
      l_datatypes-time = '10700'.                        "You need to change your data in order it to trigger a new form with the new data.       
      l_datatypes-lang = sy-langu.
    SECOND CALL ****************************
    Call the generated function module
      CLEAR fp_docparams.
      fp_docparams-langu = 'EN'.
      fp_docparams-country = 'US'.
      call function fm_name
        exporting
          /1bcdwb/docparams        = fp_docparams
          datatypes                = l_datatypes
          mychar                   = l_datatypes-char
         mybyte                   =
          mystring                 = l_datatypes-string
         myxstring                =
          mydate                   = l_datatypes-date
          mytime                   = l_datatypes-time
          mynum                    = l_datatypes-numc
          myint                    = l_datatypes-int
          myfloat                  = l_datatypes-fltp
          mypacked                 = l_datatypes-dec
      IMPORTING
        /1BCDWB/FORMOUTPUT       =
    Close the spool job
    call function 'FP_JOB_CLOSE'
       IMPORTING
        E_RESULT             =
      exceptions
        usage_error           = 1
        system_error          = 2
        internal_error        = 3
        others               = 4.
    I have tested the above code and I am getting multiple forms.
    Please try on your end and let me know if it works.
    Thanks
    Raj

  • HT2905 I have multiple album titles of the same name with different artists. How can I get them to go under one album title again?

    I have multiple album titles of the same name with different artists. How can I get them to go under one album title again?

    In iTunes(on a Mac or PC) just tap on 'Albums' rather than 'Artists' and you'll see them all together.
    You may find that there are songs mislabelled. In which case right tap on the Album or Artist and tap 'Get Info', then change to the correct name and the songs will join the rest of the songs for that Artist or Album.
    Then resync with your iPhone and all will be well.

  • Is it possible to create a form with multiple form fields on a single line?

    Is it possible to create a form with multiple form fields on a single line?  I can't find anything in the documentation or a template that does this.
    I am trying to create a "documents received" checklist with a check box on the left margin, a date-received field to the right of the check box and and a description of the document (Formatted Text) on the far right.
    In the past I have entered the Fixed Text with a word processor, published it to a PDF file, then added the check box and date fields with the Acrobat Forms editor.  I would prefer to use FormsCentral if it is possible.

    We now support multiple fields on one line. This post provides a brief overview.
    Give it a try and send us your feedback.
    Sorry it took so long.
    Randy

  • How to find custom forms in FND_FORM

    Hi All,
    I Retrieved data from fnd_form table.I got total forms.But i want only custom forms.How to find custom forms.How to retrieve only custom forms.
    Thanks& Regards,
    Raghu

    Hi,
    Edit form
    You use this form to create or change individual documents (for example, single news items). Typically, this form contains input fields in which you can create content (for example, the title or text for a news item).
    Show form
    You use this form to display a single document. Typically, the Show form displays all elements of a document (for example, the title, author, and all the text contained in a news item). Do not use entry controls on the Show form.
    RenderListItem form
    You use this form to define the layout of a list entry in a folder in the flexible user interface. Typically, you display some of the elements of a document, such as the title and summary of a news item, on this form. You call up the Show form if you want to display the entire document.
    You do not create pushbuttons or links for creating, changing, or deleting XML documents in the RenderListItem form. You define which commands are to be displayed using command groups of the flexible user interface. You can create several iViews for displaying the same XML documents with different command groups.
    ListEdit form
    You use this form to change a list of documents. Typically, this form contains pushbuttons for creating, changing, and deleting entries. You call up the Edit form if you want to change or create content. You call up the Show form if you want to display all entries.
      ListShow form
    You use this form to display a list of documents. Typically, this form only displays part of a document element (for example, the title of a news item). You call up the Show form if you want to display the entire document.
    Refer this documents
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/ee639033-0801-0010-0883-b2c76b18583a
    Regards,
    Kumar

  • Item ID for Minimize, Maximize button at system form title bar

    Hi,
    Can anyone help me out finding Item ID for Minimize, Maximize and close buttons at system form title bar (Left side Title of form and right side three buttons). I need ID for these items, if anyone knows please reply. will appreciate help on same.
    Thanks,
    Jay

    I'm tryin to get over with Item master screen strech machenism. I've Added matrix at pane 6 and position is not fixed when ever form is rezised or base product font size is changed. I've alredy tried providing values to top left width height through oexisting item vaues, I'm not using any integer value. Let me know if i can freez it's position ....... Sample code below
    oExistingItem = oForm.Items.Item("174")
    oItem = oForm.Items.Add("mtx_MFGALS", SAPbouiCOM.BoFormItemTypes.it_MATRIX)
    oItem.Top = oExistingItem.Top + oExistingItem.Height + oExistingItem.Height
    oItem.Width = oExistingItem.Width + oExistingItem.Width
    oItem.Height = oExistingItem.Width
    oItem.Left = oExistingItem.Left
    oItem.FromPane = "6"
    oItem.ToPane = "6"
    oMatrix = oItem.Specific
    oMatrix.Columns.Add("Col0", SAPbouiCOM.BoFormItemTypes.it_EDIT)
    oMatrix.Columns.Item("Col0").TitleObject.Caption = "Line #"
    oMatrix.Columns.Add("Col1", SAPbouiCOM.BoFormItemTypes.it_EDIT)
    oMatrix.Columns.Item("Col1").TitleObject.Caption = "Name"
    oMatrix.AutoResizeColumns()
    Regards,
    Jay

  • How to Open multiple form with only one screen painter file

    Hi all ,
    I want to reopen the form without closing the active form ,i want to use same srf file ..
    I have already try it but form already exist error occur .
    pl help me , how to do it ?
    how to open multiple form with same srf file without closing active forms .
    thanks in advance,
    msw

    <?xml version="1.0" encoding="utf-16" ?>
    <Application>
      <forms>
        <action type="add">
          <form appformnumber="-1" FormType="-1" type="0" BorderStyle="0" uid="BOE" title="Bill of Entry" visible="1" default_button="1" pane="0" color="0" left="365" top="62" width="801" height="410" client_width="785" client_height="372" AutoManaged="1" SupportedModes="15" ObjectType="">
            <datasources>
              <dbdatasources>
                <action type="add">            
                </action>
              </dbdatasources>
              <userdatasources>
                <action type="add"/>
              </userdatasources>
            </datasources>
            <Menus>
              <action type="enable">
                <Menu uid="1282"/>
              </action>
              <action type="disable">
                <Menu uid="5890"/>
              </action>
            </Menus>
            <items>
            </items>
            <ChooseFromListCollection>
              <action type="add">
                <ChooseFromList UniqueID="-1" ObjectType="-1" MultiSelection="0" IsSystem="1"/>          
              </action>
            </ChooseFromListCollection>
            <DataBrowser/>
            <Settings Enabled="0" MatrixUID="" EnableRowFormat="1"/>
          </form>
          <form appformnumber="-1" FormType="-1" type="0" BorderStyle="0" uid="BOE1" title="Bill of Entry" visible="1" default_button="1" pane="0" color="0" left="365" top="62" width="801" height="410" client_width="785" client_height="372" AutoManaged="1" SupportedModes="15" ObjectType="">
            <datasources>
              <dbdatasources>
                <action type="add">
                </action>
              </dbdatasources>
              <userdatasources>
                <action type="add"/>
              </userdatasources>
            </datasources>
            <Menus>
              <action type="enable">
                <Menu uid="1282"/>
              </action>
              <action type="disable">
                <Menu uid="5890"/>
              </action>
            </Menus>
            <items>
            </items>
            <ChooseFromListCollection>
              <action type="add">
                <ChooseFromList UniqueID="-1" ObjectType="-1" MultiSelection="0" IsSystem="1"/>
              </action>
            </ChooseFromListCollection>
            <DataBrowser/>
            <Settings Enabled="0" MatrixUID="" EnableRowFormat="1"/>
          </form>
        </action>
      </forms>
    </Application>

  • Creating a template for multiple forms

         Is it possible to create a template to use in multiple forms
    Thanks
    Roger

    Hi Roger,
    FormsCentral does not currently support user-defined form templates. However, there are a couple of options available that you might find useful.
    To define/use a template for an entire form:
    1. Create a form that will act as your template.
    2. To create a new form based on that template simply click the "Duplicate" button in the My Forms dashboard.
    The new form will contain the same set of form items as the template form.
    To define/use a template for one or more form items that are common to many of your forms:
    1. Create a form containing the template form items.
    2. To use the fields in different forms you can:
         i. Open the template form.
         ii. Select the form item(s) and type Ctrl+C.
         iii. Create or open the target form.
         iv. Type Ctrl+V to paste form items into the target form.
    Regards,
    Brian

  • H:inputtext not working with multiple forms in JSF2.2

    h:inputText is not working in the latest JSF2.2 with multiple forms. I have 2 forms
    form1 have: one command button and one input text
    form2 has: one input text and one output label
    on click of command button in form1, i am rendering the form2(both outputlabel and input text).
    but only output label is rendered properly with correct values (corresponding getter method gets called and value is displaying) but the input text is not calling the corresponding getter method hence showing null.
    Note: we noticed this issue only if we use multiple forms, within single form its working fine. also it worked fine in JSF2.0
    Version used: JSF api - 2.2 (com.sun.faces) JSF impl - 2.2 (com.sun.faces)
    let me know if anyone have solution to handle this.
    the forms are not nested and both the beans are in View scope.  
    <h:form id="form1" prependId="false">
    <a4j:commandLink id="actionEdit" title="Click" action="#{bean.action}" 
    render="paymentInstructionDetail" styleClass="iconLarge edit" />
    </h:form>
    <h:form id="form2" prependId="false">
      <a4j:outputPanel ajaxRendered="true" id="paymentInstructionDetail">
      <h:inputText value="#{bean1.amount}" id="sample"/>
      <h:outputLabel value="#{bean1.amount}" id="sampleLabel"/>
     </a4j:outputPanel>
    </h:form>

    Your link doesn't work. Do you mind reporting it?

  • Finding a page title

    I'm trying to build a dynamic page navigation portlet (based on the the three structure of the pages). Like the "Display Child Pages As Links" - functionality.
    But I can't find the page titles anywhere.
    In the WWPOB_PAGE$ table only the title_id is to be found, and the same goes for the WWPOB_USER_BROWSE_PAGES view. Bu I can't find the actual page titles.
    Can anybody help me out ?
    Thanks in advance,
    Christian Ballisager
    null

    As far as using a book of multiple documents, or a single document goes, it's largely a matter of preference and convenience, though there is some element of safety also in using a book -- if one section becomes corrupt, only that section is damaged. It also is much easier to navigate a shorter document.
    Presets can hold page size, orientation, margins, bleeds, columns and page counts, but can have only a single master page. Templates can have both multiple document pages and multiple master pages applied, as well as pre-defined styles and color swatches and content objects. A template is a "real" document that can contain anything that any other document may have.
    The only difference between a template and a regular InDesign Document is the file extension, which triggers a different default behavior. The .indt extension opens an untitled copy by default so you won't overwrite the template. The .indd extension opens as the original by default. You can convert from one to the other just by changing the extension.
    Peter

  • Creating Single/Multiple Form(s) With Spry Tabbed System

    I hope I'm in the right area:
    I would like to know if anyone has any success with create a multiple form or a single form with a Spry tabbed system?
    The project I'm doing requires an ordering system with the use of Spry tabs and I'm not sure if it will work. I'm familiar with creating forms, but unfamiliar with processing it with this kind of system.
    I would appreciate some insight.
    Thank you.

    Okay, I've reviewed the example you gave me and tested it and it worked fine. But when I tried to implement it on my form, the radio button selection didn't post. I'm going to go through this little by little:
    <?php
        if ((isset($_POST['WebPkg']))) {
        echo ($_POST['WebPkg']);                                           
    ?>
    <form id="form1" name="form1" method="post" action="<?php echo $_SERVER['PHP_SELF']; ?>">
    <div id="TabbedPanels1" class="TabbedPanels">
    <ul class="TabbedPanelsTabGroup">
    <li class="TabbedPanelsTab" tabindex="0">Choose A Plan</li>
    <li class="TabbedPanelsTab" tabindex="0">Website Add-Ons</li>
    <li class="TabbedPanelsTab modif" tabindex="0">Premium Upgrades</li>
    <li class="TabbedPanelsTab modif" tabindex="0">Review &amp; Complete</li>
    </ul>
    <div class="TabbedPanelsContentGroup">
    <div class="TabbedPanelsContent">
    <table width="875" border="0" cellpadding="1" cellspacing="1" class="select-plan-table">
      <tr>
        <td class="plans-price"> <span class="price-big"><input value="39.99" title="" class="radio" id="WebsitePkg1" name="WebPkg" type="radio" />$39</span><span class="small-price">.99/mo</span></td>
      <td class="plans-price"><span class="price-big"><input value="79.99" title="" class="radio" id="WebsitePkg5" name="WebPkg" type="radio" />$79</span><span class="small-price">.99/mo</span></td>
        <td class="plans-price"><span class="price-big"><input value="114.99" title="" class="radio" id="WebsitePkg10" name="WebPkg" type="radio" />$114</span><span class="small-price">.99/mo</span></td>
        <td class="plans-price"><span class="price-big"><input value="149.99" title="" class="radio" id="WebsitePkg15" name="WebPkg" type="radio" />$149</span><span class="small-price">.99/mo</span></td>
      </tr>
    </table>
    <div class="additional-pages">
          <p><input class="cf_inputbox" maxlength="150" size="30" title="" id="addpages" name="addpages" type="text" value="0"/></p>
    </div>
    <p><input type="image" src="../images/stories/add-ons.png" width="135" height="33" border="0" style="background: none; border: none; width: 135px; height: 33px; border: none; float: right; cursor: pointer;" onclick="TabbedPanels1.showPanel(1); return false;" name="websiteaddons" alt="Website Add-Ons" ></p>
    </div>
    <div class="TabbedPanelsContent">--second tab--...more parts to the form...</div>
    <div class="TabbedPanelsContent">--third tab--...more parts to the form...
    <input type="image" src="../images/review-and-complete.png" height="33" width="135" style="background: none; border: none; width: 135px; height: 33px; border: none; float: right; cursor: pointer; margin-right: 3px;" onclick="TabbedPanels1.showPanel(3); return false;" name="gotoreview" alt="Review & Complete" />
    </div>
    <div class="TabbedPanelsContent">--fourth tab--
    <p><?php echo((isset($_POST["WebPkg"]))?$_POST["WebPkg"]:"") ?></p>
    <p><input type="checkbox" name="agreement" id="agreement" />Yes, I have completely read, understand, and agree to all articles and policies as outlined in Rewebbed's <a href="#">Terms & Agreement</a>.</p>
    <input name="submit" type="button" value="Account & Billing Info" />
    </div>
    As you can see on Tab 4, I'm expecting  <p><?php echo((isset($_POST["WebPkg"]))?$_POST["WebPkg"]:"") ?></p> to post the sent information with the 'Review & Complete' button clicked in Tab 3. Then in Tab 4, this will be another form that has the posted information to be sent to a payment gateway.
    So why wouldn't it post in the fourth tab?

  • Finding adobe form name dynamically

    Hi Guys,
    I am working on Adobe forms.
    I am using the same interface to multiple forms.
    I want to find the currently executing form name dynamically in the form interface.
    Based on the form i need to display the different data for some fields.
    Regards,
    Ramesh

    Hi Larissa,
    You can use the below code to resolve the naming issue:
    Download_File is node mapped to the download link for PDF.
                             //Get the Attribute Info of Attribute for PDF
                              IWDAttributeInfo attrinfo = wdContext.nodeDownload_File().getNodeInfo().getAttribute(IPrivateViewName.IDownload_FileElement.DATA);
                              ISimpleTypeModifiable simpletype = attrinfo.getModifiableSimpleType();
                             //Get modifiable Binary Type
                             IWDModifiableBinaryType binarytype = (IWDModifiableBinaryType)simpletype;
                             //Set the File Name
                             binarytype.setFileName("FileName");
                             //Set the Mime Type to PDF
                             binarytype.setMimeType(WDWebResourceType.PDF);
    Hope this resolves the issue...
    Regards,
    Arafat

  • How to find which form fields are duplicated

    OK I've been making several forms in PDF to merge together at a later date. Now I merged them but its telling me I have multiple form text fields that are named the same. How can I find out all of which form text fields are named the same so I can change them. Is there a search function to do that or not?
    -Darian

    Thank you for your response and if i wanted to remove the form fields then this would defiantly help me. I am actually trying to put a few different PDFs together to make one big PDF and I have form fields that are named the same, per the message I get when merging 2 PDF docs. Because there is so many form fields to go through I was wanting to know if there was a quick way to see all the form fields that are named the same so I can go change the name of them. I want to keep all the form fields just cant have any of them named the same. thanks

  • RetrorespectiveActivation of Multiple Form 16 in mid- of the financial year

    Hi All,
    We have mainatined TAN as per the company Code in feature 40ECC. Now we want to have multiple Form 16 if there is change in company Code of an employee for the financial year 2009.
    We have not activated Multiple Form 16 Switch so far. Now in the last month of financial Year 2009 that in March'2010 (period 12/2009) we want to activate Multiple Form 16 switch from 01.04.2009. After activation Multiple form 16 Switch, we are planning to trigger retro for all employees from 01.04.2009.
    But we are not very much sure what will be the impact of activating Multiple Form 16 switch now in the last period of the financial year.
    Required your valuable inputs on this.
    Thanks,
    Ravinder

    Hi,
    Check whether multiple Form 16 switch is active or not.
    In case this is active, then the Form 16 will be generated as under:
    Company A - showing earnings from 01.04.08 to 31.12.08 only
    Company B - showing earnings from 01.01.09 to 31.03.09 as current earnings and from 01.04.08 to 31.12.08 as income from previous employment.
    In case multiple Form 16 is not active, then the Form 16 that you are getting is correct. However, in this case you need not print the Form 16 of company A. Only the Form 16 from the company code where the employee belongs to as on 31.03.2009 (i.e. last day of the FY) will be printed. And in this case the Form 16 will include complete earnings from 01.04.2008 to 31.03.2009 as current earnings.
    Hope this clarifies your query.
    VK

Maybe you are looking for

  • What type of cable do I need to connect my mac to the TV.

    I have a Dynex tv and a newish 15 inch Macbook Pro. I also already have an HDMI cable that fits into the TV so I just need to know what to get to connect the HDMI cable to the macbook.

  • Slow Internet Connection Speeds caused by Ethernet Controller Driver

    Problem:  Internet connection speeds are 1/10 of available connection speed. 1. Problem statement is based on running speed tests at cnet, speedtest.net, and AT&T. 2. I am paying for 12 MBps down load speed but I only get about 1.5 MBps. 3. Other com

  • Use of a variable to reference a text box in an instance

    Hi, I have been enjoying the discussions on this board and have learnt a lot from them thus far. I have a question, but I don't know if I can't word it correctly, or I am looking in the wrong place. Lets say I have 3 Movie Clip Symbols in  my Library

  • Disable Patch Management temporarily on clients?

    I've just noticed now that we've got ZPM enabled it seems to get a bit overexcited and start trying to patch machines while they're still being configured during our imaging process. For example our scripts go: Image > drivers Novell Client > ZCM Age

  • QIP6200 Default Settings Reset

    Have a QIP6200 HDTV FIOS set top box. Prior to last upgrade with power off you would press 'menu' and get the internal set top box menu including one to reset the box. With the last upgrade, the standby mode uses the Menu button to wake up the box. I