Package oracle.AWXML

Examples of oracle.AWXML.Attribute


    // Indicate that the primary key of the dimension table contains the
    // lowest-level dimension members.
    channelDim.setUseNativeKey(true);

    // Create the Long and Short Description Attribute objects for the Dimension.
    Attribute channelLDAttr = createLongDescAttr(channelDim);
    Attribute channelSDAttr = createShortDescAttr(channelDim);

    // Create the Level objects for the Dimension.

    // Create the detail level, CHANNEL_AW.
    Level channelLevel = channelDim.createLevel();
View Full Code Here


  /**
   * Create the Short_Description Attribute for a Dimension.
   */
  public Attribute createShortDescAttr(Dimension dim)
  {
    Attribute sdAttr = dim.createAttribute();
    sdAttr.setName("Short_Description");
    sdAttr.setClassification("MEMBER_SHORT_DESCRIPTION");

    return sdAttr;
  }
View Full Code Here

TOP

Related Classes of oracle.AWXML.Attribute

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.