Hello,
I try the weblog OF Brian McKellar corresponding to the HTMLB TableView Iterator and as like certain people, the Dropdownlist of the column 'CURRENCY' is empty. This is cetainely due of how in the constructor the table is declared. So, for those which succeeded in replir the Dropdownlist of the column 'CURRENCY' can they give me the code of your constructor.
Thanks a lot.
Farid BERRA
Farid,
In the iterator class declare a new Attribute with TYPE TIHTTPNVP.
For Example:
TABLE_TYPE Instance Attribute Public Type TIHTTPNVP
Then in the constructor code something like this:
method CONSTRUCTOR .
DATA: wa TYPE LINE OF TIHTTPNVP,
wa_tipo TYPE zmtvetipo.
-- TIPOS DE VIVIENDA
SELECT * FROM zmtvtipo INTO wa_tipo
WHERE tipcu = '1'.
MOVE wa_tipo-tipcu TO wa-name.
MOVE wa_tipo-zztipo TO wa-value.
APPEND wa TO table_type.
ENDSELECT.
endmethod.
Best regards
Ariel
Add a comment