Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

sequential files

Former Member
0 Likes
953

what are sequential files,briefly explain about them please?

4 REPLIES 4
Read only

Former Member
0 Likes
764

Hi,

Sequential files are files with specific format. You upload data into SAP using sequential files.

ABAP allows you to use sequential files located on the application server or presentation server. You can use these files to buffer data, or as an interface between local programs and the R/3 System.

http://help.sap.com/saphelp_nw04/helpdata/en/fc/eb3c72358411d1829f0000e829fbfe/frameset.htm

Hope this will help.

Regards,

Srilatha.

Read only

Former Member
0 Likes
764

Hi

Sequential files are the files which are stored at application server

to read them or to put the data into them we use the DATASET concepts for transfering data

OPEN data set is used to open the file

READ dataset for reading the file

TRANSFER dataset for transfering/writing the data

CLOSE dataset to close the dataset

Reward points for useful Answers

Regards

Anji

Read only

Former Member
0 Likes
764

Check with FILE Transaction

Read only

Former Member
764

In ABAP, there is a range of statements for processing data that is stored in sequential files on the application server instead of the database.

· OPEN DATASET opens a file for a particular type of access and storage.

· TRANSFER transfers the contents of a data object to a file.

· READ DATASET transfers data from a file to a data object.

· GET DATASET using the addition POSITION the current position of the file pointer in a file is ascertained. Using the addition ATTRIBUTES further characteristics of the file are obtained.

· SET DATASET using the addition POSITION the position of the file pointer is specified. Using the addition ATTRIBUTES further characteristics of the file can be specified.

· TRUNCATE DATASET sets the end of a file to a specified value, thereby changing the size of the file.

· CLOSE DATASET closes a file.

· DELETE DATASET deletes a file.

For further details about these statements and their additions, see the keyword documentation.

During sequential file operations, the system performs a range of automatic checks, some of which may lead to runtime errors.

reward points if it is usefull ...

Girish