SAP Jobsuche bei DV-Treff
Thomas
  • Thomas
  • SAP Forum - Neuling Thema Starter
vor 3 Tage
Ich habe folgende Prozedur:

$self.MERKMAL_1 = 'JA'

if CODE ='FTS',

$self.MERKMAL_2 = 'JA'

if MERKMAL_1 = 'JA',

$self.MERKMAL_3 = 'JA'

if MERKMAL_1 = 'JA',

Kann ich die Merkmale auch eleganter belegen?

So funktioniert es jedenfalls nicht:

$self.MERKMAL_1 = 'JA'

and $self.MERKMAL_2 = 'JA'

and $self.MERKMAL_3 = 'JA'

if CODE ='FTS',

Die Logik für die Belegung von MERKMAL_1 kann durchaus auch deutlich komplexer ausfallen.

Vielen Dank für hilfreiche Antworten

Förderer

Thomas
  • Thomas
  • SAP Forum - Neuling Thema Starter
vor 2 Tage
Ich habe eine Lösung gefunden:

(

$self.MERKMAL_1 = 'JA',

$self.MERKMAL_2 = 'JA',

$self.MERKMAL_3 = 'JA'

)

if CODE ='FTS',