cancel
Showing results for 
Search instead for 
Did you mean: 

Determine Char value of class type 300 from class type 001

Former Member
0 Kudos

Dear friends

I have a requirement where i need to determine the one charactritcs value of class type 300 from the few of the charatrices of class type 001.

Could anyone pls guide me how to acchive this in steps.

Regards

RK

Accepted Solutions (0)

Answers (1)

Answers (1)

keyur_mistry1
Active Participant
0 Kudos

Rakesh,

What I usnderstand is you want to achieve value of one class type 300 from the class type 001.

Correct? If yes follow below solution.

You can achieve same requirement by using constrain to infer the value from one class to ther class.

Create one table by mixing the charcteristics of two class type.

Follow below exapmple.

Cstics: ABC_1 has value (A, B, C, D)

Cstics: XYZ_1 has value (W, X, Y, Z)

300 class contain ABC_1

001 class contain XYZ_1

Create variant tables that describe how the characteristics should be infer.


Varinat Table: Table_ABC_XYZ


ABC_1          XYZ_1

A                    W

A                    X

A                    Y

B                    Z

C                    Z

D                    X

Create constrain that which infer the value

Object:

ABC IS_A (300) class_ABC

XYZ IS_A (001) class_XYZ

Restriction:

Table_ABC_XYZ

(ABC_1 = ABC.ABC_1,

XYZ_1 = XYZ.XYZ_1).


Inference:

ABC.ABC_1,

XYZ.XYZ_1.


Same you can do through the procedure too.


Try your own sysntex now.