Cant Add UDF Row from UDT

Hi,
Need assistance regarding UDF and UDT, I cant add another entry row in the UDF, The UDT is linked with the UDF, I have checked all the other UDF linked with UDF it works fine but only one cant add.
I cant click the field to manually add the data or Define New.
Thank you in advance.
Regards,
Clint

Gordon,
I go to Tools -> then User Tables, then I choice List if Ships, if i will click it it will open the List of Ships, from their I want to add additional Name of Ships, but I cant the form is disabled and grayed.
I cant input or enter additional Ships. But I check other Names from the List it will add. What maybe the cause?
Clint

Similar Messages

  • Add/Delete rows from ALV-grid

    Hi to all,
    i have 2 questions concerning alv-grids:
    i have an alvgrid displaying a table and what i need is some functionality to add or delete rows from the alvgrid - how can i do that ?
    within one row i have one field containing the status and i want to be able to select the status from a combo/dropdown-field and set it for this particular row.
    thanks in advance!

    Hi,
    Report BCALV_EDIT_04 shows how to append and delete rows.
    Report BCALV_EDIT_06 shows drop down list for cells in a column.
    These report should be available in any R/3 system including all ABAP Preview versions.
    Hope this can help.
    Regards, Johan

  • Cant add account manager from myverizon  keeps throwing error message

    did everything but go into the store. Im 9 months pregnant on bed rest and my verizon gives me an error when i try to add account manager. Called  922 0204  and customer service says its now verizon policy that you cant add anyone to your account until after 30 days   ive added and removed people before on the same day Talked to supervisor he said its a my verizon problem and that the ppl that are supposed to work on it arent in right now So shouldnt they have a way to bypass this??  what is up with this new rule?? Anyone else getting this same error??

       I originally had wireless service with Alltell and I was very concerned when Verizon purchased Alltell ( I had numerous bad experiences with Verizon customer service when I had their FIOS cable service).  For years now that Verizon took over for Alltell I have not had any issues and I believe it was because I did not have to contact customer service.   Now in December I purchased three new phones and my daugther wanted to change her work number to one of the numbers I had on my service.  You would have thought we were trying to pattern a new cure for cancer.  We had to spend hours on the phone with customer service trying to accoumplish a very easy task and each time my daugther tried to deal with these people they all complained because she was not an account manager. 
    For the last wo weeks I have tried to add my daughter thru the website.  Each time I got an error message stating that I needed to call 611 to get this corrected.   Tonight we called 611  and I got the same run around with customer service for the last 45 minutes, but they told me that I had to wait 60 days since we had purchased  new phones.   They also told me that we could go to a Verizon store location and this could be accomplished at the store.  I have already spent more time with customer service than any live person should and I certainly do not want to have to make another trip to a Verizon store.  It is utterly amazing how Verizon can take such simple tasks and turn them into a Federal case.  This waste hours of your time and also the time spent by their employees,  and you don't get anything accomplished.  They must be getting so many complaints that now there is no place on their website where you can write a complaint.         

  • Cant add still pictures from iPhoto

    I am trying to add still pictures from iPhoto to a iMovie I am doing. I go to my media browser and click on photos. This brings up my iPhoto Library and albums. When I drag a photo into the time line, the clips move to make room, the photo appears in the time line, the default effect renders, but then a hear a beep, no message pops up and the picture disseapears from the time line. Any ideas??

    http://discussions.apple.com/message.jspa?messageID=1852869#1852869

  • Help :add multiple rows from Resultset to ArrayList ?

    My query returns one column and multiple rows. In Java code , I am trying to get this data in array or arraylist through ResultSet
    ex:
    item_num
    p001
    p002
    p003
    when I print, it only gets the item in the first row.
    ArrayList myArrayList = new ArrayList();
    resultset = preparedstatement.executeQuery();
    if (resultset.next())
    myArrayList.add(new String(resultset.getString("item_num")));
    Print:
    for (int j = 0 ; j < myArrayList.size() ; j++ )
    System.out.println((String)myArrayList.get(j)); --this prints only the first item.
    can someone assist ?

    changing if to while fixed it.

  • Cant add email addresses from mail to address book

    I click to add the email to Address Book and and empty new card is started with none of the info.

    So apple changed the name of the Address Book. You don't have to be a jerk about it. IT IS ML. Anyone who actually wants to help, try and answer this?

  • CANT ADD A SONG FROM LIBRARY TO IPAD WITH ITUNES 11?? HELP!!!!

    I installed 11 and I copied a CD to my computer and put into my library on my computer, but how do i add it to my IPAD2 and why do i have more songs on my ipad then in my library if i sync all the tiime?

    The method is exactly the same as in previous versions of iTunes: 
    http://support.apple.com/kb/HT1390
    The only difference now is that by default the iPad will appear as a button at the upper-right of iTunes:
    Click that all all should then work as per the directions. You can also go to the View menu and select "Show Sidebar" and iTunes 11 will then look substantially like earlier versions.
    Regards.

  • How to delete a row from AbstractTableModel

    my table is using an object to populate the data.
    static Object[][] data = new Object[LineCount()][5];
    So when I delete a row, I should delete from the model or the object?
    Rgds

    When you populate your table with a two dimensional array, the table actually creates a DefaultTableModel (which extends AbstractTableModel). The DefaultTableModel has methods which allow you to add/remove row from the data model. Read the DefaultTableModel API for more information.

  • Add/remove rows in jTable

    Hello,
    I'm writing an application with Sun ONE Studio 4. The autogenerated code for a JTable is something like: jTable1.setModel(new javax.swing.table.DefaultTableModel...
    How can I add / remove rows from this table? In principle it should work like this: model.removeRow(0); But I don't have a model name in the autogenerated code.
    Thanks for your help, Elke

    DefaultTableModel model = (DefaultTableModel)<table>.getModel();
    model.doWhateverYouWant();
    Cheers,
    Ram

  • Store a reference to a row from JTable

    Hello everyone!
    Me and my school mates are working on a project for a peer to peer application for the school. For file sending we wrote a class that extends Thread. We have a JTable to represent the downloading files. If the mentioned class for sending a file is created, I want to store into it's instance a reference to a row from the JTable. So I can always edit the cell in the tables row that represents the progress of downloading. Until now we were accessing the proper tables row over the rows index. But if we delete some rows from the table (we wand to remove finished downloads), the indexes get mixed up.
    I know that .NET has a class that represents a single row in the table. I would like to store the instance of a row in my class that downloads the file in my Java project.
    Thanks for further help!
    Regards.

    I know that .NET has a class that represents a single row in the table.
    I would like to store the instance of a row in my class that downloads the file in my Java project.You need to create a custom TableModel that stores an Object containing the row information.
    Here is a basic shell to get you started:
    http://forum.java.sun.com/thread.jspa?forumID=57&threadID=610618
    You will need to add method to add/remove rows from the model. You will then need to search the TableModel to find the Object in order to determined which row to update.

  • Add null rows in WDDOINIT  for fetching data from dynamically added rows..

    Hi,,
    I have to fetch data from a dynamically added rows of a table.
    I have followed / gone through many forums but they ddnot mention how to add null rows in the initialization method..
    I am using WD Abap..
    Can anyone help how to bind null rows in WDDOINIT method..?
    Thanks,
    Surya

    Discussed @ SDN lot of time before. Have a look at any of below threads:-
    Dynamic table in interactive form...
    Make dynamic tables in Adobe Interactive forms
    Adding Rows dynamically upon clicking the button
    How to get values to WebDynpro ABAP from dynamic table?
    Chintan

  • Cant add Rows In a Matrix (Child) and No event catching

    Hi,
    I created a Master File and its Child. Registered as an UDO. Created an UDO Form with the UDO Form Generator.
    I Can Add, find, update, records to de Master File, but The Matrix related to the Child Table Only allows me enter information in the first Row.
    I Have tried the addrow command in every place possible, but It doesnt work.
            Dim oXmlDoc As Xml.XmlDocument
            oXmlDoc = New Xml.XmlDocument
            Dim sPath As String
            sPath = IO.Directory.GetParent(Application.StartupPath).ToString
            oXmlDoc.Load(sPath & "" & FileName)
            SBO_Application.LoadBatchActions(oXmlDoc.InnerXml)
            oForm = SBO_Application.Forms.Item("F_MX_C071")
    The last thing I tried was include this next lines after
            oItem = oForm.Items.Item("mtx_0")
            oMatrix = oItem.Specific
            oMatrix.AddRow(3)
    I Also Cant catch the AddRow Event Button. I Set the filters and the event handling for menus and
            oFilters = New SAPbouiCOM.EventFilters
            oFilter = oFilters.Add(SAPbouiCOM.BoEventTypes.et_ITEM_PRESSED)
            oFilter.AddEx("F_MX_C071")
            SBO_Application.SetFilter(oFilters)
    If (pVal.EventType = SAPbouiCOM.BoEventTypes.et_ITEM_PRESSED) Then
    Events are catched before oForm = SBO_Application.Forms.Item("F_MX_C071"). After that, there´s no event catching
    Can anyone help me? I have a lot of time spent in this issue.
    Thanks a lot.

    I dont know if Is it clera for me now, but i try it.
    You have matrix on user form. The matrix contains child data. This child data are inserted to matrix manualy or bounded to some datatable, i think with datatable?
    When you add new line to matrix, Im using
    omatrix.AddRow(1, 0) - 1 is that I want to add 1 row, 0 is position, where the new line will be in matrix
    When the matrix is filled with code, Im doing it as
    I update usertable
    oUserTable.UserFields.Fields.Item("U_Popis").Value = ""
    oUserTable.UserFields.Fields.Item("U_PATH").Value = ed.String
    then update the form to affect changes to db
    oOrderForm.Update()
    and then I make new bounding to datatable.
    Undestand I correctly it now?

  • I misplaced my iphone.  i cant find it. i downloaded find my iphone but i can't add my device (my lost iPhone) how can i find it since it is on silence.  is there a way i can add this device from my macbook?

    I misplaced my iphone.  i cant find it. i downloaded find my iphone but i can't add my device (my lost iPhone) how can i find it since it is on silence.  is there a way i can add this device from my macbook?

    You have to have enabled Find My iPhone on your phone before it was lost in order for it to be located.  If you did, you could play a loud two minute sound on it even if it was on slient, as explained here: http://help.apple.com/icloud/#/mmfc0f19b5.

  • I cant add music to my iphone 5 (iOS 7.1) LATEST ONE from an itunes10!

    I cant add music to my iphone 5 from an itunes 10 please help! I already have it in a playlist but thing is that i highlight it right? But then i click add to>  tabithas iphone > NOTHING HAPPENS AT ALL WHATSOEVER I NEED HELP ASAP IM GOING TO SHOUT!

    I believe that iOS 7 requires iTunes 11. You may need to update your iTunes file.

  • Updated to the newest itunes and i now cant add videos from my computer

    So i just updated my iTunes to the newest one, and now for some reason I can't add the videos I have on my computer onto iTunes. I re-downloaded it, repaired it, and yet still nothing. The files are .mov so I know they can play on iTunes but for some reason I cant add them.

    For general advice see Troubleshooting issues with iTunes for Windows updates.
    The steps in the second box are a guide to removing everything related to iTunes and then rebuilding it which is often a good starting point unless the symptoms indicate a more specific approach. Review the other boxes and the list of support documents further down page in case one of them applies.
    Your library should be unaffected by these steps but there is backup and recovery advice elsewhere in the user tip.
    For device connectivity issues see TS1538: iOS: Device not recognized in iTunes for Windows, in particular section 5, and TS4062: iTunes 10.5 and later: Troubleshooting iTunes Wi-Fi syncing.
    tt2

Maybe you are looking for