Make an input form in pdk-struts

Hi
I have an application that uses ADF BC4J as model and jsp as view. One of the pages has an master/detail input from.
I have installed struts-pdk and I can build and deploy simple text pages, which are visible as portlets in the portal. Linking between these pages, within the application also works.
How can I make an input form(either using struts-pdk or something else!) in the portal???
And how do I combine the input form to my existing ADF model???

You need to start with a table in a sheet that has some columns with headers  Once you create a new tab you can then create an input form for the table. This is in Numbers for iOS, not Mac OS X.

Similar Messages

  • Input form

    How can I make the input form empty?
    Follow the sample I drop the viewobject as input form from data control palette to jsp page.
    When I run this data-bound page, it always display the last row data in table.
    How can I make the input empty? because I want the customers to enter the data in the input field.
    thanks

    The way I've dealt with that is to use a create action when going to the page in my struts. The actions are in your data control pallet in the operations folder. Each VO has it's own actions.

  • JDev10g and ADF/Struts input form errors

    I followed a demo for creating an input JSP form from Business Components. However, although I can create and run a report or read-only form without a problem, I cannot create and run an input form at all as I keep getting the following error:
    javax.servlet.jsp.JspException: No getter method for property FirstName of bean org.apache.struts.taglib.html.BEAN
         at org.apache.struts.util.RequestUtils.lookup(RequestUtils.java:968)
    Any ideas?

    Justin,
    This usually happen because the data binding called FirstName cannot be found in the binding container associated your JSP.
    The binding container associated with your page is most likely the name of your page with UIModel.xml.
    You can see the list of bindings available in the binding container by selecting the DataBinding.cpx file in the Navigator and look at the Struture Pane.
    The FirstName binding might not be thre of the wrong binding container may be associated with the page.

  • Web app: How can I make a web app input form post directly to a sub category

    Please, how can I go about this? Some of the ideas coming to my head is to  replace the section I require with the  generated webapp input form code with this:
    <input type="radio" name="CAT_Category" value="{module_category, ID} onclick="javascript: return false;" >2013 /> // Not tested because am not sure of the markup
    Am I on point ? Or is there any other way I can get this done.

    I Trickster, pardon me if am not clear enough. But this is it. I have many BC Categories setup for different web apps. If you use the module {module_categorylist} only. BC will populate all the categories on the BC site, instead of a specific category  relevant to the web app. If it is {module_categorylist, categoryID}, you are telling BC to use the the categories in a specific category.
    When you say that you want to assign a web app item to a sub-category... do you mean the built in BC categories . I want to do this via the web app input form not through the admin.
    Do you have a top-level category that contains all the relevant sub categories that the user could use to classify/categorize the web app item upon submission?  Yea I have a top category that the user could use. It is this top-level category ID, I have used with the categorylist module.
    If you don't want the user to choose the sub-category themselves, how do you plan to derive the sub-category anyway? Thanks again Trickster. You have provided the solution to that with the hidden input field code you shared earlier. The sub-category has been pre setup as usual in BC and the sub-category ID would be used as you instructed in the code. This is intended for another web app that won't require users selecting a category. This is the example you shared:
    <input type="hidden" name="CAT_Category" value="my category ID"/>
    Using my example above I was able to test and have it working (using {module_categorylist} with the SELECT element) on a web app input form and when I submitted the new web app item it was classified in the category I chose. Yes Trickster, it works for me too that way. the web app item was classified perfectly, but if you go to your the web app item submitted at the admin-end, you will discover in that the category the user selected in the front-end is not selected, even though the item was classified
    I have highlighted it here: http://screencast.com/t/dwiXzBFXp
    The option selected  by the user is not captured. It often defaults to the 2012, even when the user selected 2013 and the item has been classified as 2013.
    I hope am more clearer. Thanks for all the effort.

  • Pdk struts jsp tags not working.

    The problem we have hited is that pdk-struts tags are not rendered corectly:
    From next piece of code:
    <pdk-html:form action="/auth_portlet/doLogin.do" name="loginFormBean" type="passport_portlets.auth_portlet.loginFormBean">
    <%--<pdk-html:errors/>--%>
    <table width="100%" cellpadding="0" cellspacing="0" border="0">
    <tr>
        <td>Username:</td>
        <td><pdk-html:text property="username"/></td>
    </tr>
    <tr>
        <td>Password:</td>
        <td><pdk-html:text property="password"/></td>
    </tr>
    <tr>
        <td></td>
        <td><pdk-html:submit value="Login"/></td>
    </tr>
    </table>
    </pdk-html:form>We recieve next output in the browser window:
    <form name="loginFormBean" method="post" action="/passport_portlets/auth_portlet/doLogin.do">
    <table width="100%" cellpadding="0" cellspacing="0" border="0">
    <tr>
        <td>Username:</td>
        <td><input type="text" name="username" value=""></td>
    </tr>
    <tr>
        <td>Password:</td>
        <td><input type="text" name="password" value=""></td>
    </tr>
    <tr>
        <td></td>
        <td><input type="submit" value="Login"></td>
    </tr>
    </table>
    </form>But it's wrong output, there aren't any qualifiing naming prossed, as much as no hidden fields included into form. We don't receive any kind of errors, just such simple output in browser.

    to be more detailed and specific, source follows
    provider.xml
    <?xml version = '1.0' encoding = 'UTF-8'?>
    <?providerDefinition version="3.1"?>
    <provider class="oracle.portal.provider.v2.DefaultProviderDefinition">
       <session>true</session>
       <passAllUrlParams>false</passAllUrlParams>
       <portlet class="oracle.portal.provider.v2.DefaultPortletDefinition">
          <id>1</id>
          <name>AuthPortlet</name>
          <title>portlet name</title>
          <description>description</description>
          <timeout>40</timeout>
          <showEditToPublic>false</showEditToPublic>
          <hasAbout>false</hasAbout>
          <showEdit>false</showEdit>
          <hasHelp>false</hasHelp>
          <showEditDefault>false</showEditDefault>
          <showDetails>false</showDetails>
          <renderer class="oracle.portal.provider.v2.render.RenderManager">
             <renderContainer>true</renderContainer>
             <renderCustomize>true</renderCustomize>
             <autoRedirect>true</autoRedirect>
             <contentType>text/html</contentType>
             <showPage class="oracle.portal.provider.v2.render.http.StrutsRenderer">
             <defaultAction>/auth_portlet/doDefault.do</defaultAction>
             </showPage>
          </renderer>
       </portlet>
    </provider>
    web.xml
    <?xml version = '1.0' encoding = 'UTF-8'?>
    <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">
    <web-app>
        <description>web.xml file for passport portlets package</description>
      <context-param>
        <param-name>oracle.portal.log.LogLevel</param-name>
        <param-value>4</param-value>
      </context-param>
      <servlet>
        <servlet-name>SOAPServlet</servlet-name>
        <servlet-class>oracle.webdb.provider.v2.adapter.SOAPServlet</servlet-class>
      </servlet>
      <servlet>
        <servlet-name>action</servlet-name>
        <servlet-class>org.apache.struts.action.ActionServlet</servlet-class>
        <init-param>
          <param-name>config</param-name>
          <param-value>/WEB-INF/struts-config.xml</param-value>
        </init-param>
        <load-on-startup>1</load-on-startup>
      </servlet>
      <servlet-mapping>
        <servlet-name>SOAPServlet</servlet-name>
        <url-pattern>/providers</url-pattern>
      </servlet-mapping>
      <servlet-mapping>
        <servlet-name>SOAPServlet</servlet-name>
        <url-pattern>/providers/*</url-pattern>
      </servlet-mapping>
      <servlet-mapping>
        <servlet-name>action</servlet-name>
        <url-pattern>*.do</url-pattern>
      </servlet-mapping>
        <session-config>
            <session-timeout>35</session-timeout>
        </session-config>
        <mime-mapping>
            <extension>html</extension>
            <mime-type>text/html</mime-type>
        </mime-mapping>
        <mime-mapping>
            <extension>txt</extension>
            <mime-type>text/plain</mime-type>
        </mime-mapping>
    </web-app>
    struts-config.xml
    <?xml version="1.0" encoding="windows-1251" ?>
    <!DOCTYPE struts-config PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 1.1//EN" "http://jakarta.apache.org/struts/dtds/struts-config_1_1.dtd">
    <struts-config>
      <form-beans>
        <form-bean name="loginFormBean"
                   type="passport_portlets.auth_portlet.loginFormBean">
          <form-property name="username" type="java.lang.String"/>
          <form-property name="password" type="java.lang.String"/>
        </form-bean>
      </form-beans>
      <action-mappings>
        <action path="/auth_portlet/doDefault"
                type="passport_portlets.auth_portlet.doDefaultAction">
          <forward name="loged" path="/auth_portlet/showLoginState.jsp" redirect="true"/>
          <forward name="notloged" path="/auth_portlet/showLoginForm.jsp" redirect="true"/>
        </action>
        <action path="/auth_portlet/doLogin"
                type="passport_portlets.auth_portlet.doLoginAction"
                name="loginFormBean"
                scope="request"
                validate="true"
                input="/auth_portlet/showLoginForm.jsp">
          <forward name="success" path="/auth_portlet/showLoginState.jsp" redirect="true"/>
          <forward name="failure" path="/auth_portlet/showLoginForm.jsp" redirect="true"/>
        </action>
      </action-mappings>
      <message-resources parameter="passport_portlets.ApplicationResources"/>
    </struts-config>
    showLoginForm.jsp
    <%@ page contentType="text/html;charset=windows-1251"%>
    <%@ taglib uri="http://xmlns.oracle.com/portal/pdk/struts/tags-html" prefix="pdk" %>
    <pdk:xhtml/>
    <pdk:form action="/auth_portlet/doLogin.do" name="loginFormBean" type="passport_portlets.auth_portlet.loginFormBean" method="post">
    <table width="100%" cellpadding="0" cellspacing="0" border="0">
    <tr>
        <td>Username:</td>
        <td><pdk:text property="username"/></td>
    </tr>
    <tr>
        <td>Password:</td>
        <td><pdk:text property="password"/></td>
    </tr>
    <tr>
        <td></td>
        <td><pdk:submit value="Login"/></td>
    </tr>
    </table>
    </pdk:form>all works fine, except the problem that pdk-struts tags in jsp page aren't processed correctly, they output simple html output, which is not formated to inline rendering rules (qualified naming of fields, hidden fields with all values, etc).
    Maybe I'm missing something?

  • The web app input form is not holding what i enter in it

    Am setting up a business directory using the web apps, and two of fields are custom, one for map and video, {tag_map embed} {tag_video embed}. Now when I add a business using the web app input form. All the other fields work perfect in the list and detail page, but in the detail page where the map and video tags are, they are empty, the form isn’t taking what I enter in the map and video field. I tried text (string) and text (multiline), no change. But when I add the business in the back end, it works. So it makes me think there is something wrong with the input form. I also try with the edit layout form once the business was added, that didn’t work too.
      Any ideas what would be causing this to happen

    Delete them from your library including files, the go to the iTunes Store and select "Purchased" from the Quick Links side bar on the right. Go through all the tabs to download again for free

  • Dynamic Input form with PLAN and Actual Confusion (YEAR-row / MONTH-Column)

    Hi Guru's,
    Assume that
    Row Axis: YEAR
    Column Axis: MONTH
    Page Axis: VERSION
    From the VERSION dimension, we re able to get Budget Year and the latest Actual Month.
    For example, As u see below, the budget year is 2014 and we retreive + or - 2 years of budget year which is 2014.
    And the latest actual month is Jun.
    So is it possible to make a dynamic report that can retreive actual data for the budget year and latest actual month of selected VERSION and also rest of the cells should be inputtable.
    By the way, we have a dimension which named as for the PLAN , ACTUAL etc.
    So what do you suggest for that case?  Is there any way to handle without VBA?
    Thanks to all in adv.
    MONTH / YEAR
    Jan
    Feb
    Mar
    Apr
    May
    Jun
    Jul
    Aug
    Sep
    Oct
    Nov
    Dec
    2012
    2013
    2014
    2015
    2016

    Hi Sadi,
    I agree Vadim, you do not need extra dimension for time. You can "report" in Bex analyzer with this format but BPC reporting/input schedules is not dynamic enough. Because you can not use property in axis but in Bex it is possible. Maybe you can change input form design because where is other contex in your form, 2012.01 what, price or stocks or sth? You have to specify account and entity. I think  it is useless design to input data. I added figure for sales model. In this figure, you can manage actual / budget with "if" and "today" excel formulas. And you can easily link your olap member in column axis. I think it will help you.
    Best regards
    Haşim.

  • Passing Fields between List Table and Input Form - selection list

    Hi
    I have to build up an input form with a lot of values. I like to provide something like a selection list, where the user can select from. An other way would be to make some tables with the possible values and pass them after clicking the row in a corresponding form field.
    I couldn’t find a solution to do that.
    Regards and thanks for helping
    Werner
    Message was edited by: Werner Zecchino

    Hi,
    There is no "clean" way of doing this with the current version.
    You can have a form with a few labels and a button for each label. Each button will raise a different event (user defined) which you can handle differently, i.e. run different queries, calculate fields, etc.
    Lior

  • 2 different submit buttons on an input form

    Is there a way that on my input form, I can have two submit buttons?
    Of course they will be labeled differently. The catch is, the difference between the two buttons is not conditional.
    Here's my form flow;
    Person X has a meeting with a supervisor. But in some cases, there can be more then one supervisor.
    So, the user fills in the supervisor's info and can either click Continue, which takes the user to a thank you page; OR the user clicks a button that's labeled 'Add Supervisor'.
    Is this possible? Would I use a custom trigger?
    Thanks!
    Peter T

    Hi Peter,
    I don´t think this is possible, because you can only define one button (e.g. ADDT´s KT_Insert1) for triggering the respective transaction, and any possible attached Custom Transaction is a "slave" of this main transaction.
    But in some cases, there can be more then one supervisor
    would it make sense to have the user select one or more supervisors from an array of Comma Separated Checkboxes ?
    Cheers,
    Günter Schenk
    Adobe Community Expert, Dreamweaver

  • Converting to Input form

    Hi All,
          I have created a report by drag and drop in EPM 10 and now I want to make this an input form how do I do this. I want to know the advantages and disadvantages of having an input form like this also
    thanks

    Hi Raj,
    For changing a report to input form, go to sheet options. Select "Use as Input Form". Refresh.
    Hope this helps.

  • How to make a ADOBE FORM as interactive??

    Hi experts,
                       Please anybody share how to make a ADOBE FORM interactive ? It means the content of the form ( text field etc.,) can be varied ( selected dynamically ) and also the form should be freeze later , so that it cannot be edited again ,.
                    Thanks in advance!!

    Hi shukla,
    Thanks for u r response.
    Here my problem is i created webdynpro component view with interactive element .And i set the all required properties also like checking enable checkbox ,pdfsourcr,formname allthe requird things i did and i developed one adobeform using sfp tcode. In that form they are some input fields are their. and i activated every thing sucessfully.
       while executing webdynpro app i am getting pdf also.But in that pdf i cant able to fill the input fields..i checked with javascript code , and different layouts also but still it will be not editable in pdf..
    I need the solution for this........ Pls help me, I stucked with thispoint ,and its urgent...
    Regards,
    Venkat.

  • How to make a tabular form readonly based on an item value

    Hi everyone,
    I am getting there, but I need to make a tabular form read-only based on an item value.
    I've copied this from somewhere (thanks) and changed it for my needs and it works great to set the second column of my form
    to read only.
        var els = jQuery('#Entry_Form input[name="f02"]');
        /*var r = confirm("els is " + els);*/
        els = els.filter(function(index){
          return jQuery(this).val() != "";
        });Just need to set the jQuery selector to jQuery("td[headers='PRODUCT_NAME']"), cos that's my column name.
    also need to give a static id of Entry Form to the form.
    I'll try to understand what this code means exactly one of these days, but now I need to make
    the whole tabular form read only based on a text item, :P5_CONTROL.
    Grateful for any help on this, in the above format if possible. Greek to me but compact and it works.
    Regards.
    Leckraj

    Hi,
    actually, there is no code, just one dynamic action. You may have to change the event which triggers it.
    Event: Change
    Selection Type:     Items(s)
    Item(s): P1_ED     
    Condition: equal to     
    Value: D
    True Action 1
    Action: Disable
    Fire On Page Load: yes
    Selection Type: jQuery Selector
    jQuery Selector: input[id^="f"]
    True Action 2
    Action: Disable
    Fire On Page Load: yes
    Selection Type: jQuery Selector
    jQuery Selector: input[id="check-all-rows"]
    False Action 1
    Action: Enable
    Fire On Page Load: yes
    Selection Type: jQuery Selector
    jQuery Selector: input[id^="f"]
    False Action 2
    Action: Enable
    Fire On Page Load: yes
    Selection Type: jQuery Selector
    jQuery Selector: input[id="check-all-rows"]
    Regards, Garry

  • How to Make a Registration form

    Hi
    Can any one please tell me how to make a registartion form in Oracle9iAS Portal
    for e.g
    Login Id..
    Password..
    First Name..
    etc
    i want to insert data and then login with that user name and password actually in which table should i insert the data .....
    Any other suggestions which can solve the purpose would be of great help
    Please Help!!
    Regards
    Pooja

    In the PDK-Java is Subscriber Registration Portlet (see: http://portalstudio.oracle.com/servlet/page?_pageid=414&_dad=ops&_schema=OPSTUDIO&_mode=3)
    Please, check that one first.
    Regards,
    Jari
    null

  • Create Input Form

    I started to build a Fusion App with EJB-JPA business layer.
    I am working to create an Input Form but I can't follow exactly the paragraph 26.6 of Fusion Dev. Guide (create an Input Form) because I can't have a createInsert operation on my DataControl.
    How can I create an Input Form into application whit DacaCOntrol created from EJB-JPA business components ?

    I am very frustrating , it is ever more clear for me that it's impossible to build a nice Fusion App without to use the SDF BC .
    In this case I have a entity , Account .
    Simply I want to create a form to insert all fields of Account.
    Then I dragged the accountFindAll collection from data control and dropped it as ADF Form.
    After, I have created 1 methodAction to call the persistAccount (Account) method and one action to initially have an Account object as current row of accountFindAll iterator.
    Seem all ok , or not ?
    Instead I have a lot of problem :
    1) when using the page to insert Account and after return to other page listing all Account , I see 2 Account created with the same data, one is Account really inserted in DB and another is Account stored in current row of accountFindAll iterator
    2) when I reuse the insert page in the second time the account form is populated with data previously inserted
    please help me ... I want to make a form to create a Simple object but I have a EJB-JPA business layer ,not ADF BC , it's possible ???
    This is my page def :
    <?xml version="1.0" encoding="UTF-8" ?>
    <pageDefinition xmlns="http://xmlns.oracle.com/adfm/uimodel" version="11.1.2.60.17" id="createAccountPageDef"
    Package="admin">
    <parameters/>
    <executables>
    <variableIterator id="variables"/>
    <page path="templates.mainTemplatePageDef" id="ptb1" Refresh="ifNeeded"/>
    <iterator Binds="root" RangeSize="-1" DataControl="AdminServiceLocal" id="AdminServiceLocalIterator"/>
    <accessorIterator MasterBinding="AdminServiceLocalIterator" Binds="accountFindAll" RangeSize="-1"
    DataControl="AdminServiceLocal" BeanClass="org.savino.hb.model.entity.Account"
    id="accountFindAllIterator" Refresh="never"/>
    <invokeAction id="ia1" Binds="Create" Refresh="prepareModel"/>
    <accessorIterator id="userFindAllIterator" MasterBinding="AdminServiceLocalIterator" Binds="userFindAll"
    RangeSize="25" DataControl="AdminServiceLocal" BeanClass="org.savino.hb.model.entity.User"
    Refresh="prepareModel"/>
    <!--
    <accessorIterator MasterBinding="accountFindAllIterator" Binds="userList" RangeSize="25"
    DataControl="AdminServiceLocal" BeanClass="org.savino.hb.model.entity.User"
    id="userListIterator"/>
    -->
    </executables>
    <bindings>
    <attributeValues IterBinding="accountFindAllIterator" id="dataSaldo">
    <AttrNames>
    <Item Value="dataSaldo"/>
    </AttrNames>
    </attributeValues>
    <attributeValues IterBinding="accountFindAllIterator" id="descr">
    <AttrNames>
    <Item Value="descr"/>
    </AttrNames>
    </attributeValues>
    <attributeValues IterBinding="accountFindAllIterator" id="iban">
    <AttrNames>
    <Item Value="iban"/>
    </AttrNames>
    </attributeValues>
    <attributeValues IterBinding="accountFindAllIterator" id="saldo">
    <AttrNames>
    <Item Value="saldo"/>
    </AttrNames>
    </attributeValues>
    <action IterBinding="accountFindAllIterator" id="Create" RequiresUpdateModel="true" Action="createRow"/>
    <methodAction id="persistAccount" RequiresUpdateModel="true" Action="invokeMethod" MethodName="persistAccount"
    IsViewObjectMethod="false" DataControl="AdminServiceLocal"
    InstanceName="data.AdminServiceLocal.dataProvider"
    ReturnName="data.AdminServiceLocal.methodResults.persistAccount_AdminServiceLocal_dataProvider_persistAccount_result">
    <NamedData NDName="account" NDValue=""
    NDType="org.savino.hb.model.entity.Account"/>
    </methodAction>
    </bindings>
    </pageDefinition>
    Edited by: Kronos72it on Oct 6, 2011 6:14 PM
    any reply ?

  • Convert dynamic form to dynamic input form

    Hi All,
    I am using Jdeveloper 11.1.2.4.
    As a part of a requirement, I have created a dynamic form built out of a read only view object.
    On a user event (button press), I want to convert the form into an input form to allow the user to make suitable change to data and save to the database.
    At this stage I have programmatic access to the table name which is being used to create the dynamic form.
    Please suggest on how to convert the dynamic form into input form.
    Best Regards,
    Ankit Gupta

    <cfupdate> process data from the form scope. You are
    not putting your
    role datum into the form scope. You need to scope the
    variable in your
    cfset(s).
    <cfset form.roleColumn = form.role=>
    But I am not sure this would work well. It is probably better
    if you
    write your own SQL. <cfinsert> and <cfupdate> are
    for very basic
    database operations. Once you start putting other processing
    requirements in, such as this, they quickly become
    inadequate.
    Try replacing your <cfupdate> with a <cfquery>
    tag something like this.
    <cfquery datasource="my_DSN">
    UPDATE my_table
    SET lastName = '#form.lastName#',
    firstName = '#form.firstName#',
    #form.role# = true
    WHERE key = value
    </cfquery>
    I made my best guesses at how this SQL would look based on
    the examples
    you have provided. You'll have to finish it off based on your
    actual
    requirements.
    Mikelaskowski wrote:
    > Thanks,
    > I really like your solution. It definatly sounds a lot
    easier.
    > I am still having a little trouble though. I am probably
    missing something
    > silly (especially in my cfupdate tag) as I am a little
    new at this stil.
    >
    > When I used your code in my action page I get the
    following error:
    > Error Occurred While Processing Request
    > Variable PRESIDENT is undefined. <--when president is
    selected in the role
    > field. It changes nicely when another is selected.
    >
    > Here is my current code on my action page:
    >
    >
    > Thanks Again!!!
    >
    > <CFSET lastFirst = lastName & ", " &
    firstName>
    > <CFSET roleColumn = Evaluate(role)>
    > <cfupdate datasource="my_DSN"
    tablename="my_table">
    > <html>
    > <head>
    > <title>Title</title>
    > </head>
    > <body>
    > <cfoutput>The role is #roleColumn#<br>
    > The value is #lastFirst#</cfoutput>
    > </body>
    > </html>
    >

