cancel
Showing results for 
Search instead for 
Did you mean: 

List Boxes are not shown in the correct co-ordinates in ITS 6.2

Former Member
0 Kudos

Hai All Gurus,

We are in the process of migrating from ITS 6.1 patch 29 to ITS 6.2 patch 25. We have created some service file for SAP R/3 program and published those program as HTML templates in ITS server.

These service files are working fine in ITS 6.1, in ITS 6.2 the list boxes in the screen are shown in different position.

For example In line 2 i have one label field which is shown in colum 2 and it occupies 5 column and in the same line at column 15 i have a list box which occupies 10 column.

When i run this service file from ITS the list box which is to be shown in line 2 and column 15 is shown at line 13 and column 40.

With the below code the list box "P0752-OWNPY" is shown in line 18 and column 45

`SAP_DynproLayerBegin(004,015,018,001)`

`SAP_Label("IT4")`

`SAP_DynproLayerEnd()`

`SAP_DynproLayerBegin(023,015,005,001)`

`SAP_InputField("P0752-OWNPY")`

`SAP_DynproLayerEnd()`

When i changed the code like this,

`SAP_DynproLayerBegin(004,015,018,001)`

`SAP_Label("IT4")`

`SAP_DynproLayerEnd()`

`SAP_DynproLayerBegin(000,014,005,001)`

`SAP_InputField("P0752-OWNPY")`

`SAP_DynproLayerEnd()`

Label and text field are shown in the same line. If you notice the above code, label is in line 15 starting at column 4 and list box is line 14 starting at column 0.

With the above code also I am not able to align the column position properly. There are some five column space between the label and text field.

The above fields are with in a frame.

Please let me know, why the behaviour is like this and what can i do to solve this problem.

Thanks & Regards,

H.K.Hayath Basha.

Accepted Solutions (0)

Answers (7)

Answers (7)

Former Member
0 Kudos

test dd

Former Member
0 Kudos

Hai Tina,

SAP has given source code correction for this issue. No message number. Send your email-id. I will send the source to you.

Regards,

H.K.Hayath Basha.

Former Member
0 Kudos

H.K.Hayath Basha

Can you give me the OSS note number?

I'm having the same issues with one of the Open Enrollment screens. PZ14

Thanks,

Tina

Former Member
0 Kudos

Hai,

This is a bug in ITS 6.2. SAP says it is fixed in patch 29. I have found a standard transaction LPINW which is having this problem and raised OSS note. SAP has given correction for the below files,

<ITS_dir>\<instance>\templates\system\dm\generator.html

and

<ITS_dir>\<instance>\templates\system\dm\gui_dropdown.html

Now this problem is solved but the list box has other problem.

When I open a list box by clicking on the down arrow, the list box

content are shown, after this when i use the roller button in mouse to

scroll the screen is scrolled instead of the content in the list box.

As a result of which the list box and its drop down list are shown in

different place.

Regards,

H.K.Hayath Basha.

Former Member
0 Kudos

Thanks for the feedback!

I also logged an OSS note for the incorrect dropdown boxes in customer templates and SAP is currently investigating this. Will keep you guys updated.

Former Member
0 Kudos

Hai,

We are in patch 26.

I have seen some of the standard SAP service files, they have coded list box using HTML code, like the below.

<tr>

<td align=right class=label>`#100_bukrs`:</td>

<!-- Eer Auswahlbox -->

<!-- size eq 0 create a pulldown menu, size = n means a selection box with -->

<!-- n visible entries -->

<td align=left><select name="PARAM-BUKRS" size=0>

<!-- loop at all elements of the book list -->

`repeat with i from 1 to BUKRS_KEY.dim`

<!-- make the current selection to the default -->

`if(PARAM-BUKRS == BUKRS_KEY<i>)`

<option value="`BUKRS_KEY<i>`" selected>

`else`

<option value="`BUKRS_KEY<i>`">

`end`

<!-- Zeige Text, wenn dieser leer, dann SchlEsel -->

`if(BUKRS_F4_TEXT<i> == '')`

`BUKRS_KEY<i>`

`else`

`BUKRS_F4_TEXT<i>`

`end`

<!-- end loop -->

`end`

</select>

</td>

</tr>

Regards,

H.K.Hayath Basha.

Former Member
0 Kudos

Thanks, will check what happens if I add the dropdown explicitly like this. Another thing I've noticed is that the dropdowns now have scroll-bars as well. Very strange indeed but maybe the code you posted will fix the problem.

Former Member
0 Kudos

Hai,

The problem is not yet solved. I am looking for any standard service which has list box and the screen are published. So that I can raise a OSS note to SAP.

Regards,

H.K.Hayath Basha.

Former Member
0 Kudos

We are on 6.20 patch 28. I can't find any OSS notes but will let you know if I find something as we have a couple of custom developed services for which the dropdown fields are positioned incorrectly now.

Edited by: Liza-Marie Erasmus on Jan 22, 2008 3:42 AM

Former Member
0 Kudos

Hi,

I'm having a similar problem. Did you manage to solve your problem?

Regards

Liza-Marie