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 value in function module export

Former Member
0 Likes
2,117

Hı

How can we see fully value of a long string variable when we executed a function module.

For ex. function module exporting variable is a string which lengh is 5000 char. but we can see only 100-200 char on screen. are there any way to see fully value of string apart more codding

1 ACCEPTED SOLUTION
Read only

MarcinPciak
Active Contributor
0 Likes
1,142

Hi,

- In ABAP Debugger double click your variable

- from lisbox View select Tabular (by default it is Fast display )

- now you can scroll down and observe variable content (it will be splitted in each 50th character)

Regards

Marcin

4 REPLIES 4
Read only

Former Member
0 Likes
1,142

Hi,

If you are using advanced version of ABAP Debugger, then you shall be able to download the data and then check it.

Alternative you can use index to view the data beyond 100-200 in length. Eg : field200(200), field400(200)

Though I doubt if there is an alternative where you would be able to view the complete string at a go.

Regards,

Nirmal

Read only

0 Likes
1,142

thanks nirmal.

Read only

MarcinPciak
Active Contributor
0 Likes
1,143

Hi,

- In ABAP Debugger double click your variable

- from lisbox View select Tabular (by default it is Fast display )

- now you can scroll down and observe variable content (it will be splitted in each 50th character)

Regards

Marcin

Read only

0 Likes
1,142

thanks a lot marcin