Hi,
I have 100 records in a table, how to read every 7Th record
each in that...
Answer Posted / vamshi reddy chaduvu
Try this sample code..........
REPORT ZHGSL__TEST.
DATA: IT_KNA1 TYPE STANDARD TABLE OF KNA1,
IT_KNA2 TYPE STANDARD TABLE OF KNA1,
WA_KNA1 LIKE LINE OF IT_KNA1.
DATA: T TYPE I.
SELECT * FROM KNA1 INTO TABLE IT_KNA1 UP TO 100 ROWS.
DO .
T = SY-INDEX * 7.
READ TABLE IT_KNA1 INTO WA_KNA1 INDEX T .
IF SY-SUBRC EQ 0.
APPEND WA_KNA1 TO IT_KNA2.
ELSE.
EXIT.
ENDIF.
ENDDO.
CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
EXPORTING
I_CALLBACK_PROGRAM = SY-CPROG
I_STRUCTURE_NAME = 'KNA1'
TABLES
T_OUTTAB = IT_KNA2
EXCEPTIONS
PROGRAM_ERROR = 1
OTHERS = 2
.
IF SY-SUBRC <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.
| Is This Answer Correct ? | 37 Yes | 1 No |
Post New Answer View All Answers
What is the difference between a structure and an append structure?
A field containing currency amounts (data type curr) must be assigned to a reference table and a reference field. Explain?
what is user specific parameter?
What are the objects of the abap dictionary or what types of objects can be created in the abap dictionary? : abap data dictionary
Explain lsmw?
Power is interrupted while transferring data from internal table to application server. How will you determine many records are transferred in session method and call transaction method? : abap bdc
What are system variable in abap?
In events, start-of-selection is a default event. When we have to use this event explicitly? Why?
In which time constraint does the infotype records depend on the subtype ? : abap hr
Explain the use of table maintenance allowed?
What are your ways to performance optimization?
What are internal tables? How do you get the number of lines in an internal table? How to use a specific number occurs statement?
What is sap abap data dictionary?
What is the major difference between pool tables and transparent tables?
What is the first thing you do after vendor setup is complete?