Thursday, September 10, 2020

What are the steps involved in handling Application server in SAP ABAP.

What are the steps involved in handling Application server?



Ans :- The T-Code AL11 is used to work with the Application server.

 The below ABAP statements are used to Download/Transfer the data from an internal table into the specified file path of an application server.

1. OPEN DATASET FOR OUTPUT: This statement is used to open the required files in write mode in application server.

2. TRANSFER: This statement is used to transfer the concatenated data into the opened file.

3. CLOSE DATASET: It is used to close the opened file in the server.

 The below ABAP statements are used to Upload/Read the data from file in application server into an internal table of the program.

1. OPEN DATASET FOR INPUT: This statement is used to open files in read mode.

2. READ DATA SET: This statement is used to read record by record from the opened file in Application server.

No comments:

Post a Comment