What does an extract statement do in the ABAP program?

Answer Posted / shankar

Once you have declared the possible record types as field groups and defined their structure, you can fill the extract dataset using the following statements:

EXTRACT <fg>.

When the first EXTRACT statement occurs in a program, the system creates the extract dataset and adds the first extract record to it. In each subsequent EXTRACT statement, the new extract record is added to the dataset.

Each extract record contains exactly those fields that are contained in the field group <fg>, plus the fields of the field group HEADER (if one exists). The fields from HEADER occur as a sort key at the beginning of the record. If you do not explicitly specify a field group <fg>, the EXTRACT statement is a shortened form of the statement extracts used in field groups (version 2.x - obsolete these days as noone uses field groups anymore), and collect is used to accumulate the contents of a field if X no. of keys are the same.

EXTRACT HEADER.

When you extract the data, the record is filled with the current values of the corresponding fields. As soon as the system has processed the first EXTRACT statement for a field group <fg>, the structure of the corresponding extract record in the extract dataset is fixed. You can no longer insert new fields into the field groups <fg> and HEADER. If you try to modify one of the field groups afterwards and use it in another EXTRACT statement, a runtime error occurs.

By processing EXTRACT statements several times using different field groups, you fill the extract dataset with records of different length and structure. Since you can modify field groups dynamically up to their first usage in an EXTRACT statement, extract datasets provide the advantage that you need not determine the structure at the beginning of the program.

Is This Answer Correct ?    2 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are the data classes in abap?

813


Explain the session method? : abap bdc

831


How can we access the correction and transport system?

732


what is difference between set screen and call screen ?

732


Structures can contain data only during the runtime of a program (t/f) : abap data dictionary

1017


What is a report?

951


What are the data types of the external layer? : abap data dictionary

1021


What are aggregated objects : abap data dictionary

781


What is the use of dequeue function module? : sap abap data dictionary

836


What is system-land-scape of your project?

778


How do you find if a logical database exists for your program requrements?

843


Name the special commands of list?

789


What is modularization and its benefits? : abap modularization

906


What is native sql?

794


In which table the material master data is stored?

747