Multiple selection of items in Choosefromlist in custom form

Hi All,
I have set multiselection in Choosefromlist for itemcode but i am not able to get its corresponding itemname while selecting multiple itemcode.
My code:
                    for (int i = 0; i < oDataTable.Rows.Count; i++)
                        oForm.DataSources.DBDataSources.Item("@TIS_PRCONAND_INP").InsertRecord(1);
                        valItemCode = oDataTable.Columns.Item("ItemCode").Cells.Item(i).Value.ToString();
                        valItemDesc = oDataTable.Columns.Item("ItemName").Cells.Item(i).Value.ToString();
                        valDefWhs = oDataTable.Columns.Item("DfltWH").Cells.Item(i).Value.ToString();
                        valUOM = oDataTable.Columns.Item("InvntryUom").Cells.Item(i).Value.ToString();
                        oForm.DataSources.DBDataSources.Item("@TIS_PRCONAND_INP").SetValue("U_ItmCode", pVal.Row - 1 + i, valItemCode);
                        oForm.DataSources.DBDataSources.Item("@TIS_PRCONAND_INP").SetValue("U_ItmDesc", pVal.Row - 1 + i, valItemDesc);
                        if (pVal.Row + i == oDBDataSource.Size)
                            oForm.DataSources.DBDataSources.Item("@TIS_PRCONAND_INP").InsertRecord(oMatrix.VisualRowCount);
                        oForm.DataSources.DBDataSources.Item("@TIS_PRCONAND_INP").SetValue("LineId", pVal.Row + i, pVal.Row.ToString());
                        oMatrix.LoadFromDataSource();
In case of single selection it gives me proper result.

Hi Pravin,
Here is the loop for the multiselection:
for (int i = 0; i <= oDataTable.Rows.Count - 1; i++)
     string ItemCode = Convert.ToString(oDataTable.GetValue("ItemCode", i));
     string ItemName = Convert.ToString(oDataTable.GetValue("ItemName", i));
Now set ItemCode and ItemName anywhere as you want.
Hope it helps.
Thanks & Regards
Ankit Chauhan

