cancel
Showing results for 
Search instead for 
Did you mean: 

How to store Attachments (BLOB's) from within WDA

Former Member
0 Kudos

Hi all,

we need to store attachments from within a WDA-Application by using the File-Upload and File-Download UI-element.

We already checked out CL_GOS_DOCUMENT_SERVICE, which works fine in ABAP but obviously not in Web Dynpro for ABAP.

We do not have FI/TV installed (cl_fitv_gos is not available).

Thanks very much in advance,

Martin

Accepted Solutions (0)

Answers (2)

Answers (2)

former_member205144
Active Participant
0 Kudos

How did you resolve this?I am also facing the same problem.

thomas_jung
Developer Advocate
Developer Advocate
0 Kudos

BLOBs don't really need any special treatment to store them in the database. They are just binary string objects (XSTRING). They can be directly stored in a custom database table if you want. Just declare a column in the database of type RAW STRING.