cancel
Showing results for 
Search instead for 
Did you mean: 

ITS TableView

Former Member
0 Kudos

Hello,

I have a transaction in R3 (Version 4.7) where I have a tablecontrol in which i can select a line and the values

of this selected line i can use in my program. Everything is OK, when i use it in the SAP R3.

But i have also created an internet-service for the SAP-ITS. The Table-Control displays all the datas of my

internal Table in my HTML-Template. But when i try to select a line in this Table Control over the HTML-Template

the values won't be selected. I think the value of my current_line of my R3-Table_Control is not set when

i select a line via the HTML-template.

How can I set my R3-Table control current_line over the HTML-Template???

Regards Mangano

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Markus,

you have to use checkboxes in htlm that are linked to the field for selection in your abap table control.

Add the following code in your html form:

<td>

<input type=checkbox name="`TCNAME-FIEDSELECTNAME[j].name`" value="X"

`if (TCNAME-FIEDSELECTNAME[j].selected)` checked `end`>

</td>

Regards,

Houcine