Frage

X and Requirement are existing attributes.

I want to create an attribute Z such that, for the given object, if Requirement=True, then Z={the value of attribute X}, but if Requirement=False, then Z={Object Heading and Object Text}.

What is the DXL for making this attribute? Thanks.

War es hilfreich?

Lösung

This is untested code but try something like this: (assuming attribute z exists as text)

Module m = current
Object o


for o in m do
{
   if ((o."Requirement") == "true")
   {
       o."z" = o."x" ""
   }
   else   // requirement = false
   {
       o."z" = o."Object Heading" "\n" o."Object Text" ""

   }
}
Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top