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: 

file open dialog - abap webdynpro

former_member1033672
Participant
0 Kudos

Hi all,

please, i'm newbie in abap webdynpro. How to create an input field with file open dialog?

thanks

Filip

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi,

You can use FILE UPLOAD UI element from the UI Library for file upload functionality. It returns a XSTRING for the uploaded file. Create an attribute of type XSTRING in your view which contains the FILE UPLOAD UI element and bind the attribute to data property of FILE UPLOAD UI.

You have to manipulate this XSTRING to get the values from the file.

Thanks,

Abhishek

2 REPLIES 2

Former Member
0 Kudos

Hi,

You can use FILE UPLOAD UI element from the UI Library for file upload functionality. It returns a XSTRING for the uploaded file. Create an attribute of type XSTRING in your view which contains the FILE UPLOAD UI element and bind the attribute to data property of FILE UPLOAD UI.

You have to manipulate this XSTRING to get the values from the file.

Thanks,

Abhishek

0 Kudos

thanks, finally i did it this way