Application Development 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: 

FILE,AL11 Transactions

Former Member
0 Kudos

Hi,

Can you please explain use of FILE,AL11 transactions in detail.

Thanks in Advance,

Suresh

1 ACCEPTED SOLUTION

sachin_mathapati
Contributor
0 Kudos

FILE

FILE Tcode is used to define 'Logical File' and to map 'Logical File' with 'Physical File Path'.

AL11

AL11 is used to view files and directories on the operating system

6 REPLIES 6

Former Member
0 Kudos

Hi,

By using FILE transaction we can create file defination,

By using AL11 transaction we can store the file in application layer,

Thanks,

Das

Former Member
0 Kudos

Hi Suresh,

AL11 transaction is used to display all the SAP Directories.

When you double click on a directory, you will able to see all the files in the directories.

If you want to use SAP to view the files at the OS level other than the default SAP directories, then you have to goto SM69 to set up an external command. Use SM49 to execute the command.

Regards

Anup.

former_member265047
Active Participant
0 Kudos

Hi,

FILE :

AL11:

By using this T-code, we can display SAP application server unix directory structure, even files and file contents.

Even we can configure foldes in the application server.

FILE:

We can define logical file paths to the actual physical file paths. We can use these logical file paths in the programs to access the files. By this way we can provide some sort of security to the data which is residing in the servers.

Regards,

Naveen Veshala

sachin_mathapati
Contributor
0 Kudos

FILE

FILE Tcode is used to define 'Logical File' and to map 'Logical File' with 'Physical File Path'.

AL11

AL11 is used to view files and directories on the operating system

0 Kudos

these two transactions come in to picture wen ever u are storing a file in Application server...

File--u will have a logical path in ur Program..Thru File transaction u assign a physical path to the same..Means in that path only u can find the file that u have stored in App Server..

AL11--here u can find the stored file in application server..in the defined path by the above procedure..

Hope the above info helps...

Former Member
0 Kudos

Hi,

Thanks for replies.