Input table becomes Read-Only

Hi all,
I'm trying to implement input table but the table shows as read-only.
1. Node cardinality = 0...n
2. Selection = 0...1
3. Singleton = true
All fields are input field.
After i deploy and run the application, the read-only table shows up.
Please advise me on this. Thanks in advance.
Peerasit

Hello Jomsri,
The table is coming as read only because you havenot added any element to the nodes and by default there will be no element in the node as you are selecting a cardinality of 0...n. If you change it to 1..n then you can see one row will have input fields enabled.
Best way to implement this is add a button in the layout, name it as add a new row and in the action of this button add the following code:-
         IPrivateTestingCompView.I<nodename>Element a = wdContext.node<nodename>().create<nodename>Element();
         wdContext.node<nodename>().addElement(a);
this will add a new row to the table each time you press the push button.
Hope this will solve the problem
Regards,
Sarbjeet

Similar Messages

  • CRM Order - Item No at a Order Item becomes Read Only

    Hi All,
    We are creating an Order (SAP GUI) and enter a few products. For some products the ITEM NO becomes read only.
    We have 2 Item Category group (NORM, VOLL) and 2 Item Categories (TAN, ZTAN). For some products (NORM, TAN) or (NORM, ZTAN) or (VOLL, TAN) the Item no becomes Read Only.
    We do not have Higher level items or Alternate Items.
    Could you please let us know under what conditions would the Item No become read only.
    Thanks and Regards

    Hi,
    you would have to pass the variant condition keys (and pricing factors - default is 1) to the pricing engine. I have never seen this part of the application myself and it think it is difficult to achieve this as this might be direct communication between the configurator and the pricer. The variant conditions are passed in a reference characteristic called "VKOND" to the order and then to the pricer.
    Are you planning to use a configurable product or a non-configurable product for this task? If you use the later you can ensure the SAP configurator is not called and then just have to feed additional data into the pricing engine (e.g. via manual conditions or via user exits in pricing).
    Regards, Marcus

  • Files and folders moved to NAS become read only.

    I just got an Iomega NAS. When I move files and folders to it from my Macbook, they become read only when they get there. Files from my girlfriend's PC stay read/write when they are moved to the NAS.
    I first noticed this with iTunes. I changed the location of my iTunes folder to be on the NAS and I let iTunes copy the music itself. Now, I can add music by new artists, but if I try to add an artist that I already have a folder for, it won't let me because the folder is read only. Also, I can't change any of the info for any files in iTunes.
    I'm not sure if this has anything to do with it, but it looks like all of the files and folders on my Mac are set up so that only I can see them. When I click "get info" on any file on the computer, it shows:
    me : read/write
    staff: read only
    everyone: read only

    When I open a finder window, I see two icons for the NAS in the "shared" section. The first one is:
    hmnhd-ti2mkg
    When I click "get info" it shows "Kind: PC Server" and there is no mention of permissions in the "get info" box.
    The second one is:
    hmnhd-TI2MKG.local
    When I click "get info" it shows "Kind: Server" and there is no mention of permissions in the "get info" box.
    Clicking on either one of these icons lets me browse through the exact same shares and folders. There is no difference between going in to one or the other. They both have the same permissions on all folders, as well.
    "Jacob's iTunes Music" is a share on the NAS. All of my read only files (that I want to change to read/write) are already in this share.
    Clicking "get info" on any of the shares shows them as "Kind: Sharepoint" with no mention of permissions.
    I think I'm going to try to have iTunes copy all the files to my computer, change the permissions, then have it copy them back to the NAS. Is there a way to change permissions of folders, subfolders, and files without having to click "get info" on each and every one?

  • Files and folders becoming read-only

    Lots of my files and folders have become read-only after
    downloading Eclipse (I have used the Europa version as I needed to
    also download CFEclipse as well to program in ColdFusion) and Adobe
    ColdFusion. When you right-click and go to properties, the
    read-only button is highlighted, so I have clicked this off, but it
    reappears when you right-click and look at it again.
    Does anybody know what has caused this and how I can fix
    this?

    Hi,
    After opening your eclipse,
    Hit alt+shift+w and click "Navigator"
    and then select your project folder -> right click it,
    Go to properties and turn off read only.

  • Word 2010 document becomes Read-Only after saving it

    Hi,
    My Word 2010 document is becoming "Read Only" after saving it, for information my doucment is on the desktop . I searched on this forum and find a couple of solutions (deactivating auto saving, etc.) but it does not work at all. Any other ideas?
    Thanks,
    Sylvain.

    , I wonder why the docuemnt is becoming Read-Only when I am saving it on the Desktop...
    I've read articles and blogs of people arguing each side of whether you should use the Desktop as a storage folder and I really
    don't have anything substantial to add to either the pro or con side of the issue.
    However, what I know about Word is that it behaves a bit different and seems to have issues when you’re actively editing document that are stored
    on the Desktop.  I would speculate that the issue has something to do with the screen driver software.
    When you’re editing a document, Word is actually using something like a dozen or more temporary hidden files and some of these are stored in the
    same folder as the source document. If the source document’s folder is the Desktop, then there has to be interaction with the screen driver. 
    This interaction with the screen driver is one variable that makes the Desktop folder unique and possibly problematic and thus Word under certain conditions
    makes the file Read Only.
    Kind Regards, Rich ... http://greatcirclelearning.com

  • Firefox profile folder becomes read-only after closing browser

    firefox profile folder becomes read-only after closing browser
    It is a problem with firefox or is it this to to a virus?
    How to fix? How to prevent?

    Only a check mark in the Read-only box means that a folder or file is Read-only.<br />
    Windows doesn't check all the files in a folder so instead displays a greenish block to indicate that it is not sure.<br />
    You need to look at the files individually to see if any are read-only.<br />
    Easiest to do that is to make the Attributes visible in "View > Details" mode: Choose Details in Windows Explorer.<br />

  • How to set a line of table as read only during runtime?

    How to set a line (or a cell) of table as read only during runtime?

    hi wei
          when you create a table keep the readonly property of table as false
    you create the columns of table as inputfield.you bind the readonly property of
    the inputfield to two context variables
    say one for all the columnfields you to want always have as readonly and let this contextattribute of type boolean and let this be attr1
    and another for all the columnfields you donot want to be readonly and let this contextattribute of type boolean and let this be attr2
    initially set the context attributes attr1 and attr2 as true so the entire table is readonly.
    based on the condition you want to check change the attr2 to be false.
    if(your condition)
    wdcontext.currentcontextelement.setattr2(false);
    hope this helps.
    regards
    saravana

  • How to make a column in Table popin read only

    Hi Everyone
    Could anyone let me know how to make a column in table popin read only.
    Regards

    if you ar eusing an ALV table
    try this
      DATA: lr_salv_wd_table TYPE REF TO iwci_salv_wd_table,
            r_table TYPE REF TO CL_SALV_WD_CONFIG_TABLE.
    * get reference to ALV component interface
      lr_salv_wd_table = wd_this->wd_cpifc_alvmain( ).
    * get ConfigurationModel from ALV Component
      wd_this->r_table = lr_salv_wd_table->get_model( ).
    * init ColumnSettings
      DATA: lr_column_settings TYPE REF TO if_salv_wd_column_settings,
            lr_col_header TYPE REF TO cl_salv_wd_column_header.
      lr_column_settings ?= wd_this->r_table.
    * get table of column settings - each line one column
      DATA: lt_columns TYPE salv_wd_t_column_ref.
      lt_columns = lr_column_settings->get_columns( ).
    * loop over table - in each loop another column can be modified
      DATA: ls_column TYPE salv_wd_s_column_ref.
    * define visible columns (fields) by naming them,
    * exclude others by setting visibility to none
      DATA: ls_tooltip TYPE string.
      LOOP AT lt_columns INTO ls_column.
        " get header of column
        lr_col_header = ls_column-r_column->get_header( ).
        " do settings here
    ENDLOOP.
    Or see this document for more tips.
    <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/40794172-b95a-2910-fb98-b86d8a0918b4">https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/40794172-b95a-2910-fb98-b86d8a0918b4</a>
    regards,
    Joris

  • Tables in read only mode

    Hi friends.
    In my job we insert data in some tables, in the end of the month we do some operations with this data and for the next month we use other tables.
    How do I change my tables for read only mode, because is so dangerous that for error erase the old tables?

    Hi,
    You can revoke all privs like insert, update, delete... from all other users for these tables. Then only the owner can do some damage.
    If the database user is used by many different people and you rather don't trust them, copy the 'old' tables to another schema and don't spread the password.
    And most important: Have backups in place!

  • Will restore profile suing FEBE cause prefs.js become read only?

    just encounter some issues related to prefs.js, and not sure why it become read only.
    only did restoration of profile using FEBE, will it cause prefs.js become read only?

    You can always check the read-only state of individual files if you suspect issues with files being read-only.
    You normally only get a read-only state for files if you backup (copy) files to a read-only medium (CD/DVD).

  • Hard disk becomming read-only ?

    hi all,
    I've been having a curious problem for about a year now. After a few days not so intensive usage, my iMac's hard disk becomes read-only. Most programs become unusable of course, some actually work as long as they don't try to write anything...
    Symptoms:
    system.log isn't written to anymore (so no system error reported);
    terminal works I can "ls" here and there, but mkdir, touch, or anything like that fails.
    And worst, I did a clean format re-install (going from tiger to leopard), and the problem still apears.
    I'm assuming it's the disk, but I get no bad blocks error in the logs (well those can't be written too, okay
    Anyones gone thrue that before I replace the hard drive with a new one ?

    Hi ncksayer -
    Greetings and welcome to the Apple boards.
    I have not experienced your particular problem but it does sound like the drive can be an issue.
    I have replaced the hard drive on an iMac of your series. If you are at all handy and not afraid to open it up it is quite easy.
    Luck-
    -DaddyPaycheck

  • JAVA and XML files suddently becomes read only files ---- is this a bug ?

    Hi all,
    I run into this problem about 1 to 3 times a day. What happens is that all of a sudden all the files containing code that i was editing becomes read-only well the write cursor disapears this is kinda bothering me the only way to fix this is to reboot jdev. In the console there are no errors which i found weird. i am using the latest jdev version under the enterprise red hat.
    Regards,
    Carl

    Hi brian,
    yeah strangely this happens to all the files but i can still edit them using the control palette lets say i want to add a component it will work fine but i cant type in any code. I am not using version control system. I dont think i run out of memory but ill double check this.
    Carl

  • Get value from input text in read only adf table

    all,
    i added a column to an adf read-only table and inserted an input text control in the extra column. how do i loop through the table to get the value from the input field?
    paul

    Hi,
    can you be more clear on the usecase? Its a read only table that you added a input text field in a new column. What is the column based on and what is the goal of looping through ?
    Frank

  • NULL values are inserted into interface table for read only columns

    Hi, I developed a custom Integrator where some of the columns has to be displayed as read only in the layout. I am using SQL content to populate the data. When I upload the data NULL values are inserted into table interface? Is there any work around for this?
    Thanks
    Edited by: user593879 on Jan 12, 2010 7:21 PM

    Doesn't WebADI drive you insane at times?
    I must say, when it's all working it looks great and it is very user friendly (end-user that is, NOT for developers!) but before you get to that stage… please please Oracle invest some time making Web ADI a bit more logical an coherent, get the obvious bugs out, please let us not have to update BNE tables anymore to get things done.
    Anyway, I sorted this one out by setting the Width to zero (0) in the Layout. HTH.

  • After moving iTunes, external drive sometimes becomes read-only after reboot

    I had some system corruption a few weeks ago, and had to restore my system.  As part of that prolonged effort, I decided to move my iPhoto Library and iTunes Library to external FW800 drives.
    I had terrible problems initially with these drives mounting read-only.  I found a relatively quick work-around, and that seemed to fix the problem.  But I still have them periodically mount read-only, and I can't D/L iTunes updates, etc.
    Why do they keep doing this on a reboot?  Very frustrating, as I need to reboot as part of the fix, and I'm always in the middle of something else, and can't reboot at that time.

    Oh, as part of this, not sure when the change was made, OSX used to keep the mounted volume name in /Volumes, even if the volume was ejected.  Would cause an occasional problem - but very rare.  I notice now that ML seems to create/delete these mountpoints automagically - and that's part of the problem.  They get incorrect permissions when the volume mounts, and I (user I'm logged in as), can't write to the volume without some background shenanigans.
    My process is this:
    Unmount problem volume
    Drop to terminal, and "sudo mkdir /Volumes/<mounted_volume_name>"
    Remount volume via Disk Utility (you now get a "<mounted_volume_name> 1" - with CORRECT permissions)
    Unmount the volume again
    Remove the created directory (i.e. undo step 2)
    Remount the volume - 99.9% of the time that seems to fix it.
    Reboot to be sure - and it stays for a while - then at some point becomes a problem again.
    Not sure if it's something in ML that's an issue - or something in iTunes or iPhoto (but can't see how they would affect the permissions when the system reboots and you login)

Maybe you are looking for