Compounding绑定属性

声明:原创作品,转载时请注明文章来自SAP师太技术博客:www.cnblogs.com/jiangzhengjun,并以超链接形式标明文章原始出处,否则将追究法律责任!原文链接:http://www.cnblogs.com/jiangzhengjun/p/4295520.html

Compounding:绑定另一特征属性,即某个特征不能作为主键,还需要另一特征属性一起作为主键(如 Item行项目号不能单独做为主键,还需要一个凭证号才能一起作为主键),如这里的成本中心还需要与控制区域一起才能唯一标识一数据。这种绑定的属性(这里指0CO_AREA)会在特征(这里是成本中心ZCOSTC00)被使用时(如该特征被作为另一特征的属性、被Cube使用等),该属性会一并被带过去

P表(时间无关属性)中一起作为主键:

在使用绑定了属性的特征时,会一并将绑定属性带过来,下面针对上面绑定了属性的ZCOSTC00进行测试:

上面ZCOSTC00T特征将ZCOSTC00特征作为属性时,会将绑定属性0CO_AREA一起带过来

时间: 2024-10-16 06:37:57

Compounding绑定属性的相关文章

[十六]SpringBoot 之 读取环境变量和绑定属性对象

1.读取环境变量 凡是被spring管理的类,实现接口EnvironmentAware 重写方法 setEnvironment 可以在工程启动时,获取到系统环境变量和application配置文件中的变量. 主要是@Configuration,实现接口:EnvironmentAware就能获取到系统环境信息 package me.shijunjie.config; import org.springframework.beans.factory.annotation.Value; import

vue2.* 绑定属性 绑定Class 绑定style 03

<template> <div id="app"> <!-- 绑定属性 --> <div v-bind:title="title">你好,世界</div> <!-- 绑定class --> <div :class="{'red':flag,'blue':!flag}">你好,世界</div> <!-- 绑定style --> <div

vue 绑定属性 绑定Class 绑定style

1 <template> 2 3 4 <div id="app"> 5 6 <h2>{{msg}}</h2> 7 8 <br> 9 10 <div v-bind:title="title">鼠标瞄上去看一下</div> 11 12 13 <img src="https://www.itying.com/themes/itying/images/logo.gif&quo

3.绑定属性、绑定html、绑定class、绑定style

1.绑定属性 <template> <div id="app"> <!-- 绑定属性 --> <br> <div v-bind:title='title'>鼠标悬浮出现</div> <br> <img :src="url" alt="仙女"> </div> </template> <script> export de

Angular 2 自定义 双向绑定 属性

import { Component, OnInit, Output, Input, EventEmitter } from '@angular/core'; @Component({ selector: 'twoway', template: ` <input [(ngModel)]="username"> <p>Hello {{username}}!</p> ` }) export class TwoWayComponent implements

给类,实例绑定属性和方法

class Student(object): pass >>> s = Student() >>> s.name = 'Michael' # 动态给实例绑定一个属性 >>> print(s.name) Michael >>> def set_age(self, age): # 定义一个函数作为实例方法 ... self.age = age ... >>> from types import MethodType &g

v-bind绑定属性样式——class的三种绑定方式

1.布尔值的绑定方式 <div id="demo"> <span v-bind:class="{'class-a':isA ,'class-b':isB}"></span> </div> var vm = new Vue({ el:"#demo", data:{ isA: true, isB: true } }) 2.变量的绑定方式 <div id="demo"> &

装饰模式之AOP之动态改变参数,和原函数绑定属性丢失

//动态改变参数一Function.prototype.before = function( beforefn ){ var __self = this; return function(){ beforefn.apply( this, arguments ); // (1) return __self.apply( this, arguments ); // (2) } } var func = function( param ){ console.log( param ); // 输出: {

vuejs学习笔记(1)--属性,事件绑定,ajax

属性 v-for 类似于angular中的 ng-repeat ,用于重复生成html片段: <ul id="box"> <li v-for="(v, i) in list">{{v}}</li> </ul> <script> var vm = new Vue({ el: '#box', // 对应的元素选择器 或者是 指向元素的变量 data: { // data list: [1,2,3] } });