How to modify XML to copy items

Hi,
i need to copy from itemcode "XX" to itemcode "YY". i save it with XML as:
Dim oBI As SAPbobsCOM.Items
oBI = oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oItems)
oBI.SaveXML(sFileXml)
I need to modify XML because i must change ItemCode and then add the new item
<ItemCode>XX</ItemCode>
???<ItemCode>YY</ItemCode>
How can i do this?
Thanks
Valentina

I am trying to do the exact same thing right now.  I am having moderate success with oItem.GetAsXML into a string, then using REPLACE to change the itemcode value (it exists in about 18 places, for me, because the XML gives you other stuff, like the contents of OITW).
Then I just write my string to a temp file and bring it back in to the new object and do the add.  Here's my code:
           tempXML = System.IO.Path.GetTempFileName()
            'retrieve template item object's xml into string
            itemObjectXML = zTmpltItm.GetAsXML
            'replace the template item code with the new one
            itemObjectXML = Replace(itemObjectXML, String.Format(ItemCodeXML, zTmpltItm.ItemCode), _
                            String.Format(ItemCodeXML, zNewCode))
            'replace the template item code with the new one          
          itemObjectXML = Replace(itemObjectXML, String.Format(ItemNameXML, zTmpltItm.ItemName), _
                String.Format(ItemNameXML, zNewName))
         'some other code...
            'save the template to disk
            sw = New System.IO.StreamWriter(tempXML, False)
            sw.WriteLine(itemObjectXML)
            sw.Close()
            'retrieve the new item's xml into a new item object for adding to the DB
            oNewItem = oCompany.GetBusinessObjectFromXML(tempXML, 0)
            'oNewItem.ItemCode = zNewCode
            'oNewItem.ItemName = zNewName
            retval = oNewItem.Add
            If retval <> 0 Then
The one thing I wonder about is how large can the XML string end up being.  I think .net has a 32K limit, but the GetAsXML function does return a string.
I'm doing this in 2007 and I have a problem with some of the values returned, however (like the SHGHT1Unit field).  I have a separate post for that one.
I don't know if my way is "best practice" or even advisable, but I do have it working.
PS: you've got to have this statement before doing the xml copying:
oCompany.XmlExportType = SAPbobsCOM.BoXmlExportTypes.xet_ExportImportMode
Added a PS
Message was edited by: JC
        John Chadwick