Similar Messages

  • How to attach Item LOV to new Customized form.

    Is it possible to attach Item Lov to new customized form in EBS12.04.
    For example
    I have created new form and i want to attach LOV of Item like in Requisition Form a LOV attached with Item Text Box.

    Thanks avajain for reply,
    I can create new lov and attach it with item. But i want to call same API or LOV which is called from Purchasing-->requisition-->Item . Where from you select Item Class, Sub Class, serial.
    Regards,
    Fassi

  • Create a collection from Shuttle or Multiple Select List items

    Hi all, this may be a dumb question, but I cannot find how to create a collection using the values stored shuttle item? I just want to assign the values of the shuttle which are usually delimited by a colon (ex. 11:22:33:44:55) into a collection that stores each of these values separately so later I can select * from table where id IN(select * from collectionname) --- is this possible?
    I am running into a problem where users want to select more than 1000 items in a shuttle to do a search.... and the IN operator cannot handle more than 1000 instances. I was told to try to use a temporary table to house the values of the shuttle, but temporary tables pose a problem with APEX. I read on the forums to try using a collection instead. Any thoughts?
    Thanks.

    Would this be a good start?? I found this here... Re: Search on a typed in list of values
    Not sure how the View would work though??
    A much easier way of doing all this is to create a collection, create a view off that collection and then do your select from the view. No custom functions or types involved. An example is:
    DECLARE
    l_vc_arr2 HTMLDB_APPLICATION_GLOBAL.VC_ARR2;
    BEGIN
    l_vc_arr2 := HTMLDB_UTIL.STRING_TO_TABLE(:P13_MULTISELECT);
    htmldb_collection.create_or_truncate_collection( p_collection_name => 'MULTISELECTCOL');
    FOR i IN 1..l_vc_arr2.count LOOP
    htmldb_collection.add_member(
    p_collection_name => 'MULTISELECTCOL',
    p_c001 => l_vc_arr2(i));
    END LOOP;
    END;
    where your view looks something like:
    CREATE OR REPLACE FORCE VIEW "WS"."TEMP_MULTISELECT_VIEW" ("MULTISELECTID") AS
    (SELECT c001 FROM htmldb_collections WHERE collection_name = 'MULTISELECTCOL');
    and finally for your report you use something like:
    SELECT t.a
    FROM tablea t
    WHERE t.b IN
    (SELECT roleid FROM temp_multiselect_view)
    This way is simple and works... so by KISS standards its good.
    Hope this helps some other unfortunate....

  • How to submit a multiple-selection list box in an Infopath Sharepoint form as multiple entries on a Sharepoint list?

    I would like to be able to submit an Infopath form with a multiple selection list box in Sharepoint as multiple entries on a Sharepoint list.
    For example, a user has to complete the following fields:
    First Name:
    Last Name:
    Favorite Color (can select more than one):
    [] Blue
    [] Red
    [] Yellow
    [] Green
    If the user picks blue AND red and submits the form, the Sharepoint list would feature TWO entries, both with their first and last names, but with different colors in the "Favorite Color" column.
    Please let me know if there is a way to do this. Any guidance would be helpful!

    Hi redhotc,
    According to your description, my understanding is that you want to set multiple default values for a multiple checkbox list in InfoPath form.
    I did a test with SQL database table. I set three default values for the checkbox list by adding three values field under the group field(Data->Default values), each value field is for a default value. Then publish it to my SharePoint site, everything
    was fine.Please have a try as the below link:
    http://www.bizsupportonline.net/infopath2010/pre-select-items-multiple-selection-list-box-infopath-2010.htm
    Note: if you are using SQL databse table, you may need to enable ‘Allow cross-domain data access for user form templates that use connection settings in a data connection file’ in CA. More information, please refer to:
    http://answers.flyppdevportal.com/categories/sharepoint2010/sharepoint2010customization.aspx?ID=418b9423-a96c-4e5e-91f9-6a1b010ebb69
    I hope this helps.
    Thanks,
    Wendy
    Wendy Li
    TechNet Community Support

  • Passing Multiple Selected List Items to a "New Item" Form in Another List with Multiselect Lookup Field

    Hi!
    Version Info:  SharePoint 2013 Server Standard (*BTW...I do not have access to Visual Studio*)
    I have two lists, let's call them
    -Assets
    -Asset Checkouts
    "Assets" is the parent list, and "Asset Checkouts" has a lookup column (multiselect) which is tied to the serial # column in the "Assets" list.
    Basically, what I need to accomplish is this:  I would like to be able to select multiple list items in the "Assets" list, and create a new item in "Asset Checkouts", and pre-fill the multiselect lookup column in the NewItem form
    for "Asset Checkouts" with the values from the selected items in "Assets".
    Any ideas or suggestions on how to do this would be most appreciated!
    Thanks!

    Hi,     
    According your description, you might want to add new item in "Asset Checkouts" list when selecting items in "Assets" list.
    If so, we can achieve it with SharePoint Client Object Model.
    We can add a button in the "Assets" list form page, when selecting items, we can take down the values of columns of the selected items, then click this button which will create
    new item in "Asset Checkouts" list with the values needed.
    Here are some links will provide more information about how to achieve it:
    Use
    SP.ListOperation.Selection.getSelectedItems() Method to get the list items being selected
    http://msdn.microsoft.com/en-us/library/ff409526(v=office.14).aspx
    How to: Create, Update, and Delete List Items Using JavaScript
    http://msdn.microsoft.com/en-us/library/office/hh185011(v=office.14).aspx
    Add ListItem with Lookup Field using Client Object Model (ECMA)
    http://notuserfriendly.wordpress.com/2013/03/14/add-listitem-with-lookup-field-using-client-object-model-ecma/
    Or if you just want to refer to the other columns in "Assets" list when add new item in "Asset Checkouts" list, we can insert the "Assets" list web part into the NewForm page
    of the "Asset Checkouts" list, then when we add new item in the "Asset Checkouts" list, we will be able to look through the "Assets" list before we select values for the Lookup column.
    To add web part into the NewForm.aspx, we need to find the button "Default New Form" from ribbon under "List" tab, then we can add web part in the NewForm.aspx.
    In the ribbon, click the button “Default New Form”:
    Then we can add web part into NewForm.aspx:
    Best regards
    Patrick Liang
    TechNet Community Support

  • Inserting multiple rows into a table using a multiple-select list

    I'm trying to figure out how to take the output of a multiple-select list (":" separated list of values) and use that to update a table by inserting multiple rows based on the values. Is there a straight-forward way to do that in APEX?
    Thanks.
    Chris

    Hi Chris,
    I think this should give you what you need: Working with a Multiple Select List Item
    --Jennifer                                                                                                                                                                                                                                                                                                                                                                                                   

  • List Multiple Selection to MySQL

    How do I take multiple selections from the List box in a form
    in Dreamweaver 8 and post to MySQL?
    I tried using implode as recommended here:
    http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?forumid=12&catid=263&threadid =1112556&highlight_key=y&keyword1=multiple
    This worked unless the user did not select any items in the
    list. Then I received a bad arguement error message.
    I then tried just using POST without the implode and [] on
    the end of the select name, but this put the word "Array" in the
    column/row in the database instead of the data.
    I then tried the POST with the [] on the select name and []
    in the SQL statement: GetSQLValueString($_POST['appliances[]'],
    "text"), Dreamweaver would not let me associate this under Insert
    Record in the Server Behaviors section - so Null is put in the
    database.
    I need to be able to post multiple items selected from a list
    box to MySQL, but allow the user not to select anything from the
    list box without receiving an error.

    dulcey1 wrote:
    > How do I take multiple selections from the List box in a
    form in Dreamweaver 8
    > and post to MySQL?
    Multiple select lists produce an array if anything is chosen,
    but do not
    appear in the $_POST array if nothing is chosen. Since the
    name of your
    multiple select list is appliances, you must put square
    brackets after
    the name in the form (name="appliances[]").
    To prevent errors, check whether $_POST['appliances'] exists.
    If it
    does, extract the values with implode(). If it doesn't,
    create an value
    to indicate that nothing was selected.
    $appliances = (isset($_POST['appliances'])) ? implode(',',
    $_POST['appliances']) : 'None';
    David Powers, Adobe Community Expert
    Author, "Foundation PHP for Dreamweaver 8" (friends of ED)
    Author, "PHP Solutions" (friends of ED)
    http://foundationphp.com/

  • ApEx2: Many-to-many with checkboxes or multiple select list?

    Hello all together
    I have the following specification:
    * a table for tool users: tool_users(tu_id, tu_name)
    * a table for groups: groups(gr_id, gr_name)
    * a table for the many to many relationship of tool users and groups: tool_users_to_groups(tu2gr_id, tu2gr_tu_id, tu2gr_gr_id)
    I'd like to have some checkboxes or a multiple select list in my "add/edit group" form where I can select which users belong to this group. The same vice versa for users to specify which groups they belong to.
    edit user
    (general details)
    Has to the following groups:
    [X] Group 1
    [ ] Group 2
    [ ] Group 3
    [X] Group 4
    [ ] Group 5
    After submitting the checked values should be insert into the many-to-many relationship table.
    How can I do that?
    Thanks a lot for any help,
    Josh

    Thanks for your kind help.
    I'll have to learn PL/SQL if I want to go on with my work in ApEx in future, I see this too.
    But at the moment there are just a few problems I got and I should get a small application up and running as soon as possible, so I'd be really thankful for some newbie help.
    My problem is now:
    I have created the process for my form page with the following code:
    declare
    v_list varchar2(200);
    begin
    for r in (select tu2gr_gr_id id
    from tool_users_to_groups
    where tu2gr_tu_id = :P3_TU_ID)
    loop
    v_list := v_list ||r.id|| ':';
    end loop;
    :P3_GROUPS := v_list;
    end;
    Sadly the code does not seem to be executed. I have changed the name from :P3_GROUPS to :P3_GROUPS2 (which doesn't exist and I'd expect the application to crash when loading the page). I have set the process to a Before Header process. What could I have done wrong?

  • I am Using UDO's  for my custom forms i want to open.....

    Hi Friends
    I am working on UDO's for my custom forms, in my project i have four screens i want to open choosefromlist my custom form what is the process to open choosefromlist(Userdefined screens)
    anyone have solution
    Thanks & Regards
    GanjiMadhu

    For eg your udo name is "ud_CFL"
    Now open ur srf in xml.
    <item uid="1000003" type="16" left="123" tab_order="0" width="120" top="5" height="14" visible="1" enabled="1" from_pane="0" to_pane="0" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
    <AutoManagedAttribute/>
    <specific TabOrder="0" ChooseFromListUID="ud_CFL" ChooseFromListAlias="ud_CFL(Write col name of that table)">
    <databind databound="1" table="@PM_ACTCO_HEAD" alias="U_machineID"/>
    </specific>
    </item>
    <ChooseFromList UniqueID="ud_CFL" ObjectType="ud_CFL" MultiSelection="0" IsSystem="0"/>

  • Custom Form Transport Render issues

    I have transported a custom wpc form from our Development server to our testing server.  After the transport all content items created with this custom form are displaying an error:
    Cannot render container:   An error occurred while loading the document from the resource content.
    Testing is supposed to start today but obviously can't until this issue is fixed - could someone please point me in the right direction for fixing this error?

    Hi TA,
    Please refer to the SAP Note : Note 1135576 - Transport of pages that contain iView references
    Also, refer to this thread
    https://www.sdn.sap.com/irj/scn/thread?messageID=7078924#7078924
    Cheers!
    Sandeep Tudumu

  • Old custom templates in Pages 5 .select background item?

    I have some custom templates from iWork 09, that worked fine until this pages 5.22 came along.
    They are in Word Processing Layout, and also have a separate text box or two.
    In Pages 5.22 I can not longer select them, they just appear on the screen as the "Type to enter text' words.
    the only way I can select the box is to 'Convert to page layout.
    but if i do that, then all the other custom text is deleted, ...a warning is given and other text is gone.
    In previous pages, there was an option to 'Select background Item' or a similar entry that allowed me to select these particular text boxes, but in the is new Pages that option is no longer there now the Inspector pane has been changed.
    The Arange Tab appears in Page layout, but not in the WP layout...it must have been there before otherwise how else would I have added the text box?
    Anyone have any idea how I can make all my old templates usable in this new  of Pages
    Thanks

    In the Template Chooser for Pages ’09, there is a category heading named “My Templates,” and by default, there is a physical folder in the following location called My Templates. You are permitted to create arbitrary folder(s) in this location through File > Save As Template… for perceived organization. However, the Template Chooser, unlike the Finder, does not show these sub-folders in its left-hand navigation panel. Instead, it shows all templates (including sub-folder contents) in one view — thus subverting your practical organizational goal.
    <login directory>/Library/Application Support/iWork/Pages/Templates/My Templates
    When you are presented with the file dialog during the Save as Template… activity, it defaults to the My Templates folder location. Click the selector that shows My Templates, and choose the next higher Templates folder. Now, you create a new organizational folder here (mine is called Journals), and it will show up separately under the My Templates category heading — and the related templates are not shown in the general My Templates folder item view.
    If I were to manually create empty folders in the above Templates folder using Finder, as long as they are empty, Pages will not list them in the Template Chooser.

  • Multiple selection during open item clearing

    Dear All,
    While executing F-44 for vendor clearing i am selecting posting date as 01.04.2006 to 31.03.2007.Also in other selection i select Business Area.But when execute the process open iten it is displaying the open item for FY-2010 also.Now is there any customization process we need to do.so that the data gets sorted acccording to the  multiple selection option provided.
    Thanks
    Shivaji

    Dear Shivaji
    What is your fiscal year variant. and when you try to replay for this why you trying to use the posting date for doing this selection you can use only the business are as a selection variant then you can sort posting date as you need for doing this
    I hope it will help you
    deleted: no points requests are allowed
    Best regards
    Hussein

  • Can't delete multiple selected items in List or Library

    I am experiencing quirky behavior when attempting to delete multiple selected items from a library or list. I select a few items via check box for each item I would like to delete. Then I click the delete button in the ribbon, and all I get is "Deleting...",
    but no page refresh and the items are not deleted. However if I access the same list or library via the App server and select a few items, then hit delete, the page refreshes and the items are deleted.
    So I consulted the Logs and compared the Web Server vs App Server, and the there is a lot of cryptic entries. The few lines that stands out most to me is the App server is:
    ConnectionString: 'Data Source=database;Initial Catalog=Content;Integrated Security=True;Enlist=False;Asynchronous Processing=False;Connect Timeout=15'   
    ConnectionState: Closed ConnectionTimeout: 15
    In fireItemEvent(), for list Building Locations, and item: 1
    In fireSyncItemEvent(), calling ExecuteItemEventReceivers()
    Calling ExecuteItemEventReceivers() for list 0f773535-3b22-4c29-97f1-fd2b70b50dd3 on item 1
    Entering monitored scope (Event Receiver (Microsoft.SharePoint.Publishing, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c, Microsoft.SharePoint.Publishing.Internal.PublishingWebEventReceiver))
    Releasing SPRequest with allocation Id {FE9A45A8-C042-4223-8FCC-4BD873C93885}
    PublishingWebEventReceiver:ItemDeleting: item 
    These calls are not in the web server log.
    The list I was doing the delete action on was "Building Locations". We are using claims based authentication
    Thanks for any insight or thoughts.
    Brandon

    I confirmed that there is no rewrite tags in either web config (app or web).
    I did download fiddler, and when I try and delete on the web front end I get:
    It tries to access the URL https://mysite/_layouts/_vti_bin/client.svc/processQuery
    Then it sends me here since I have been denied
    <html><head><title>Object moved</title></head><body>
    <h2>Object moved to <a href="https://mysite/_layouts/AccessDenied.aspx">here</a>.</h2>
    </body></html>
    The app server goes to
    http://mysite/_layouts/_vti_bin/client.svc/processQuery doesn't get denied and deletes the items.

  • Multiple items in custom form

    I'm new to Service Manager customization and try to do this task ,  I have custom management pack for our configuration items , I added a CI class "ITServer" which would have multiple harddisks, I created a Hard Disk Class and make a relationship
    (1 to many) using authoring tool, but how could I make user able to add multiple harddisk with different quantities , please advice 
    this management pack snippet
    <ManagementPack ContentReadable="true" SchemaVersion="2.0" OriginalSchemaVersion="1.1" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <Manifest>
    <Identity>
    <ID>ITAssetsManagementPack</ID>
    <Version>1.0.0.0</Version>
    </Identity>
    <Name>ITAssetsManagementPack</Name>
    <References>
    <Reference Alias="System">
    <ID>System.Library</ID>
    <Version>7.5.8501.0</Version>
    <PublicKeyToken>31bf3856ad364e35</PublicKeyToken>
    </Reference>
    <Reference Alias="Console">
    <ID>Microsoft.EnterpriseManagement.ServiceManager.UI.Console</ID>
    <Version>7.5.1561.0</Version>
    <PublicKeyToken>31bf3856ad364e35</PublicKeyToken>
    </Reference>
    <Reference Alias="Alias_a4c8369f_0a7a_430c_979c_c1454b2a42c4">
    <ID>Microsoft.EnterpriseManagement.ServiceManager.UI.Authoring</ID>
    <Version>7.5.1561.0</Version>
    <PublicKeyToken>31bf3856ad364e35</PublicKeyToken>
    </Reference>
    </References>
    </Manifest>
    <TypeDefinitions>
    <EntityTypes>
    <ClassTypes>
    <ClassType ID="Server" Accessibility="Public" Abstract="false" Base="System!System.ConfigItem" Hosted="false" Singleton="false" Extension="false">
    <Property ID="Model" Type="enum" AutoIncrement="false" Key="false" CaseSensitive="false" MaxLength="256" MinLength="0" Required="false" Scale="0" EnumType="ServerModel" />
    <Property ID="OpticalDrive" Type="enum" AutoIncrement="false" Key="false" CaseSensitive="false" MaxLength="256" MinLength="0" Required="false" Scale="0" EnumType="ServerModel" />
    <Property ID="PowerSupply" Type="int" AutoIncrement="false" Key="false" CaseSensitive="false" MaxLength="256" MinLength="0" Required="false" Scale="0" />
    <Property ID="AdditionalControllers" Type="enum" AutoIncrement="false" Key="false" CaseSensitive="false" MaxLength="256" MinLength="0" Required="false" Scale="0" EnumType="ServerModel" />
    <Property ID="OS" Type="enum" AutoIncrement="false" Key="false" CaseSensitive="false" MaxLength="256" MinLength="0" Required="false" Scale="0" EnumType="ServerModel" />
    <Property ID="Location" Type="string" AutoIncrement="false" Key="false" CaseSensitive="false" MaxLength="256" MinLength="0" Required="false" Scale="0" />
    <Property ID="Status" Type="enum" AutoIncrement="false" Key="false" CaseSensitive="false" MaxLength="256" MinLength="0" Required="false" Scale="0" EnumType="ServerModel" />
    <Property ID="SerialNumber" Type="string" AutoIncrement="false" Key="true" CaseSensitive="false" MaxLength="256" MinLength="0" Required="false" Scale="0" />
    <Property ID="RAIDController" Type="enum" AutoIncrement="false" Key="false" CaseSensitive="false" MaxLength="256" MinLength="0" Required="false" Scale="0" EnumType="ServerRAIDController" />
    </ClassType>
    <ClassType ID="CPU" Accessibility="Public" Abstract="false" Base="System!System.ConfigItem" Hosted="false" Singleton="false" Extension="false">
    <Property ID="Speed" Type="enum" AutoIncrement="false" Key="true" CaseSensitive="false" MaxLength="256" MinLength="0" Required="false" Scale="0" EnumType="ServerCPUSpeed" />
    </ClassType>
    </ClassTypes>
    <RelationshipTypes>
    <RelationshipType ID="ServerCPU" Accessibility="Public" Abstract="false" Base="System!System.Reference">
    <Source ID="Source_e5c33d1e_6a06_4726_8392_b2f1a2e18126" MinCardinality="0" MaxCardinality="1" Type="Server" />
    <Target ID="Target_75cae876_3f7c_4abf_8697_93fbd7cb8cdf" MinCardinality="0" MaxCardinality="2147483647" Type="CPU" />
    </RelationshipType>
    </RelationshipTypes>
    <EnumerationTypes>
    <EnumerationValue ID="ServerModel" Accessibility="Public" />
    <EnumerationValue ID="ServerCPUSpeed" Accessibility="Public" />
    <EnumerationValue ID="ServerRAIDController" Accessibility="Public" />
    </EnumerationTypes>
    </EntityTypes>
    </TypeDefinitions>
    <Categories>
    <Category ID="STSAssetsManagementPack.Category" Value="Console!Microsoft.EnterpriseManagement.ServiceManager.ManagementPack">
    <ManagementPackName>STSAssetsManagementPack</ManagementPackName>
    <ManagementPackVersion>1.0.0.0</ManagementPackVersion>
    </Category>
    <Category ID="CategoryId_85d33925_b744_4373_9d1f_74342a353553" Target="ServerModel" Value="Alias_a4c8369f_0a7a_430c_979c_c1454b2a42c4!Microsoft.EnterpriseManagement.ServiceManager.UI.Authoring.EnumerationViewTasks" />
    <Category ID="CategoryId_2d8ad646_6f28_4826_95f9_5b7fbdd99442" Target="ServerModel" Value="System!VisibleToUser" />
    <Category ID="CategoryId_fcdc4ecd_23e6_4579_be9a_028a4a76976d" Target="ServerCPUSpeed" Value="Alias_a4c8369f_0a7a_430c_979c_c1454b2a42c4!Microsoft.EnterpriseManagement.ServiceManager.UI.Authoring.EnumerationViewTasks" />
    <Category ID="CategoryId_38461602_58b6_4516_aee3_aaaeb7a9e597" Target="ServerCPUSpeed" Value="System!VisibleToUser" />
    <Category ID="CategoryId_f93e718b_1aad_4c9f_97f5_d737e5f29f12" Target="ServerRAIDController" Value="Alias_a4c8369f_0a7a_430c_979c_c1454b2a42c4!Microsoft.EnterpriseManagement.ServiceManager.UI.Authoring.EnumerationViewTasks" />
    <Category ID="CategoryId_6a943704_81f5_446d_9856_d549f0b33359" Target="ServerRAIDController" Value="System!VisibleToUser" />
    </Categories>
    <LanguagePacks>
    <LanguagePack ID="ENU" IsDefault="true">
    <DisplayStrings>
    <DisplayString ElementID="STSAssetsManagementPack">
    <Name>STSAssetsManagementPack</Name>
    </DisplayString>
    <DisplayString ElementID="Server">
    <Name>Server</Name>
    <Description>Specify your class description.</Description>
    </DisplayString>
    <DisplayString ElementID="ServerModel">
    <Name>ServerModel</Name>
    <Description>ServerModel</Description>
    </DisplayString>
    <DisplayString ElementID="SANSwitch" SubElementID="AdditionalControllers">
    <Name>AdditionalControllers</Name>
    </DisplayString>
    <DisplayString ElementID="Server" SubElementID="Model">
    <Name>Model</Name>
    </DisplayString>
    <DisplayString ElementID="Server" SubElementID="RAIDController">
    <Name>RAIDController</Name>
    </DisplayString>
    <DisplayString ElementID="Server" SubElementID="OpticalDrive">
    <Name>OpticalDrive</Name>
    </DisplayString>
    <DisplayString ElementID="Server" SubElementID="PowerSupply">
    <Name>PowerSupply</Name>
    </DisplayString>
    <DisplayString ElementID="Server" SubElementID="AdditionalControllers">
    <Name>AdditionalControllers</Name>
    </DisplayString>
    <DisplayString ElementID="Server" SubElementID="OS">
    <Name>OS</Name>
    </DisplayString>
    <DisplayString ElementID="Server" SubElementID="Location">
    <Name>Location</Name>
    </DisplayString>
    <DisplayString ElementID="Server" SubElementID="Status">
    <Name>Status</Name>
    </DisplayString>
    <DisplayString ElementID="Server" SubElementID="SerialNumber">
    <Name>SerialNumber</Name>
    </DisplayString>
    <DisplayString ElementID="CPU">
    <Name>CPU</Name>
    <Description>Specify your class description.</Description>
    </DisplayString>
    <DisplayString ElementID="ServerRAIDController">
    <Name>ServerRAIDController</Name>
    <Description>ServerRAIDController</Description>
    </DisplayString>
    <DisplayString ElementID="ServerCPU" SubElementID="Source_e5c33d1e_6a06_4726_8392_b2f1a2e18126">
    <Name>Source_e5c33d1e_6a06_4726_8392_b2f1a2e18126</Name>
    </DisplayString>
    <DisplayString ElementID="ServerCPU" SubElementID="Target_75cae876_3f7c_4abf_8697_93fbd7cb8cdf">
    <Name>Target_75cae876_3f7c_4abf_8697_93fbd7cb8cdf</Name>
    </DisplayString>
    <DisplayString ElementID="CPU" SubElementID="Speed">
    <Name>Speed</Name>
    </DisplayString>
    <DisplayString ElementID="ServerCPUSpeed">
    <Name>ServerCPUSpeed</Name>
    <Description>ServerCPUSpeed</Description>
    </DisplayString>
    </DisplayStrings>
    </LanguagePack>
    </LanguagePacks>
    </ManagementPack>

    Hi,
    At least you have to create a custom form with object pickers for HDDs, etc. and a gridview to present all added items.
    Cheers,
    Marat
    Site: www.scutils.com  Twitter:
      LinkedIn:
      Facebook:

  • Multiple selection but delete single item

    Hi,
    please help me to find a solution!!
    I have 2 listboxes. listbox Description is populated by XML.
    When user selects multiple items at the same time from the Description listbox, they are populated in the listbox and are removed from Description listbox. that works fine.
    But the issue is if the user accidently selects one of the multiple selected items at the same time wrong and want to delete a single items, this doesnt work anymore.
    I can not even click on each single item.
    I try to find a way how to enable user to populate multiple items at the same time and be able to delete each single item, which then should return back to the Description listbox.
    I would really appreciate if you could help me on this!!!
    This is my sample: https://acrobat.com/#d=l0mujTOFduSJFele5R5i3g
    Thanks,
    Diana

    Would you not just reverse your code ..instead of populating listbox from the selections in description and deleting the items out of description, remove the items from listbox and update description then remove the items from listbox.
    Or am I missing something?
    Paul

