cancel
Showing results for 
Search instead for 
Did you mean: 

values from RFC to webdynpro

Former Member
0 Kudos

Hi,

I have developed a RFC that returns a table of values. In that, 1 field is for checkbox where the values are T or F, but those are char values. When i map it to webdynpro, i didnt mention it as checkbox, i selected it to be a textview.

Am displaying the table as it is, but the values of rest of the fields are displayed correctly, for checked field it displays FALSE instead of T or F from RFC.

Please suggest where the problem is.

Thanks & Regards,

sanjay.

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Sanjay,

There is no problem. There are routines(JCo) which convert the datatypes from ABAP to Java(WD) and back.

When you try to access the value in your view control you will be getting a boolean and not a String(char). So this boolean value is automatically converted in to String when displayed in the Textview.

Thanks and regards

RK