cancel
Showing results for 
Search instead for 
Did you mean: 

Webgui Services doesn't display dropDown list

Former Member
0 Kudos

Hi Community,

I'm using webGui service on integrated ITS 7.00.

When I use TRIP transaction, I don't display drop down list help value on field PKT10-KZPMF embedded in Table Control on Dynpro "1801".

The field is correctly displayed but when I click on dropDown list button it doesn't work...

In the same dynpro the other declared fields as DropDown list are ok!

I hope in your experience.

Thank's everybody.

Antonello

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Antonello,

Screen 1801 calls the following for KZPMF if its_return = 2. 2 means PR05 call via ITS. First question is have you tried TRIP_EWT transaction? Other wise this should be logged on OSS.

form its_set_kzpmf using p_morei like t706e-morei.

data:

its_return type i,

wa_t706e like t706e.

perform its_ping using its_return.

if its_return = 2.

select * from t706e into wa_t706e

where spras = sy-langu

and morei = p_morei.

field-set 'KZPMF' sy-dbcnt wa_t706e-kzpmf.

field-set 'TXT_KZPMF' sy-dbcnt wa_t706e-fztxt.

clear wa_t706e.

endselect.

field-transport.

endif.

endform. " ITS_SET_KZPMF

Regards

Gareth

Former Member
0 Kudos

Hi Gareth,

I've tried TRIP_EWT transaction, but doesn't work...

In dynpro 1801 WebGUI get dropDown list on PTK10-PKWKL field in correctly mode.

Best Regards

Antonello.

P.S: Trip distribution way in sap gui for windows is OK!