User Entered - Required and dynamic table

Hi all,
I am using LiveCycle Designer 7.1, and I need a little help with scripting. In my form I have a page with three major questions. underneath each questions I have the sentence "If the answer is YES:" and some questions that relate to major question above them. My task is if the user choose YES in the major question all the questions that related to the major should become "User Entered - Required". How can I do That?
Secondly, In the same form I have a page with dynamic table. The last column of the table is percentage, and I need that column values won't cross the 100%. Please help me
Thanks in advance
Idan

I believe the intent is to warn instead of annoy the user with repeated notices that a required field hasn't been filled (which is why it doesn't fire on subsequent tabbing).
The Empty Message should be displayed whenever the value of the required field goes from something to nothing (e.g. the value is currently set to "asdf" and you remove the value and tab out) which means that simply tabbing in and out of the required field without changing its value (whether or not it had a value in the first place) wouldn't trigger the Empty Message to be displayed. It should
always be displayed, however, whenever you attempt to
submit the form if the required field has no value (and Acrobat won't let you submit the form until all required fields have been filled).
Stefan
Adobe Systems

Similar Messages

  • User Entered - Required not working????

    I'm developing a form (Adobe Acrobat Professional 8/LiveCycle Designer 8 ) in which the customer must fill many of the fields (mix of text and date fields). I'm setting the Object - Value - Type to User Entered - Required for these fields. However, I can tab right through them even when they are blank/null. I don't want the fields to work that way. If I get into the field (tabbing or mouse click) and I've set the field to User Entered - Required, I don't want to be able to get out of the field until I've filled it in.
    I thought this was the way it worked early in my testing, but I had to work a different project for a while. Now that I'm back, it just acts as if the "null checking" has been turned off. Any suggestions as to what I need to do to get this working (again?).
    Also, I have put a message in each of the empty message fields. I'm noticing that I can tab through blank fields :( but if I put data in one of those fields, clear the field and try to tab out, I do get the empty message text I specified.
    Thanks!

    Hi RAM,
         I'll try to answer your questions one by one. Any comments and feedback are welcome.
    1.- I assume that you have created a Model, a Service Controller and binded the data to your view.
    At this point, you need to bind the property datasource of your interactive form to a node in your context hierarchy.
    This data will be available at the form Data View Palette.
    Then you have to edit your form, drag a Drop Down List to the form and in the Fields Tab of the Object Palette you need
    to bind the List Items property. Just click the link and in the "Dynamic Properties" window, choose the table root node for Items, and the Text and Value atributes for Text and value properties respectively.
    After that, in the binding tab, you will have to do the "default binding", and bind the values clicking on "Specify Item Values".
    Edited by: Aldo Velazquez on Nov 29, 2010 4:32 PM

  • How to Make a field User Entered - Required by javaScript

    Dear all,
    How can I make a field User Entered - Required on some conditions e.g. it is required in the following conditions.
    1)I have a group of radio buttons of Yes and No.I want if the user select yes then a particular text field should Required otherwise it should optional.
    2)In a particular row of a table if user fill the first column then other columns of that row should required otherwise it should optional.
    How can I do it?If any body can please help me.
    Thanks a bunch in advance
    Regards
    Rakesh

    I have the same problem. I need to change all fields to be not required. Adobe doesn't seem to recognize the change.
    var fieldCount = event.target.numFields;
    for ( var i = 0; i < fieldCount; i++)
    var fieldName = event.target.getNthFieldName(i);
    app.alert(fieldName);
    var field = event.target.getField(fieldName);
    if(field.type != "button")
    app.alert(field.required);
    field.required.rawValue = false;

  • How to populate date & time when user enter data for custom table in sm30

    Can anyone tell me How to populate system date & time when user enter data for custom table in sm30..
      Req is
      i have custom table and using sm30 user can enter data.
    after saving date i want to update date & time in table
    Pls let me know where to write the code?
    Thanks in Advance

    You have to write the code in EVENT 01 in SE54 transaction. Go to SE54, enter your Ztable name and in the menu 'Environment-->Events'. Press 'ENTER' to go past the popup message. In the next screen, click on 'New Entries'. In the first column, enter 01 and in the next column give some name for your routine(say UPDATE_USER_DATE_TIME). Then click on the souce code icon that appears in blue at the end of the row. In the code, you need logic like below.
    FORM update_user_date_time.
      DATA: f_index LIKE sy-tabix.
      DATA: BEGIN OF l_total.
              INCLUDE STRUCTURE zztable.
      INCLUDE  STRUCTURE vimtbflags.
      DATA  END OF l_total.
      DATA: s_record TYPE zztable.
      LOOP AT total INTO l_total.
        IF l_total-vim_action = aendern OR
           l_total-vim_action = neuer_eintrag.
          MOVE-CORRESPONDING l_total TO s_record.
          s_record-zz_user = sy-uname.
          s_record-zz_date = sy-datum.
          s_record-zz_time = sy-uzeit.
          READ TABLE extract WITH KEY l_total.
          IF sy-subrc EQ 0.
            f_index = sy-tabix.
          ELSE.
            CLEAR f_index.
          ENDIF.
          MOVE-CORRESPONDING s_record TO l_total.
          MODIFY total FROM l_total.
          CHECK f_index GT 0.
          MODIFY extract INDEX f_index FROM l_total.
        ENDIF.
      ENDLOOP.
    ENDFORM.                    " UPDATE_USER_DATE_TIME
    Here ZZTABLE is the Z table and ZZ_USER, ZZ_DATE, and ZZ_TIME are the fields that are updated.

  • What does mean You can include static and dynamic tables into a Smart Form?

    Hi guys,
    If you check the official documentation for Smart forms in the Internet you will read that the initial pharagraphs of the text tell you "Tables - You can include static and dynamic tables into a Smart Form. Dynamic tables enable you to display tables whose size is determined only at the moment of their output by the number of the table items to be displayed". The link is the following: http://help.sap.com/saphelp_nw04/helpdata/en/a5/de6838abce021ae10000009b38f842/frameset.htm
    I was wondering if this means that I can use field symbols with dynamical number of columns to print a smart form. Because it would be great since the customer wanted a dynamical report depending on the week day it was (If Monday, there was only 12 columns, but if Friday, it will be 52 columns (1 column more for every day elapsed in the current week)). I had to create 5 different forms, but I think using field symbols I had spent less effort. Do you know if it is really possible? If not, then what does mean "You can include static and dynamic tables into a Smart Form"?
    Thank you in advance

    Hi ,
    The concept of static and dynamic tables in smartforms, means you can use template- ( static table as no of rows and columns is fixed). Also you can use table- dynamic as the no of rows will depend on your line items.
    Hope this will help you to close this thread.
    Also, try to find this answer in posted forums. Creating a new forum everytime just increases the network traffic. So please try to avoid it.
    Regards,
    Vinit

  • How to create dynamic View Object and Dynamic Table

    Dear ll
    I want to create a dynamic view object and display the output in a dynamic table on the page.
    I am using Jdeveloper 12c "Studio Edition Version 12.1.2.0.0"
    This what I did:
    1- I created a read only view object with this query "Select sysdate from dual"
    2- I added this View object to the application module
    3- I created a new method that change the query of this View object at runtime
        public void changeVoQuery(String dbViewName) {
            String sqlstm = "Select * From " + dbViewName;
            ViewObject dynamicVo = this.findViewObject("DynamicVo");
            if (dynamicVo != null) {
                dynamicVo.remove();
            dynamicVo = this.createViewObjectFromQueryStmt("DynamicVo", sqlstm);
            dynamicVo.executeQuery();
    4- I run the application module for testing the method and I passed "Scott.Emp" as a parameter and the result was Success
    5- Now I want to show the result of the view on the page, so I draged and dropped the method from the data control as a parameter form
    6- I dragged and dropped the view Object "DynamicVo" as a table and I choose "generate Column Dynamically at runtime". This is the page source
    <af:panelHeader text="#{viewcontrollerBundle.SELECT_DOCUMTN_TYPE}" id="ph1">
            <af:panelFormLayout id="pfl1">
                <af:inputText value="#{bindings.dbViewName.inputValue}" label="#{bindings.dbViewName.hints.label}"
                              required="#{bindings.dbViewName.hints.mandatory}"
                              columns="#{bindings.dbViewName.hints.displayWidth}"
                              maximumLength="#{bindings.dbViewName.hints.precision}"
                              shortDesc="#{bindings.dbViewName.hints.tooltip}" id="it1">
                    <f:validator binding="#{bindings.dbViewName.validator}"/>
                </af:inputText>
                <af:button actionListener="#{bindings.changeVoQuery.execute}" text="changeVoQuery"
                           disabled="#{!bindings.changeVoQuery.enabled}" id="b1"/>
            </af:panelFormLayout>
        </af:panelHeader>
        <af:table value="#{bindings.DynamicVo.collectionModel}" var="row" rows="#{bindings.DynamicVo.rangeSize}"
                  emptyText="#{bindings.DynamicVo.viewable ? 'No data to display.' : 'Access Denied.'}"
                  rowBandingInterval="0" selectedRowKeys="#{bindings.DynamicVo.collectionModel.selectedRow}"
                  selectionListener="#{bindings.DynamicVo.collectionModel.makeCurrent}" rowSelection="single"
                  fetchSize="#{bindings.DynamicVo.rangeSize}" filterModel="#{bindings.DynamicVoQuery.queryDescriptor}"
                  queryListener="#{bindings.DynamicVoQuery.processQuery}" filterVisible="true" varStatus="vs" id="t1"
                  partialTriggers="::b1">
            <af:iterator id="i1" value="#{bindings.DynamicVo.attributesModel.attributes}" var="column">
                <af:column headerText="#{column.label}" sortProperty="#{column.name}" sortable="true" filterable="true"
                           id="c1">
                    <af:dynamicComponent id="d1" attributeModel="#{column}"
                                         value="#{row.bindings[column.name].inputValue}"/>
                </af:column>
            </af:iterator>
        </af:table>
    when I run the page this error is occured
    <Nov 13, 2013 2:51:58 PM AST> <Error> <oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter> <BEA-000000> <ADF_FACES-60096:Server Exception during PPR, #1
    javax.el.ELException: java.lang.NullPointerException
    Caused By: java.lang.NullPointerException
    Can any body help me please
    thanks

    Have you seen Shay's video https://blogs.oracle.com/shay/entry/adf_faces_dynamic_tags_-_for_a
    All you have to do is to use the dynamic table to get your result.
    Timo

  • I am stuck in FIELD-SYMBOLS and dynamic tables.

    Hi guys,
                I am trying to create dynamic table. My requirement is as follows--
    I have to display grid layout report in depending on given input.
    In input i have fields for DC and STORE.
    In output i have to display columns depending on number of DC and STORE paased in input.
    For example if in input, i have 2 DCs DC01 and DC02 and in STs i have say 1 input - ST01
    then in outpt grid report there will be 3 columns.
    So my columns to be displayed depends on number of input values given while running it.
    I am trying to use dynamic table.
    My output report contains fields from different table...so i cant use
    FIELD-SYMBOLS: <DYN_TABLE> TYPE STANDARD TABLE
    instead i m trying to use
    FIELD-SYMBOLS: <DYN_TABLE> LIKE T_ARTMAS  "T_ARTMAS is declared as types : begin of....end of .... .
    but it is giviing an error in following form
    FORM CREATE_DYNAMIC_ITAB.
    Create dynamic internal table and assign to FS
      CALL METHOD CL_ALV_TABLE_CREATE=>CREATE_DYNAMIC_TABLE
        EXPORTING
          IT_FIELDCATALOG = IFC
        IMPORTING
          EP_TABLE        = DY_TABLE.
      ASSIGN DY_TABLE->* TO <DYN_TABLE>.
    Create dynamic work area and assign to FS
      CREATE DATA DY_LINE LIKE LINE OF <DYN_TABLE>........error on this line.
      ASSIGN DY_LINE->* TO <DYN_WA>.
    ENDFORM.                    "create_dynamic_itab
    saying "<DYN_TABLE>" is not an internal table - the "OCCURS n" specification is missing.          
    Kindly help me...
    thx in advance...

    Hi
    .FIELD-SYMBOLS: <DYN_TABLE> LIKE T_ARTMAS "T_ARTMAS is declared as types : begin of....end of .... .
    but it is giviing an error in following form.....
    Just as Sasha wrote, the problem could be you've defined a flat structure and u need a table, but now just a little a question: why do u want to use a dynamic table but your field-symbol is like a certain type?
    That means u know how the table is so u don't need to use a dynamic table, your issue seems not to make sense.
    Max

  • 3 Tier Relational DB's and Dynamic Tables

    I have three tables which I shall, for ease, call A, B and C.
    B is relational to A
    C is relational to B
    A1 - B1 - C1
    C2
    B2 - C3
    C4
    A2
    A3 - B3 - C5
    B4
    B5 - C6
    C7
    C8
    I have no trouble creating recordset links for one or the
    other
    SELECT A.*, B.*
    FROM A INNER JOIN B ON A.AID = B.BAID
    WHERE etc... etc......
    Similarly, I can create a recordset for the secondary link..
    SELECT B.*, C.*
    FROM B INNER JOIN C ON B.BID = C.CBID
    WHERE etc... etc......
    What I am trying to acheive however is a recordset with a 3
    tier relationship and I can't figure the syntax.
    Somthing like...
    SELECT A.*, B.*, C.*
    FROM A INNER JOIN B ON A.AID = B.BAID, B INNER JOIN C ON
    B.AID = C.BAID
    WHERE etc... etc...... (This doesn't work!)
    This would then result in a dynamic table with (B and C) in
    the same row as it propogates.
    Eventually, what I want to achieve is a simple attachment
    symbol on each row of B, based on something like....
    <?php if (C,TotalRecords <> NULL) { ?>
    <a href="/linkedattachments.php?BID=<?php echo
    $row_recordsetB['BID']; ?>" target="_blank">
    <img src="fileicon.gif" alt="Click to see
    attachments"></a>
    <?php } ?>
    Am I going about this the right way? Is this even clear?
    lol

    "RichardODreamweaver" <[email protected]>
    wrote in message
    news:[email protected]...
    > I have three tables which I shall, for ease, call A, B
    and C.
    >
    > B is relational to A
    >
    > C is relational to B
    >
    > A1 - B1 - C1
    > C2
    > B2 - C3
    > C4
    > A2
    > A3 - B3 - C5
    > B4
    > B5 - C6
    > C7
    > C8
    >
    >
    > I have no trouble creating recordset links for one or
    the other
    >
    > SELECT A.*, B.*
    > FROM A INNER JOIN B ON A.AID = B.BAID
    > WHERE etc... etc......
    >
    > Similarly, I can create a recordset for the secondary
    link..
    >
    > SELECT B.*, C.*
    > FROM B INNER JOIN C ON B.BID = C.CBID
    > WHERE etc... etc......
    >
    > What I am trying to acheive however is a recordset with
    a 3 tier
    > relationship
    > and I can't figure the syntax.
    >
    > Somthing like...
    >
    > SELECT A.*, B.*, C.*
    > FROM A INNER JOIN B ON A.AID = B.BAID, B INNER JOIN C ON
    B.AID = C.BAID
    > WHERE etc... etc...... (This doesn't work!)
    that's almost right
    SELECT A.*, B.*, C.*
    FROM ((A INNER JOIN B ON A.AID = B.BAID) INNER JOIN C ON
    B.AID = C.BAID)
    WHERE etc... etc......
    I've added parentheses to show how the next join will operate
    on the first,
    the first join results in a relation of table a and b,
    you then join this "virtual table" to the third.
    > This would then result in a dynamic table with (B and C)
    in the same row
    > as it
    > propogates.
    >
    > Eventually, what I want to achieve is a simple
    attachment symbol on each
    > row
    > of B, based on something like....
    For the count to work with records that have no children you
    have to employ
    a LEFT join to return records from the RIGHT table even if no
    record on the
    LEFT side matches.
    SELECT A.*, B.*, COUNT(c.CAID) AS CAID_COUNT
    FROM ((A INNER JOIN B ON A.AID = B.BAID) LEFT JOIN C ON B.AID
    = C.BAID)
    WHERE etc... etc......
    > <?php if (C,TotalRecords <> NULL) { ?>
    > <a href="/linkedattachments.php?BID=<?php echo
    $row_recordsetB['BID']; ?>"
    > target="_blank">
    > <img src="fileicon.gif" alt="Click to see
    attachments"></a>
    > <?php } ?>
    >
    > Am I going about this the right way? Is this even clear?
    lol
    >

  • Help with ecomerce and dynamic table link

    I am new to dynamic pages. I am trying to build or use a
    template to display my tables.
    Here is an example of what I want to do.
    http://www.snaz75.com/ if you
    click on any of the links on the left side, it brings up the
    products on the right. I know this is done through tables. I have
    the website built and the tables built, but don't know how to get
    the product to display dynamically without manually adding each
    item.
    I am using yahoo e-commerce and have downloaded their table
    formats. I have all the tables created and uploaded to my hosting.
    I am trying to use these tables to display my product in a simple
    way. Yahoo has a site builder where you can build tables and upload
    them and your product is displayed, but I am extremely limited on
    the actual design of their website builder. I want to use my
    website, but do essentially the same thing. How can I get the built
    tables display my products. I have 1000's of products and I know
    there must be a way display the item through a table using
    template.. I can't imagine someone adding one item at a time to
    their website. Any idea's where to start.

    I have checked with method GET_ATTRIBUTE_VALUEHELP_TYPE of interface IF_WD_CONTEXT_NODE_INFO, on an attribute which i know to have a search help (Foreign key of a check table).
    The method returns 'N', that is the constant IF_WD_VALUE_HELP_HANDLER~CO_VH_TYPE_NO_HELP. So, the framework was not able to find a suitable search help.
    Using method GET_ATTRIBUTE_VALUE_HELP of the same interface, on the same attribute, returns me '111', which is constant C_VALUE_HELP_MODE-AUTOMATIC.
    Therefore, the WD framework knows it has to automatically detect a value help, but fails to find one.
    Also, this means in my opinion that the ALV and the dynamic external mapping are not the culprits: since node creation, no help is detected for any attribute but the date. Honestly, I don't have a clue on what's happening.

  • G5 power pc users system requirements and ilife 08

    Hi
    Can I ask if anyone is using ilife08 , specifically imovie08, successfully with an older generation Imac G5 ?
    I'm not that up on computers and such and I would love to buy the new Ilife 08 package but it looks like my imac falls slightly short of the designated system spec ?
    I have a 1.8ghz processor -not the 1.9 or above listed in the spec.
    I have a 600mhz bus speed -not the 700 mhz.
    Would I be foolish in buying Ilife 08 and hoping it would work with my machine ?
    I'd appreciate any responses...
    Thanks
    Tricia in the UK

    What are other G5 power pc people doing ?
    As far as this user is concerned, and my G5 iMac meets the specs for iLife 08 - precisely nothing.
    We in the UK have to pay 50% more for Apple products than in the US.
    Read the threads about iMovie 08 - do you really want it?
    You and I have iLife 6 and they work for us. If it ain't broke, don't fix it.

  • Discriminator and dynamic table selection

    Is there a way (in DSP 3.0) to use a discriminator to dynamically determine a related table to join in a select or update? On the java client I have a base class with extended class that I would like to model in related tables.
    Thanks,
    Jeff
    Edited by jhoffmanme at 02/08/2008 4:09 AM

    Ok - so you want something like
    <CASE>
    <BASE_CASE>
    <BASE_CASE>
    <LAB_CASE>
    </LAB_CASE>
    <CASE>
    <CASE>
    <BASE_CASE>
    <BASE_CASE>
    <CS_CASE>
    </CS_CASE>
    <CASE>
    So you will need to define a CASE schema element that contains a BASE_CASE, and optionally a LAB_CASE, CS_CASE etc. element.
    your queries will look like :
    function getLABCases()
    for $base_case in BASE_CASES()
    return
    <CASE>
    {$base_case}
    {for $lab_case in LAB_CASES()
                where $lab_case/ID eq $case/ID
                return
                  $lab_case
    </CASE>
    function getCSCases()
    for $base_case in BASE_CASES()
    return
    <CASE>
    {$base_case}
    {for $cs_case in CS_CASES()
                where $cs_case/ID eq $case/ID
                return
                  $cs_case
    </CASE>
    getAllCases()
    ( getLABCases(),
    getCSCases() )
    Use the nested for's as I have shown above rather than...
    for $base_case in BASE_CASES()
    for $lab-case in LAB_CASES()
    where $lab_case/ID eq $base_case/ID
    as the second way forces LAB_CASE table to be read even when it is not required in the output.
    For updates, you will need visit the update template documentation to see how you tell DSP that a CASE with a LAB_CASE came from the LAB_CASES table.

  • Finding column count with dynamic columns and dynamic tables

    I've done some PL/SQL for awhile now but was trying to devise a solution for the following problem:
    I wish to find the number of times a specific value for a column exists in all the tables that contain the field and I have access to see with the current user. The column name and value will be passed in via parameters.
    I was hoping to use something like
    select table_name from all_tab_columns where column_name = <variable table name>;
    then use the results from this to create a select statment based off the tables from the select above. I know the difference between dba_tab_columns and all_tab_columns - I want to make sure that I only retrieve the values i have access to.
    Can anyone point me to some guide / website / reference material I can read to catch up on the idea of creating this statment?
    Thank you.

    Hi,
    it's a test version.
    You can naturally tune it, but it seemed to work:
    declare
    pi_column VARCHAR2(30) := 'DEPTNO';
    pi_value VARCHAR2(4000) := '20';
    v_count NUMBER := 0;
    v_count_tab NUMBER;
    BEGIN
    FOR I IN (select owner, table_name from dba_tab_columns
              where column_name = pi_column
    LOOP
        EXECUTE IMMEDIATE 'SELECT count(*) FROM '||i.owner||'.'||i.table_name||
                          ' WHERE '||pi_column||' = :pi_value'  INTO v_count_tab USING pi_value; 
        v_count := v_count + v_count_tab;
    END LOOP;                   
    dbms_output.put_line(v_count);
    END;Regards

  • ISE Wired Guest + user without supplicant and dynamic vlan change

    Hi All,
    I have two issues:
    Is it still an issue when a wired user who is directed to the ISE CWA, is able to stay authenticated as a guest for as long as they stay connected?
    This is happening on our test pilot - a guest with 2 hour access on a wired connection can maintain the guest access for as long as they desire.
    I hear that this isnt an issue for wireless, but yet to try this out. Is there a workaround for this?
    Secondly my testing confirms that only users with a supplicant eg anyconnect NAM can be dynamically changed into a vlan (only tested on wired).
    What I'd hope to do, is create a policy that when wired guest connect in, to dynamically change their vlan to the guest vlan (same one guest WLAN users will use).
    Is this possible if the guest doesnt have a supplicant?

    One of my tasks was to rebuild the multiportal config, and looks like there was an option there to do a VLAN dhcp release and renew. I wont know if this will work until next week but it sounds promising. It was tucked down on the screen so I had to scroll down to find it...
    Still dont have an answer about the guest able being able stay authenticated, or does this feature solve this issue as well? Only time will tell..

  • How to make an interface between user  created  screen and dxtools table

    Hi friends,
                   I created  my own selection-screen using module pool .I need help about how to join my screen to
    the fields of  DXTOOLS  TABLE .
    This DXTOOLS is a function module for FILE UPLOAD/DOWNLOAD in SAP.
    ie. i have  joined the screens
                      1. OBJECT, PROGRAM TYPE,PROGRAM NAME SCREEN and
                      after clickin COPY BUTTON a screen with these fields appear...
                      2.TARGET/SOURCE - APPLICAITON SERVER,PRESENTATION SERVER..   
    please  help me  about how to join my screen with the table DXTOOLS..
    Thanks,
    Kassim.

    I would try catch block code with [Alert.setCommandListener|http://java.sun.com/javame/reference/apis/jsr118/javax/microedition/lcdui/Alert.html#setCommandListener(javax.microedition.lcdui.CommandListener)], roughly like below:
      downloadAlert2 = new Alert("Download error !");
      downloadAlert2.setType(AlertType.ERROR);
      downloadAlert2.setString("Download error : "+e.toString())
      downloadAlert2.setTimeout(Alert.FOREVER);
      downloadAlert2.setCommandListener(new CommandListener() {
        public void commandAction(Command c, Displayable d) {
          if (c == Alert.DISMISS_COMMAND) {
            midlet.platformRequest(downloadURL);
            midlet.notifyDestroyed();
      display.setCurrent(downloadAlert2);//show the Alert  
    }

  • To get the input values from the dynamic tables and save in the SAPdatabase

    HI EXPERTS,
    I AM NEW TO WEB DYNPRO ABAP. MY QUERY IS HOW TO GET THE VALUES THE USER ENTERS IN THE DYNAMIC TABLE AND SAVE THE SAME IN THE SAP DATABASE. I HAVE CREATED THE TABLES BUTTON EVERYTHING BUT I DONT KNOW THE CODE HOW TO DO. PLEASE HELP ME OUT.

    >
    vadiv_maha wrote:
    > HI EXPERTS,
    >
    > I AM NEW TO WEB DYNPRO ABAP. MY QUERY IS HOW TO GET THE VALUES THE USER ENTERS IN THE DYNAMIC TABLE AND SAVE THE SAME IN THE SAP DATABASE. I HAVE CREATED THE TABLES BUTTON EVERYTHING BUT I DONT KNOW THE CODE HOW TO DO. PLEASE HELP ME OUT.
    hi,
    1 there is one property OnAction of the button...
    2 So, in this event handler,you have to read the context node to which ur table is binded
    3 use the code wizard
    control+f7
    , and use the method
    get_static_attribute_table
    4 now u have got the vaues in internal table,so now as pointed in the previous reply, you can use the
    Update
    or
    Modify
    statement...
    regards,
    Amit

Maybe you are looking for

  • Ho do i  create a new Apple ID

    how do you create a new Apple I D on iPad

  • Simple TCP Client Program Problems

    The Code: import java.io.*; import java.net.*; class TCPClient {      public static void main(String argv[]) throws Exception           String sentence;           String modifiedSentence;           BufferedReader inFromUser = new BufferedReader(     

  • User defined Table and matrix problem

    Hi, I have a user defined table. I am displaying data from this table using DBdataSource on a matrix in my form. After making changes to a cell on the matrix when i try to save the data back to the data source, the changes are not updated. I am using

  • Missing files in "list copy" command once controlfile restored

    Hi, Performing restore/recover exercises (11gR2 on ASM), I did the following: 1/ the DB running, "list copy" in RMAN (to retrieve a list of my backups), 2/ then did a shutdown abort, went to AMSCMD and removed all datafiles/ctlfile/spfile manually (w

  • EUL on Replication Server May Not Match Production EUL

    Hello:First let me thank you for the rapid response on the "Replication Impact on the EUL" issue. This is a follow on to that initial question. I intend to perform Discoverer administrative tasks on the replication server EUL. The tasks will involve