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

logical file path

Former Member
0 Likes
506

Hi guys,

Can anyone tell me what function module can i use to provide F4 for logical file path,

u can suggest any class/ method except zcl_nba_utilities as that class is not available.

Thanks in advance,

1 ACCEPTED SOLUTION
Read only

venkat_o
Active Contributor
0 Likes
461

Hi, <li>Try the below one.


    call function '/SAPDMC/LSM_F4_SERVER_FILE'
      exporting
        directory              = ' '
*      DIRECTORY              = ' '
*      FILEMASK               = ' '
      importing
        serverfile             = ld_selected_fullpath
      exceptions
        canceled_by_user       = 1
        others                 = 2.
Thanks Venkat.O

2 REPLIES 2
Read only

Former Member
0 Likes
460

If you want F4 help for selecting logical filepath, declare your parameter tables : path.

parameters : p1 like path-pathintern.

also check ,FM F4_DXFILENAME_TOPRECURSION

Read only

venkat_o
Active Contributor
0 Likes
462

Hi, <li>Try the below one.


    call function '/SAPDMC/LSM_F4_SERVER_FILE'
      exporting
        directory              = ' '
*      DIRECTORY              = ' '
*      FILEMASK               = ' '
      importing
        serverfile             = ld_selected_fullpath
      exceptions
        canceled_by_user       = 1
        others                 = 2.
Thanks Venkat.O