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 string upload abap

former_member429272
Participant
0 Likes
3,076

Hi iwant to upload a long string in to table but system not accepting in normal FM's

Snap shot of string below

i tried with GUI upload bt not accepting the way it requried

10 REPLIES 10
Read only

FredericGirod
Active Contributor
0 Likes
2,971

Could you provide your code ?

Read only

Sandra_Rossi
Active Contributor
0 Likes
2,971

Weird. It looks like a base 62 format. 62, what the heck !!?? 🙂

Read only

FredericGirod
Active Contributor
2,971

Maybe the issue is reading a cell with more than 40 char (I think it is a limitation of the FM)

Read only

Sandra_Rossi
Active Contributor
0 Likes
2,971

Base 62 with the one exception that there is an additional and unique dot character... (!!??)

Could you provide your code, explain what this "long string" represents, why you are talking of "upload" and what you want to achieve exactly?

Read only

Sandra_Rossi
Active Contributor
0 Likes
2,971

What FM is it?

Read only

Pankaj_Gupta
Product and Topic Expert
Product and Topic Expert
0 Likes
2,971

Maybe you can try creating your own custom FM by copying standard FM and using TYPE as string.

Read only

matt
Active Contributor
2,971

Copying a standard SAP object is never a good idea. Ever.

Read only

0 Likes
2,971

matthew.billingham I don't agree for "never". Copying a little piece of code, that you totally understand of course, saves time! This kind of function module is very simple.

Read only

matt
Active Contributor
0 Likes
2,971

Nope. Never.

If you need a string parameter, then modify the code in the FM directly. That way, if upgrade brings an issue you're alerted. If you've made a copy, you don't find out until something potentially really bad happens.

Read only

matt
Active Contributor
2,971

"not accepting the way it requried" is not a meaningful description of a problem.

What do you want?

What are you getting?

In what way is it "not accepting"?

What have you tried.