Maybe you are looking for

  • No reports displayed in MSS Report Launchpad

    Hello everybody, We set up ESS/MSS on a distributed environment. Backend:      ECC 6.0 EhP 3      Single-ABAP Stack      Installed Backend Component EA-HR 603      Activated Backend Function EA_FIN_1 Portal:      NW 7.0 SPS 17      Single-Java Stack

  • Need to place the window only in last page in script

    Hi,   I want to place the footer window only in the last page.If it has 2 pages the footer window shhould come in second page only if there is only 1 page then it should come in the first page. can anyone tell me how to do this in Script.

  • Acrobat Pro X, Not all fill in text prints, help!!

    I am new to Acrobat. My problem is a fillable form that only prints the keyed in text does not always print the text. All keyable fields are marked visable but in print preview the keyed text does not show and does not print. I really need help. Than

  • Is it possible to do auto numbering?

    I'm new to ID3. I'm wondering if there is a way to create a field or text frame and then have it populated with numbers in sequence order. I want to make race number bibs for my local high school cross-country teams. I'm thinking of setting up the or

  • Module Pool Progrmaing Table Control

    Hi Experts, I Have Created a Module pool Program, In that I have add a table Control. i have write all logic and i have to update to the database also. Now my Requirement is when i am enter the data in the table control in first field after that i pr