‎2009 Dec 13 5:05 PM
Hi all,
How can i check dependencies, created in CU01?
The function module 'CUKD_GET_XREF' returns only values of Characteristics, which used in dependencies.
But does not return information about operator: OR, AND etc, and about EQUAL or NOT EQUAL etc.
How can i check correct entries of Characteristics, used in my dependencies?
Thank you.
‎2009 Dec 13 6:07 PM
Program Found locations/short description
LCURTF15 691 CALL FUNCTION 'CUKD_GET_XREF'
EXPORTING
KNNUM = XCUKB-KNNUM
DATE = INT_DATE
TABLES
XREF_TAB = LT_XREF
EXCEPTIONS
NO_REC_FOUND = 0.
LCURTF19 85 CALL FUNCTION 'CUKD_GET_XREF'
EXPORTING
KNNUM = XCUKB-KNNUM
DATE = INT_DATE
TABLES
XREF_TAB = LT_XREF
EXCEPTIONS
NO_REC_FOUND = 0.
LCUXAF15 692 CALL FUNCTION 'CUKD_GET_XREF'
EXPORTING
KNNUM = XCUKB-KNNUM
DATE = INT_DATE
TABLES
XREF_TAB = LT_XREF
EXCEPTIONS
NO_REC_FOUND = 0.
LCUXAF19 82 CALL FUNCTION 'CUKD_GET_XREF'
EXPORTING
KNNUM = XCUKB-KNNUM
DATE = INT_DATE
TABLES
XREF_TAB = LT_XREF
EXCEPTIONS
NO_REC_FOUND = 0.
‎2009 Dec 13 6:13 PM
‎2009 Dec 14 6:21 AM
When i assign values to characteristics in classification of material(MM02) function module 'CUKD_GET_XREF' does not call!
‎2009 Dec 14 8:30 AM
I have created characteristics of class:
1) name: AAA
values: 111, 222, 333
2) name: BBB
values: 444, 555, 777
I have created dependency ZTEST:
$SELF.BBB = '444' or $SELF.BBB = '555'
and assign it to AAA=111.
Now, when i assign characteristics to material, when i assign BBB=777, in AAA i can see only value 222 and 333.
When i assigning AAA=111, and BBB=777, i have an error when check.
How can do this steps(get error or not) by Function module or Z-program?
Thanks.