cancel
Showing results for 
Search instead for 
Did you mean: 

Open a windows folder by ABAP in ALV

anuradha_wijesinghe
Participant
0 Kudos

Hi Experts,

I have a requirement to open a specific file folder by clicking a link in ALV grid.

As a Example, when I click a cell in the ALV grid, It should open a folder that I have given like, "C:\Users\anuradhawi\Documents" .

Is there anyway to do this.

Sandra_Rossi
Active Contributor

Is the question about how to code the click on ALV grid? (and then, please tell us which technology do you use?)

Or only about how to open a dialog to display the files within a folder? (from the user's desktop)

You'd probably get many many answers by searching, too.

View Entire Topic
0 Kudos

I understand the question is outdated. But I will give my simple solution for open the directory, maybe it will be useful to someone:

CALL METHOD CL_GUI_FRONTEND_SERVICES=>EXECUTE
EXPORTING
  APPLICATION            = 'EXPLORER.EXE'
  PARAMETER              = 'C:\TEMP'