Maybe you are looking for

  • V31.5 no longer works with IMAP over VPN - v31.4 is OK

    I have been using TB for several years with IMAP accounts accessed over VPN. This was working fine until I upgraded to v31.5. After this upgrade, TB would leave rotating circle symbol indefinitely (more than 15 minutes, no timeout message or error me

  • Java update makes Safari 1.3.2 (v312.6) buggy?

    I use Safari 1.3.2 (v312.6) on an iMac G5 with 10.3.9. I just switched to DSL, after which I downloaded a recent Java update and Security update for my system. Now I'm encountering frequent crashes, usually when loading a web page; most are pages I f

  • HT3500 how do you transfer data from an external hard drive to a mac time capsule

    I am trying to use my Mac Time Capsule as a wireless external hard drive for my MacBook Pro, so how do I transfer the data from a toshiba external hard drive, to my Mac Time Capsule?

  • Packaging wizard failed : unauthorized 401 ???

    Hello, At the end of the packaging wizard (10g) when I want to publish my new application, I receive the following message : WTG-20502 Packaging wizard failed 401 unauthorized Why ??? Thanks for your answers.

  • 500 Internal Server error session wd_application has expired

    Hi. We have developed a WebDynpro Application which is integrated with a Page and iView in the Portal System EP6 (WAS 6.40 SP 11) ==> 2 Server Cluster enviroment. The iView has Cache-Level "session" and Client-side Caching "Yes". We tested locally an