[52144] in SAPr3-news
Re: Basic ABAP Question
daemon@ATHENA.MIT.EDU (Wulf Kruempelmann)
Sat Nov 6 06:58:15 2004
To: sapr3-news@mit.edu
Date: Sat, 06 Nov 2004 12:56:02 +0100
From: Wulf Kruempelmann <wulfk@t-online.de>
Message-ID: <cmie4c$ms8$01$1@news.t-online.com>
Buck Turgidson wrote:
> I am trying to implement the following if/then psuedocode in ABAP. I am not
> sure how to do this with the ABAP construct. Any advice would be
> appreciated. It is the nested "then" that I am not sure how to do in ABAP.
>
>
if f1 = 'a'.
if f2 = 'b'.
perform something_1.
else.
perform something_2.
endif.
else.
perform something_1.
endif.
>
>