Similar Messages

  • LOVs - how to modify same LOV  after items are selected.

    Hi all, I have a Record Group which returns a list of Staff Surnames.
    I also have a LOV that uses that Record Group. I have a Project-Staff table that has a composite primary key of project_id and staff_id.
    What I need to do is dynamically change the contents of the LOV so that when a staff name is selected their name no longer appears in the LOV for that project.(their staff_id gets written to the Project-Staff table along with the project_id).
    Its just a simple form for allocating staff to a project. Any ideas on how I should formulate the SQL statement ? I'm stuck because if the project needs lots of staff, MY SQL statement would look a right mess.
    Thanks.

    Thanks guys. I got the delete_group_row to work. Unfortunately I can't get it to work how I would like it to.
    Once the user selects a name from the list (using LOV) and executes the query, the selected staff name and some of their staff details populate the form. I have created an "Add Staff" button and once it is pressed the staff_id for that staff member and function_id will be written into the Function-Staff table. The Form is then cleared. The next time the user accesses the LOV I want the previously selected name to be omitted from the list.
    If I hard code the row number to be deleted "delete_group_row('fname_rg',1);" it deletes that record perfectly. But hard coding the row to be deleted is no good to me. Is there a way of finding out what the row number is for the name selected and pass that to the delete_group_row built in ?
    Or am I simply missing something here ??

  • How to modify the layout  and coding for 'RVORDER01' after copying ..

    Hi all,
       I am trying to modify standard script layout SALES ORDER for Quotation,
    i.e. I had copied standard form 'RVORDER01' to 'ZBAT_RVORDER01'.
    and now I am trying to compress the information box. But no box in the layout  was selecting while trying to resize it. Can any one help in this issue.
      And I also want to know, how to modify the coding in that standard script. i.e. to add a perform statement and etc..
    Thanks in advance,
    Surender.

    GOTO SE71, and give the form name as 'ZBAT_RVORDER01' and Language as DE, try to compress the box according to your requirement, save activate and return to SE71, now change the language to EN, you will see the compressed window in EN.
    The casue of your problem is the original language is in DE so window changes, character formats etc can be done in DE language or change original language to english,
    TO change original language to EN, SE71 ,FOrm name Language DE click change, goto utilities--> change Language.
    Regards,
    Sairam

  • XCode How to modify menu item

    Newbie here. Have been searching around not have not been able to find a example that shows how to modify a menu item dynamically.. eg. Like in the menu bar the battery menu info is able to show how much battery life is left.

    Have you looked over Views in Menu Items in +Application Menu and Pop-up List Programming Topics for Cocoa+, or the MenuItemView sample app?

  • SPD 2013 - Copy Document action - how do you update the copied list item's metadata?

    SharePoint 2013 Designer no longer has the Copy List Item Action, it only has a Copy Document action. It seems that this action provides no way of saving the copied documents list item ID. How do you update the list item after it has been copied??
    Any help is appreciated.
    Greg Pierson

    Hi,
    According to your post, my understanding is that you wanted to copy the list item in SharePoint 2013.
    The Copy List Item is
    available only on the SharePoint 2010 Workflow platform, you can create a SharePoint 2010 workflow using the SharePoint 2010 workflow platform to achieve it.
    You can also use the Content and Structure to copy the list items: Site Settings->Site Administration->Content and Structure.
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

  • How to retreive the modified XML data?

    Hi..
    i had a problem in retrieving the modified xml data.
    Iam using apache's DOMParser
    In the my class my xml data is stored in a string.so i used following statement to read xml data from that string:
    String abc="<? xml version=... some data goes here"
    InputSource in=new InputSource(new ByteArrayInputStream(abc.getBytes()));
              DOMParser domParser = new DOMParser();
              domParser.parse(in);
              Document doc = domParser.getDocument();
              Element root = doc.getDocumentElement();
    and i did some operations like adding ,removing and replacing elements etc.
    It was fine when the checked the data.
    but..i need my modified xml data as String.
    is there any method to retrieve the modified xml data "as it is" in String?

    You can use XMLSerializer.
    Here is an example that dump your document on the console:
    OutputFormat formatter = new OutputFormat();
    formatter.setPreserveSpace(true);
    XMLSerializer serializer =
    new XMLSerializer(System.out, formatter);
    serializer.serialize(doc);
    where doc is your Document.

  • How to modify Ship-to address when adding item into SC

    Hello,
    I need to modify a Delivery address (ship-to) address of a shopping cart.
    I tried to create a implementation of BADI BBP_DOC_CHANGE_BADI, method BBP_SC_CHANGE where I tried to loop at et_partner, searching for ship-to address partner (partner_fct = 00000027)
    I updated the building, floor and room fields for this partner
    <fs_partner>-building_p = l_usr_addr-building.
    <fs_partner>-floor_p    = l_usr_addr-floor.
    <fs_partner>-room_no_p  = l_usr_addr-roomnumber.
    but it's ignored in Delivery address tab (the data is not shown) until I clear the ADDR_NO field:
    CLEAR <fs_partner>-addr_no.
    In this case the Delivery address tab displays correct data
    But when this shopping cart requires to be approved (ie because of not enough spending limit of the requistioner), the Approver opens the shopping cart, the delivery address is OK. But when he choose Reject (or any kind of edit action), then click on Delivery address tab, all address fields are empty
    Please suggest how can modify the Delivery adrress ?

    Hello Miroslav,
    As you cleared ADDR_NO, address data for partner Ship-To are deleted: this is logic...
    You need to populate correct ADDR_NO to your Ship-To partner.
    Have a look at wiki below:
    [Delivery Address in Shopping Cart - How does it work ?|http://wiki.sdn.sap.com/wiki/pages/viewpage.action?pageId=230261594]
    Regards.
    Laurent.

  • How to modify a VO? Help please

    I am trying to modify a VO in sales (just have to change the where clause), went thru the tutorial but 'am not sure if I am doing it right.
    Do I have to export the complete full java_top to my machine and then modify the VO?
    Can somebody please give me a 4-5 step process on customizing an existing VO?

    i agree with some of your earlier comments about the notes not been of much help and the course lacking some information. It has taken me almost 9 days to get one to work through a lot of trial and error and a lack of clear details.
    Here are some of the steps (and I am more than happy for anyone to clear these up or add to them!)
    Create a project in Jdev
    sent FND: Diagnostics to yes for your user
    sign into the application that you want to change and go to the page that you want to change.
    At the bottom of the page you will see an about this page link, click on the link.
    THis will open up the page to show the different objects within the page.
    download the BC4J (including the CO/EO objects) components into your <JDEV_HOME>/myclasses using the EXACT same directory structure created on your PC as the one on your apps server.
    Copy the WEBUI items to myprojects using the same directory structure as on the server
    Exapnd all the items on the page and find the item that you want to change which should be linked to a VO. If you click on the VO it should give you something link oracle.apps.icx.etc.etc.
    go to JAVA_TOP on your apps tier and download this file to the correct directory structure. As these files are a mix of class and xml files copy them all to your PC.
    You will have to decompile the class file to get java files (Jad is s good tool to do this). Copy the java files to your project directory.
    You will then have to import these files into your project using File-->Import.
    Hopefully this is a good start.

  • Copy items to the iPhoto Library option doesn't seem to work

    Hi, I'm using 7.1.1 and if I:
    1. De-select the create "Copy items to the iPhoto Library" option in Preferences/Advanced
    2. Create a new library
    It doesn't seem to work. The images are still being copied into the library -- that is, if I show the package contents of the library, the data directory has the photos. Additionally, if I do something like open, modify in photoshop and save one of the imported files, it doesn't show up in iPhoto. Likewise if I modify the file in iPhoto and then look at the photo in the file system using Preview or Photoshop, the iPhoto changes don't appear.
    Is this a bug? Is it not supposed to work like this? I believe that if I say "don't copy the files into the library" it means that it uses my original photos in their original location and that changes I make in iPhoto modify and manipulate the original files.
    I've tried this on two different machines and get the same results. Anyone have any ideas?
    Thanks!

    markand:
    Welcome to the Apple Discussions. It's not a bug. You don't understand correctly how iPhoto works in the "referenced" library mode. The Data folder contains the thumbnail files that iPhoto creates and needs to operate. The Originals folder will contain alias files linked to the source files at their location. Any edits, by iPhoto or by Photoshop configured correctly will result in a modified file in the Modified folder of iPhoto. *You should not open, rename, move or edit any file in the library package from the Finder.*
    Using Photoshop to edit photos in iPHoto must be done by selecting PS as the editor to use in iPhoto's General Preferences section. Then follow the instructions below to edit photos correctly:
    Using Photoshop (or Photoshop Elements) as Your Editor of Choice in iPhoto.
    1 - select Photoshop as your editor of choice in iPhoto's General Preference Section's under the "Edit photo:" menu.
    2 - double click on the thumbnail in iPhoto to open it in Photoshop. When you're finished editing click on the Save button. If you immediately get the JPEG Options window make your selection (Baseline standard seems to be the most compatible jpeg format) and click on the OK button. Your done.
    3 - however, if you get the navigation window that indicates that PS wants to save it as a PS formatted file. You'll need to either select JPEG from the menu and save (top image) or click on the desktop in the Navigation window (bottom image) and save it to the desktop for importing as a new photo.
    This method will let iPhoto know that the photo has been editied and will update the thumbnail file to reflect the edit..
    If you want to use both iPhoto's editing mode and PS without having to go back and forth to the Preference pane, once you've selected PS as your editor of choice, reset the Preferences back to "Open in main window". That will let you either edit in iPhoto (double click on the thumbnail) or in PS (Control-click on the thumbnail and seledt "Edit in external editor" in the Contextual menu). This way you get the best of both worlds
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've created an Automator workflow application (requires Tiger), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. It's compatible with iPhoto 08 libraries and Leopard. iPhoto does not have to be closed to run the application, just idle. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.

  • What exactly does "Copy items to the iPhoto library" do?

    Ok, so I recently switched to a Mac and will never go back.
    Now, I want to understand how iPhoto works and can't figure out what "Copy items to the iPhoto library" does.
    I imported one pic each way (checked and unchecked), and whether or not I have this checked, I see that the original file seems to be stored within the iPhoto library in the Pictures folder.
    I have used iTunes, and I realize iPhoto is more complicated, but still, I can't figure this out.

    Welcome to the Apple Discussions.
    It does exactly what it ays.
    and whether or not I have this checked, I see that the original file seems to be stored within the iPhoto library in the Pictures folder.
    I think if you look closely, with the option unchecked you'll notice that the Originals folder contains an alias to the file. (The file size is a hint )
    Some comments on running iPhoto in referenced mode: On import iPhoto will create an alias in the Originals Folder that points to your file. It will still create a thumbnail and, if you modify the pics, a Modified version within the iPhoto Library Folder.
    However, you need to be aware of a number of potential pitfalls using this system.
    1. Import and deleting pics are more complex procedures
    2. You cannot move or rename the files on your system or iPhoto will lose track of them on systems prior to 10.5 and iPhoto 08. Even with the later versions issues can still arise if you move the referenced files to new volumes or between volumes.
    3. Most importantly, migrating to a new disk or computer can be much more complex.
    +Always allowing for personal preference, I've yet to see a good reason to run iPhoto in referenced mode unless you're using two photo organisers.+
    If disk space is an issue, you can run an entire iPhoto Library from an external disk:
    1. Quit iPhoto
    2. Copy the iPhoto Library as an entity from your Pictures Folder to the External Disk.
    3. Hold down the option (or alt) key while launching iPhoto. From the resulting menu select 'Choose Library' and navigate to the new location. From that point on this will be the default location of your library.
    4. Test the library and when you're sure all is well, trash the one on your internal HD to free up space.
    If you're concerned about accessing the files, there are many, many ways to access your files in iPhoto:
    For 10.5 users: You can use any Open / Attach / Browse dialogue. On the left there's a Media heading, your pics can be accessed there. Apple-Click for selecting multiple pics.
    Uploaded with plasq's Skitch!
    To upload to a site that does not have an iPhoto Export Plug-in the recommended way is to Select the Pic in the iPhoto Window and go File -> Export and export the pic to the desktop, then upload from there. After the upload you can trash the pic on the desktop. It's only a copy and your original is safe in iPhoto.
    This is also true for emailing with Web-based services. If you're using Gmail you can use iPhoto2GMail
    If you use Apple's Mail, Entourage, AOL or Eudora you can email from within iPhoto.
    If you use a Cocoa-based Browser such as Safari, you can drag the pics from the iPhoto Window to the Attach window in the browser.
    Or, if you want to access the files with iPhoto not running, then create a Media Browser using Automator (takes about 10 seconds) or use THIS
    Other options include:
    1. *Drag and Drop*: Drag a photo from the iPhoto Window to the desktop, there iPhoto will make a full-sized copy of the pic.
    2. *File -> Export*: Select the files in the iPhoto Window and go File -> Export. The dialogue will give you various options, including altering the format, naming the files and changing the size. Again, producing a copy.
    3. *Show File*: Right- (or Control-) Click on a pic and in the resulting dialogue choose 'Show File'. A Finder window will pop open with the file already selected.
    Your choice, obviously, but best to be aware of all the ramifications. By all means post back if you require more info.
    You can set Photoshop (or any image editor) as an external editor in iPhoto. (Preferences -> General -> Edit Photo: Choose from the Drop Down Menu.) This way, when you double click a pic to edit in iPhoto it will open automatically in Photoshop or your Image Editor, and when you save it it's sent back to iPhoto automatically. This is the only way that edits made in another application will be displayed in iPhoto.
    Regards
    TD

  • ARD: destination items from the "copy items" window

    How can I delete or modify the list of last used destinations from the "copy items" window?
    Thanks in advance,
    Mike

    Hi,
    This issue may occur if there is a corruption of either the rule or within the mailbox.
    Please first try to reset the send/receive settings to check the result. Resetting the send/receive settings can be achieved by renaming the srs-file of your profile to .old. You can find the srs-file for your mail profile in:
    C:\Users\%username%\AppData\Roaming\Microsoft\Outlook
    If above doesn't fix the issue, please go to File > Manage Rule & Alerts, delete the rule and then run a repair of your Outlook data file. Then, recreate the rule to check the result. For detailed steps, please refer:
    http://www.msoutlook.info/question/133
    Please let me know the result.
    Regards,
    Steve Fan
    Forum Support
    Come back and mark the replies as answers if they help and unmark them if they provide no help.
    If you have any feedback on our support, please click
    here

  • I had to get my computer cleaned off. I have itunes back now how do i get my phones items back on itunes? I was backed up on icloud

    I had to get my computer cleaned off. I have itunes back now how do i get my phones items back on itunes? I was backed up on icloud

    It has always been very basic to always maintain a backup copy of your computer for just such an occasion.
    Use your backup copy to put everything back.

  • How to cancel the event in Item Adding and display javascript message and prevent the page from redirecting to the SharePoint Error Page?

    How to cancel the event in Item Adding without going to the SharePoint Error Page?
    Prevent duplicate item in a SharePoint List
    The following Event Handler code will prevent users from creating duplicate value in "Title" field.
    ItemAdding Event Handler
    public override void ItemAdding(SPItemEventProperties properties)
    base.ItemAdding(properties);
    if (properties.ListTitle.Equals("My List"))
    try
    using(SPSite thisSite = new SPSite(properties.WebUrl))
    SPWeb thisWeb = thisSite.OpenWeb();
    SPList list = thisWeb.Lists[properties.ListId];
    SPQuery query = new SPQuery();
    query.Query = @"<Where><Eq><FieldRef Name='Title' /><Value Type='Text'>" + properties.AfterProperties["Title"] + "</Value></Eq></Where>";
    SPListItemCollection listItem = list.GetItems(query);
    if (listItem.Count > 0)
    properties.Cancel = true;
    properties.ErrorMessage = "Item with this Name already exists. Please create a unique Name.";
    catch (Exception ex)
    PortalLog.LogString("Error occured in event ItemAdding(SPItemEventProperties properties)() @ AAA.BBB.PreventDuplicateItem class. Exception Message:" + ex.Message.ToString());
    throw new SPException("An error occured while processing the My List Feature. Please contact your Portal Administrator");
    Feature.xml
    <?xml version="1.0" encoding="utf-8"?>
    <Feature Id="1c2100ca-bad5-41f5-9707-7bf4edc08383"
    Title="Prevents Duplicate Item"
    Description="Prevents duplicate Name in the "My List" List"
    Version="12.0.0.0"
    Hidden="FALSE"
    Scope="Web"
    DefaultResourceFile="core"
    xmlns="http://schemas.microsoft.com/sharepoint/">
    <ElementManifests>
    <ElementManifest Location="elements.xml"/>
    </ElementManifests>
    </Feature>
    Element.xml
    <?xml version="1.0" encoding="utf-8" ?>
    <Elements xmlns="http://schemas.microsoft.com/sharepoint/">
    <Receivers ListTemplateId="100">
    <Receiver>
    <Name>AddingEventHandler</Name>
    <Type>ItemAdding</Type>
    <SequenceNumber>10000</SequenceNumber>
    <Assembly>AAA.BBB, Version=1.0.0.0, Culture=neutral, PublicKeyToken=8003cf0cbff32406</Assembly>
    <Class>AAA.BBB.PreventDuplicateItem</Class>
    <Data></Data>
    <Filter></Filter>
    </Receiver>
    </Receivers>
    </Elements>
    Below link explains adding the list events.
    http://www.dotnetspark.com/kb/1369-step-by-step-guide-to-list-events-handling.aspx
    Reference link:
    http://msdn.microsoft.com/en-us/library/ms437502(v=office.12).aspx
    http://msdn.microsoft.com/en-us/library/ff713710(v=office.12).aspx
    Amalaraja Fernando,
    SharePoint Architect
    Please Mark As Answer if my post solves your problem or Vote As Helpful if a post has been helpful for you. This post is provided "AS IS" with no warrenties and confers no rights.

    Recommended way for binding the list event handler to the list instance is through feature receivers.
    You need to create a feature file like the below sample
    <?xmlversion="1.0"encoding="utf-8"?>
    <Feature xmlns="http://schemas.microsoft.com/sharepoint/"
    Id="{20FF80BB-83D9-41bc-8FFA-E589067AF783}"
    Title="Installs MyFeatureReceiver"
    Description="Installs MyFeatureReceiver" Hidden="False" Version="1.0.0.0" Scope="Site"
    ReceiverClass="ClassLibrary1.MyFeatureReceiver"
    ReceiverAssembly="ClassLibrary1, Version=1.0.0.0, Culture=neutral,
    PublicKeyToken=6c5894e55cb0f391">
    </Feature>For registering/binding the list event handler to the list instance, use the below sample codeusing System;
    using Microsoft.SharePoint;
    namespace ClassLibrary1
        public class MyFeatureReceiver: SPFeatureReceiver
            public override void FeatureActivated(SPFeatureReceiverProperties properties)
                SPSite siteCollection = properties.Feature.Parent as SPSite;
                SPWeb site = siteCollection.AllWebs["Docs"];
                SPList list = site.Lists["MyList"];
                SPEventReceiverDefinition rd = list.EventReceivers.Add();
                rd.Name = "My Event Receiver";
                rd.Class = "ClassLibrary1.MyListEventReceiver1";
                rd.Assembly = "ClassLibrary1, Version=1.0.0.0, Culture=neutral,
                    PublicKeyToken=6c5894e55cb0f391";
                rd.Data = "My Event Receiver data";
                rd.Type = SPEventReceiverType.FieldAdding;
                rd.Update();
            public override void FeatureDeactivating(SPFeatureReceiverProperties properties)
                SPSite sitecollection = properties.Feature.Parent as SPSite;
                SPWeb site = sitecollection.AllWebs["Docs"];
                SPList list = site.Lists["MyList"];
                foreach (SPEventReceiverDefinition rd in list.EventReceivers)
                    if (rd.Name == "My Event Receiver")
                        rd.Delete();
            public override void FeatureInstalled(SPFeatureReceiverProperties properties)
            public override void FeatureUninstalling(SPFeatureReceiverProperties properties)
    }Reference link: http://msdn.microsoft.com/en-us/library/ff713710(v=office.12).aspxOther ways of registering the list event handlers to the List instance are through code, stsadm commands and content types.
    Amalaraja Fernando,
    SharePoint Architect
    Please Mark As Answer if my post solves your problem or Vote As Helpful if a post has been helpful for you. This post is provided "AS IS" with no warrenties and confers no rights.

  • Syncing iPad2: PLEASE HELP ME! My iPad2 has been stuck on step 8 of 8 for a day now - waiting to copy items. What can I do to fix this? Nothing is actually happening! I'm running ios5 on an iPad 2.

    I recently upgraded to to the iOS 5 on my iMac and iPad. Now when i sync my iPad it get stuck on step 8 with a prompt that says "waiting to copy items" it stays on like that for hours. When I eventually do disconnect my iPad it says sync is not complete. Now, some of my album artwork is not copied into my iPad but on iTunes in my iMac desktop everything is still there. Pulling my hair out with this one. Please help!

    my iPad it get stuck on step 8 with a prompt that says "waiting to copy items" it stays on like that for hours
    Reset your iPad.
    Hold the On/Off Sleep/Wake button and the Home button down at the same time for at least ten seconds, until the Apple logo appears.
    I recently upgraded to to the iOS 5 on my iMac and iPad
    You don't need to manually sync using iOS 5.
    Help here >  Apple - iCloud - Learn how to set up iCloud on all your devices.
    Message was edited by: Carolyn

  • How to modify a lookup field-type to use checkbox instead of radiobutton?

    How to modify a lookup field-type to use checkbox instead of radiobutton?
    I would like to modify the behavior for the lookup field.
    Normally you get a screen where it is possible to search through a lookup. The items resulted from the search are listed as radiobutton items. Therefore you can select only one at the time to be added.
    Is it possible to have the items to be listed as checkbox instead? So that you can check multiple items and therefore be able to add multiple items at the time?
    For example:
    To add the user to 10 different groups on MS-AD.
    It is desired to have the ability to check multiple groups to be added instead only one at the time.
    My client would like to use this feature in many other situations.

    Displaying will not be a big deal but with that you have to customize the action class and its working as well.

Maybe you are looking for

  • "Media kind" metadata not saved in file

    This has been noted in other threads, but I am wondering whether it is simply an iTunes bug, or whether there really isn't an ID3 tag associated with Media Kind. Are there any third-party tools that can modify this tag (and that iTunes will read on i

  • Why can I not buy songs from iTunes Music Store?

    Earlier this year I moved from the U.S.A. to Sweden... changing my 'Mac.com' account address while doing so. Last week, I tried to purchase some songs from the iTunes Music Store with my American MasterCard (a debit card) which is listed with my Swed

  • HT2404 Why isn't 'APP STORE' easier to FIND??????

    Can someone PLEASE explain why The geniuses with Apple DO NOT ALLOW US TO BOOKMARK THE  APP STORE (ver. 1.3) or any other version directly from our BROWSERS? Apple forces us to zigzag through their site to FIND additional software created by 3rd part

  • How to display attributes for a CHAR in the Excel file (BEx)?

    Hi all, I knew that I can display attributes for a CHAR (ex: attributes - address, phone#, zip code for CHAR-Customer) when I run Web- based report. But I cannot find this function after I export the file to Excel. In the context menu for excel file,

  • Help with Risk Rating calculation

    I'm trying to understand the risk rating calculation on an IPS4240 sensor.  From what I can tell, it looks like there are some additional parameters added to the equation that are not easy to determine.  It looks like the ARR (Attack Relevancy Rating