Skip to Content
0
Former Member
Oct 03, 2005 at 02:51 AM

Module Pool - POV

41 Views

hi ,

I want to display a given set of nationalities(25/250) in the combobox of my module pool screen.

I hav used POV as follows .

..........

process on value-request.

field P0002-NATIO module onvalue_land1.

......

MODULE onvalue_land1 INPUT.

data : GT_LAND TYPE T005T OCCURS 10 WITH HEADER LINE .

DATA GT_RETURN like DDSHRETVAL occurs 0 with header line.

call function 'F4IF_INT_TABLE_VALUE_REQUEST'

exporting

retfield = 'NATI0'

dynpprog = sy-repid

dynpnr = sy-dynnr

dynprofield = 'P0002-NATIO'

value_org = 'C'

tables

value_tab = GT_LAND

return_tab = gt_return

exceptions

parameter_error = 1

no_values_found = 2

others = 3.

.......................

While running my Combo box is blank .

Wht could be the problem ?

Any help would be much apperciated .

Regrds,

J