2009 Nov 13 2:54 PM
hi i am new at here and ABAP.so i think question is easy for you.
report ztest7.
data xxx type string value 'fenerbahce'.
write xxx.
perform ccc.
form ccc .
xxx = 'galatasaray'.
write xxx.
endform.
write xxx.
this code gives a error which is "statement is not accessible". in the last row.
can you help me.
thanks.
altuko.
hi i am new at here and ABAP.so i think question is easy for you.
report ztest7.
data xxx type string value 'fenerbahce'.
write xxx.
perform ccc.
form ccc .
xxx = 'galatasaray'.
write xxx.
endform.
write xxx.
this code gives a error which is "statement is not accessible". in the last row.
can you help me.
thanks.
altuko.
2009 Nov 13 2:58 PM
DATA xxx TYPE string VALUE 'fenerbahce'.
WRITE xxx.
PERFORM ccc.
WRITE xxx. -
>>>>>>this was the error.
FORM ccc .
xxx = 'galatasaray'.
WRITE xxx.
ENDFORM. "ccc
2009 Nov 13 2:59 PM
Hi Altuko,
Please write the last statement WRITE XXX after PERFORM CC like below :-
report ztest7.
data xxx type string value 'fenerbahce'.
write xxx.
perform ccc.
write xxx.
form ccc .
xxx = 'galatasaray'.
write xxx.
endform.
This will work. I have tested.
Please set to resolved if it helps you.
Regards
Abhii...
2009 Nov 13 3:05 PM
2009 Nov 13 3:05 PM
Moderator message - Sorry - this is not a training forum. Basic questions should not be asked. or answered.
2009 Nov 13 3:38 PM
2009 Nov 13 3:51 PM
You would probably be better off joining some other ABAP groups . I believe YAHOO has anumber of them.
(Probably best to avoid SAPFANS as well.)
Rob
Edited by: Rob Burbank on Nov 13, 2009 10:51 AM
| User | Count |
|---|---|
| 3 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |