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

long text upload to database tables

former_member767623
Participant
0 Likes
415

Dear experts,

while i am uploading data from front end to data base table , only 255 characters only the function modules are taking. i have used GUI_upload , text_convert_xls_to_sap , alsm_excel_to_internal_table letc. once i can take tha full data to internal table then i can solve this issue.

please help me by provide solution.

Thnaks in advance.

Regards,

Radhakrishna.Ette

Dear experts,

while i am uploading data from front end to data base table , only 255 characters only the function modules are taking. i have used GUI_upload , text_convert_xls_to_sap , alsm_excel_to_internal_table letc. once i can take tha full data to internal table then i can solve this issue.

please help me by provide solution.

Thnaks in advance.

Regards,

Radhakrishna.Ette

1 REPLY 1
Read only

Former Member
0 Likes
389

Hi Krishna,

Try with the below sample code

data:

   w_str type table of string.

CALL FUNCTION 'GUI_UPLOAD'

   EXPORTING

     filename                      = Flat_file_path_in_txt_format

   tables

     data_tab                      = w_str.

Take the internal table with respect to string like

data:

   w_str type table of string.

The flat file should contain data more than 255 characters. Its working even with more than 255 characters.

Regards,

Vineesh.