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: 

application server directories

Former Member
0 Kudos

what is the tcode to find the application server directories?

Thanx in advance

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi,

tcode is 'AL11' , to findout application server directories

Go thru the below link to get more functionalities of AL11:

http://sap.ittoolbox.com/groups/technical-functional/sap-dev/how-to-delete-file-in-al11-470828

Cheers,

Chaitanya.

4 REPLIES 4

Former Member
0 Kudos

Hi,

Check the AL11 t code

regards

Shiva

abdulazeez12
Active Contributor
0 Kudos

Hi

Itz AL11

Cheers

Shakir

Former Member
0 Kudos

Hi, this may help you

You can use t/code CG3Y to download a file from application server to presentation server and t/code CG3Z to upload a file to a application server from presentation server.

Use the function module '/SAPDMC/LSM_F4_SERVER_FILE' for F4 help for Application server files. you need to write this in the AT SELECTION_SCREEN on FIELD REQUEST.

CALL FUNCTION '/SAPDMC/LSM_F4_SERVER_FILE'

EXPORTING

directory = ' '

filemask = ' '

IMPORTING

serverfile = p_afile

EXCEPTIONS

canceled_by_user = 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.

You just try to execute this function module it will give you list of directories present in Application server

Reward if helpful.

Regards

Madhu.

Former Member
0 Kudos

Hi,

tcode is 'AL11' , to findout application server directories

Go thru the below link to get more functionalities of AL11:

http://sap.ittoolbox.com/groups/technical-functional/sap-dev/how-to-delete-file-in-al11-470828

Cheers,

Chaitanya.