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

file in application server

Former Member
0 Likes
558

what is the function module to findout the file in application server?

4 REPLIES 4
Read only

Former Member
0 Likes
535

sunil,

u can see the files in the directory using the t/c AL11.

sunil, kindly close all the threads which are answered for ur question.

Regards....

Arun.

Reward points if useful.

Read only

RaymondGiuseppi
Active Contributor
0 Likes
535

Look at FM 'F4_DXFILENAME_TOPRECURSION'

also look Thread

Regards

Read only

Former Member
0 Likes
535

Hi..,

check this function module F4_DXFILENAME_TOPRECURSION..

we use this function module for F4 help to give all the existing files list in Application server !!

From the transaction AL11 u can see all the directories in SAP i.e application layer files directories..

By default when u create an application server file in an ABAP program using OPEN DATASET and CLOSE DATASET this file gets created in a default home directory of SAP ...... HOME directory...

plz do remember to close the thread ... when ur problem is solved !!

reward all helpful answers !!

sai ramesh

Read only

Former Member
0 Likes
535

Hi,

Please try FM '/SAPDMC/LSM_F4_SERVER_FILE.


AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_apath.

* Open the Browse Dialog Box on the Application Server
CALL FUNCTION '/SAPDMC/LSM_F4_SERVER_FILE'
  IMPORTING
    serverfile = p_apath
  EXCEPTIONS
    canceled_by_user = 1
    others = 2.

IF sy-subrc <> 0.
  ...                                               <---- error message
ENDIF.

Regards,

Ferry Lianto