cancel
Showing results for 
Search instead for 
Did you mean: 

Table Control on ITS

Former Member
0 Kudos

Hi,

I am generating HTML Template for a table control (in R/3) via se80 (Create -> Template). SAP generates all the necessary Business HTML codes, the

table control is translated into :

`SAP_DynproLayerBegin(002,014,114,007)`

`SAP_TableControl("IT_ITINERARY")`

`SAP_DynproLayerEnd()`

However, the table control on the web has alot of problems :

- The tab key (and tab order) is not working

- The listbox (one of the field is a listbox) does not work on certain PCs

- The outer border of the table is missing

- The scroll bars are missing.

I reported the problem to OSS, but was told by the development team that one cannot rely on the HTML generated (refering me to OSS note 680932).

How do I build the necessary Business HTML for table control ? Is there any example I can refer to ?

Thank you.

Regards

Kir Chern

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hello Kir Chern,

I assume you are using ITS 620 patchlevel <= 16.

With the next patchlevel getting released (17) there will be some fixes available for the table control in IACs:

A footer will be displayed to simulate the scrolling (see note 804595).

As far es I know the missing border is fixed as well.

Tab order: It is possible that the tab order is still connected with the accessibility parameter. If you set

~accessibility to 1 in your service file the taborder should be available.

Listbox: they have a special behavior in table controls, please see note 384080.

Best Regards,

Sabine

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi. A late answer, just for the record.

Try to substitute

`SAP_TableControl("IT_ITINERARY")`

with

`d_tablecontrol("IT_ITINERARY",0,0,080,010,0)`

The patrameters indicates position/size

(X=0, Y=0, width=080, height=010, with position=0).

It should solve at least some of your problems.

Robert.

former_member185704
Contributor
0 Kudos

Hi Kir Chern,

1) Which version of ITS do you use? The table control capabilities have been improved during the last patches of ITS 6.20. Do you still use ITS 6.10? If so, please upgrade.

2) Have you tested the table rendering with different web browsers? Some functionality is still missing when using a Gecko based web browser compared to Internet Explorer.

3) Building your own tablecontrol is a lot of work if you want to implement all the functionality mentioned above.

Best regards,

Henning.

P.S.: Please grant reward points for helpful answers.