what is the output of given code?
data : f1 type i,
f2 type i.
write : / f1, f2.
do 2 times.
perform addfld.
enddo.
write : / f1, f2.
form addfld.
data : f1 type i, f2 type i.
add 1 to f1.
add 1 to f2.
write : / f1 , f2.
endform.
int : f1 , f2.
Answer Posted / vamsi krishna
0 0
1 1
2 2
0 0
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What happens when you post goods issue after delivery? How does the inventory get reduced after the delivery?
What is the use of buffering?
What is table buffer?
What are the system fields? Explain?
How can you display frames (horizontal and vertical lines) in lists?
Why do we use types statement in abap programming?
Different types of luws. What are they?
What is partner selection?
What are the differences between macro and subroutine?
Different types of locks?
Name the abap/4 modularization techniques?
What is abap dictionary or data dictionary? What is the transaction to access abap dictionary? : abap data dictionary
how to Implement a BADI in which it restricts the access when purchase order is created against contract using definition ME_PURCHDOC_POSTED. please tell me the answers if any one knows. thanks in advance. :ravikiran
What is narrow casting and wide casting?
Why do we use Abstract classes give an example from your project?