Creating a property with list values derived from other hierarchy

Hello Friends,
Thanks in advance for any help in this regard.
1)     Can we have a property with list values populated automatically from other hierarchy.
2)     Can we select multiple items from the list box. Does property allows multiple values.
The example is like this. There are 2 hierarchies.
Customer
     Customer 1
     Child Customer
Industry
     Hightech
     Computers
     TVs
Manufacturing
     Auto
     Steel
     Healthcare
     Pharma
     HealthInsurance
The requirement is to add Industry hierarchy as property of Customer Hierarchy and select each customer is what type of Industry they belong as a property value.
Thanks

Use property data type ListGroup for multiselect.
To select values from another hierarchy you can use Node or MultiNode, or an Asscociated Node property, of which there are several types. I'm not fond of the property editors for Node data types and will often just use a string and validate the user input by defaultin prefixes and such with a derived property that is checked by a query based validation. Make sense?

Similar Messages

  • How to get metadata option list values derived from a table/view using SOAP

    I am writing an ASP.NET application that replicates some of the features of the SCS search interface. I have looked at the GET_DOC_METADATA_INFO service and its SOAP output. It has a few missing pieces of information, like the option list values for a field if that fields values are derived from a separate table/view. Some of the fields I am dealing with also make use of Dynamic Control Lists (DCL). Is there a way to get the DCL info using SOAP? I did notice that the dOptionListKey element contains the name of the view from which the option list values will be derived. However, I cannot find a service that takes the view name as a parameter to return the option list values. I have looked in the services reference manual, but I have not had any luck finding what I am looking for.
    TIA
    - Tyson
    Message was edited by: Add the word 'get' to the subject.
    Tyson

    Hello,
    What error you are getting? You code seems to be ok. I have tested below code and working fine
    XPathNavigator rTable = MainDataSource.CreateNavigator();
    String ddlSectionSelectedValue = Convert.ToString(rTable.SelectSingleNode("/my:myFields/my:ddlSection", NamespaceManager).Value);
    One think you can check that keep dropdown value display name and id same.
    Hemendra:Yesterday is just a memory,Tomorrow we may never see<br/> Please remember to mark the replies as answers if they help and unmark them if they provide no help

  • How to update a column with different values but all other row values r sam

    Hi,
    I have a table like this.
    Col1 col2 col3 col4
    10 20 30
    10 20 30
    10 20 30
    i need to update col4 with different values coming from other table like this
    Col1 col2 col3 col4
    10 20 30 xxxx
    10 20 30 yyyy
    10 20 30 zzzz
    how can i update the table. pls let me know how to use the where condition in the update stmt.
    thanks,
    jay
    Edited by: user2558790 on Nov 20, 2009 12:26 PM

    what is the logic for this kind of update...????
    Greetings,
    Sim

  • Is it possible to create purchase order with zero value ?

    Is it possible to create purchase order with zero value ?

    Hi,
    There are two scenarios where the purchase order is created with zero value.
    1. Standard Purchase order with Free tick indicator.
    Whenever we expect a material with free of cost from vendor, we use to put the free indicator in item overview.  This means the material is valuated at zero price irrespective of price control in material master. Quanitiy is updated while receipts.
    Conditions tab in item detail doesnt appear.
    2. Consignment PO.
    While creating a purchase order for consignment, the system doesnt ask us the price and the condition tab doesnt appear in item detail.
    An info record for consignment must be maintained before making the GR.
    Hope i have clarified.  If you want any further clarification. please do reply.

  • How to create a matrix with constant values and multiply it with the output of adc

    How to create a matrix with constant values and multiply it with the output of adc 

    nitinkajay wrote:
    How to create a matrix with constant values and multiply it with the output of adc 
    Place array constant on diagram, drag a double to it, r-click "add dimension". There, a constant 2D double array, a matrix.
    /Y
    LabVIEW 8.2 - 2014
    "Only dead fish swim downstream" - "My life for Kudos!" - "Dumb people repeat old mistakes - smart ones create new ones."
    G# - Free award winning reference based OOP for LV

  • How to create an rule with action to subtract from the event log of Ips manager express console?

    how to create an rule with action to subtract from the event log of Ips manager express console?, some knows of has an guide?.
    Thank you.
    Sent from Cisco Technical Support iPad App

    Hi,
    http://www.cisco.com/en/US/products/sw/secursw/ps2113/products_tech_note09186a0080bc7910.shtml
    HTH
    Luis Silva
    "If you need PDI (Planning, Design, Implement) assistance feel free to reach us"
    http://www.cisco.com/web/partners/tools/pdihd.html

  • FM to create role derived from other role

    Hi,
    I have to create roles derived from other roles. i need FM which can create roles derived from other roles. can anybody help me.
    Thanks in advance.

    Try BAPI_BUPA_ROLE_ADD_2
    Refer: http://abap.wikiprog.com/wiki/BAPI_BUPA_ROLE_ADD_2

  • How to create a window with its own window border other than the local system window border?

    How to create a window with its own window border other than the local system window border?
    For example, a border: a black line with a width 1 and then a transparent line with a width 5. Further inner, it is the content pane.
    In JavaSE, there seems to have the paintComponent() method for the JFrame to realize the effect.

    Not sure why your code is doing that. I usually use an ObjectProperty<Point2D> to hold the initial coordinates of the mouse press, and set it to null on a mouse release. That seems to avoid the dragging being confused by mouse interaction with other nodes.
    import javafx.application.Application;
    import javafx.application.Platform;
    import javafx.beans.property.ObjectProperty;
    import javafx.beans.property.SimpleObjectProperty;
    import javafx.collections.FXCollections;
    import javafx.event.ActionEvent;
    import javafx.event.EventHandler;
    import javafx.geometry.Point2D;
    import javafx.geometry.Pos;
    import javafx.scene.Node;
    import javafx.scene.Scene;
    import javafx.scene.control.Button;
    import javafx.scene.control.ChoiceBox;
    import javafx.scene.input.MouseEvent;
    import javafx.scene.layout.AnchorPane;
    import javafx.scene.layout.StackPane;
    import javafx.scene.layout.VBox;
    import javafx.scene.paint.Color;
    import javafx.stage.Stage;
    import javafx.stage.StageStyle;
    import javafx.stage.Window;
    public class CustomBorderExample extends Application {
      @Override
      public void start(Stage primaryStage) {
      AnchorPane root = new AnchorPane();
      root.setStyle("-fx-border-color: black; -fx-border-width: 1px; ");
      enableDragging(root);
      StackPane mainContainer = new StackPane();
        AnchorPane.setTopAnchor(mainContainer, 5.0);
        AnchorPane.setLeftAnchor(mainContainer, 5.0);
        AnchorPane.setRightAnchor(mainContainer, 5.0);
        AnchorPane.setBottomAnchor(mainContainer, 5.0);
      mainContainer.setStyle("-fx-background-color: aliceblue;");
      root.getChildren().add(mainContainer);
      primaryStage.initStyle(StageStyle.TRANSPARENT);
      final ChoiceBox<String> choiceBox = new ChoiceBox<>(FXCollections.observableArrayList("Item 1", "Item 2", "Item 3"));
      final Button closeButton = new Button("Close");
      VBox vbox = new VBox(10);
      vbox.setAlignment(Pos.CENTER);
      vbox.getChildren().addAll(choiceBox, closeButton);
      mainContainer.getChildren().add(vbox);
        closeButton.setOnAction(new EventHandler<ActionEvent>() {
          @Override
          public void handle(ActionEvent event) {
            Platform.exit();
      primaryStage.setScene(new Scene(root,  300, 200, Color.TRANSPARENT));
      primaryStage.show();
      private void enableDragging(final Node n) {
       final ObjectProperty<Point2D> mouseAnchor = new SimpleObjectProperty<>(null);
       n.addEventHandler(MouseEvent.MOUSE_PRESSED, new EventHandler<MouseEvent>() {
          @Override
          public void handle(MouseEvent event) {
            mouseAnchor.set(new Point2D(event.getX(), event.getY()));
       n.addEventHandler(MouseEvent.MOUSE_RELEASED, new EventHandler<MouseEvent>() {
          @Override
          public void handle(MouseEvent event) {
            mouseAnchor.set(null);
       n.addEventHandler(MouseEvent.MOUSE_DRAGGED, new EventHandler<MouseEvent>() {
          @Override
          public void handle(MouseEvent event) {
            Point2D anchor = mouseAnchor.get();
            Scene scene = n.getScene();
            Window window = null ;
            if (scene != null) {
              window = scene.getWindow();
            if (anchor != null && window != null) {
              double deltaX = event.getX()-anchor.getX();
              double deltaY = event.getY()-anchor.getY();
              window.setX(window.getX()+deltaX);
              window.setY(window.getY()+deltaY);
      public static void main(String[] args) {
      launch(args);

  • I cannot download videos with flash video downloader from other websites also.Whenever I want to download video it says choose file.

    I cannot download videos with flash video downloader from other websites also.Whenever I want to download video it says choose file.

    I don't know that any Flash downloader extensions work in Firefox for Android. You would be best off asking for support from the extension authors at https://fvdmedia.userecho.com/list/21650-firefox-extensions/?category=4944

  • Search on Custom UserProfile property with multiple values in a Result Source

    For my customer i have created a news system based around pagelayouts, contenttypes and the new SharePoint 2013 Content by Search Webpart.
    When my customer creates a new "news page", they have the option to tag the news with a category, which is a manage metadata field. I use this property to filter different views in the "Content By Search Web Parts" presented on the front
    page of their intranet.
    The customer also wanted a "user specific" news result source, which returned the news in which the user was interested in reading.
    To make this feature possible I created a custom user profile property, which was hooked to the same Term source as the field on the news content type. By doing so the users would be able to select the news categories(channels) they are interested in seeing.
    I then created a result source, that matched the users selection with the selected category on the news and thereby only return the result that the users were interested in.
    This worked flawlessly, until they encountered a situation where a user selected more than one category. The result source always only returns news where the category matches the first tag in the users selection. It completely ignores the other selections
    chosen by the user.
    Underneath you can see the configurations.
    Users selection on their profile:
    The result source query and result:
    Where owstaxIdPANewsCategory is the Managed Property hooked to the category field on the news content type.
    The above result should have given me 2 items, do to the fact that there are one news tagged with "test1" and one news tagged with "test2".
    Any help would be appreciated 

    My colleague came up with the answer.
    The correct syntax in my case would be as follows:
    {|owstaxIdPANewsCategory:{User.NewsCategory}}
    the "|" char indicates that it should match it up against all selected values.
    taken from: http://technet.microsoft.com/en-us/library/jj683123.aspx

  • How can I create a hashmap() with multiple values for the same key?

    I am trying to write an application that will us something like a Map() with multiple values but some have the same key. Is this possible?

    i had the same question. just create a List, add all the values u want to it, and then put the List into the map like u would a normal single value. e.g.
    List list = new ArrayList();
    list.add(value1);
    list.add(value2);
    map.put(key, list);
    i bet u r doing the same course as i am =)

  • Print or export runtime created vector graphics with alpha values intact

    I want to be able to save the dynamically generated state of a swf as a vector image. I know I can right click on the swf and print to a pdf via the Adobe pdf print driver. This works well but all alpha values are lost. Does anyone know how to print to a pdf or any other vector format and retain the alpha values? The pdf format clearly supports it as I can save objects with alpha values from Illustrator as a pdf no problem.
    Any alternative solution that achives this result would be welcome e.g. save runtime swf via actionscript to swf or Illustrator format etc.
    thanks

    Hi All,
    Flash Pro CC 2014 (v14.0.0.110) is now available for download via the Creative Cloud App and Adobe website.
    We have added SVG Export feature to Flash Pro with this new release. You will now be able to export out vector content from the selected frame as an SVG image that can be opened directly in a Browser and even imported in Adobe Illustrator.
    SVG Export option can be accessed via the Publish Settings as well as via File Menu > Export > Export Image option.
    Along with this, we have added several new features with this release. Complete list is available at these links:
    Overview:         https://www.adobe.com/in/products/flash.html
    Whats new:      https://helpx.adobe.com/flash/using/whats-new.html
    Release Notes: https://helpx.adobe.com/flash/release-note/flash-professional-cc-2014.html
    Thanks,
    Nipun

  • Create a drop-down list that populates from AD

    Hello,
    Is there a way to create a drop-down list in Excel that will populate from active directory?  I'm finding all sorts of stuff for SharePoint, but nothing for Excel. 
    Thanks!
    -Dusty

     If you are using the following version of Excel:
    1.Microsoft Office 2010 Professional Plus with Software Assurance
    2.Microsoft Office 2013 Professional Plus, Office 365 ProPlus or Excel 2013 Standalone
    You can download and install the Power Query add-in, then you can import the data from Active Directory to Excel.
    Wind Zhang
    TechNet Community Support

  • Powershell to create pop box which then creates a folder (with entered value) and sub folder with specific security

    Hi All,
    Complete novice to powershell would love some help to assist a new windows storage workflow I am implementing.
    I have a windows server 2012 file server (\\FS01) and projects share \\fs01\projects. 
    We use job numbers to create a project and name the folders with the job num (eg Job Num XX12345 , \\fs01\projects\XX12345)
    Then after each project folder is created we will create 4 subfolders underneath and specify the following rights to the following AD groups.
    Folder Name - AD Group- Permission
    Scoping - Project_Management -RW
    Delivery - Project_Management -R
    Finance - Finance- RW
    Assets - Creative - R
    I would like to create a script that lives in the route of \\FS01\Projects and when clicked a pop up box appears, the end users enters the job code  and then the script sets up the folder with the entered value and creates sub folders with the referenced
    AD groups and security.
    Any help would be awesome!
    Sammy

    Start by learning how to write PowerShell scripts.  What you are asking is a whole complex list of requirements.  This is a forum and not free consulting or training.
    Workflows are complex beasts that require a good knowledge of PowerShell.  Now is the time to start your training.  I recommend starting with a good book and taking your time learning PowerShell step-by-step.
    ¯\_(ツ)_/¯

  • Creating Sales Order with reference to Quotation from different Sales Area

    Hi,
    I would like to inform you that our customer (GE ENERGY OC) from Europe have a requirement where they want to create sales orders with reference to quotation that is from different sales area. Standard SAP functionality doesn't allow this feature, hence requesting your help to give me an update in this regard.
    Please treat this as urgent as they have to do business cutover where they are in the process of completing open sales orders.
    Thanks
    Ashfaq
    Mobile: +91-98857-07558
    E-Mail: [email protected]

    Hi RadhaKrishna,
    In standard system it is not possible to create sales order from a quotation whose sales are is different.
    However I think this is possible by using some user exit in sales order. I have never tried this.
    Regards
    srini

Maybe you are looking for

  • How to display af:iterator in a grid

    Hi, I am using jdev 11g. I have af:iterator that displays panel boxes. I want to display the iterator in a grid 3x3 or 4x4 ... Kindly advice how it can be done Regards Emile BITAR

  • CFFORM + IE bug?

    I've seen numerous posts relating to similar issues (and have tried many of their solutions) - but the issue I'm having seems to be a bit more specific. A cfform type="flash" that is compiled, displayed, and functions issue free in Firefox (Win, Lin,

  • Flash CS 5.5 code hinting

    Hi all ! Hope someone can help me! I just got Flash CS 5.5 on my Mac and code hinting is not working at all... I tried many of the suggestions in the different threads concerning this problem to no avail... It just is broken! Used to work quite well

  • I want to open othere pass cod for my phone please?

    I need help to open my iphone phone because i for gotten my screen pass ward

  • Pcspkr - snd_pcsp

    I don't know if this is a question or info, so I went for the "safe option": newbie section. Since I kernel updated(from 2.6.26 to 2.6.27) the module controlling the system beep has change name from pcspkr to snd_pcsp. Is it more to it then a name ch