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 open dialog - abap webdynpro

Former Member
0 Likes
615

Hi all,

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

thanks

Filip

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
492

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

Former Member
0 Likes
493

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

Read only

0 Likes
492

thanks, finally i did it this way