cancel
Showing results for 
Search instead for 
Did you mean: 

CU21 dependency editor

Former Member
0 Kudos

Does anyone know where to find the syntax for creating code in the dependency editor? I've search here in the forums and other forums, SAP Help portal, the internet, everywhere I could think of and could not find it. Some sample code: ?c is_a (300) MO_TEST_CLASS_2 This is no ABAP I ever saw.

Thanks in advance for your help.

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

Hi,

Pl check this [link|http://help.sap.com/saphelp_47x200/helpdata/en/92/58c4de417011d189ec0000e81ddfac/frameset.htm] for writing code for dependencies in the dependency editor.

Regards

Venugopal

Edited by: Venugopal Rao Dudgundi on Mar 10, 2009 1:18 PM

Former Member
0 Kudos

Venogopal,

Thank you for your reply, however, there is nothing behind the "link" you included in your reply. Could you please repost.

Thanks.

Former Member
0 Kudos

Hi,

CU21 is for creation of Dependency net which have group of constraints as Mr Neeraj Said.

Constraint is one of the dependency which is used to restrict and infer the values to Character.

Syntax

It has four sections

OBJECTS:

P IS_A(300) CLASS_NAME

CONDITION:

P.CHAR_A = 'VALUE1'

RESTRICTION:

P.CHAR_B = 'VALUE2'

INFERENCES:

P.CHAR_B

In objects we have to refer the objects to which they belongs.

here in this code P is refer to class 'CLASS_NAME'

you can see this P we had written before the each object in condition , restriction and inferences

section .It means CHAR_A & CHAR_B are belongs to the class 'CLASS_NAME'.

prerequisite is these char should be assigned to the class.

Regards

Praveen

neeraj_bhardwaj4
Contributor
0 Kudos

Hi

There are predefined Syntax for different Object Dependencies (Constraints, Precondition, Selection condition and Procedure..) for some defined functions.. It is nowhere related to ABAP...

This PDF will surely help u... see from page 73.. you will get the syntax there..

[help.sap.com/printdocu/core/Print46c/en/data/pdf/LOVC/LOVC.pdf ]

CU21 is for Dependency Net.. It contains number of constraints..

CU02 is for Precondition, Procedure or Selection Condition...

Do u require help in some particular scenario..???

Thanks

Neeraj

Edited by: NEERAJ BHARDWAJ on Mar 10, 2009 6:02 AM