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 / raju

output:

0 0
1 1
1 1
0 0

Is This Answer Correct ?    25 Yes 5 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How can we omit a leading sign and a leading zero in sapscript?

612


What are standard layouts sets in the sap script?

557


IN SCRIPTS IF WE HAVE EMPTY SECOND LAYOUT AND IF WE HAVE MENTIONED ABOUT IT IN NEXT PAGE ATTRIBUTE THEN IN OUTPUT HOW WE GET THE SECOND PAGE OUTPUT.

1503


​​What is constructor expression in​​ nw​​ abap​​ 7.4?

637


Define structure in abap data dictionary?

622






When to use logical database?

573


In which time constraint does the infotype records depend on the subtype ? : abap hr

640


Badi concepts

929


how to Create reports in SD module such as sales order report, which covers all organization levels, delivery status, invoice status, shipping details and partner function details. The data will be extracted from VBAP, VBPA, VBAK, VBUP, VBFA, KNA1, LIPS, VBRP, MARA, VBEP and KONV tables. plz mention the detail coding Tahnks, Rahul

2873


In sap scripts, how will you link form with the event driven?

552


Explain the relationship between a functional area, user group, and query when developing queries using the sap query tool?

584


How many types of tables exist and what are they in data dictionary?

604


Explain sap abap 3-tier architecture?

737


while implementing badi what are the tables u find??

3621


What is a database view? : abap data dictionary

649