do 4 times.
sy-tabix,sy-index.
end do.
what is the output ?
Answers were Sorted based on User's Feedback
Answer / purnachander nagula
REPORT yputest1 .
START-OF-SELECTION.
DO 5 TIMES.
WRITE:/ 'sy-index', sy-index.
WRITE:/ 'sy-tabix', sy-tabix.
ENDDO.
Result
test
sy-index 1
sy-tabix 1
sy-index 2
sy-tabix 1
sy-index 3
sy-tabix 1
sy-index 4
sy-tabix 1
sy-index 5
sy-tabix 1
Is This Answer Correct ? | 14 Yes | 1 No |
Answer / sudhakar
SY_INDEX Increments to 1 inside the DO.ENDDO Iteration and in WHILE.ENDWHILE.
While SY_TABIX is set to 0.
Note: It is used to determine the lines inside the LOOP.ENDLOOP statement.
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / raghuveer
do 4 times will give the following values:
sy-index = 4.
sy-tabix = 1(default value).
sy-index will work only in do and while, where as sy-tabix
will works only in loop...endloop.
Is This Answer Correct ? | 5 Yes | 9 No |
How to Modify Layout set for RVORDER01 for printing sales order confirmation. plz mention the detail coding Tahnks, Rahul
What is the BAPI_CUSTMATINFO_GETDETAILM used for? what is the input and output of this bapi.
what are the types of lists in pf-status in mod pool?
What is PS structure
what are the events triggered in report?which tigers first?
Explain what is a foreign key relationship? Explain this with the help of an example.
Which function modules can be used to transfer the data using bdc programming? : abap bdc
What are two methods of modifying sap standard tables?
what is leave to TRANSACTION?
what is session and what is the use of that one?
What you did in scripts?
3 Answers Cap Gemini, FutureSoft,
what are the various types of parameters and how are they distinguished from one another?