This Blog is mainly on SAP Exam Questions and Selected "How-to" SAP processes

Saturday, August 20, 2011

Question no 1358 : Object Dependency and Classification

In SAP LDM Classification, evaluate and write the correct syntax for the object dependency ...

Characteristics : Quantity
              format : Character
              values : 1, 2, 3, 4, 5, 6, 7, 8 
     
Characteristics : Length
              format : Numeric 
               value :  100, 200, 300, 400, 500

Requirement : if length is more then 200, then the quantity is 6.

A)   $SELF.Quantity = 6 (assign to the value 300,400,500 of characteristics length)
B)    $SELF.Quantity = ‘6’ (assign to the value 300,400,500 of characteristics length)
C)    $SELF.Quantity = ‘6’ if LENGTH > 200 (assign to the value 8 of characteristics quantity)
D)    $SELF.Quantity = ‘6’ if LENGTH > 200 (assign to the characteristics quantity header)
E)    $SELF.Quantity = 6 if LENGTH > 200 (assign to the characteristics quantity header) 
.

.

2 comments:

  1. The Syntax:
    $self.characteristic = characteristic value if condition is TRUE
    is to be assigned to the characteristic header, class or configuration profile

    ReplyDelete

Note: Only a member of this blog may post a comment.