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

application server directories

Former Member
0 Likes
881

what is the tcode to find the application server directories?

Thanx in advance

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
844

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
Read only

Former Member
0 Likes
844

Hi,

Check the AL11 t code

regards

Shiva

Read only

abdulazeez12
Active Contributor
0 Likes
844

Hi

Itz AL11

Cheers

Shakir

Read only

Former Member
0 Likes
844

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.

Read only

Former Member
0 Likes
845

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.