on ‎2005 Nov 23 5:54 PM
Hi Gurus,
I want some help with ABAP coding for an update routine please. I am looking for the code in right syntax...i am not an ABAP'er
This is what i want
IF COMM_STRUCTURE- FIELD1 IS Initial
Result= "yes"
ELSE
IF NOT COMM_STRUCTURE- FIELD1 IS Initial AND IF NOT COMM_STRUCTURE- FIELD2 is initial
Result="no"
Else
RESULT= "abc"
Thank you
Southie
Request clarification before answering.
Hi
here is a quick demo:
DATA: a,b, result(10).
IF a IS Initial.
Result = 'yes'.
ELSEIF NOT a IS Initial AND NOT b is initial.
Result = 'no'.
Else.
RESULT = 'abc'.
ENDIF.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
| User | Count |
|---|---|
| 8 | |
| 5 | |
| 4 | |
| 4 | |
| 3 | |
| 3 | |
| 2 | |
| 2 | |
| 2 | |
| 2 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.