‎2009 Jul 13 2:12 PM
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
‎2009 Jul 13 4:01 PM
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
‎2009 Jul 13 3:46 PM
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
‎2009 Jul 13 4:41 PM
‎2009 Jul 13 4:01 PM
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
‎2009 Jul 13 4:41 PM